From 8aabef423c3a54186516c8e5919785385b7818a0 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Tue, 11 Feb 2025 01:59:07 +0200 Subject: [PATCH 01/80] Create new resources for this branch for Transifex --- .tx/config | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.tx/config b/.tx/config index 95d5b1afa..c43f8fdd2 100644 --- a/.tx/config +++ b/.tx/config @@ -1,7 +1,7 @@ [main] host = https://www.transifex.com -[o:sledgehammer999:p:qbittorrent:r:qbittorrent_master] +[o:sledgehammer999:p:qbittorrent:r:qbittorrent_v51x] file_filter = src/lang/qbittorrent_.ts source_file = src/lang/qbittorrent_en.ts source_lang = en @@ -9,7 +9,7 @@ type = QT minimum_perc = 23 lang_map = pt: pt_PT, zh: zh_CN -[o:sledgehammer999:p:qbittorrent:r:qbittorrent_webui] +[o:sledgehammer999:p:qbittorrent:r:qbittorrent_webui_v51x] file_filter = src/webui/www/translations/webui_.ts source_file = src/webui/www/translations/webui_en.ts source_lang = en From bc7d5c1f8f50fe1b4b09c3653eeb490d8733edb4 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Tue, 11 Feb 2025 02:01:34 +0200 Subject: [PATCH 02/80] Bump to 5.1.0rc1 --- dist/unix/org.qbittorrent.qBittorrent.metainfo.xml | 2 +- src/base/version.h.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml b/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml index aa17fbd96..38417706d 100644 --- a/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml +++ b/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml @@ -62,6 +62,6 @@ https://github.com/qbittorrent/qBittorrent/blob/master/CONTRIBUTING.md - + diff --git a/src/base/version.h.in b/src/base/version.h.in index 51b9e860c..018fc658b 100644 --- a/src/base/version.h.in +++ b/src/base/version.h.in @@ -32,7 +32,7 @@ #define QBT_VERSION_MINOR 1 #define QBT_VERSION_BUGFIX 0 #define QBT_VERSION_BUILD 0 -#define QBT_VERSION_STATUS "beta1" // Should be empty for stable releases! +#define QBT_VERSION_STATUS "rc1" // Should be empty for stable releases! #define QBT__STRINGIFY(x) #x #define QBT_STRINGIFY(x) QBT__STRINGIFY(x) From 7238bad5a6cfba7c95d942a1193e5513dd0e6d0a Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Tue, 11 Feb 2025 02:04:46 +0200 Subject: [PATCH 03/80] Bump to v5.2.0alpha1 --- dist/mac/Info.plist | 2 +- dist/unix/org.qbittorrent.qBittorrent.metainfo.xml | 2 +- dist/windows/config.nsh | 2 +- src/base/version.h.in | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/dist/mac/Info.plist b/dist/mac/Info.plist index 0848dff22..0b85335fb 100644 --- a/dist/mac/Info.plist +++ b/dist/mac/Info.plist @@ -55,7 +55,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 5.1.0 + 5.2.0 CFBundleExecutable ${EXECUTABLE_NAME} CFBundleIdentifier diff --git a/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml b/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml index aa17fbd96..4aacf15ce 100644 --- a/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml +++ b/dist/unix/org.qbittorrent.qBittorrent.metainfo.xml @@ -62,6 +62,6 @@ https://github.com/qbittorrent/qBittorrent/blob/master/CONTRIBUTING.md - + diff --git a/dist/windows/config.nsh b/dist/windows/config.nsh index cd4e66afa..c01aabe49 100644 --- a/dist/windows/config.nsh +++ b/dist/windows/config.nsh @@ -14,7 +14,7 @@ ; 4.5.1.3 -> good ; 4.5.1.3.2 -> bad ; 4.5.0beta -> bad -!define /ifndef QBT_VERSION "5.1.0" +!define /ifndef QBT_VERSION "5.2.0" ; Option that controls the installer's window name ; If set, its value will be used like this: diff --git a/src/base/version.h.in b/src/base/version.h.in index 51b9e860c..94857236a 100644 --- a/src/base/version.h.in +++ b/src/base/version.h.in @@ -29,10 +29,10 @@ #pragma once #define QBT_VERSION_MAJOR 5 -#define QBT_VERSION_MINOR 1 +#define QBT_VERSION_MINOR 2 #define QBT_VERSION_BUGFIX 0 #define QBT_VERSION_BUILD 0 -#define QBT_VERSION_STATUS "beta1" // Should be empty for stable releases! +#define QBT_VERSION_STATUS "alpha1" // Should be empty for stable releases! #define QBT__STRINGIFY(x) #x #define QBT_STRINGIFY(x) QBT__STRINGIFY(x) From c9eb1fbac80b34354bbc15cb4883f39428d036fe Mon Sep 17 00:00:00 2001 From: Vladimir Golovnev Date: Wed, 12 Feb 2025 09:33:41 +0300 Subject: [PATCH 04/80] WebAPI: Don't trim string parameters PR #22266. Closes #19485. Closes #22254. --- src/webui/api/rsscontroller.cpp | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/webui/api/rsscontroller.cpp b/src/webui/api/rsscontroller.cpp index d103d3198..0dd5d1dc3 100644 --- a/src/webui/api/rsscontroller.cpp +++ b/src/webui/api/rsscontroller.cpp @@ -49,7 +49,7 @@ void RSSController::addFolderAction() { requireParams({u"path"_s}); - const QString path = params()[u"path"_s].trimmed(); + const QString path = params()[u"path"_s]; const nonstd::expected result = RSS::Session::instance()->addFolder(path); if (!result) throw APIError(APIErrorType::Conflict, result.error()); @@ -59,8 +59,8 @@ void RSSController::addFeedAction() { requireParams({u"url"_s, u"path"_s}); - const QString url = params()[u"url"_s].trimmed(); - const QString path = params()[u"path"_s].trimmed(); + const QString url = params()[u"url"_s]; + const QString path = params()[u"path"_s]; const nonstd::expected result = RSS::Session::instance()->addFeed(url, (path.isEmpty() ? url : path)); if (!result) throw APIError(APIErrorType::Conflict, result.error()); @@ -70,8 +70,8 @@ void RSSController::setFeedURLAction() { requireParams({u"path"_s, u"url"_s}); - const QString path = params()[u"path"_s].trimmed(); - const QString url = params()[u"url"_s].trimmed(); + const QString path = params()[u"path"_s]; + const QString url = params()[u"url"_s]; const nonstd::expected result = RSS::Session::instance()->setFeedURL(path, url); if (!result) throw APIError(APIErrorType::Conflict, result.error()); @@ -81,7 +81,7 @@ void RSSController::removeItemAction() { requireParams({u"path"_s}); - const QString path = params()[u"path"_s].trimmed(); + const QString path = params()[u"path"_s]; const nonstd::expected result = RSS::Session::instance()->removeItem(path); if (!result) throw APIError(APIErrorType::Conflict, result.error()); @@ -91,8 +91,8 @@ void RSSController::moveItemAction() { requireParams({u"itemPath"_s, u"destPath"_s}); - const QString itemPath = params()[u"itemPath"_s].trimmed(); - const QString destPath = params()[u"destPath"_s].trimmed(); + const QString itemPath = params()[u"itemPath"_s]; + const QString destPath = params()[u"destPath"_s]; const nonstd::expected result = RSS::Session::instance()->moveItem(itemPath, destPath); if (!result) throw APIError(APIErrorType::Conflict, result.error()); @@ -146,8 +146,8 @@ void RSSController::setRuleAction() { requireParams({u"ruleName"_s, u"ruleDef"_s}); - const QString ruleName {params()[u"ruleName"_s].trimmed()}; - const QByteArray ruleDef {params()[u"ruleDef"_s].trimmed().toUtf8()}; + const QString ruleName {params()[u"ruleName"_s]}; + const QByteArray ruleDef {params()[u"ruleDef"_s].toUtf8()}; const auto jsonObj = QJsonDocument::fromJson(ruleDef).object(); RSS::AutoDownloader::instance()->setRule(RSS::AutoDownloadRule::fromJsonObject(jsonObj, ruleName)); @@ -157,8 +157,8 @@ void RSSController::renameRuleAction() { requireParams({u"ruleName"_s, u"newRuleName"_s}); - const QString ruleName {params()[u"ruleName"_s].trimmed()}; - const QString newRuleName {params()[u"newRuleName"_s].trimmed()}; + const QString ruleName {params()[u"ruleName"_s]}; + const QString newRuleName {params()[u"newRuleName"_s]}; RSS::AutoDownloader::instance()->renameRule(ruleName, newRuleName); } @@ -167,7 +167,7 @@ void RSSController::removeRuleAction() { requireParams({u"ruleName"_s}); - const QString ruleName {params()[u"ruleName"_s].trimmed()}; + const QString ruleName {params()[u"ruleName"_s]}; RSS::AutoDownloader::instance()->removeRule(ruleName); } From 38070c6eee63c2930689268e35b87c87712707dc Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Wed, 12 Feb 2025 15:11:54 +0800 Subject: [PATCH 05/80] WebUI: use recommended function for checking NaN values Also fix a few variable names along the way. PR #22264. --- src/webui/www/private/scripts/dynamicTable.js | 2 +- src/webui/www/private/scripts/misc.js | 4 +- src/webui/www/private/scripts/progressbar.js | 2 +- src/webui/www/private/views/preferences.html | 446 +++++++++--------- 4 files changed, 232 insertions(+), 222 deletions(-) diff --git a/src/webui/www/private/scripts/dynamicTable.js b/src/webui/www/private/scripts/dynamicTable.js index ee9bf554f..7bc794a2a 100644 --- a/src/webui/www/private/scripts/dynamicTable.js +++ b/src/webui/www/private/scripts/dynamicTable.js @@ -1856,7 +1856,7 @@ window.qBittorrent.DynamicTable ??= (() => { }; const displayDate = function(td, row) { const value = this.getRowValue(row) * 1000; - const formattedValue = (isNaN(value) || (value <= 0)) ? "" : (new Date(value).toLocaleString()); + const formattedValue = (Number.isNaN(value) || (value <= 0)) ? "" : (new Date(value).toLocaleString()); td.textContent = formattedValue; td.title = formattedValue; }; diff --git a/src/webui/www/private/scripts/misc.js b/src/webui/www/private/scripts/misc.js index 7017a48ab..afa1b4838 100644 --- a/src/webui/www/private/scripts/misc.js +++ b/src/webui/www/private/scripts/misc.js @@ -164,7 +164,7 @@ window.qBittorrent.Misc ??= (() => { const friendlyPercentage = (value) => { let percentage = (value * 100).round(1); - if (isNaN(percentage) || (percentage < 0)) + if (Number.isNaN(percentage) || (percentage < 0)) percentage = 0; if (percentage > 100) percentage = 100; @@ -189,7 +189,7 @@ window.qBittorrent.Misc ??= (() => { const tryToNumber = (str) => { const num = Number(str); - return (isNaN(num) ? str : num); + return (Number.isNaN(num) ? str : num); }; const ver = versionString.split(".", 4).map(val => tryToNumber(val)); diff --git a/src/webui/www/private/scripts/progressbar.js b/src/webui/www/private/scripts/progressbar.js index 5ec45904f..3523c6b24 100644 --- a/src/webui/www/private/scripts/progressbar.js +++ b/src/webui/www/private/scripts/progressbar.js @@ -117,7 +117,7 @@ window.qBittorrent.ProgressBar ??= (() => { function ProgressBar_setValue(value) { value = parseFloat(value); - if (isNaN(value)) + if (Number.isNaN(value)) value = 0; value = Math.min(Math.max(value, 0), 100); this.vals.value = value; diff --git a/src/webui/www/private/views/preferences.html b/src/webui/www/private/views/preferences.html index 727eb318d..3ac2d988b 100644 --- a/src/webui/www/private/views/preferences.html +++ b/src/webui/www/private/views/preferences.html @@ -399,13 +399,13 @@
QBT_TR(Listening Port)QBT_TR[CONTEXT=OptionsDialog]
- - + +
- - + +
@@ -415,31 +415,31 @@ - - + + - + - - + + - + - - + + - - + + - + @@ -592,12 +592,12 @@ QBT_TR(Alternative speed limits)QBT_TR[CONTEXT=MainWindow] - -   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] + +   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] - -   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] + +   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] @@ -612,12 +612,12 @@ QBT_TR(Alternative speed limits)QBT_TR[CONTEXT=MainWindow] - -   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] + +   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] - -   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] + +   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] @@ -705,66 +705,66 @@
- - + +
- + - +
- + - +
- + - +
- - + + @@ -778,35 +778,35 @@ - +
- + -   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] +   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog]
- + -   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog] +   QBT_TR(KiB/s)QBT_TR[CONTEXT=OptionsDialog]
- + -   QBT_TR(seconds)QBT_TR[CONTEXT=OptionsDialog] +   QBT_TR(seconds)QBT_TR[CONTEXT=OptionsDialog]
- - + + - +
- - + + - QBT_TR(minutes)QBT_TR[CONTEXT=OptionsDialog] + QBT_TR(minutes)QBT_TR[CONTEXT=OptionsDialog]
- - + + - QBT_TR(minutes)QBT_TR[CONTEXT=OptionsDialog] + QBT_TR(minutes)QBT_TR[CONTEXT=OptionsDialog]
- @@ -909,19 +909,19 @@
- + - - - + + +
- - + +
@@ -1043,10 +1043,10 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ + diff --git a/src/webui/www/private/views/torrentcreator.html b/src/webui/www/private/views/torrentcreator.html new file mode 100644 index 000000000..02f00d95d --- /dev/null +++ b/src/webui/www/private/views/torrentcreator.html @@ -0,0 +1,282 @@ + + +
+ +
+ +
+
+
+ + + + +
+
+
+ + + + + +
+
+
+
+ diff --git a/src/webui/www/webui.qrc b/src/webui/www/webui.qrc index 1a77d3a28..bc637f56c 100644 --- a/src/webui/www/webui.qrc +++ b/src/webui/www/webui.qrc @@ -370,6 +370,7 @@ private/images/task-complete.svg private/images/task-reject.svg private/images/toolbox-divider.gif + private/images/torrent-creator.svg private/images/torrent-magnet.svg private/images/torrent-start-forced.svg private/images/torrent-start.svg @@ -428,6 +429,7 @@ private/views/confirmdeletion.html private/views/confirmRecheck.html private/views/cookies.html + private/views/createtorrent.html private/views/filters.html private/views/installsearchplugin.html private/views/log.html @@ -441,6 +443,7 @@ private/views/search.html private/views/searchplugins.html private/views/statistics.html + private/views/torrentcreator.html private/views/transferlist.html public/css/login.css public/css/noscript.css From cdddaae939f57740190ec750e735fa796f3c55e4 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 5 Apr 2025 13:51:08 +0800 Subject: [PATCH 56/80] WebUI: fix preferences not applied in magnet handler Thanks for the diagnosis in this [post](https://github.com/qbittorrent/qBittorrent/issues/22495#issue-2958553624). Closes #21486. Closes #22495. PR #22504. --- src/webui/www/private/scripts/download.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/webui/www/private/scripts/download.js b/src/webui/www/private/scripts/download.js index e175d02ea..e79d97978 100644 --- a/src/webui/www/private/scripts/download.js +++ b/src/webui/www/private/scripts/download.js @@ -131,7 +131,11 @@ window.qBittorrent.Download ??= (() => { } }; - $(window).addEventListener("load", () => { + $(window).addEventListener("load", async () => { + // user might load this page directly (via browser magnet handler) + // so wait for crucial initialization to complete + await window.parent.qBittorrent.Client.initializeCaches(); + getPreferences(); getCategories(); }); From 6c36830e5e7ce9426b583af860eccaa106876f64 Mon Sep 17 00:00:00 2001 From: skomerko <168652295+skomerko@users.noreply.github.com> Date: Sat, 5 Apr 2025 11:13:14 +0200 Subject: [PATCH 57/80] WebUI: Set status filter to 'All' if selected filter is no longer visible Fixup for #21145 To reproduce: 1. Select status filter with 0 torrents 2. Enable 'Auto hide zero status filters' and save settings. Hidden filter is still selected: PR #22487. --- src/webui/www/private/scripts/client.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/webui/www/private/scripts/client.js b/src/webui/www/private/scripts/client.js index 0f7cec42f..a85b9d420 100644 --- a/src/webui/www/private/scripts/client.js +++ b/src/webui/www/private/scripts/client.js @@ -481,6 +481,8 @@ window.addEventListener("DOMContentLoaded", () => { updateFilter("checking", "QBT_TR(Checking (%1))QBT_TR[CONTEXT=StatusFilterWidget]"); updateFilter("moving", "QBT_TR(Moving (%1))QBT_TR[CONTEXT=StatusFilterWidget]"); updateFilter("errored", "QBT_TR(Errored (%1))QBT_TR[CONTEXT=StatusFilterWidget]"); + if (useAutoHideZeroStatusFilters && document.getElementById(`${selectedStatus}_filter`).classList.contains("invisible")) + setStatusFilter("all"); }; const highlightSelectedStatus = () => { From 72e8b3272be9ef416d61bfbfc72cadca4561b197 Mon Sep 17 00:00:00 2001 From: xavier2k6 <42386382+xavier2k6@users.noreply.github.com> Date: Tue, 8 Apr 2025 08:35:58 +0100 Subject: [PATCH 58/80] GHA CI: Use Qt 6.9.0 on Windows and macOS PR #22509. --- .github/workflows/ci_macos.yaml | 2 +- .github/workflows/ci_windows.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci_macos.yaml b/.github/workflows/ci_macos.yaml index 6dbbee82b..0d8b1b634 100644 --- a/.github/workflows/ci_macos.yaml +++ b/.github/workflows/ci_macos.yaml @@ -20,7 +20,7 @@ jobs: matrix: libt_version: ["2.0.11", "1.2.20"] qbt_gui: ["GUI=ON", "GUI=OFF"] - qt_version: ["6.7.0"] + qt_version: ["6.9.0"] env: boost_path: "${{ github.workspace }}/../boost" diff --git a/.github/workflows/ci_windows.yaml b/.github/workflows/ci_windows.yaml index 25ab24d8f..040844d0d 100644 --- a/.github/workflows/ci_windows.yaml +++ b/.github/workflows/ci_windows.yaml @@ -106,7 +106,7 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v4 with: - version: "6.8.0" + version: "6.9.0" arch: win64_msvc2022_64 archives: qtbase qtsvg qttools cache: true From f0b9a17566f5db88e996f5ff6493b3f53b888300 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 8 Apr 2025 15:47:47 +0800 Subject: [PATCH 59/80] WebUI: add headers to RSS entry viewer Introduced Author, 'Open link' headers. Note that the Author and 'Open link' are not mandatory fields in RSS/Atom feeds. So these headers will only be displayed when the feed includes them. PR #22503. --- src/webui/www/private/views/rss.html | 90 ++++++++++++++++++++-------- 1 file changed, 66 insertions(+), 24 deletions(-) diff --git a/src/webui/www/private/views/rss.html b/src/webui/www/private/views/rss.html index 31d0b2561..1adf741df 100644 --- a/src/webui/www/private/views/rss.html +++ b/src/webui/www/private/views/rss.html @@ -60,12 +60,15 @@ #rssTorrentDetailsName { flex-shrink: 0; + font-weight: bold; background-color: var(--color-background-blue); padding: 0; color: var(--color-text-white); } - #rssTorrentDetailsDate { + #rssTorrentDetailsAuthor, + #rssTorrentDetailsDate, + #rssTorrentDetailsLink { flex-shrink: 1; background-color: var(--color-background-default); } @@ -429,33 +432,72 @@ markArticleAsRead(pathByFeedId.get(feedUid), articleID); clearDetails(); - const article = feedData[feedUid].filter((article) => article.id === articleID)[0]; - if (article) { - $("rssDetailsView").append((() => { - const torrentName = document.createElement("p"); - torrentName.textContent = article.title; - torrentName.id = "rssTorrentDetailsName"; - return torrentName; - })()); - $("rssDetailsView").append((() => { - const torrentDate = document.createElement("div"); - torrentDate.id = "rssTorrentDetailsDate"; + const article = feedData[feedUid].find((article) => (article.id === articleID)); + if (article === undefined) + return; - const torrentDateDesc = document.createElement("b"); - torrentDateDesc.textContent = "QBT_TR(Date: )QBT_TR[CONTEXT=RSSWidget]"; - torrentDate.append(torrentDateDesc); + const detailsView = document.getElementById("rssDetailsView"); - const torrentDateData = document.createElement("span"); - torrentDateData.textContent = new Date(article.date).toLocaleString(); - torrentDate.append(torrentDateData); + const articleTitle = article.title; + if (articleTitle !== undefined) { + const torrentName = document.createElement("p"); + torrentName.textContent = articleTitle; + torrentName.id = "rssTorrentDetailsName"; - return torrentDate; - })()); - // Place in iframe with sandbox attribute to prevent js execution - const torrentDescription = document.createRange().createContextualFragment(''); - $("rssDetailsView").append(torrentDescription); - document.getElementById("rssDescription").srcdoc = `${article.description}`; + detailsView.append(torrentName); } + + const articleDate = article.date; + if (articleDate !== undefined) { + const torrentDate = document.createElement("div"); + torrentDate.id = "rssTorrentDetailsDate"; + + const torrentDateDesc = document.createElement("b"); + torrentDateDesc.textContent = "QBT_TR(Date: )QBT_TR[CONTEXT=RSSWidget]"; + torrentDate.append(torrentDateDesc); + + const torrentDateData = document.createElement("span"); + torrentDateData.textContent = new Date(articleDate).toLocaleString(); + torrentDate.append(torrentDateData); + + detailsView.append(torrentDate); + } + + const articleAuthor = article.author; + if (articleAuthor !== undefined) { + const divElement = document.createElement("div"); + divElement.id = "rssTorrentDetailsAuthor"; + + const header = document.createElement("b"); + header.textContent = "QBT_TR(Author: )QBT_TR[CONTEXT=RSSWidget]"; + divElement.append(header); + + const span = document.createElement("span"); + span.textContent = articleAuthor; + divElement.append(span); + + detailsView.append(divElement); + } + + const articleLink = article.link; + if (articleLink !== undefined) { + const divElement = document.createElement("div"); + divElement.id = "rssTorrentDetailsLink"; + + const anchorElement = document.createElement("a"); + anchorElement.href = articleLink; + anchorElement.textContent = "QBT_TR(Open link)QBT_TR[CONTEXT=RSSWidget]"; + anchorElement.target = "_blank"; + anchorElement.style = "font-weight: bold;"; + divElement.append(anchorElement); + + detailsView.append(divElement); + } + + // Place in iframe with sandbox attribute to prevent js execution + const torrentDescription = document.createRange().createContextualFragment(''); + $("rssDetailsView").append(torrentDescription); + document.getElementById("rssDescription").srcdoc = `${article.description}`; }; const updateRssFeedList = () => { From ff03eeab5bd209204ce397908df5e5233d35a3d3 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 8 Apr 2025 16:31:04 +0800 Subject: [PATCH 60/80] Show info hash in log when added a duplicate torrent Closes #22161. PR #22505. --- src/base/addtorrentmanager.cpp | 5 +++-- src/base/addtorrentmanager.h | 2 +- src/base/bittorrent/infohash.cpp | 25 +++++++++++++++++++++++++ src/base/bittorrent/infohash.h | 4 ++++ src/base/bittorrent/sessionimpl.cpp | 12 ++++++------ src/base/rss/rss_autodownloader.cpp | 1 + src/base/rss/rss_autodownloader.h | 6 +++++- src/gui/guiaddtorrentmanager.cpp | 1 - 8 files changed, 45 insertions(+), 11 deletions(-) diff --git a/src/base/addtorrentmanager.cpp b/src/base/addtorrentmanager.cpp index 14332098a..bce47d6ab 100644 --- a/src/base/addtorrentmanager.cpp +++ b/src/base/addtorrentmanager.cpp @@ -29,6 +29,7 @@ #include "addtorrentmanager.h" +#include "base/bittorrent/addtorrenterror.h" #include "base/bittorrent/infohash.h" #include "base/bittorrent/session.h" #include "base/bittorrent/torrentdescriptor.h" @@ -185,8 +186,8 @@ void AddTorrentManager::handleDuplicateTorrent(const QString &source message = tr("Trackers are merged from new source"); } - LogMsg(tr("Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3") - .arg(source, existingTorrent->name(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: \"%2\". Torrent infohash: %3. Result: %4") + .arg(source, existingTorrent->name(), existingTorrent->infoHash().toString(), message)); emit addTorrentFailed(source, {BitTorrent::AddTorrentError::DuplicateTorrent, message}); } diff --git a/src/base/addtorrentmanager.h b/src/base/addtorrentmanager.h index 0621be7a2..c0044be65 100644 --- a/src/base/addtorrentmanager.h +++ b/src/base/addtorrentmanager.h @@ -35,7 +35,6 @@ #include #include "base/applicationcomponent.h" -#include "base/bittorrent/addtorrenterror.h" #include "base/bittorrent/addtorrentparams.h" #include "base/torrentfileguard.h" @@ -45,6 +44,7 @@ namespace BitTorrent class Session; class Torrent; class TorrentDescriptor; + struct AddTorrentError; } namespace Net diff --git a/src/base/bittorrent/infohash.cpp b/src/base/bittorrent/infohash.cpp index c4b514e8c..e4df6c619 100644 --- a/src/base/bittorrent/infohash.cpp +++ b/src/base/bittorrent/infohash.cpp @@ -29,6 +29,9 @@ #include "infohash.h" #include +#include + +#include "base/global.h" const int TorrentIDTypeId = qRegisterMetaType(); @@ -86,6 +89,28 @@ BitTorrent::TorrentID BitTorrent::InfoHash::toTorrentID() const #endif } +QString BitTorrent::InfoHash::toString() const +{ + // Returns a string that is suitable for logging purpose + + QString ret; + ret.reserve(40 + 64 + 2); // v1 hash length + v2 hash length + comma + + const SHA1Hash v1Hash = v1(); + const bool v1IsValid = v1Hash.isValid(); + if (v1IsValid) + ret += v1Hash.toString(); + + if (const SHA256Hash v2Hash = v2(); v2Hash.isValid()) + { + if (v1IsValid) + ret += u", "; + ret += v2Hash.toString(); + } + + return ret; +} + BitTorrent::InfoHash::operator WrappedType() const { return m_nativeHash; diff --git a/src/base/bittorrent/infohash.h b/src/base/bittorrent/infohash.h index d870e0fd2..2153c104f 100644 --- a/src/base/bittorrent/infohash.h +++ b/src/base/bittorrent/infohash.h @@ -36,6 +36,8 @@ #include "base/digest32.h" +class QString; + using SHA1Hash = Digest32<160>; using SHA256Hash = Digest32<256>; @@ -79,6 +81,8 @@ namespace BitTorrent SHA256Hash v2() const; TorrentID toTorrentID() const; + QString toString() const; + operator WrappedType() const; private: diff --git a/src/base/bittorrent/sessionimpl.cpp b/src/base/bittorrent/sessionimpl.cpp index 9c4922c4e..6e290fa1b 100644 --- a/src/base/bittorrent/sessionimpl.cpp +++ b/src/base/bittorrent/sessionimpl.cpp @@ -2790,8 +2790,8 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr if (!isMergeTrackersEnabled()) { const QString message = tr("Merging of trackers is disabled"); - LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2") - .arg(torrent->name(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: \"%1\". Torrent infohash: %2. Result: %3") + .arg(torrent->name(), torrent->infoHash().toString(), message)); emit addTorrentFailed(infoHash, {AddTorrentError::DuplicateTorrent, message}); return false; } @@ -2800,8 +2800,8 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr if (isPrivate) { const QString message = tr("Trackers cannot be merged because it is a private torrent"); - LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2") - .arg(torrent->name(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: \"%1\". Torrent infohash: %2. Result: %3") + .arg(torrent->name(), torrent->infoHash().toString(), message)); emit addTorrentFailed(infoHash, {AddTorrentError::DuplicateTorrent, message}); return false; } @@ -2811,8 +2811,8 @@ bool SessionImpl::addTorrent_impl(const TorrentDescriptor &source, const AddTorr torrent->addUrlSeeds(source.urlSeeds()); const QString message = tr("Trackers are merged from new source"); - LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2") - .arg(torrent->name(), message)); + LogMsg(tr("Detected an attempt to add a duplicate torrent. Existing torrent: \"%1\". Torrent infohash: %2. Result: %3") + .arg(torrent->name(), torrent->infoHash().toString(), message)); emit addTorrentFailed(infoHash, {AddTorrentError::DuplicateTorrent, message}); return false; } diff --git a/src/base/rss/rss_autodownloader.cpp b/src/base/rss/rss_autodownloader.cpp index c40218457..294e3289e 100644 --- a/src/base/rss/rss_autodownloader.cpp +++ b/src/base/rss/rss_autodownloader.cpp @@ -43,6 +43,7 @@ #include "base/addtorrentmanager.h" #include "base/asyncfilestorage.h" +#include "base/bittorrent/addtorrenterror.h" #include "base/bittorrent/session.h" #include "base/bittorrent/torrentdescriptor.h" #include "base/global.h" diff --git a/src/base/rss/rss_autodownloader.h b/src/base/rss/rss_autodownloader.h index dcd752bcf..02b52231a 100644 --- a/src/base/rss/rss_autodownloader.h +++ b/src/base/rss/rss_autodownloader.h @@ -37,7 +37,6 @@ #include #include "base/applicationcomponent.h" -#include "base/bittorrent/addtorrenterror.h" #include "base/exceptions.h" #include "base/settingvalue.h" #include "base/utils/thread.h" @@ -48,6 +47,11 @@ class Application; class AsyncFileStorage; struct ProcessingJob; +namespace BitTorrent +{ + struct AddTorrentError; +} + namespace RSS { class Article; diff --git a/src/gui/guiaddtorrentmanager.cpp b/src/gui/guiaddtorrentmanager.cpp index 9bcff9863..5ed945383 100644 --- a/src/gui/guiaddtorrentmanager.cpp +++ b/src/gui/guiaddtorrentmanager.cpp @@ -33,7 +33,6 @@ #include "base/bittorrent/session.h" #include "base/bittorrent/torrentdescriptor.h" -#include "base/logger.h" #include "base/net/downloadmanager.h" #include "base/preferences.h" #include "base/torrentfileguard.h" From 795889c417be26d27ef81a0ebefdb1f8c30c098e Mon Sep 17 00:00:00 2001 From: FredBill1 <36622430+FredBill1@users.noreply.github.com> Date: Wed, 9 Apr 2025 10:36:50 +0100 Subject: [PATCH 61/80] Migrate socks.py from SocksiPy to PySocks 1.7.1 Migrate `socks.py` from SocksiPy 1.01 to [PySocks 1.7.1](https://github.com/Anorov/PySocks/blob/c2fa43cbe1091e799e248e8e4433978916791a8b/socks.py), allowing python 3+ compatibility, [details](https://github.com/qbittorrent/qBittorrent/issues/16447#issuecomment-2776894026). The content of the `socks.py` is entirely copied from the [PySocks repository](https://github.com/Anorov/PySocks/blob/c2fa43cbe1091e799e248e8e4433978916791a8b/socks.py), the only modification is the license header at the top of the file and trimming trail whitespaces. Closes #16447. PR #22507. --- src/searchengine/nova3/socks.py | 1112 ++++++++++++++++++++++--------- 1 file changed, 800 insertions(+), 312 deletions(-) diff --git a/src/searchengine/nova3/socks.py b/src/searchengine/nova3/socks.py index 889b88350..88e6a8f8e 100644 --- a/src/searchengine/nova3/socks.py +++ b/src/searchengine/nova3/socks.py @@ -1,8 +1,7 @@ -"""SocksiPy - Python SOCKS module. -Version 1.01 +"""PySocks - A SOCKS proxy client and wrapper for Python. +Version 1.7.1 Copyright 2006 Dan-Haim. All rights reserved. -Various fixes by Christophe DUMEZ - 2010 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: @@ -31,361 +30,850 @@ for tunneling connections through SOCKS proxies. """ +from base64 import b64encode +try: + from collections.abc import Callable +except ImportError: + from collections import Callable +from errno import EOPNOTSUPP, EINVAL, EAGAIN +import functools +from io import BytesIO +import logging +import os +from os import SEEK_CUR import socket import struct +import sys -PROXY_TYPE_SOCKS4 = 1 -PROXY_TYPE_SOCKS5 = 2 -PROXY_TYPE_HTTP = 3 +__version__ = "1.7.1" -_defaultproxy = None -_orgsocket = socket.socket -class ProxyError(Exception): - def __init__(self, value): - self.value = value +if os.name == "nt" and sys.version_info < (3, 0): + try: + import win_inet_pton + except ImportError: + raise ImportError( + "To run PySocks on Windows you must install win_inet_pton") + +log = logging.getLogger(__name__) + +PROXY_TYPE_SOCKS4 = SOCKS4 = 1 +PROXY_TYPE_SOCKS5 = SOCKS5 = 2 +PROXY_TYPE_HTTP = HTTP = 3 + +PROXY_TYPES = {"SOCKS4": SOCKS4, "SOCKS5": SOCKS5, "HTTP": HTTP} +PRINTABLE_PROXY_TYPES = dict(zip(PROXY_TYPES.values(), PROXY_TYPES.keys())) + +_orgsocket = _orig_socket = socket.socket + + +def set_self_blocking(function): + + @functools.wraps(function) + def wrapper(*args, **kwargs): + self = args[0] + try: + _is_blocking = self.gettimeout() + if _is_blocking == 0: + self.setblocking(True) + return function(*args, **kwargs) + except Exception as e: + raise + finally: + # set orgin blocking + if _is_blocking == 0: + self.setblocking(False) + return wrapper + + +class ProxyError(IOError): + """Socket_err contains original socket.error exception.""" + def __init__(self, msg, socket_err=None): + self.msg = msg + self.socket_err = socket_err + + if socket_err: + self.msg += ": {}".format(socket_err) + def __str__(self): - return repr(self.value) + return self.msg + class GeneralProxyError(ProxyError): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) + pass -class Socks5AuthError(ProxyError): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) -class Socks5Error(ProxyError): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) +class ProxyConnectionError(ProxyError): + pass + + +class SOCKS5AuthError(ProxyError): + pass + + +class SOCKS5Error(ProxyError): + pass + + +class SOCKS4Error(ProxyError): + pass -class Socks4Error(ProxyError): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) class HTTPError(ProxyError): - def __init__(self, value): - self.value = value - def __str__(self): - return repr(self.value) + pass -_generalerrors = ("success", - "invalid data", - "not connected", - "not available", - "bad proxy type", - "bad input") +SOCKS4_ERRORS = { + 0x5B: "Request rejected or failed", + 0x5C: ("Request rejected because SOCKS server cannot connect to identd on" + " the client"), + 0x5D: ("Request rejected because the client program and identd report" + " different user-ids") +} -_socks5errors = ("succeeded", - "general SOCKS server failure", - "connection not allowed by ruleset", - "Network unreachable", - "Host unreachable", - "Connection refused", - "TTL expired", - "Command not supported", - "Address type not supported", - "Unknown error") +SOCKS5_ERRORS = { + 0x01: "General SOCKS server failure", + 0x02: "Connection not allowed by ruleset", + 0x03: "Network unreachable", + 0x04: "Host unreachable", + 0x05: "Connection refused", + 0x06: "TTL expired", + 0x07: "Command not supported, or protocol error", + 0x08: "Address type not supported" +} -_socks5autherrors = ("succeeded", - "authentication is required", - "all offered authentication methods were rejected", - "unknown username or invalid password", - "unknown error") +DEFAULT_PORTS = {SOCKS4: 1080, SOCKS5: 1080, HTTP: 8080} -_socks4errors = ("request granted", - "request rejected or failed", - "request rejected because SOCKS server cannot connect to identd on the client", - "request rejected because the client program and identd report different user-ids", - "unknown error") -def setdefaultproxy(proxytype=None,addr=None,port=None,rdns=True,username=None,password=None): - """setdefaultproxy(proxytype, addr[, port[, rdns[, username[, password]]]]) - Sets a default proxy which all further socksocket objects will use, - unless explicitly changed. +def set_default_proxy(proxy_type=None, addr=None, port=None, rdns=True, + username=None, password=None): + """Sets a default proxy. + + All further socksocket objects will use the default unless explicitly + changed. All parameters are as for socket.set_proxy().""" + socksocket.default_proxy = (proxy_type, addr, port, rdns, + username.encode() if username else None, + password.encode() if password else None) + + +def setdefaultproxy(*args, **kwargs): + if "proxytype" in kwargs: + kwargs["proxy_type"] = kwargs.pop("proxytype") + return set_default_proxy(*args, **kwargs) + + +def get_default_proxy(): + """Returns the default proxy, set by set_default_proxy.""" + return socksocket.default_proxy + +getdefaultproxy = get_default_proxy + + +def wrap_module(module): + """Attempts to replace a module's socket library with a SOCKS socket. + + Must set a default proxy using set_default_proxy(...) first. This will + only work on modules that import socket directly into the namespace; + most of the Python Standard Library falls into this category.""" + if socksocket.default_proxy: + module.socket.socket = socksocket + else: + raise GeneralProxyError("No default proxy specified") + +wrapmodule = wrap_module + + +def create_connection(dest_pair, + timeout=None, source_address=None, + proxy_type=None, proxy_addr=None, + proxy_port=None, proxy_rdns=True, + proxy_username=None, proxy_password=None, + socket_options=None): + """create_connection(dest_pair, *[, timeout], **proxy_args) -> socket object + + Like socket.create_connection(), but connects to proxy + before returning the socket object. + + dest_pair - 2-tuple of (IP/hostname, port). + **proxy_args - Same args passed to socksocket.set_proxy() if present. + timeout - Optional socket timeout value, in seconds. + source_address - tuple (host, port) for the socket to bind to as its source + address before connecting (only for compatibility) """ - global _defaultproxy - _defaultproxy = (proxytype,addr,port,rdns,username,password) + # Remove IPv6 brackets on the remote address and proxy address. + remote_host, remote_port = dest_pair + if remote_host.startswith("["): + remote_host = remote_host.strip("[]") + if proxy_addr and proxy_addr.startswith("["): + proxy_addr = proxy_addr.strip("[]") -class socksocket(socket.socket): + err = None + + # Allow the SOCKS proxy to be on IPv4 or IPv6 addresses. + for r in socket.getaddrinfo(proxy_addr, proxy_port, 0, socket.SOCK_STREAM): + family, socket_type, proto, canonname, sa = r + sock = None + try: + sock = socksocket(family, socket_type, proto) + + if socket_options: + for opt in socket_options: + sock.setsockopt(*opt) + + if isinstance(timeout, (int, float)): + sock.settimeout(timeout) + + if proxy_type: + sock.set_proxy(proxy_type, proxy_addr, proxy_port, proxy_rdns, + proxy_username, proxy_password) + if source_address: + sock.bind(source_address) + + sock.connect((remote_host, remote_port)) + return sock + + except (socket.error, ProxyError) as e: + err = e + if sock: + sock.close() + sock = None + + if err: + raise err + + raise socket.error("gai returned empty list.") + + +class _BaseSocket(socket.socket): + """Allows Python 2 delegated methods such as send() to be overridden.""" + def __init__(self, *pos, **kw): + _orig_socket.__init__(self, *pos, **kw) + + self._savedmethods = dict() + for name in self._savenames: + self._savedmethods[name] = getattr(self, name) + delattr(self, name) # Allows normal overriding mechanism to work + + _savenames = list() + + +def _makemethod(name): + return lambda self, *pos, **kw: self._savedmethods[name](*pos, **kw) +for name in ("sendto", "send", "recvfrom", "recv"): + method = getattr(_BaseSocket, name, None) + + # Determine if the method is not defined the usual way + # as a function in the class. + # Python 2 uses __slots__, so there are descriptors for each method, + # but they are not functions. + if not isinstance(method, Callable): + _BaseSocket._savenames.append(name) + setattr(_BaseSocket, name, _makemethod(name)) + + +class socksocket(_BaseSocket): """socksocket([family[, type[, proto]]]) -> socket object Open a SOCKS enabled socket. The parameters are the same as those of the standard socket init. In order for SOCKS to work, - you must specify family=AF_INET, type=SOCK_STREAM and proto=0. + you must specify family=AF_INET and proto=0. + The "type" argument must be either SOCK_STREAM or SOCK_DGRAM. """ - def __init__(self, family=socket.AF_INET, type=socket.SOCK_STREAM, proto=0, _sock=None): - _orgsocket.__init__(self,family,type,proto,_sock) - if _defaultproxy != None: - self.__proxy = _defaultproxy - else: - self.__proxy = (None, None, None, None, None, None) - self.__proxysockname = None - self.__proxypeername = None + default_proxy = None - def __recvall(self, bytes): - """__recvall(bytes) -> data - Receive EXACTLY the number of bytes requested from the socket. - Blocks until the required number of bytes have been received. - """ - data = "" - while len(data) < bytes: - d = self.recv(bytes-len(data)) + def __init__(self, family=socket.AF_INET, type=socket.SOCK_STREAM, + proto=0, *args, **kwargs): + if type not in (socket.SOCK_STREAM, socket.SOCK_DGRAM): + msg = "Socket type must be stream or datagram, not {!r}" + raise ValueError(msg.format(type)) + + super(socksocket, self).__init__(family, type, proto, *args, **kwargs) + self._proxyconn = None # TCP connection to keep UDP relay alive + + if self.default_proxy: + self.proxy = self.default_proxy + else: + self.proxy = (None, None, None, None, None, None) + self.proxy_sockname = None + self.proxy_peername = None + + self._timeout = None + + def _readall(self, file, count): + """Receive EXACTLY the number of bytes requested from the file object. + + Blocks until the required number of bytes have been received.""" + data = b"" + while len(data) < count: + d = file.read(count - len(data)) if not d: - raise GeneralProxyError("connection closed unexpectedly") - data = data + d + raise GeneralProxyError("Connection closed unexpectedly") + data += d return data - def setproxy(self,proxytype=None,addr=None,port=None,rdns=True,username=None,password=None): - """setproxy(proxytype, addr[, port[, rdns[, username[, password]]]]) - Sets the proxy to be used. - proxytype - The type of the proxy to be used. Three types - are supported: PROXY_TYPE_SOCKS4 (including socks4a), - PROXY_TYPE_SOCKS5 and PROXY_TYPE_HTTP - addr - The address of the server (IP or DNS). - port - The port of the server. Defaults to 1080 for SOCKS - servers and 8080 for HTTP proxy servers. - rdns - Should DNS queries be performed on the remote side - (rather than the local side). The default is True. - Note: This has no effect with SOCKS4 servers. - username - Username to authenticate with to the server. - The default is no authentication. - password - Password to authenticate with to the server. - Only relevant when username is also provided. - """ - self.__proxy = (proxytype,addr,port,rdns,username,password) - - def __negotiatesocks5(self,destaddr,destport): - """__negotiatesocks5(self,destaddr,destport) - Negotiates a connection through a SOCKS5 server. - """ - # First we'll send the authentication packages we support. - if (self.__proxy[4]!=None) and (self.__proxy[5]!=None): - # The username/password details were supplied to the - # setproxy method so we support the USERNAME/PASSWORD - # authentication (in addition to the standard none). - self.sendall("\x05\x02\x00\x02") - else: - # No username/password were entered, therefore we - # only support connections with no authentication. - self.sendall("\x05\x01\x00") - # We'll receive the server's response to determine which - # method was selected - chosenauth = self.__recvall(2) - if chosenauth[0] != "\x05": - self.close() - raise GeneralProxyError((1,_generalerrors[1])) - # Check the chosen authentication method - if chosenauth[1] == "\x00": - # No authentication is required - pass - elif chosenauth[1] == "\x02": - # Okay, we need to perform a basic username/password - # authentication. - self.sendall("\x01" + chr(len(self.__proxy[4])) + self.__proxy[4] + chr(len(self.__proxy[5])) + self.__proxy[5]) - authstat = self.__recvall(2) - if authstat[0] != "\x01": - # Bad response - self.close() - raise GeneralProxyError((1,_generalerrors[1])) - if authstat[1] != "\x00": - # Authentication failed - self.close() - raise Socks5AuthError((3,_socks5autherrors[3])) - # Authentication succeeded - else: - # Reaching here is always bad - self.close() - if chosenauth[1] == "\xFF": - raise Socks5AuthError((2,_socks5autherrors[2])) - else: - raise GeneralProxyError((1,_generalerrors[1])) - # Now we can request the actual connection - req = "\x05\x01\x00" - # If the given destination address is an IP address, we'll - # use the IPv4 address request even if remote resolving was specified. + def settimeout(self, timeout): + self._timeout = timeout try: - ipaddr = socket.inet_aton(destaddr) - req = req + "\x01" + ipaddr + # test if we're connected, if so apply timeout + peer = self.get_proxy_peername() + super(socksocket, self).settimeout(self._timeout) except socket.error: - # Well it's not an IP number, so it's probably a DNS name. - if self.__proxy[3]==True: - # Resolve remotely - ipaddr = None - req = req + "\x03" + chr(len(destaddr)) + destaddr - else: - # Resolve locally - ipaddr = socket.inet_aton(socket.gethostbyname(destaddr)) - req = req + "\x01" + ipaddr - req = req + struct.pack(">H",destport) - self.sendall(req) - # Get the response - resp = self.__recvall(4) - if resp[0] != "\x05": - self.close() - raise GeneralProxyError((1,_generalerrors[1])) - elif resp[1] != "\x00": - # Connection failed - self.close() - if ord(resp[1])<=8: - raise Socks5Error((ord(resp[1]),_generalerrors[ord(resp[1])])) - else: - raise Socks5Error((9,_generalerrors[9])) - # Get the bound address/port - elif resp[3] == "\x01": - boundaddr = self.__recvall(4) - elif resp[3] == "\x03": - resp = resp + self.recv(1) - boundaddr = self.__recvall(ord(resp[4])) - else: - self.close() - raise GeneralProxyError((1,_generalerrors[1])) - boundport = struct.unpack(">H",self.__recvall(2))[0] - self.__proxysockname = (boundaddr,boundport) - if ipaddr != None: - self.__proxypeername = (socket.inet_ntoa(ipaddr),destport) - else: - self.__proxypeername = (destaddr,destport) + pass - def getproxysockname(self): - """getsockname() -> address info - Returns the bound IP address and port number at the proxy. + def gettimeout(self): + return self._timeout + + def setblocking(self, v): + if v: + self.settimeout(None) + else: + self.settimeout(0.0) + + def set_proxy(self, proxy_type=None, addr=None, port=None, rdns=True, + username=None, password=None): + """ Sets the proxy to be used. + + proxy_type - The type of the proxy to be used. Three types + are supported: PROXY_TYPE_SOCKS4 (including socks4a), + PROXY_TYPE_SOCKS5 and PROXY_TYPE_HTTP + addr - The address of the server (IP or DNS). + port - The port of the server. Defaults to 1080 for SOCKS + servers and 8080 for HTTP proxy servers. + rdns - Should DNS queries be performed on the remote side + (rather than the local side). The default is True. + Note: This has no effect with SOCKS4 servers. + username - Username to authenticate with to the server. + The default is no authentication. + password - Password to authenticate with to the server. + Only relevant when username is also provided.""" + self.proxy = (proxy_type, addr, port, rdns, + username.encode() if username else None, + password.encode() if password else None) + + def setproxy(self, *args, **kwargs): + if "proxytype" in kwargs: + kwargs["proxy_type"] = kwargs.pop("proxytype") + return self.set_proxy(*args, **kwargs) + + def bind(self, *pos, **kw): + """Implements proxy connection for UDP sockets. + + Happens during the bind() phase.""" + (proxy_type, proxy_addr, proxy_port, rdns, username, + password) = self.proxy + if not proxy_type or self.type != socket.SOCK_DGRAM: + return _orig_socket.bind(self, *pos, **kw) + + if self._proxyconn: + raise socket.error(EINVAL, "Socket already bound to an address") + if proxy_type != SOCKS5: + msg = "UDP only supported by SOCKS5 proxy type" + raise socket.error(EOPNOTSUPP, msg) + super(socksocket, self).bind(*pos, **kw) + + # Need to specify actual local port because + # some relays drop packets if a port of zero is specified. + # Avoid specifying host address in case of NAT though. + _, port = self.getsockname() + dst = ("0", port) + + self._proxyconn = _orig_socket() + proxy = self._proxy_addr() + self._proxyconn.connect(proxy) + + UDP_ASSOCIATE = b"\x03" + _, relay = self._SOCKS5_request(self._proxyconn, UDP_ASSOCIATE, dst) + + # The relay is most likely on the same host as the SOCKS proxy, + # but some proxies return a private IP address (10.x.y.z) + host, _ = proxy + _, port = relay + super(socksocket, self).connect((host, port)) + super(socksocket, self).settimeout(self._timeout) + self.proxy_sockname = ("0.0.0.0", 0) # Unknown + + def sendto(self, bytes, *args, **kwargs): + if self.type != socket.SOCK_DGRAM: + return super(socksocket, self).sendto(bytes, *args, **kwargs) + if not self._proxyconn: + self.bind(("", 0)) + + address = args[-1] + flags = args[:-1] + + header = BytesIO() + RSV = b"\x00\x00" + header.write(RSV) + STANDALONE = b"\x00" + header.write(STANDALONE) + self._write_SOCKS5_address(address, header) + + sent = super(socksocket, self).send(header.getvalue() + bytes, *flags, + **kwargs) + return sent - header.tell() + + def send(self, bytes, flags=0, **kwargs): + if self.type == socket.SOCK_DGRAM: + return self.sendto(bytes, flags, self.proxy_peername, **kwargs) + else: + return super(socksocket, self).send(bytes, flags, **kwargs) + + def recvfrom(self, bufsize, flags=0): + if self.type != socket.SOCK_DGRAM: + return super(socksocket, self).recvfrom(bufsize, flags) + if not self._proxyconn: + self.bind(("", 0)) + + buf = BytesIO(super(socksocket, self).recv(bufsize + 1024, flags)) + buf.seek(2, SEEK_CUR) + frag = buf.read(1) + if ord(frag): + raise NotImplementedError("Received UDP packet fragment") + fromhost, fromport = self._read_SOCKS5_address(buf) + + if self.proxy_peername: + peerhost, peerport = self.proxy_peername + if fromhost != peerhost or peerport not in (0, fromport): + raise socket.error(EAGAIN, "Packet filtered") + + return (buf.read(bufsize), (fromhost, fromport)) + + def recv(self, *pos, **kw): + bytes, _ = self.recvfrom(*pos, **kw) + return bytes + + def close(self): + if self._proxyconn: + self._proxyconn.close() + return super(socksocket, self).close() + + def get_proxy_sockname(self): + """Returns the bound IP address and port number at the proxy.""" + return self.proxy_sockname + + getproxysockname = get_proxy_sockname + + def get_proxy_peername(self): """ - return self.__proxysockname - - def getproxypeername(self): - """getproxypeername() -> address info Returns the IP and port number of the proxy. """ - return _orgsocket.getpeername(self) + return self.getpeername() - def getpeername(self): - """getpeername() -> address info - Returns the IP address and port number of the destination - machine (note: getproxypeername returns the proxy) - """ - return self.__proxypeername + getproxypeername = get_proxy_peername - def __negotiatesocks4(self,destaddr,destport): - """__negotiatesocks4(self,destaddr,destport) - Negotiates a connection through a SOCKS4 server. + def get_peername(self): + """Returns the IP address and port number of the destination machine. + + Note: get_proxy_peername returns the proxy.""" + return self.proxy_peername + + getpeername = get_peername + + def _negotiate_SOCKS5(self, *dest_addr): + """Negotiates a stream connection through a SOCKS5 server.""" + CONNECT = b"\x01" + self.proxy_peername, self.proxy_sockname = self._SOCKS5_request( + self, CONNECT, dest_addr) + + def _SOCKS5_request(self, conn, cmd, dst): """ - # Check if the destination address provided is an IP address - rmtrslv = False + Send SOCKS5 request with given command (CMD field) and + address (DST field). Returns resolved DST address that was used. + """ + proxy_type, addr, port, rdns, username, password = self.proxy + + writer = conn.makefile("wb") + reader = conn.makefile("rb", 0) # buffering=0 renamed in Python 3 try: - ipaddr = socket.inet_aton(destaddr) - except socket.error: - # It's a DNS name. Check where it should be resolved. - if self.__proxy[3]==True: - ipaddr = "\x00\x00\x00\x01" - rmtrslv = True + # First we'll send the authentication packages we support. + if username and password: + # The username/password details were supplied to the + # set_proxy method so we support the USERNAME/PASSWORD + # authentication (in addition to the standard none). + writer.write(b"\x05\x02\x00\x02") else: - ipaddr = socket.inet_aton(socket.gethostbyname(destaddr)) - # Construct the request packet - req = "\x04\x01" + struct.pack(">H",destport) + ipaddr - # The username parameter is considered userid for SOCKS4 - if self.__proxy[4] != None: - req = req + self.__proxy[4] - req = req + "\x00" - # DNS name if remote resolving is required - # NOTE: This is actually an extension to the SOCKS4 protocol - # called SOCKS4A and may not be supported in all cases. - if rmtrslv==True: - req = req + destaddr + "\x00" - self.sendall(req) - # Get the response from the server - resp = self.__recvall(8) - if resp[0] != "\x00": - # Bad data - self.close() - raise GeneralProxyError((1,_generalerrors[1])) - if resp[1] != "\x5A": - # Server returned an error - self.close() - if ord(resp[1]) in (91,92,93): - self.close() - raise Socks4Error((ord(resp[1]),_socks4errors[ord(resp[1])-90])) - else: - raise Socks4Error((94,_socks4errors[4])) - # Get the bound address/port - self.__proxysockname = (socket.inet_ntoa(resp[4:]),struct.unpack(">H",resp[2:4])[0]) - if rmtrslv != None: - self.__proxypeername = (socket.inet_ntoa(ipaddr),destport) - else: - self.__proxypeername = (destaddr,destport) + # No username/password were entered, therefore we + # only support connections with no authentication. + writer.write(b"\x05\x01\x00") - def __negotiatehttp(self,destaddr,destport): - """__negotiatehttp(self,destaddr,destport) - Negotiates a connection through an HTTP server. + # We'll receive the server's response to determine which + # method was selected + writer.flush() + chosen_auth = self._readall(reader, 2) + + if chosen_auth[0:1] != b"\x05": + # Note: string[i:i+1] is used because indexing of a bytestring + # via bytestring[i] yields an integer in Python 3 + raise GeneralProxyError( + "SOCKS5 proxy server sent invalid data") + + # Check the chosen authentication method + + if chosen_auth[1:2] == b"\x02": + # Okay, we need to perform a basic username/password + # authentication. + if not (username and password): + # Although we said we don't support authentication, the + # server may still request basic username/password + # authentication + raise SOCKS5AuthError("No username/password supplied. " + "Server requested username/password" + " authentication") + + writer.write(b"\x01" + chr(len(username)).encode() + + username + + chr(len(password)).encode() + + password) + writer.flush() + auth_status = self._readall(reader, 2) + if auth_status[0:1] != b"\x01": + # Bad response + raise GeneralProxyError( + "SOCKS5 proxy server sent invalid data") + if auth_status[1:2] != b"\x00": + # Authentication failed + raise SOCKS5AuthError("SOCKS5 authentication failed") + + # Otherwise, authentication succeeded + + # No authentication is required if 0x00 + elif chosen_auth[1:2] != b"\x00": + # Reaching here is always bad + if chosen_auth[1:2] == b"\xFF": + raise SOCKS5AuthError( + "All offered SOCKS5 authentication methods were" + " rejected") + else: + raise GeneralProxyError( + "SOCKS5 proxy server sent invalid data") + + # Now we can request the actual connection + writer.write(b"\x05" + cmd + b"\x00") + resolved = self._write_SOCKS5_address(dst, writer) + writer.flush() + + # Get the response + resp = self._readall(reader, 3) + if resp[0:1] != b"\x05": + raise GeneralProxyError( + "SOCKS5 proxy server sent invalid data") + + status = ord(resp[1:2]) + if status != 0x00: + # Connection failed: server returned an error + error = SOCKS5_ERRORS.get(status, "Unknown error") + raise SOCKS5Error("{:#04x}: {}".format(status, error)) + + # Get the bound address/port + bnd = self._read_SOCKS5_address(reader) + + super(socksocket, self).settimeout(self._timeout) + return (resolved, bnd) + finally: + reader.close() + writer.close() + + def _write_SOCKS5_address(self, addr, file): """ + Return the host and port packed for the SOCKS5 protocol, + and the resolved address as a tuple object. + """ + host, port = addr + proxy_type, _, _, rdns, username, password = self.proxy + family_to_byte = {socket.AF_INET: b"\x01", socket.AF_INET6: b"\x04"} + + # If the given destination address is an IP address, we'll + # use the IP address request even if remote resolving was specified. + # Detect whether the address is IPv4/6 directly. + for family in (socket.AF_INET, socket.AF_INET6): + try: + addr_bytes = socket.inet_pton(family, host) + file.write(family_to_byte[family] + addr_bytes) + host = socket.inet_ntop(family, addr_bytes) + file.write(struct.pack(">H", port)) + return host, port + except socket.error: + continue + + # Well it's not an IP number, so it's probably a DNS name. + if rdns: + # Resolve remotely + host_bytes = host.encode("idna") + file.write(b"\x03" + chr(len(host_bytes)).encode() + host_bytes) + else: + # Resolve locally + addresses = socket.getaddrinfo(host, port, socket.AF_UNSPEC, + socket.SOCK_STREAM, + socket.IPPROTO_TCP, + socket.AI_ADDRCONFIG) + # We can't really work out what IP is reachable, so just pick the + # first. + target_addr = addresses[0] + family = target_addr[0] + host = target_addr[4][0] + + addr_bytes = socket.inet_pton(family, host) + file.write(family_to_byte[family] + addr_bytes) + host = socket.inet_ntop(family, addr_bytes) + file.write(struct.pack(">H", port)) + return host, port + + def _read_SOCKS5_address(self, file): + atyp = self._readall(file, 1) + if atyp == b"\x01": + addr = socket.inet_ntoa(self._readall(file, 4)) + elif atyp == b"\x03": + length = self._readall(file, 1) + addr = self._readall(file, ord(length)) + elif atyp == b"\x04": + addr = socket.inet_ntop(socket.AF_INET6, self._readall(file, 16)) + else: + raise GeneralProxyError("SOCKS5 proxy server sent invalid data") + + port = struct.unpack(">H", self._readall(file, 2))[0] + return addr, port + + def _negotiate_SOCKS4(self, dest_addr, dest_port): + """Negotiates a connection through a SOCKS4 server.""" + proxy_type, addr, port, rdns, username, password = self.proxy + + writer = self.makefile("wb") + reader = self.makefile("rb", 0) # buffering=0 renamed in Python 3 + try: + # Check if the destination address provided is an IP address + remote_resolve = False + try: + addr_bytes = socket.inet_aton(dest_addr) + except socket.error: + # It's a DNS name. Check where it should be resolved. + if rdns: + addr_bytes = b"\x00\x00\x00\x01" + remote_resolve = True + else: + addr_bytes = socket.inet_aton( + socket.gethostbyname(dest_addr)) + + # Construct the request packet + writer.write(struct.pack(">BBH", 0x04, 0x01, dest_port)) + writer.write(addr_bytes) + + # The username parameter is considered userid for SOCKS4 + if username: + writer.write(username) + writer.write(b"\x00") + + # DNS name if remote resolving is required + # NOTE: This is actually an extension to the SOCKS4 protocol + # called SOCKS4A and may not be supported in all cases. + if remote_resolve: + writer.write(dest_addr.encode("idna") + b"\x00") + writer.flush() + + # Get the response from the server + resp = self._readall(reader, 8) + if resp[0:1] != b"\x00": + # Bad data + raise GeneralProxyError( + "SOCKS4 proxy server sent invalid data") + + status = ord(resp[1:2]) + if status != 0x5A: + # Connection failed: server returned an error + error = SOCKS4_ERRORS.get(status, "Unknown error") + raise SOCKS4Error("{:#04x}: {}".format(status, error)) + + # Get the bound address/port + self.proxy_sockname = (socket.inet_ntoa(resp[4:]), + struct.unpack(">H", resp[2:4])[0]) + if remote_resolve: + self.proxy_peername = socket.inet_ntoa(addr_bytes), dest_port + else: + self.proxy_peername = dest_addr, dest_port + finally: + reader.close() + writer.close() + + def _negotiate_HTTP(self, dest_addr, dest_port): + """Negotiates a connection through an HTTP server. + + NOTE: This currently only supports HTTP CONNECT-style proxies.""" + proxy_type, addr, port, rdns, username, password = self.proxy + # If we need to resolve locally, we do this now - if self.__proxy[3] == False: - addr = socket.gethostbyname(destaddr) - else: - addr = destaddr - self.sendall("CONNECT " + addr + ":" + str(destport) + " HTTP/1.1\r\n" + "Host: " + destaddr + "\r\n\r\n") - # We read the response until we get the string "\r\n\r\n" - resp = self.recv(1) - while resp.find("\r\n\r\n")==-1: - resp = resp + self.recv(1) - # We just need the first line to check if the connection - # was successful - statusline = resp.splitlines()[0].split(" ",2) - if statusline[0] not in ("HTTP/1.0","HTTP/1.1"): - self.close() - raise GeneralProxyError((1,_generalerrors[1])) - try: - statuscode = int(statusline[1]) - except ValueError: - self.close() - raise GeneralProxyError((1,_generalerrors[1])) - if statuscode != 200: - self.close() - raise HTTPError((statuscode,statusline[2])) - self.__proxysockname = ("0.0.0.0",0) - self.__proxypeername = (addr,destport) + addr = dest_addr if rdns else socket.gethostbyname(dest_addr) - def connect(self,destpair): - """connect(self,despair) - Connects to the specified destination through a proxy. - destpar - A tuple of the IP/DNS address and the port number. - (identical to socket's connect). - To select the proxy server use setproxy(). + http_headers = [ + (b"CONNECT " + addr.encode("idna") + b":" + + str(dest_port).encode() + b" HTTP/1.1"), + b"Host: " + dest_addr.encode("idna") + ] + + if username and password: + http_headers.append(b"Proxy-Authorization: basic " + + b64encode(username + b":" + password)) + + http_headers.append(b"\r\n") + + self.sendall(b"\r\n".join(http_headers)) + + # We just need the first line to check if the connection was successful + fobj = self.makefile() + status_line = fobj.readline() + fobj.close() + + if not status_line: + raise GeneralProxyError("Connection closed unexpectedly") + + try: + proto, status_code, status_msg = status_line.split(" ", 2) + except ValueError: + raise GeneralProxyError("HTTP proxy server sent invalid response") + + if not proto.startswith("HTTP/"): + raise GeneralProxyError( + "Proxy server does not appear to be an HTTP proxy") + + try: + status_code = int(status_code) + except ValueError: + raise HTTPError( + "HTTP proxy server did not return a valid HTTP status") + + if status_code != 200: + error = "{}: {}".format(status_code, status_msg) + if status_code in (400, 403, 405): + # It's likely that the HTTP proxy server does not support the + # CONNECT tunneling method + error += ("\n[*] Note: The HTTP proxy server may not be" + " supported by PySocks (must be a CONNECT tunnel" + " proxy)") + raise HTTPError(error) + + self.proxy_sockname = (b"0.0.0.0", 0) + self.proxy_peername = addr, dest_port + + _proxy_negotiators = { + SOCKS4: _negotiate_SOCKS4, + SOCKS5: _negotiate_SOCKS5, + HTTP: _negotiate_HTTP + } + + @set_self_blocking + def connect(self, dest_pair, catch_errors=None): """ + Connects to the specified destination through a proxy. + Uses the same API as socket's connect(). + To select the proxy server, use set_proxy(). + + dest_pair - 2-tuple of (IP/hostname, port). + """ + if len(dest_pair) != 2 or dest_pair[0].startswith("["): + # Probably IPv6, not supported -- raise an error, and hope + # Happy Eyeballs (RFC6555) makes sure at least the IPv4 + # connection works... + raise socket.error("PySocks doesn't support IPv6: %s" + % str(dest_pair)) + + dest_addr, dest_port = dest_pair + + if self.type == socket.SOCK_DGRAM: + if not self._proxyconn: + self.bind(("", 0)) + dest_addr = socket.gethostbyname(dest_addr) + + # If the host address is INADDR_ANY or similar, reset the peer + # address so that packets are received from any peer + if dest_addr == "0.0.0.0" and not dest_port: + self.proxy_peername = None + else: + self.proxy_peername = (dest_addr, dest_port) + return + + (proxy_type, proxy_addr, proxy_port, rdns, username, + password) = self.proxy + # Do a minimal input check first - if (type(destpair) in (list,tuple)==False) or (len(destpair)<2) or (type(destpair[0])!=str) or (type(destpair[1])!=int): - raise GeneralProxyError((5,_generalerrors[5])) - if self.__proxy[0] == PROXY_TYPE_SOCKS5: - if self.__proxy[2] != None: - portnum = self.__proxy[2] + if (not isinstance(dest_pair, (list, tuple)) + or len(dest_pair) != 2 + or not dest_addr + or not isinstance(dest_port, int)): + # Inputs failed, raise an error + raise GeneralProxyError( + "Invalid destination-connection (host, port) pair") + + # We set the timeout here so that we don't hang in connection or during + # negotiation. + super(socksocket, self).settimeout(self._timeout) + + if proxy_type is None: + # Treat like regular socket object + self.proxy_peername = dest_pair + super(socksocket, self).settimeout(self._timeout) + super(socksocket, self).connect((dest_addr, dest_port)) + return + + proxy_addr = self._proxy_addr() + + try: + # Initial connection to proxy server. + super(socksocket, self).connect(proxy_addr) + + except socket.error as error: + # Error while connecting to proxy + self.close() + if not catch_errors: + proxy_addr, proxy_port = proxy_addr + proxy_server = "{}:{}".format(proxy_addr, proxy_port) + printable_type = PRINTABLE_PROXY_TYPES[proxy_type] + + msg = "Error connecting to {} proxy {}".format(printable_type, + proxy_server) + log.debug("%s due to: %s", msg, error) + raise ProxyConnectionError(msg, error) else: - portnum = 1080 - _orgsocket.connect(self,(self.__proxy[1],portnum)) - self.__negotiatesocks5(destpair[0],destpair[1]) - elif self.__proxy[0] == PROXY_TYPE_SOCKS4: - if self.__proxy[2] != None: - portnum = self.__proxy[2] - else: - portnum = 1080 - _orgsocket.connect(self,(self.__proxy[1],portnum)) - self.__negotiatesocks4(destpair[0],destpair[1]) - elif self.__proxy[0] == PROXY_TYPE_HTTP: - if self.__proxy[2] != None: - portnum = self.__proxy[2] - else: - portnum = 8080 - _orgsocket.connect(self,(self.__proxy[1],portnum)) - self.__negotiatehttp(destpair[0],destpair[1]) - elif self.__proxy[0] == None: - _orgsocket.connect(self,(destpair[0],destpair[1])) + raise error + else: - raise GeneralProxyError((4,_generalerrors[4])) + # Connected to proxy server, now negotiate + try: + # Calls negotiate_{SOCKS4, SOCKS5, HTTP} + negotiate = self._proxy_negotiators[proxy_type] + negotiate(self, dest_addr, dest_port) + except socket.error as error: + if not catch_errors: + # Wrap socket errors + self.close() + raise GeneralProxyError("Socket error", error) + else: + raise error + except ProxyError: + # Protocol error while negotiating with proxy + self.close() + raise + + @set_self_blocking + def connect_ex(self, dest_pair): + """ https://docs.python.org/3/library/socket.html#socket.socket.connect_ex + Like connect(address), but return an error indicator instead of raising an exception for errors returned by the C-level connect() call (other problems, such as "host not found" can still raise exceptions). + """ + try: + self.connect(dest_pair, catch_errors=True) + return 0 + except OSError as e: + # If the error is numeric (socket errors are numeric), then return number as + # connect_ex expects. Otherwise raise the error again (socket timeout for example) + if e.errno: + return e.errno + else: + raise + + def _proxy_addr(self): + """ + Return proxy address to connect to as tuple object + """ + (proxy_type, proxy_addr, proxy_port, rdns, username, + password) = self.proxy + proxy_port = proxy_port or DEFAULT_PORTS.get(proxy_type) + if not proxy_port: + raise GeneralProxyError("Invalid proxy type") + return proxy_addr, proxy_port From 9331580e86fa005aa433d5400476fdd6cf19bbb1 Mon Sep 17 00:00:00 2001 From: luzpaz Date: Sat, 12 Apr 2025 05:46:48 -0400 Subject: [PATCH 62/80] Fix grammar ref: https://github.com/qbittorrent/qBittorrent/pull/19333#discussion_r1793252710 PR #22525. --- src/gui/powermanagement/inhibitordbus.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/powermanagement/inhibitordbus.cpp b/src/gui/powermanagement/inhibitordbus.cpp index 4e8d716ab..1eee96194 100644 --- a/src/gui/powermanagement/inhibitordbus.cpp +++ b/src/gui/powermanagement/inhibitordbus.cpp @@ -72,7 +72,7 @@ InhibitorDBus::InhibitorDBus(QObject *parent) else { m_state = Error; - LogMsg(tr("Power management error. Did not found suitable D-Bus interface."), Log::WARNING); + LogMsg(tr("Power management error. Did not find a suitable D-Bus interface."), Log::WARNING); } } From 5465605377a5fcc76fd46e0b40988f6ee4cae03c Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 12 Apr 2025 17:54:55 +0800 Subject: [PATCH 63/80] WebUI: fix dark mode in RSS entry viewer Use `allow-same-origin` sandbox directive to allow fetching the parent CSS. PR #22536. --- src/webui/www/private/views/rss.html | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/src/webui/www/private/views/rss.html b/src/webui/www/private/views/rss.html index 1adf741df..7088f6f8f 100644 --- a/src/webui/www/private/views/rss.html +++ b/src/webui/www/private/views/rss.html @@ -494,10 +494,18 @@ detailsView.append(divElement); } - // Place in iframe with sandbox attribute to prevent js execution - const torrentDescription = document.createRange().createContextualFragment(''); - $("rssDetailsView").append(torrentDescription); - document.getElementById("rssDescription").srcdoc = `${article.description}`; + const articleDescription = article.description; + if (articleDescription !== undefined) { + const rootColor = document.documentElement.classList.contains("dark") ? "class='dark'" : ""; + + // Place in iframe with sandbox attribute to prevent js execution + const iframeElement = document.createElement("iframe"); + iframeElement.id = "rssDescription"; + iframeElement.sandbox = "allow-same-origin"; // allowed to get parent css + iframeElement.srcdoc = `${articleDescription}`; + + detailsView.append(iframeElement); + } }; const updateRssFeedList = () => { From abafbc0685f2379a1b484886a50c0e94fda11370 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 12 Apr 2025 17:59:42 +0800 Subject: [PATCH 64/80] WebUI: avoid saving invalid size Don't save the wrong size when the tab is collapsed. Reported in: https://github.com/qbittorrent/qBittorrent/pull/21215/files#r1966052959 PR #22537. --- src/webui/www/private/scripts/client.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/webui/www/private/scripts/client.js b/src/webui/www/private/scripts/client.js index a85b9d420..6a7511293 100644 --- a/src/webui/www/private/scripts/client.js +++ b/src/webui/www/private/scripts/client.js @@ -1515,7 +1515,9 @@ window.addEventListener("DOMContentLoaded", () => { }, column: "mainColumn", onResize: window.qBittorrent.Misc.createDebounceHandler(500, (e) => { - saveColumnSizes(); + const isHidden = (parseInt(document.getElementById("propertiesPanel").style.height, 10) === 0); + if (!isHidden) + saveColumnSizes(); }), height: null }); From 3d73026ff21bc88383964754898f50238bad02a6 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sun, 13 Apr 2025 16:25:38 +0800 Subject: [PATCH 65/80] Add SOCKS4/SOCKS4a proxy support to search engine Pass 'Perform hostname lookup via proxy' setting along the way. Also add underline to variables and functions that are private to the python module. PR #22510. --- src/base/search/searchpluginmanager.cpp | 38 ++++++++++++++------ src/searchengine/nova3/helpers.py | 46 +++++++++++++++++-------- 2 files changed, 59 insertions(+), 25 deletions(-) diff --git a/src/base/search/searchpluginmanager.cpp b/src/base/search/searchpluginmanager.cpp index 7d5122ef3..d3f3b0297 100644 --- a/src/base/search/searchpluginmanager.cpp +++ b/src/base/search/searchpluginmanager.cpp @@ -409,11 +409,11 @@ Path SearchPluginManager::engineLocation() void SearchPluginManager::applyProxySettings() { - // Define environment variables for urllib in search engine plugins - + // for python `urllib`: https://docs.python.org/3/library/urllib.request.html#urllib.request.ProxyHandler const QString HTTP_PROXY = u"http_proxy"_s; const QString HTTPS_PROXY = u"https_proxy"_s; - const QString SOCKS_PROXY = u"sock_proxy"_s; + // for `helpers.setupSOCKSProxy()`: https://everything.curl.dev/usingcurl/proxies/socks.html + const QString SOCKS_PROXY = u"qbt_socks_proxy"_s; if (!Preferences::instance()->useProxyForGeneralPurposes()) { @@ -427,7 +427,6 @@ void SearchPluginManager::applyProxySettings() switch (proxyConfig.type) { case Net::ProxyType::None: - case Net::ProxyType::SOCKS4: // TODO: implement python code m_proxyEnv.remove(HTTP_PROXY); m_proxyEnv.remove(HTTPS_PROXY); m_proxyEnv.remove(SOCKS_PROXY); @@ -435,9 +434,12 @@ void SearchPluginManager::applyProxySettings() case Net::ProxyType::HTTP: { - const QString proxyURL = proxyConfig.authEnabled - ? u"http://%1:%2@%3:%4"_s.arg(proxyConfig.username, proxyConfig.password, proxyConfig.ip, QString::number(proxyConfig.port)) - : u"http://%1:%2"_s.arg(proxyConfig.ip, QString::number(proxyConfig.port)); + const QString credential = proxyConfig.authEnabled + ? (proxyConfig.username + u':' + proxyConfig.password + u'@') + : QString(); + const QString proxyURL = u"http://%1%2:%3"_s + .arg(credential, proxyConfig.ip, QString::number(proxyConfig.port)); + m_proxyEnv.insert(HTTP_PROXY, proxyURL); m_proxyEnv.insert(HTTPS_PROXY, proxyURL); m_proxyEnv.remove(SOCKS_PROXY); @@ -446,9 +448,25 @@ void SearchPluginManager::applyProxySettings() case Net::ProxyType::SOCKS5: { - const QString proxyURL = proxyConfig.authEnabled - ? u"%1:%2@%3:%4"_s.arg(proxyConfig.username, proxyConfig.password, proxyConfig.ip, QString::number(proxyConfig.port)) - : u"%1:%2"_s.arg(proxyConfig.ip, QString::number(proxyConfig.port)); + const QString scheme = proxyConfig.hostnameLookupEnabled ? u"socks5h"_s : u"socks5"_s; + const QString credential = proxyConfig.authEnabled + ? (proxyConfig.username + u':' + proxyConfig.password + u'@') + : QString(); + const QString proxyURL = u"%1://%2%3:%4"_s + .arg(scheme, credential, proxyConfig.ip, QString::number(proxyConfig.port)); + + m_proxyEnv.remove(HTTP_PROXY); + m_proxyEnv.remove(HTTPS_PROXY); + m_proxyEnv.insert(SOCKS_PROXY, proxyURL); + } + break; + + case Net::ProxyType::SOCKS4: + { + const QString scheme = proxyConfig.hostnameLookupEnabled ? u"socks4a"_s : u"socks4"_s; + const QString proxyURL = u"%1://%2:%3"_s + .arg(scheme, proxyConfig.ip, QString::number(proxyConfig.port)); + m_proxyEnv.remove(HTTP_PROXY); m_proxyEnv.remove(HTTPS_PROXY); m_proxyEnv.insert(SOCKS_PROXY, proxyURL); diff --git a/src/searchengine/nova3/helpers.py b/src/searchengine/nova3/helpers.py index 47db27bcc..85eec1541 100644 --- a/src/searchengine/nova3/helpers.py +++ b/src/searchengine/nova3/helpers.py @@ -1,4 +1,4 @@ -#VERSION: 1.51 +#VERSION: 1.52 # Author: # Christophe DUMEZ (chris@qbittorrent.org) @@ -32,19 +32,19 @@ import gzip import html import io import os -import re import socket import socks import ssl import sys import tempfile import urllib.error +import urllib.parse import urllib.request from collections.abc import Mapping from typing import Any, Optional -def getBrowserUserAgent() -> str: +def _getBrowserUserAgent() -> str: """ Disguise as browser to circumvent website blocking """ # Firefox release calendar @@ -60,17 +60,33 @@ def getBrowserUserAgent() -> str: return f"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:{nowVersion}.0) Gecko/20100101 Firefox/{nowVersion}.0" -headers: dict[str, Any] = {'User-Agent': getBrowserUserAgent()} +_headers: dict[str, Any] = {'User-Agent': _getBrowserUserAgent()} -# SOCKS5 Proxy support -if "sock_proxy" in os.environ and len(os.environ["sock_proxy"].strip()) > 0: - proxy_str = os.environ["sock_proxy"].strip() - m = re.match(r"^(?:(?P[^:]+):(?P[^@]+)@)?(?P[^:]+):(?P\w+)$", - proxy_str) - if m is not None: - socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, m.group('host'), - int(m.group('port')), True, m.group('username'), m.group('password')) - socket.socket = socks.socksocket # type: ignore[misc] + +def injectSOCKSProxySocket() -> None: + socksURL = os.environ.get("qbt_socks_proxy") + if socksURL is not None: + parts = urllib.parse.urlsplit(socksURL) + resolveHostname = (parts.scheme == "socks4a") or (parts.scheme == "socks5h") + if (parts.scheme == "socks4") or (parts.scheme == "socks4a"): + socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4, parts.hostname, parts.port, resolveHostname) + socket.socket = socks.socksocket # type: ignore[misc] + elif (parts.scheme == "socks5") or (parts.scheme == "socks5h"): + socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, parts.hostname, parts.port, resolveHostname, parts.username, parts.password) + socket.socket = socks.socksocket # type: ignore[misc] + else: + # the following code provide backward compatibility for older qbt versions + # TODO: scheduled be removed with qbt >= 5.3 + legacySocksURL = os.environ.get("sock_proxy") + if legacySocksURL is not None: + legacySocksURL = f"socks5h://{legacySocksURL.strip()}" + parts = urllib.parse.urlsplit(legacySocksURL) + socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, parts.hostname, parts.port, True, parts.username, parts.password) + socket.socket = socks.socksocket # type: ignore[misc] + + +# monkey patching, run it now +injectSOCKSProxySocket() # This is only provided for backward compatibility, new code should not use it @@ -80,7 +96,7 @@ htmlentitydecode = html.unescape def retrieve_url(url: str, custom_headers: Mapping[str, Any] = {}, request_data: Optional[Any] = None, ssl_context: Optional[ssl.SSLContext] = None, unescape_html_entities: bool = True) -> str: """ Return the content of the url page as a string """ - request = urllib.request.Request(url, request_data, {**headers, **custom_headers}) + request = urllib.request.Request(url, request_data, {**_headers, **custom_headers}) try: response = urllib.request.urlopen(request, context=ssl_context) except urllib.error.URLError as errno: @@ -112,7 +128,7 @@ def download_file(url: str, referer: Optional[str] = None, ssl_context: Optional """ Download file at url and write it to a file, return the path to the file and the url """ # Download url - request = urllib.request.Request(url, headers=headers) + request = urllib.request.Request(url, headers=_headers) if referer is not None: request.add_header('referer', referer) response = urllib.request.urlopen(request, context=ssl_context) From 110e6d32b43f11ea72eda4f38c2808bc7df0cd91 Mon Sep 17 00:00:00 2001 From: Vladimir Golovnev Date: Mon, 14 Apr 2025 09:51:59 +0300 Subject: [PATCH 66/80] Explicitly reject opened Add torrent dialogs when exiting app PR #22535. Closes #19933. Supercedes #22533. --- src/gui/addnewtorrentdialog.cpp | 11 ++++++++--- src/gui/addnewtorrentdialog.h | 10 ++++++---- src/gui/guiaddtorrentmanager.cpp | 9 +++++++++ src/gui/guiaddtorrentmanager.h | 1 + 4 files changed, 24 insertions(+), 7 deletions(-) diff --git a/src/gui/addnewtorrentdialog.cpp b/src/gui/addnewtorrentdialog.cpp index c327caad8..321e1528b 100644 --- a/src/gui/addnewtorrentdialog.cpp +++ b/src/gui/addnewtorrentdialog.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2022-2024 Vladimir Golovnev + * Copyright (C) 2022-2025 Vladimir Golovnev * Copyright (C) 2012 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -386,7 +386,6 @@ AddNewTorrentDialog::AddNewTorrentDialog(const BitTorrent::TorrentDescriptor &to AddNewTorrentDialog::~AddNewTorrentDialog() { - saveState(); delete m_ui; } @@ -400,7 +399,7 @@ void AddNewTorrentDialog::loadState() if (const QSize dialogSize = m_storeDialogSize; dialogSize.isValid()) resize(dialogSize); - m_ui->splitter->restoreState(m_storeSplitterState);; + m_ui->splitter->restoreState(m_storeSplitterState); } void AddNewTorrentDialog::saveState() @@ -836,6 +835,12 @@ void AddNewTorrentDialog::reject() QDialog::reject(); } +void AddNewTorrentDialog::done(const int result) +{ + saveState(); + QDialog::done(result); +} + void AddNewTorrentDialog::updateMetadata(const BitTorrent::TorrentInfo &metadata) { Q_ASSERT(m_currentContext); diff --git a/src/gui/addnewtorrentdialog.h b/src/gui/addnewtorrentdialog.h index bc530953b..84d57b4cc 100644 --- a/src/gui/addnewtorrentdialog.h +++ b/src/gui/addnewtorrentdialog.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2022-2024 Vladimir Golovnev + * Copyright (C) 2022-2025 Vladimir Golovnev * Copyright (C) 2012 Christophe Dumez * * This program is free software; you can redistribute it and/or @@ -68,6 +68,11 @@ signals: void torrentAccepted(const BitTorrent::TorrentDescriptor &torrentDescriptor, const BitTorrent::AddTorrentParams &addTorrentParams); void torrentRejected(const BitTorrent::TorrentDescriptor &torrentDescriptor); +public slots: + void accept() override; + void reject() override; + void done(int result) override; + private slots: void updateDiskSpaceLabel(); void onSavePathChanged(const Path &newPath); @@ -77,9 +82,6 @@ private slots: void categoryChanged(int index); void contentLayoutChanged(); - void accept() override; - void reject() override; - private: class TorrentContentAdaptor; struct Context; diff --git a/src/gui/guiaddtorrentmanager.cpp b/src/gui/guiaddtorrentmanager.cpp index 5ed945383..6e6b709d7 100644 --- a/src/gui/guiaddtorrentmanager.cpp +++ b/src/gui/guiaddtorrentmanager.cpp @@ -81,6 +81,15 @@ GUIAddTorrentManager::GUIAddTorrentManager(IGUIApplication *app, BitTorrent::Ses connect(btSession(), &BitTorrent::Session::metadataDownloaded, this, &GUIAddTorrentManager::onMetadataDownloaded); } +GUIAddTorrentManager::~GUIAddTorrentManager() +{ + for (AddNewTorrentDialog *dialog : asConst(m_dialogs)) + { + dialog->disconnect(this); + dialog->reject(); + } +} + bool GUIAddTorrentManager::addTorrent(const QString &source, const BitTorrent::AddTorrentParams ¶ms, const AddTorrentOption option) { // `source`: .torrent file path, magnet URI or URL diff --git a/src/gui/guiaddtorrentmanager.h b/src/gui/guiaddtorrentmanager.h index fa48dda30..2c756e313 100644 --- a/src/gui/guiaddtorrentmanager.h +++ b/src/gui/guiaddtorrentmanager.h @@ -61,6 +61,7 @@ class GUIAddTorrentManager : public GUIApplicationComponent public: GUIAddTorrentManager(IGUIApplication *app, BitTorrent::Session *session, QObject *parent = nullptr); + ~GUIAddTorrentManager() override; bool addTorrent(const QString &source, const BitTorrent::AddTorrentParams ¶ms = {}, AddTorrentOption option = AddTorrentOption::Default); From f0361f1bed23166026a4111cb006ba148402e622 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Tue, 15 Apr 2025 15:13:36 +0800 Subject: [PATCH 67/80] Use the proper keyboard shortcut for deleting items on macOS Closes #20187. PR #22544. --- src/gui/CMakeLists.txt | 2 ++ src/gui/mainwindow.cpp | 3 +- src/gui/properties/peerlistwidget.cpp | 3 +- src/gui/properties/propertieswidget.cpp | 3 +- src/gui/rss/automatedrssdownloader.cpp | 3 +- src/gui/rss/rsswidget.cpp | 3 +- src/gui/trackerlist/trackerlistwidget.cpp | 3 +- src/gui/transferlistwidget.cpp | 3 +- src/gui/utils/keysequence.cpp | 41 +++++++++++++++++++++++ src/gui/utils/keysequence.h | 38 +++++++++++++++++++++ 10 files changed, 95 insertions(+), 7 deletions(-) create mode 100644 src/gui/utils/keysequence.cpp create mode 100644 src/gui/utils/keysequence.h diff --git a/src/gui/CMakeLists.txt b/src/gui/CMakeLists.txt index a7b3a5b91..2ed0a7d3c 100644 --- a/src/gui/CMakeLists.txt +++ b/src/gui/CMakeLists.txt @@ -140,6 +140,7 @@ add_library(qbt_gui STATIC uithememanager.h uithemesource.h utils.h + utils/keysequence.h watchedfolderoptionsdialog.h watchedfoldersmodel.h windowstate.h @@ -239,6 +240,7 @@ add_library(qbt_gui STATIC uithememanager.cpp uithemesource.cpp utils.cpp + utils/keysequence.cpp watchedfolderoptionsdialog.cpp watchedfoldersmodel.cpp diff --git a/src/gui/mainwindow.cpp b/src/gui/mainwindow.cpp index b98663b5c..fc78ccbc8 100644 --- a/src/gui/mainwindow.cpp +++ b/src/gui/mainwindow.cpp @@ -101,6 +101,7 @@ #include "ui_mainwindow.h" #include "uithememanager.h" #include "utils.h" +#include "utils/keysequence.h" #ifdef Q_OS_MACOS #include "macosdockbadge/badger.h" @@ -883,7 +884,7 @@ void MainWindow::createKeyboardShortcuts() { m_ui->actionCreateTorrent->setShortcut(QKeySequence::New); m_ui->actionOpen->setShortcut(QKeySequence::Open); - m_ui->actionDelete->setShortcut(QKeySequence::Delete); + m_ui->actionDelete->setShortcut(Utils::KeySequence::deleteItem()); m_ui->actionDelete->setShortcutContext(Qt::WidgetShortcut); // nullify its effect: delete key event is handled by respective widgets, not here m_ui->actionDownloadFromURL->setShortcut(Qt::CTRL | Qt::SHIFT | Qt::Key_O); m_ui->actionExit->setShortcut(Qt::CTRL | Qt::Key_Q); diff --git a/src/gui/properties/peerlistwidget.cpp b/src/gui/properties/peerlistwidget.cpp index d10bb9c03..8546d7143 100644 --- a/src/gui/properties/peerlistwidget.cpp +++ b/src/gui/properties/peerlistwidget.cpp @@ -58,6 +58,7 @@ #include "base/utils/misc.h" #include "base/utils/string.h" #include "gui/uithememanager.h" +#include "gui/utils/keysequence.h" #include "peerlistsortmodel.h" #include "peersadditiondialog.h" #include "propertieswidget.h" @@ -187,7 +188,7 @@ PeerListWidget::PeerListWidget(PropertiesWidget *parent) handleSortColumnChanged(header()->sortIndicatorSection()); const auto *copyHotkey = new QShortcut(QKeySequence::Copy, this, nullptr, nullptr, Qt::WidgetShortcut); connect(copyHotkey, &QShortcut::activated, this, &PeerListWidget::copySelectedPeers); - const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, this, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(Utils::KeySequence::deleteItem(), this, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteHotkey, &QShortcut::activated, this, &PeerListWidget::banSelectedPeers); } diff --git a/src/gui/properties/propertieswidget.cpp b/src/gui/properties/propertieswidget.cpp index d5c2b03a4..ad9673272 100644 --- a/src/gui/properties/propertieswidget.cpp +++ b/src/gui/properties/propertieswidget.cpp @@ -56,6 +56,7 @@ #include "gui/trackerlist/trackerlistwidget.h" #include "gui/uithememanager.h" #include "gui/utils.h" +#include "gui/utils/keysequence.h" #include "downloadedpiecesbar.h" #include "peerlistwidget.h" #include "pieceavailabilitybar.h" @@ -136,7 +137,7 @@ PropertiesWidget::PropertiesWidget(QWidget *parent) const auto *editWebSeedsHotkey = new QShortcut(Qt::Key_F2, m_ui->listWebSeeds, nullptr, nullptr, Qt::WidgetShortcut); connect(editWebSeedsHotkey, &QShortcut::activated, this, &PropertiesWidget::editWebSeed); - const auto *deleteWebSeedsHotkey = new QShortcut(QKeySequence::Delete, m_ui->listWebSeeds, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteWebSeedsHotkey = new QShortcut(Utils::KeySequence::deleteItem(), m_ui->listWebSeeds, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteWebSeedsHotkey, &QShortcut::activated, this, &PropertiesWidget::deleteSelectedUrlSeeds); connect(m_ui->listWebSeeds, &QListWidget::doubleClicked, this, &PropertiesWidget::editWebSeed); diff --git a/src/gui/rss/automatedrssdownloader.cpp b/src/gui/rss/automatedrssdownloader.cpp index 5492a6732..f305cefb9 100644 --- a/src/gui/rss/automatedrssdownloader.cpp +++ b/src/gui/rss/automatedrssdownloader.cpp @@ -55,6 +55,7 @@ #include "gui/torrentcategorydialog.h" #include "gui/uithememanager.h" #include "gui/utils.h" +#include "gui/utils/keysequence.h" #include "ui_automatedrssdownloader.h" const QString EXT_JSON = u".json"_s; @@ -151,7 +152,7 @@ AutomatedRssDownloader::AutomatedRssDownloader(QWidget *parent) const auto *editHotkey = new QShortcut(Qt::Key_F2, m_ui->ruleList, nullptr, nullptr, Qt::WidgetShortcut); connect(editHotkey, &QShortcut::activated, this, &AutomatedRssDownloader::renameSelectedRule); - const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, m_ui->ruleList, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(Utils::KeySequence::deleteItem(), m_ui->ruleList, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteHotkey, &QShortcut::activated, this, &AutomatedRssDownloader::onRemoveRuleBtnClicked); connect(m_ui->ruleList, &QAbstractItemView::doubleClicked, this, &AutomatedRssDownloader::renameSelectedRule); diff --git a/src/gui/rss/rsswidget.cpp b/src/gui/rss/rsswidget.cpp index 75c5d171b..98c272014 100644 --- a/src/gui/rss/rsswidget.cpp +++ b/src/gui/rss/rsswidget.cpp @@ -49,6 +49,7 @@ #include "gui/autoexpandabledialog.h" #include "gui/interfaces/iguiapplication.h" #include "gui/uithememanager.h" +#include "gui/utils/keysequence.h" #include "articlelistwidget.h" #include "automatedrssdownloader.h" #include "feedlistwidget.h" @@ -140,7 +141,7 @@ RSSWidget::RSSWidget(IGUIApplication *app, QWidget *parent) const auto *editHotkey = new QShortcut(Qt::Key_F2, m_ui->feedListWidget, nullptr, nullptr, Qt::WidgetShortcut); connect(editHotkey, &QShortcut::activated, this, &RSSWidget::renameSelectedRSSItem); - const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, m_ui->feedListWidget, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(Utils::KeySequence::deleteItem(), m_ui->feedListWidget, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteHotkey, &QShortcut::activated, this, &RSSWidget::deleteSelectedItems); // Feeds list actions diff --git a/src/gui/trackerlist/trackerlistwidget.cpp b/src/gui/trackerlist/trackerlistwidget.cpp index 51ef35c9c..36ae595d8 100644 --- a/src/gui/trackerlist/trackerlistwidget.cpp +++ b/src/gui/trackerlist/trackerlistwidget.cpp @@ -53,6 +53,7 @@ #include "gui/autoexpandabledialog.h" #include "gui/trackersadditiondialog.h" #include "gui/uithememanager.h" +#include "gui/utils/keysequence.h" #include "trackerlistitemdelegate.h" #include "trackerlistmodel.h" #include "trackerlistsortmodel.h" @@ -106,7 +107,7 @@ TrackerListWidget::TrackerListWidget(QWidget *parent) // Set hotkeys const auto *editHotkey = new QShortcut(Qt::Key_F2, this, nullptr, nullptr, Qt::WidgetShortcut); connect(editHotkey, &QShortcut::activated, this, &TrackerListWidget::editSelectedTracker); - const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, this, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(Utils::KeySequence::deleteItem(), this, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteHotkey, &QShortcut::activated, this, &TrackerListWidget::deleteSelectedTrackers); const auto *copyHotkey = new QShortcut(QKeySequence::Copy, this, nullptr, nullptr, Qt::WidgetShortcut); connect(copyHotkey, &QShortcut::activated, this, &TrackerListWidget::copyTrackerUrl); diff --git a/src/gui/transferlistwidget.cpp b/src/gui/transferlistwidget.cpp index cd6b44653..95814c0e6 100644 --- a/src/gui/transferlistwidget.cpp +++ b/src/gui/transferlistwidget.cpp @@ -72,6 +72,7 @@ #include "tristateaction.h" #include "uithememanager.h" #include "utils.h" +#include "utils/keysequence.h" #ifdef Q_OS_MACOS #include "macosshiftclickhandler.h" @@ -228,7 +229,7 @@ TransferListWidget::TransferListWidget(IGUIApplication *app, QWidget *parent) const auto *editHotkey = new QShortcut(Qt::Key_F2, this, nullptr, nullptr, Qt::WidgetShortcut); connect(editHotkey, &QShortcut::activated, this, &TransferListWidget::renameSelectedTorrent); - const auto *deleteHotkey = new QShortcut(QKeySequence::Delete, this, nullptr, nullptr, Qt::WidgetShortcut); + const auto *deleteHotkey = new QShortcut(Utils::KeySequence::deleteItem(), this, nullptr, nullptr, Qt::WidgetShortcut); connect(deleteHotkey, &QShortcut::activated, this, &TransferListWidget::softDeleteSelectedTorrents); const auto *permDeleteHotkey = new QShortcut((Qt::SHIFT | Qt::Key_Delete), this, nullptr, nullptr, Qt::WidgetShortcut); connect(permDeleteHotkey, &QShortcut::activated, this, &TransferListWidget::permDeleteSelectedTorrents); diff --git a/src/gui/utils/keysequence.cpp b/src/gui/utils/keysequence.cpp new file mode 100644 index 000000000..53fa5041f --- /dev/null +++ b/src/gui/utils/keysequence.cpp @@ -0,0 +1,41 @@ +/* + * Bittorrent Client using Qt and libtorrent. + * Copyright (C) 2025 Mike Tzou (Chocobo1) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * In addition, as a special exception, the copyright holders give permission to + * link this program with the OpenSSL project's "OpenSSL" library (or with + * modified versions of it that use the same license as the "OpenSSL" library), + * and distribute the linked executables. You must obey the GNU General Public + * License in all respects for all of the code used other than "OpenSSL". If you + * modify file(s), you may extend this exception to your version of the file(s), + * but you are not obligated to do so. If you do not wish to do so, delete this + * exception statement from your version. + */ + +#include "keysequence.h" + +#include +#include + +QKeySequence Utils::KeySequence::deleteItem() +{ +#ifdef Q_OS_MACOS + return Qt::CTRL | Qt::Key_Backspace; +#else + return QKeySequence::Delete; +#endif +} diff --git a/src/gui/utils/keysequence.h b/src/gui/utils/keysequence.h new file mode 100644 index 000000000..b89dd2d7f --- /dev/null +++ b/src/gui/utils/keysequence.h @@ -0,0 +1,38 @@ +/* + * Bittorrent Client using Qt and libtorrent. + * Copyright (C) 2025 Mike Tzou (Chocobo1) + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + * In addition, as a special exception, the copyright holders give permission to + * link this program with the OpenSSL project's "OpenSSL" library (or with + * modified versions of it that use the same license as the "OpenSSL" library), + * and distribute the linked executables. You must obey the GNU General Public + * License in all respects for all of the code used other than "OpenSSL". If you + * modify file(s), you may extend this exception to your version of the file(s), + * but you are not obligated to do so. If you do not wish to do so, delete this + * exception statement from your version. + */ + +#pragma once + +class QKeySequence; + +namespace Utils::KeySequence +{ + // QKeySequence variable cannot be initialized at compile time. It will crash at startup. + + QKeySequence deleteItem(); +} From 15069b26434948e55c4b64dc215f9e1ee0c44241 Mon Sep 17 00:00:00 2001 From: Vladimir Golovnev Date: Wed, 16 Apr 2025 10:23:34 +0300 Subject: [PATCH 68/80] Fix the torrent relocates files when switching to "manual" mode PR #22564. Closes #22283. Closes #22546. --- src/base/bittorrent/sessionimpl.cpp | 24 ++++++++++++++++-------- src/base/bittorrent/torrentimpl.cpp | 14 ++++++++------ 2 files changed, 24 insertions(+), 14 deletions(-) diff --git a/src/base/bittorrent/sessionimpl.cpp b/src/base/bittorrent/sessionimpl.cpp index 6e290fa1b..37bfb0576 100644 --- a/src/base/bittorrent/sessionimpl.cpp +++ b/src/base/bittorrent/sessionimpl.cpp @@ -993,23 +993,25 @@ bool SessionImpl::editCategory(const QString &name, const CategoryOptions &optio if (options == currentOptions) return false; - currentOptions = options; - storeCategories(); if (isDisableAutoTMMWhenCategorySavePathChanged()) { + // This should be done before changing the category options + // to prevent the torrent from being moved at the new save path. + for (TorrentImpl *const torrent : asConst(m_torrents)) { if (torrent->category() == name) torrent->setAutoTMMEnabled(false); } } - else + + currentOptions = options; + storeCategories(); + + for (TorrentImpl *const torrent : asConst(m_torrents)) { - for (TorrentImpl *const torrent : asConst(m_torrents)) - { - if (torrent->category() == name) - torrent->handleCategoryOptionsChanged(); - } + if (torrent->category() == name) + torrent->handleCategoryOptionsChanged(); } emit categoryOptionsChanged(name); @@ -3277,6 +3279,9 @@ void SessionImpl::setSavePath(const Path &path) if (isDisableAutoTMMWhenDefaultSavePathChanged()) { + // This should be done before changing the save path + // to prevent the torrent from being moved at the new save path. + QSet affectedCatogories {{}}; // includes default (unnamed) category for (auto it = m_categories.cbegin(); it != m_categories.cend(); ++it) { @@ -3314,6 +3319,9 @@ void SessionImpl::setDownloadPath(const Path &path) if (isDisableAutoTMMWhenDefaultSavePathChanged()) { + // This should be done before changing the save path + // to prevent the torrent from being moved at the new save path. + QSet affectedCatogories {{}}; // includes default (unnamed) category for (auto it = m_categories.cbegin(); it != m_categories.cend(); ++it) { diff --git a/src/base/bittorrent/torrentimpl.cpp b/src/base/bittorrent/torrentimpl.cpp index af1afc498..45cc7f3bf 100644 --- a/src/base/bittorrent/torrentimpl.cpp +++ b/src/base/bittorrent/torrentimpl.cpp @@ -1615,18 +1615,20 @@ bool TorrentImpl::setCategory(const QString &category) if (!category.isEmpty() && !m_session->categories().contains(category)) return false; + if (m_session->isDisableAutoTMMWhenCategoryChanged()) + { + // This should be done before changing the category name + // to prevent the torrent from being moved at the path of new category. + setAutoTMMEnabled(false); + } + const QString oldCategory = m_category; m_category = category; deferredRequestResumeData(); m_session->handleTorrentCategoryChanged(this, oldCategory); if (m_useAutoTMM) - { - if (!m_session->isDisableAutoTMMWhenCategoryChanged()) - adjustStorageLocation(); - else - setAutoTMMEnabled(false); - } + adjustStorageLocation(); } return true; From 2785636d3fef7478d5b96dc3ecaeeeee5d434110 Mon Sep 17 00:00:00 2001 From: Vladimir Golovnev Date: Thu, 17 Apr 2025 11:16:17 +0300 Subject: [PATCH 69/80] Prevent crash due to corrupted resume data PR #22569. Closes #22540. --- .../bittorrent/bencoderesumedatastorage.cpp | 4 + src/base/bittorrent/dbresumedatastorage.cpp | 160 ++++++++++-------- src/base/bittorrent/dbresumedatastorage.h | 6 +- 3 files changed, 93 insertions(+), 77 deletions(-) diff --git a/src/base/bittorrent/bencoderesumedatastorage.cpp b/src/base/bittorrent/bencoderesumedatastorage.cpp index 1b6adfc96..1e1083051 100644 --- a/src/base/bittorrent/bencoderesumedatastorage.cpp +++ b/src/base/bittorrent/bencoderesumedatastorage.cpp @@ -290,6 +290,8 @@ BitTorrent::LoadResumeDataResult BitTorrent::BencodeResumeDataStorage::loadTorre lt::add_torrent_params &p = torrentParams.ltAddTorrentParams; p = lt::read_resume_data(resumeDataRoot, ec); + if (ec) + return nonstd::make_unexpected(tr("Cannot parse resume data: %1").arg(QString::fromStdString(ec.message()))); if (!metadata.isEmpty()) { @@ -320,6 +322,8 @@ BitTorrent::LoadResumeDataResult BitTorrent::BencodeResumeDataStorage::loadTorre p.save_path = Profile::instance()->fromPortablePath( Path(fromLTString(p.save_path))).toString().toStdString(); + if (p.save_path.empty()) + return nonstd::make_unexpected(tr("Corrupted resume data: %1").arg(tr("save_path is invalid"))); torrentParams.stopped = (p.flags & lt::torrent_flags::paused) && !(p.flags & lt::torrent_flags::auto_managed); torrentParams.operatingMode = (p.flags & lt::torrent_flags::paused) || (p.flags & lt::torrent_flags::auto_managed) diff --git a/src/base/bittorrent/dbresumedatastorage.cpp b/src/base/bittorrent/dbresumedatastorage.cpp index d9320e528..f9cc18769 100644 --- a/src/base/bittorrent/dbresumedatastorage.cpp +++ b/src/base/bittorrent/dbresumedatastorage.cpp @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2021-2023 Vladimir Golovnev + * Copyright (C) 2021-2025 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -217,80 +217,6 @@ namespace { return u"%1 %2"_s.arg(quoted(column.name), definition); } - - LoadTorrentParams parseQueryResultRow(const QSqlQuery &query) - { - LoadTorrentParams resumeData; - resumeData.name = query.value(DB_COLUMN_NAME.name).toString(); - resumeData.category = query.value(DB_COLUMN_CATEGORY.name).toString(); - const QString tagsData = query.value(DB_COLUMN_TAGS.name).toString(); - if (!tagsData.isEmpty()) - { - const QStringList tagList = tagsData.split(u','); - resumeData.tags.insert(tagList.cbegin(), tagList.cend()); - } - resumeData.hasFinishedStatus = query.value(DB_COLUMN_HAS_SEED_STATUS.name).toBool(); - resumeData.firstLastPiecePriority = query.value(DB_COLUMN_HAS_OUTER_PIECES_PRIORITY.name).toBool(); - resumeData.ratioLimit = query.value(DB_COLUMN_RATIO_LIMIT.name).toInt() / 1000.0; - resumeData.seedingTimeLimit = query.value(DB_COLUMN_SEEDING_TIME_LIMIT.name).toInt(); - resumeData.inactiveSeedingTimeLimit = query.value(DB_COLUMN_INACTIVE_SEEDING_TIME_LIMIT.name).toInt(); - resumeData.shareLimitAction = Utils::String::toEnum( - query.value(DB_COLUMN_SHARE_LIMIT_ACTION.name).toString(), ShareLimitAction::Default); - resumeData.contentLayout = Utils::String::toEnum( - query.value(DB_COLUMN_CONTENT_LAYOUT.name).toString(), TorrentContentLayout::Original); - resumeData.operatingMode = Utils::String::toEnum( - query.value(DB_COLUMN_OPERATING_MODE.name).toString(), TorrentOperatingMode::AutoManaged); - resumeData.stopped = query.value(DB_COLUMN_STOPPED.name).toBool(); - resumeData.stopCondition = Utils::String::toEnum( - query.value(DB_COLUMN_STOP_CONDITION.name).toString(), Torrent::StopCondition::None); - resumeData.sslParameters = - { - .certificate = QSslCertificate(query.value(DB_COLUMN_SSL_CERTIFICATE.name).toByteArray()), - .privateKey = Utils::SSLKey::load(query.value(DB_COLUMN_SSL_PRIVATE_KEY.name).toByteArray()), - .dhParams = query.value(DB_COLUMN_SSL_DH_PARAMS.name).toByteArray() - }; - - resumeData.savePath = Profile::instance()->fromPortablePath( - Path(query.value(DB_COLUMN_TARGET_SAVE_PATH.name).toString())); - resumeData.useAutoTMM = resumeData.savePath.isEmpty(); - if (!resumeData.useAutoTMM) - { - resumeData.downloadPath = Profile::instance()->fromPortablePath( - Path(query.value(DB_COLUMN_DOWNLOAD_PATH.name).toString())); - } - - const QByteArray bencodedResumeData = query.value(DB_COLUMN_RESUMEDATA.name).toByteArray(); - const auto *pref = Preferences::instance(); - const int bdecodeDepthLimit = pref->getBdecodeDepthLimit(); - const int bdecodeTokenLimit = pref->getBdecodeTokenLimit(); - - lt::error_code ec; - const lt::bdecode_node resumeDataRoot = lt::bdecode(bencodedResumeData, ec - , nullptr, bdecodeDepthLimit, bdecodeTokenLimit); - - lt::add_torrent_params &p = resumeData.ltAddTorrentParams; - - p = lt::read_resume_data(resumeDataRoot, ec); - - if (const QByteArray bencodedMetadata = query.value(DB_COLUMN_METADATA.name).toByteArray() - ; !bencodedMetadata.isEmpty()) - { - const lt::bdecode_node torentInfoRoot = lt::bdecode(bencodedMetadata, ec - , nullptr, bdecodeDepthLimit, bdecodeTokenLimit); - p.ti = std::make_shared(torentInfoRoot, ec); - } - - p.save_path = Profile::instance()->fromPortablePath(Path(fromLTString(p.save_path))) - .toString().toStdString(); - - if (p.flags & lt::torrent_flags::stop_when_ready) - { - p.flags &= ~lt::torrent_flags::stop_when_ready; - resumeData.stopCondition = Torrent::StopCondition::FilesChecked; - } - - return resumeData; - } } namespace BitTorrent @@ -688,6 +614,90 @@ void BitTorrent::DBResumeDataStorage::enableWALMode() const throw RuntimeError(tr("WAL mode is probably unsupported due to filesystem limitations.")); } +LoadResumeDataResult DBResumeDataStorage::parseQueryResultRow(const QSqlQuery &query) const +{ + LoadTorrentParams resumeData; + resumeData.name = query.value(DB_COLUMN_NAME.name).toString(); + resumeData.category = query.value(DB_COLUMN_CATEGORY.name).toString(); + const QString tagsData = query.value(DB_COLUMN_TAGS.name).toString(); + if (!tagsData.isEmpty()) + { + const QStringList tagList = tagsData.split(u','); + resumeData.tags.insert(tagList.cbegin(), tagList.cend()); + } + resumeData.hasFinishedStatus = query.value(DB_COLUMN_HAS_SEED_STATUS.name).toBool(); + resumeData.firstLastPiecePriority = query.value(DB_COLUMN_HAS_OUTER_PIECES_PRIORITY.name).toBool(); + resumeData.ratioLimit = query.value(DB_COLUMN_RATIO_LIMIT.name).toInt() / 1000.0; + resumeData.seedingTimeLimit = query.value(DB_COLUMN_SEEDING_TIME_LIMIT.name).toInt(); + resumeData.inactiveSeedingTimeLimit = query.value(DB_COLUMN_INACTIVE_SEEDING_TIME_LIMIT.name).toInt(); + resumeData.shareLimitAction = Utils::String::toEnum( + query.value(DB_COLUMN_SHARE_LIMIT_ACTION.name).toString(), ShareLimitAction::Default); + resumeData.contentLayout = Utils::String::toEnum( + query.value(DB_COLUMN_CONTENT_LAYOUT.name).toString(), TorrentContentLayout::Original); + resumeData.operatingMode = Utils::String::toEnum( + query.value(DB_COLUMN_OPERATING_MODE.name).toString(), TorrentOperatingMode::AutoManaged); + resumeData.stopped = query.value(DB_COLUMN_STOPPED.name).toBool(); + resumeData.stopCondition = Utils::String::toEnum( + query.value(DB_COLUMN_STOP_CONDITION.name).toString(), Torrent::StopCondition::None); + resumeData.sslParameters = + { + .certificate = QSslCertificate(query.value(DB_COLUMN_SSL_CERTIFICATE.name).toByteArray()), + .privateKey = Utils::SSLKey::load(query.value(DB_COLUMN_SSL_PRIVATE_KEY.name).toByteArray()), + .dhParams = query.value(DB_COLUMN_SSL_DH_PARAMS.name).toByteArray() + }; + + resumeData.savePath = Profile::instance()->fromPortablePath( + Path(query.value(DB_COLUMN_TARGET_SAVE_PATH.name).toString())); + resumeData.useAutoTMM = resumeData.savePath.isEmpty(); + if (!resumeData.useAutoTMM) + { + resumeData.downloadPath = Profile::instance()->fromPortablePath( + Path(query.value(DB_COLUMN_DOWNLOAD_PATH.name).toString())); + } + + const QByteArray bencodedResumeData = query.value(DB_COLUMN_RESUMEDATA.name).toByteArray(); + const auto *pref = Preferences::instance(); + const int bdecodeDepthLimit = pref->getBdecodeDepthLimit(); + const int bdecodeTokenLimit = pref->getBdecodeTokenLimit(); + + lt::error_code ec; + const lt::bdecode_node resumeDataRoot = lt::bdecode(bencodedResumeData, ec, nullptr, bdecodeDepthLimit, bdecodeTokenLimit); + if (ec) + return nonstd::make_unexpected(tr("Cannot parse resume data: %1").arg(QString::fromStdString(ec.message()))); + + lt::add_torrent_params &p = resumeData.ltAddTorrentParams; + + p = lt::read_resume_data(resumeDataRoot, ec); + if (ec) + return nonstd::make_unexpected(tr("Cannot parse resume data: %1").arg(QString::fromStdString(ec.message()))); + + if (const QByteArray bencodedMetadata = query.value(DB_COLUMN_METADATA.name).toByteArray() + ; !bencodedMetadata.isEmpty()) + { + const lt::bdecode_node torentInfoRoot = lt::bdecode(bencodedMetadata, ec + , nullptr, bdecodeDepthLimit, bdecodeTokenLimit); + if (ec) + return nonstd::make_unexpected(tr("Cannot parse torrent info: %1").arg(QString::fromStdString(ec.message()))); + + p.ti = std::make_shared(torentInfoRoot, ec); + if (ec) + return nonstd::make_unexpected(tr("Cannot parse torrent info: %1").arg(QString::fromStdString(ec.message()))); + } + + p.save_path = Profile::instance()->fromPortablePath(Path(fromLTString(p.save_path))) + .toString().toStdString(); + if (p.save_path.empty()) + return nonstd::make_unexpected(tr("Corrupted resume data: %1").arg(tr("save_path is invalid"))); + + if (p.flags & lt::torrent_flags::stop_when_ready) + { + p.flags &= ~lt::torrent_flags::stop_when_ready; + resumeData.stopCondition = Torrent::StopCondition::FilesChecked; + } + + return resumeData; +} + BitTorrent::DBResumeDataStorage::Worker::Worker(const Path &dbPath, QReadWriteLock &dbLock, QObject *parent) : QThread(parent) , m_path {dbPath} diff --git a/src/base/bittorrent/dbresumedatastorage.h b/src/base/bittorrent/dbresumedatastorage.h index 92f0e6ea1..a7a97ab25 100644 --- a/src/base/bittorrent/dbresumedatastorage.h +++ b/src/base/bittorrent/dbresumedatastorage.h @@ -1,6 +1,6 @@ /* * Bittorrent Client using Qt and libtorrent. - * Copyright (C) 2021-2022 Vladimir Golovnev + * Copyright (C) 2021-2025 Vladimir Golovnev * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -31,9 +31,10 @@ #include #include "base/pathfwd.h" -#include "base/utils/thread.h" #include "resumedatastorage.h" +class QSqlQuery; + namespace BitTorrent { class DBResumeDataStorage final : public ResumeDataStorage @@ -58,6 +59,7 @@ namespace BitTorrent void createDB() const; void updateDB(int fromVersion) const; void enableWALMode() const; + LoadResumeDataResult parseQueryResultRow(const QSqlQuery &query) const; class Worker; Worker *m_asyncWorker = nullptr; From 2aee875642d5eadf10bc6ceeda19928b138daa20 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sat, 19 Apr 2025 07:11:50 +0800 Subject: [PATCH 70/80] Enforce SOCKS proxy setting in search engine plugins Previously it require each plugin to import helpers.py to setup SOCKS proxy. Now it is enforced by default for all plugins. Also added a function for plugins to ignore/restore the socket to default state. PR #22554. --- src/searchengine/nova3/helpers.py | 48 +++++++++++++++---------------- src/searchengine/nova3/nova2.py | 17 +++++++---- src/searchengine/nova3/nova2dl.py | 9 ++++-- 3 files changed, 41 insertions(+), 33 deletions(-) diff --git a/src/searchengine/nova3/helpers.py b/src/searchengine/nova3/helpers.py index 85eec1541..5e4457235 100644 --- a/src/searchengine/nova3/helpers.py +++ b/src/searchengine/nova3/helpers.py @@ -1,4 +1,4 @@ -#VERSION: 1.52 +# VERSION: 1.53 # Author: # Christophe DUMEZ (chris@qbittorrent.org) @@ -61,32 +61,32 @@ def _getBrowserUserAgent() -> str: _headers: dict[str, Any] = {'User-Agent': _getBrowserUserAgent()} +_original_socket = socket.socket -def injectSOCKSProxySocket() -> None: - socksURL = os.environ.get("qbt_socks_proxy") - if socksURL is not None: - parts = urllib.parse.urlsplit(socksURL) - resolveHostname = (parts.scheme == "socks4a") or (parts.scheme == "socks5h") - if (parts.scheme == "socks4") or (parts.scheme == "socks4a"): - socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4, parts.hostname, parts.port, resolveHostname) - socket.socket = socks.socksocket # type: ignore[misc] - elif (parts.scheme == "socks5") or (parts.scheme == "socks5h"): - socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, parts.hostname, parts.port, resolveHostname, parts.username, parts.password) - socket.socket = socks.socksocket # type: ignore[misc] +def enable_socks_proxy(enable: bool) -> None: + if enable: + socksURL = os.environ.get("qbt_socks_proxy") + if socksURL is not None: + parts = urllib.parse.urlsplit(socksURL) + resolveHostname = (parts.scheme == "socks4a") or (parts.scheme == "socks5h") + if (parts.scheme == "socks4") or (parts.scheme == "socks4a"): + socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS4, parts.hostname, parts.port, resolveHostname) + socket.socket = socks.socksocket # type: ignore[misc] + elif (parts.scheme == "socks5") or (parts.scheme == "socks5h"): + socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, parts.hostname, parts.port, resolveHostname, parts.username, parts.password) + socket.socket = socks.socksocket # type: ignore[misc] + else: + # the following code provide backward compatibility for older qbt versions + # TODO: scheduled be removed with qbt >= 5.3 + legacySocksURL = os.environ.get("sock_proxy") + if legacySocksURL is not None: + legacySocksURL = f"socks5h://{legacySocksURL.strip()}" + parts = urllib.parse.urlsplit(legacySocksURL) + socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, parts.hostname, parts.port, True, parts.username, parts.password) + socket.socket = socks.socksocket # type: ignore[misc] else: - # the following code provide backward compatibility for older qbt versions - # TODO: scheduled be removed with qbt >= 5.3 - legacySocksURL = os.environ.get("sock_proxy") - if legacySocksURL is not None: - legacySocksURL = f"socks5h://{legacySocksURL.strip()}" - parts = urllib.parse.urlsplit(legacySocksURL) - socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, parts.hostname, parts.port, True, parts.username, parts.password) - socket.socket = socks.socksocket # type: ignore[misc] - - -# monkey patching, run it now -injectSOCKSProxySocket() + socket.socket = _original_socket # type: ignore[misc] # This is only provided for backward compatibility, new code should not use it diff --git a/src/searchengine/nova3/nova2.py b/src/searchengine/nova3/nova2.py index fef072113..6df365a07 100644 --- a/src/searchengine/nova3/nova2.py +++ b/src/searchengine/nova3/nova2.py @@ -1,4 +1,4 @@ -#VERSION: 1.48 +# VERSION: 1.49 # Author: # Fabien Devaux @@ -46,6 +46,16 @@ from multiprocessing import Pool, cpu_count from os import path from typing import Optional +# qbt tend to run this script in 'isolate mode' so append the current path manually +current_path = str(pathlib.Path(__file__).parent.resolve()) +if current_path not in sys.path: + sys.path.append(current_path) + +import helpers + +# enable SOCKS proxy for all plugins by default +helpers.enable_socks_proxy(True) + THREADED: bool = True try: MAX_THREADS: int = cpu_count() @@ -182,11 +192,6 @@ def run_search(search_params: tuple[type[Engine], str, Category]) -> bool: if __name__ == "__main__": def main() -> int: - # qbt tend to run this script in 'isolate mode' so append the current path manually - current_path = str(pathlib.Path(__file__).parent.resolve()) - if current_path not in sys.path: - sys.path.append(current_path) - # https://docs.python.org/3/library/sys.html#sys.exit class ExitCode(Enum): OK = 0 diff --git a/src/searchengine/nova3/nova2dl.py b/src/searchengine/nova3/nova2dl.py index c35646654..8a45b3724 100644 --- a/src/searchengine/nova3/nova2dl.py +++ b/src/searchengine/nova3/nova2dl.py @@ -1,4 +1,4 @@ -#VERSION: 1.24 +# VERSION: 1.25 # Author: # Christophe DUMEZ (chris@qbittorrent.org) @@ -38,7 +38,10 @@ current_path = str(pathlib.Path(__file__).parent.resolve()) if current_path not in sys.path: sys.path.append(current_path) -from helpers import download_file +import helpers + +# enable SOCKS proxy for all plugins by default +helpers.enable_socks_proxy(True) if __name__ == '__main__': if len(sys.argv) < 3: @@ -58,6 +61,6 @@ if __name__ == '__main__': if hasattr(engine, 'download_torrent'): engine.download_torrent(download_param) else: - print(download_file(download_param)) + print(helpers.download_file(download_param)) sys.exit(0) From c878a09d27f45ecd7fb1ec8d98a80db19bb1a4e1 Mon Sep 17 00:00:00 2001 From: Kostiantyn Chernenok <44094399+lemantisee@users.noreply.github.com> Date: Sat, 19 Apr 2025 02:57:39 +0300 Subject: [PATCH 71/80] Swap add file/link buttons on toolbar Swap "Add torrent file" with "Add torrent link" button to be consistent with order in File menu. Closes #22420. PR #22557. Signed-off-by: Kostiantyn --- src/gui/mainwindow.ui | 2 +- src/webui/www/private/index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gui/mainwindow.ui b/src/gui/mainwindow.ui index 24c6ada61..90a4fecb7 100644 --- a/src/gui/mainwindow.ui +++ b/src/gui/mainwindow.ui @@ -149,8 +149,8 @@ false - + diff --git a/src/webui/www/private/index.html b/src/webui/www/private/index.html index 354f1b2b0..1f11f3aa5 100644 --- a/src/webui/www/private/index.html +++ b/src/webui/www/private/index.html @@ -111,8 +111,8 @@
   - QBT_TR(Add Torrent Link...)QBT_TR[CONTEXT=MainWindow] QBT_TR(Add Torrent File...)QBT_TR[CONTEXT=MainWindow] + QBT_TR(Add Torrent Link...)QBT_TR[CONTEXT=MainWindow] QBT_TR(Remove)QBT_TR[CONTEXT=TransferListWidget] QBT_TR(Start)QBT_TR[CONTEXT=TransferListWidget] QBT_TR(Stop)QBT_TR[CONTEXT=TransferListWidget] From fc5daf6e1d2b93caebdf6352eb0143d8d3b9eeff Mon Sep 17 00:00:00 2001 From: Kostiantyn Chernenok <44094399+lemantisee@users.noreply.github.com> Date: Sun, 20 Apr 2025 11:34:04 +0300 Subject: [PATCH 72/80] Clamp seeding time limit in session Add clamping for seeding and inactive seeding time limit on setting from dialog and loading from config. Closes #21953. PR #22558. Signed-off-by: Kostiantyn --- src/base/bittorrent/sessionimpl.cpp | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/base/bittorrent/sessionimpl.cpp b/src/base/bittorrent/sessionimpl.cpp index 37bfb0576..64d274f19 100644 --- a/src/base/bittorrent/sessionimpl.cpp +++ b/src/base/bittorrent/sessionimpl.cpp @@ -471,8 +471,10 @@ SessionImpl::SessionImpl(QObject *parent) , m_isAddTrackersFromURLEnabled(BITTORRENT_SESSION_KEY(u"AddTrackersFromURLEnabled"_s), false) , m_additionalTrackersURL(BITTORRENT_SESSION_KEY(u"AdditionalTrackersURL"_s)) , m_globalMaxRatio(BITTORRENT_SESSION_KEY(u"GlobalMaxRatio"_s), -1, [](qreal r) { return r < 0 ? -1. : r;}) - , m_globalMaxSeedingMinutes(BITTORRENT_SESSION_KEY(u"GlobalMaxSeedingMinutes"_s), -1, lowerLimited(-1)) - , m_globalMaxInactiveSeedingMinutes(BITTORRENT_SESSION_KEY(u"GlobalMaxInactiveSeedingMinutes"_s), -1, lowerLimited(-1)) + , m_globalMaxSeedingMinutes(BITTORRENT_SESSION_KEY(u"GlobalMaxSeedingMinutes"_s), Torrent::NO_SEEDING_TIME_LIMIT + , clampValue(Torrent::NO_SEEDING_TIME_LIMIT, Torrent::MAX_SEEDING_TIME)) + , m_globalMaxInactiveSeedingMinutes(BITTORRENT_SESSION_KEY(u"GlobalMaxInactiveSeedingMinutes"_s), Torrent::NO_INACTIVE_SEEDING_TIME_LIMIT + , clampValue(Torrent::NO_INACTIVE_SEEDING_TIME_LIMIT, Torrent::MAX_INACTIVE_SEEDING_TIME)) , m_isAddTorrentToQueueTop(BITTORRENT_SESSION_KEY(u"AddTorrentToTopOfQueue"_s), false) , m_isAddTorrentStopped(BITTORRENT_SESSION_KEY(u"AddTorrentStopped"_s), false) , m_torrentStopCondition(BITTORRENT_SESSION_KEY(u"TorrentStopCondition"_s), Torrent::StopCondition::None) @@ -1255,8 +1257,7 @@ int SessionImpl::globalMaxSeedingMinutes() const void SessionImpl::setGlobalMaxSeedingMinutes(int minutes) { - if (minutes < 0) - minutes = -1; + minutes = std::clamp(minutes, Torrent::NO_SEEDING_TIME_LIMIT, Torrent::MAX_SEEDING_TIME); if (minutes != globalMaxSeedingMinutes()) { @@ -1272,7 +1273,7 @@ int SessionImpl::globalMaxInactiveSeedingMinutes() const void SessionImpl::setGlobalMaxInactiveSeedingMinutes(int minutes) { - minutes = std::max(minutes, -1); + minutes = std::clamp(minutes, Torrent::NO_INACTIVE_SEEDING_TIME_LIMIT, Torrent::MAX_INACTIVE_SEEDING_TIME); if (minutes != globalMaxInactiveSeedingMinutes()) { From 8fc5d0914d15e735ca33553304435dc618b173b6 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sun, 20 Apr 2025 16:47:45 +0800 Subject: [PATCH 73/80] Add versioning to socks.py Also mark variable as private in novaprinter.py. PR #22578. --- src/base/search/searchpluginmanager.cpp | 17 +++++++++-------- src/searchengine/nova3/novaprinter.py | 6 +++--- src/searchengine/nova3/socks.py | 2 ++ 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/src/base/search/searchpluginmanager.cpp b/src/base/search/searchpluginmanager.cpp index d3f3b0297..c79ba5d60 100644 --- a/src/base/search/searchpluginmanager.cpp +++ b/src/base/search/searchpluginmanager.cpp @@ -523,23 +523,23 @@ void SearchPluginManager::updateNova() packageFile2.close(); // Copy search plugin files (if necessary) - const auto updateFile = [&enginePath](const Path &filename, const bool compareVersion) + const auto updateFile = [&enginePath](const Path &filename) { const Path filePathBundled = Path(u":/searchengine/nova3"_s) / filename; const Path filePathDisk = enginePath / filename; - if (compareVersion && (getPluginVersion(filePathBundled) <= getPluginVersion(filePathDisk))) + if (getPluginVersion(filePathBundled) <= getPluginVersion(filePathDisk)) return; Utils::Fs::removeFile(filePathDisk); Utils::Fs::copyFile(filePathBundled, filePathDisk); }; - updateFile(Path(u"helpers.py"_s), true); - updateFile(Path(u"nova2.py"_s), true); - updateFile(Path(u"nova2dl.py"_s), true); - updateFile(Path(u"novaprinter.py"_s), true); - updateFile(Path(u"socks.py"_s), false); + updateFile(Path(u"helpers.py"_s)); + updateFile(Path(u"nova2.py"_s)); + updateFile(Path(u"nova2dl.py"_s)); + updateFile(Path(u"novaprinter.py"_s)); + updateFile(Path(u"socks.py"_s)); } void SearchPluginManager::update() @@ -680,7 +680,8 @@ PluginVersion SearchPluginManager::getPluginVersion(const Path &filePath) while (!pluginFile.atEnd()) { const auto line = QString::fromUtf8(pluginFile.readLine(lineMaxLength)).remove(u' '); - if (!line.startsWith(u"#VERSION:", Qt::CaseInsensitive)) continue; + if (!line.startsWith(u"#VERSION:", Qt::CaseInsensitive)) + continue; const QString versionStr = line.sliced(9); const auto version = PluginVersion::fromString(versionStr); diff --git a/src/searchengine/nova3/novaprinter.py b/src/searchengine/nova3/novaprinter.py index e5c0b0b74..812b0cd95 100644 --- a/src/searchengine/nova3/novaprinter.py +++ b/src/searchengine/nova3/novaprinter.py @@ -1,4 +1,4 @@ -#VERSION: 1.52 +# VERSION: 1.53 # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: @@ -56,7 +56,7 @@ def prettyPrinter(dictionary: SearchResults) -> None: print(outtext, file=utf8stdout) -sizeUnitRegex: re.Pattern[str] = re.compile(r"^(?P\d*\.?\d+) *(?P[a-z]+)?", re.IGNORECASE) +_sizeUnitRegex: re.Pattern[str] = re.compile(r"^(?P\d*\.?\d+) *(?P[a-z]+)?", re.IGNORECASE) # TODO: use `float | int | str` when using Python >= 3.10 @@ -73,7 +73,7 @@ def anySizeToBytes(size_string: Union[float, int, str]) -> int: if isinstance(size_string, float): return round(size_string) - match = sizeUnitRegex.match(size_string.strip()) + match = _sizeUnitRegex.match(size_string.strip()) if match is None: return -1 diff --git a/src/searchengine/nova3/socks.py b/src/searchengine/nova3/socks.py index 88e6a8f8e..8b7ceee69 100644 --- a/src/searchengine/nova3/socks.py +++ b/src/searchengine/nova3/socks.py @@ -1,3 +1,5 @@ +# VERSION: 1.00 + """PySocks - A SOCKS proxy client and wrapper for Python. Version 1.7.1 From 250fef4ee7a4bba9c1ff8f9bb302e6510bcb8cb3 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Sun, 20 Apr 2025 16:54:49 +0800 Subject: [PATCH 74/80] Improve error messages Print error message to stderr instead of stdout. PR #22581. --- src/searchengine/nova3/nova2dl.py | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/searchengine/nova3/nova2dl.py b/src/searchengine/nova3/nova2dl.py index 8a45b3724..bdbf1c574 100644 --- a/src/searchengine/nova3/nova2dl.py +++ b/src/searchengine/nova3/nova2dl.py @@ -1,4 +1,4 @@ -# VERSION: 1.25 +# VERSION: 1.26 # Author: # Christophe DUMEZ (chris@qbittorrent.org) @@ -44,19 +44,21 @@ import helpers helpers.enable_socks_proxy(True) if __name__ == '__main__': + prog_name = sys.argv[0] + if len(sys.argv) < 3: - raise SystemExit('./nova2dl.py engine_name download_parameter') + raise SystemExit(f'Usage: {prog_name} engine_name download_parameter') engine_name = sys.argv[1].strip() download_param = sys.argv[2].strip() try: - module = importlib.import_module("engines." + engine_name) + module = importlib.import_module(f"engines.{engine_name}") engine_class = getattr(module, engine_name) engine = engine_class() except Exception as e: - print(repr(e)) - raise SystemExit('./nova2dl.py: this engine_name was not recognized') + print(repr(e), file=sys.stderr) + raise SystemExit(f'{prog_name}: `engine_name` was not recognized: {engine_name}') if hasattr(engine, 'download_torrent'): engine.download_torrent(download_param) From b4a16f64641873bd067ab5f6c6d54c0b4c12fdcf Mon Sep 17 00:00:00 2001 From: tehcneko Date: Sun, 20 Apr 2025 17:18:26 +0800 Subject: [PATCH 75/80] WebUI: Optimize table performance with virtual list Adding virtual list support to dynamic tables to improve performance on large lists, I observed a 100x performance improvement on rendering on a torrent table with 5000 torrents. This optimization is disabled by default and can be enabled in options. PR #22502. --- src/webui/www/private/rename_files.html | 12 +- src/webui/www/private/scripts/dynamicTable.js | 632 ++++++++++++------ src/webui/www/private/scripts/prop-files.js | 169 +---- src/webui/www/private/scripts/prop-peers.js | 2 +- .../www/private/scripts/prop-trackers.js | 2 +- .../www/private/scripts/prop-webseeds.js | 2 +- src/webui/www/private/views/log.html | 6 +- src/webui/www/private/views/preferences.html | 6 + src/webui/www/private/views/transferlist.html | 2 +- 9 files changed, 474 insertions(+), 359 deletions(-) diff --git a/src/webui/www/private/rename_files.html b/src/webui/www/private/rename_files.html index f8eefa009..37a15b3a7 100644 --- a/src/webui/www/private/rename_files.html +++ b/src/webui/www/private/rename_files.html @@ -41,7 +41,7 @@ // Setup the dynamic table for bulk renaming const bulkRenameFilesTable = new window.qBittorrent.DynamicTable.BulkRenameTorrentFilesTable(); - bulkRenameFilesTable.setup("bulkRenameFilesTableDiv", "bulkRenameFilesTableFixedHeaderDiv", bulkRenameFilesContextMenu); + bulkRenameFilesTable.setup("bulkRenameFilesTableDiv", "bulkRenameFilesTableFixedHeaderDiv", bulkRenameFilesContextMenu, true); // Inject checkbox into the first column of the table header const tableHeaders = document.querySelectorAll("#bulkRenameFilesTableFixedHeaderDiv .dynamicTableHeader th"); @@ -172,7 +172,10 @@ // Update renamed column for matched rows for (let i = 0; i < matchedRows.length; ++i) { const row = matchedRows[i]; - $(`filesTablefileRenamed${row.rowId}`).textContent = row.renamed; + const element = document.getElementById(`filesTablefileRenamed${row.rowId}`); + if (element === null) + continue; + element.textContent = row.renamed; } }; fileRenamer.onInvalidRegex = (err) => { @@ -287,11 +290,6 @@ event.preventDefault(); window.qBittorrent.Client.closeWindow(windowEl); }); - // synchronize header scrolling to table body - $("bulkRenameFilesTableDiv").onscroll = function() { - const length = $(this).scrollLeft; - $("bulkRenameFilesTableFixedHeaderDiv").scrollLeft = length; - }; const handleTorrentFiles = (files, selectedRows) => { const rows = files.map((file, index) => { diff --git a/src/webui/www/private/scripts/dynamicTable.js b/src/webui/www/private/scripts/dynamicTable.js index bbf5e5479..d05cd8c53 100644 --- a/src/webui/www/private/scripts/dynamicTable.js +++ b/src/webui/www/private/scripts/dynamicTable.js @@ -71,14 +71,18 @@ window.qBittorrent.DynamicTable ??= (() => { initialize: () => {}, - setup: function(dynamicTableDivId, dynamicTableFixedHeaderDivId, contextMenu) { + setup: function(dynamicTableDivId, dynamicTableFixedHeaderDivId, contextMenu, useVirtualList = false) { this.dynamicTableDivId = dynamicTableDivId; this.dynamicTableFixedHeaderDivId = dynamicTableFixedHeaderDivId; this.dynamicTableDiv = document.getElementById(dynamicTableDivId); + this.useVirtualList = useVirtualList && (LocalPreferences.get("use_virtual_list", "false") === "true"); this.fixedTableHeader = document.querySelector(`#${dynamicTableFixedHeaderDivId} thead tr`); this.hiddenTableHeader = this.dynamicTableDiv.querySelector(`thead tr`); + this.table = this.dynamicTableDiv.querySelector(`table`); this.tableBody = this.dynamicTableDiv.querySelector(`tbody`); + this.rowHeight = 26; this.rows = new Map(); + this.cachedElements = []; this.selectedRows = []; this.columns = []; this.contextMenu = contextMenu; @@ -91,14 +95,34 @@ window.qBittorrent.DynamicTable ??= (() => { this.setupHeaderEvents(); this.setupHeaderMenu(); this.setupAltRow(); + this.setupVirtualList(); + }, + + setupVirtualList: function() { + if (!this.useVirtualList) + return; + this.table.style.position = "relative"; + + this.renderedHeight = this.dynamicTableDiv.offsetHeight; + const resizeCallback = window.qBittorrent.Misc.createDebounceHandler(100, () => { + const height = this.dynamicTableDiv.offsetHeight; + const needRerender = this.renderedHeight < height; + this.renderedHeight = height; + if (needRerender) + this.rerender(); + }); + new ResizeObserver(resizeCallback).observe(this.dynamicTableDiv); }, setupCommonEvents: function() { - const tableFixedHeaderDiv = $(this.dynamicTableFixedHeaderDivId); + const tableFixedHeaderDiv = document.getElementById(this.dynamicTableFixedHeaderDivId); const tableElement = tableFixedHeaderDiv.querySelector("table"); - this.dynamicTableDiv.addEventListener("scroll", function() { - tableElement.style.left = `${-this.scrollLeft}px`; + this.dynamicTableDiv.addEventListener("scroll", (e) => { + tableElement.style.left = `${-this.dynamicTableDiv.scrollLeft}px`; + // rerender on scroll + if (this.useVirtualList) + this.rerender(); }); this.dynamicTableDiv.addEventListener("click", (e) => { @@ -404,6 +428,9 @@ window.qBittorrent.DynamicTable ??= (() => { const style = `width: ${column.width}px; ${column.style}`; this.getRowCells(this.hiddenTableHeader)[pos].style.cssText = style; this.getRowCells(this.fixedTableHeader)[pos].style.cssText = style; + // rerender on column resize + if (this.useVirtualList) + this.rerender(); column.onResize?.(column.name); }, @@ -707,10 +734,9 @@ window.qBittorrent.DynamicTable ??= (() => { selectAll: function() { this.deselectAll(); - for (const tr of this.getTrs()) { - this.selectedRows.push(tr.rowId); - tr.classList.add("selected"); - } + for (const row of this.getFilteredAndSortedRows()) + this.selectedRows.push(row.rowId); + this.setRowClass(); }, deselectAll: function() { @@ -832,64 +858,138 @@ window.qBittorrent.DynamicTable ??= (() => { } } - const trs = [...this.getTrs()]; + if (this.useVirtualList) { + // rerender on table update + this.rerender(rows); + } + else { + const trs = [...this.getTrs()]; - for (let rowPos = 0; rowPos < rows.length; ++rowPos) { - const rowId = rows[rowPos]["rowId"]; - let tr_found = false; - for (let j = rowPos; j < trs.length; ++j) { - if (trs[j]["rowId"] === rowId) { - tr_found = true; - if (rowPos === j) + for (let rowPos = 0; rowPos < rows.length; ++rowPos) { + const rowId = rows[rowPos].rowId; + let tr_found = false; + for (let j = rowPos; j < trs.length; ++j) { + if (trs[j].rowId === rowId) { + tr_found = true; + if (rowPos === j) + break; + trs[j].inject(trs[rowPos], "before"); + const tmpTr = trs[j]; + trs.splice(j, 1); + trs.splice(rowPos, 0, tmpTr); break; - trs[j].inject(trs[rowPos], "before"); - const tmpTr = trs[j]; - trs.splice(j, 1); - trs.splice(rowPos, 0, tmpTr); - break; + } + } + if (tr_found) { // row already exists in the table + this.updateRow(trs[rowPos], fullUpdate); + } + else { // else create a new row in the table + const tr = this.createRowElement(rows[rowPos]); + + // Insert + if (rowPos >= trs.length) { + tr.inject(this.tableBody); + trs.push(tr); + } + else { + tr.inject(trs[rowPos], "before"); + trs.splice(rowPos, 0, tr); + } + + this.updateRow(tr, true); } } - if (tr_found) { // row already exists in the table - this.updateRow(trs[rowPos], fullUpdate); + + const rowPos = rows.length; + + while ((rowPos < trs.length) && (trs.length > 0)) + trs.pop().destroy(); + } + }, + + rerender: function(rows = this.getFilteredAndSortedRows()) { + // set the scrollable height + this.table.style.height = `${rows.length * this.rowHeight}px`; + + // show extra 6 rows at top/bottom to reduce flickering + const extraRowCount = 6; + // how many rows can be shown in the visible area + const visibleRowCount = Math.ceil(this.renderedHeight / this.rowHeight) + (extraRowCount * 2); + // start position of visible rows, offsetted by scrollTop + let startRow = Math.max((Math.trunc(this.dynamicTableDiv.scrollTop / this.rowHeight) - extraRowCount), 0); + // ensure startRow is even + if ((startRow % 2) === 1) + startRow = Math.max(0, startRow - 1); + const endRow = Math.min((startRow + visibleRowCount), rows.length); + + const elements = []; + for (let i = startRow; i < endRow; ++i) { + const row = rows[i]; + if (row === undefined) + continue; + const offset = i * this.rowHeight; + const position = i - startRow; + // reuse existing elements + let element = this.cachedElements[position]; + if (element !== undefined) + this.updateRowElement(element, row.rowId, offset); + else + element = this.cachedElements[position] = this.createRowElement(row, offset); + elements.push(element); + } + this.tableBody.replaceChildren(...elements); + + // update row classes + this.setRowClass(); + + // update visible rows + for (const row of this.tableBody.children) + this.updateRow(row, true); + + // refresh row height based on first row + setTimeout(() => { + if (this.tableBody.firstChild === null) + return; + const tr = this.tableBody.firstChild; + if (this.rowHeight !== tr.offsetHeight) { + this.rowHeight = tr.offsetHeight; + // rerender on row height change + this.rerender(); } - else { // else create a new row in the table - const tr = document.createElement("tr"); - // set tabindex so element receives keydown events - // more info: https://developer.mozilla.org/en-US/docs/Web/API/Element/keydown_event - tr.tabIndex = -1; - const rowId = rows[rowPos]["rowId"]; - tr.setAttribute("data-row-id", rowId); - tr["rowId"] = rowId; + }); + }, - for (let k = 0; k < this.columns.length; ++k) { - const td = document.createElement("td"); - if ((this.columns[k].visible === "0") || this.columns[k].force_hide) - td.classList.add("invisible"); - tr.append(td); - } + createRowElement: function(row, top = -1) { + const tr = document.createElement("tr"); + // set tabindex so element receives keydown events + // more info: https://developer.mozilla.org/en-US/docs/Web/API/Element/keydown_event + tr.tabIndex = -1; - // Insert - if (rowPos >= trs.length) { - tr.inject(this.tableBody); - trs.push(tr); - } - else { - tr.inject(trs[rowPos], "before"); - trs.splice(rowPos, 0, tr); - } - - // Update context menu - this.contextMenu?.addTarget(tr); - - this.updateRow(tr, true); - } + for (let k = 0; k < this.columns.length; ++k) { + const td = document.createElement("td"); + if ((this.columns[k].visible === "0") || this.columns[k].force_hide) + td.classList.add("invisible"); + tr.append(td); } - const rowPos = rows.length; + this.updateRowElement(tr, row.rowId, top); - while ((rowPos < trs.length) && (trs.length > 0)) - trs.pop().destroy(); + // update context menu + this.contextMenu?.addTarget(tr); + return tr; + }, + + updateRowElement: function(tr, rowId, top) { + tr.dataset.rowId = rowId; + tr.rowId = rowId; + + tr.className = ""; + + if (this.useVirtualList) { + tr.style.position = "absolute"; + tr.style.top = `${top}px`; + } }, updateRow: function(tr, fullUpdate) { @@ -898,6 +998,11 @@ window.qBittorrent.DynamicTable ??= (() => { const tds = this.getRowCells(tr); for (let i = 0; i < this.columns.length; ++i) { + // required due to position: absolute breaks table layout + if (this.useVirtualList) { + tds[i].style.width = `${this.columns[i].width}px`; + tds[i].style.maxWidth = `${this.columns[i].width}px`; + } if (this.columns[i].dataProperties.some(prop => Object.hasOwn(data, prop))) this.columns[i].updateTd(tds[i], row); } @@ -907,15 +1012,25 @@ window.qBittorrent.DynamicTable ??= (() => { removeRow: function(rowId) { this.selectedRows.erase(rowId); this.rows.delete(rowId); - const tr = this.getTrByRowId(rowId); - tr?.destroy(); + if (this.useVirtualList) { + this.rerender(); + } + else { + const tr = this.getTrByRowId(rowId); + tr?.destroy(); + } }, clear: function() { this.deselectAll(); this.rows.clear(); - for (const tr of this.getTrs()) - tr.destroy(); + if (this.useVirtualList) { + this.rerender(); + } + else { + for (const tr of this.getTrs()) + tr.destroy(); + } }, selectedRowsIds: function() { @@ -986,6 +1101,12 @@ window.qBittorrent.DynamicTable ??= (() => { const TorrentsTable = new Class({ Extends: DynamicTable, + setupVirtualList: function() { + this.parent(); + + this.rowHeight = 22; + }, + initColumns: function() { this.newColumn("priority", "", "#", 30, true); this.newColumn("state_icon", "", "QBT_TR(Status Icon)QBT_TR[CONTEXT=TransferListModel]", 30, false); @@ -2075,6 +2196,12 @@ window.qBittorrent.DynamicTable ??= (() => { prevReverseSort: null, fileTree: new window.qBittorrent.FileTree.FileTree(), + setupVirtualList: function() { + this.parent(); + + this.rowHeight = 29; + }, + populateTable: function(root) { this.fileTree.setRoot(root); root.children.each((node) => { @@ -2145,30 +2272,30 @@ window.qBittorrent.DynamicTable ??= (() => { * Toggles the global checkbox and all checkboxes underneath */ toggleGlobalCheckbox: function() { - const checkbox = $("rootMultiRename_cb"); + const checkbox = document.getElementById("rootMultiRename_cb"); const checkboxes = document.querySelectorAll("input.RenamingCB"); for (let i = 0; i < checkboxes.length; ++i) { - const node = this.getNode(i); - if (checkbox.checked || checkbox.indeterminate) { const cb = checkboxes[i]; cb.checked = true; cb.indeterminate = false; cb.state = "checked"; - node.checked = 0; - node.full_data.checked = node.checked; } else { const cb = checkboxes[i]; cb.checked = false; cb.indeterminate = false; cb.state = "unchecked"; - node.checked = 1; - node.full_data.checked = node.checked; } } + const nodes = this.fileTree.toArray(); + for (const node of nodes) { + node.checked = (checkbox.checked || checkbox.indeterminate) ? 0 : 1; + node.full_data.checked = node.checked; + } + this.updateGlobalCheckbox(); }, @@ -2176,7 +2303,7 @@ window.qBittorrent.DynamicTable ??= (() => { const node = this.getNode(rowId); node.checked = checkState; node.full_data.checked = checkState; - const checkbox = $(`cbRename${rowId}`); + const checkbox = document.getElementById(`cbRename${rowId}`); checkbox.checked = node.checked === 0; checkbox.state = checkbox.checked ? "checked" : "unchecked"; @@ -2184,11 +2311,11 @@ window.qBittorrent.DynamicTable ??= (() => { this.toggleNodeTreeCheckbox(node.children[i].rowId, checkState); }, - updateGlobalCheckbox: () => { - const checkbox = $("rootMultiRename_cb"); - const checkboxes = document.querySelectorAll("input.RenamingCB"); - const isAllChecked = Array.prototype.every.call(checkboxes, (checkbox => checkbox.checked)); - const isAllUnchecked = (() => Array.prototype.every.call(checkboxes, (checkbox => !checkbox.checked))); + updateGlobalCheckbox: function() { + const checkbox = document.getElementById("rootMultiRename_cb"); + const nodes = this.fileTree.toArray(); + const isAllChecked = nodes.every((node) => node.checked === 0); + const isAllUnchecked = (() => nodes.every((node) => node.checked !== 0)); if (isAllChecked) { checkbox.state = "checked"; checkbox.indeterminate = false; @@ -2210,82 +2337,86 @@ window.qBittorrent.DynamicTable ??= (() => { const that = this; // checked - this.columns["checked"].updateTd = function(td, row) { + this.columns["checked"].updateTd = (td, row) => { const id = row.rowId; - const value = this.getRowValue(row); + const node = that.getNode(id); - const treeImg = document.createElement("img"); - treeImg.src = "images/L.gif"; - treeImg.style.marginBottom = "-2px"; + if (td.firstElementChild === null) { + const treeImg = document.createElement("img"); + treeImg.src = "images/L.gif"; + treeImg.style.marginBottom = "-2px"; + td.append(treeImg); + } - const checkbox = document.createElement("input"); - checkbox.type = "checkbox"; + let checkbox = td.children[1]; + if (checkbox === undefined) { + checkbox = document.createElement("input"); + checkbox.type = "checkbox"; + checkbox.className = "RenamingCB"; + checkbox.addEventListener("click", (e) => { + const id = e.target.dataset.id; + const node = that.getNode(id); + node.checked = e.target.checked ? 0 : 1; + node.full_data.checked = node.checked; + that.updateGlobalCheckbox(); + that.onRowSelectionChange(node); + e.stopPropagation(); + }); + checkbox.indeterminate = false; + td.append(checkbox); + } checkbox.id = `cbRename${id}`; - checkbox.setAttribute("data-id", id); - checkbox.className = "RenamingCB"; - checkbox.addEventListener("click", (e) => { - const node = that.getNode(id); - node.checked = e.target.checked ? 0 : 1; - node.full_data.checked = node.checked; - that.updateGlobalCheckbox(); - that.onRowSelectionChange(node); - e.stopPropagation(); - }); - checkbox.checked = (value === 0); + checkbox.dataset.id = id; + checkbox.checked = (node.checked === 0); checkbox.state = checkbox.checked ? "checked" : "unchecked"; - checkbox.indeterminate = false; - td.replaceChildren(treeImg, checkbox); }; this.columns["checked"].staticWidth = 50; // original this.columns["original"].updateTd = function(td, row) { const id = row.rowId; - const fileNameId = `filesTablefileName${id}`; const node = that.getNode(id); + const value = this.getRowValue(row); + let dirImg = td.children[0]; + if (dirImg === undefined) { + dirImg = document.createElement("img"); + dirImg.src = "images/directory.svg"; + dirImg.style.width = "20px"; + dirImg.style.paddingRight = "5px"; + dirImg.style.marginBottom = "-3px"; + td.append(dirImg); + } if (node.isFolder) { - const value = this.getRowValue(row); - const dirImgId = `renameTableDirImg${id}`; - if ($(dirImgId)) { - // just update file name - $(fileNameId).textContent = value; - } - else { - const span = document.createElement("span"); - span.textContent = value; - span.id = fileNameId; + dirImg.style.display = "inline"; + dirImg.style.marginLeft = `${node.depth * 20}px`; + } + else { + dirImg.style.display = "none"; + } - const dirImg = document.createElement("img"); - dirImg.src = "images/directory.svg"; - dirImg.style.width = "20px"; - dirImg.style.paddingRight = "5px"; - dirImg.style.marginBottom = "-3px"; - dirImg.style.marginLeft = `${node.depth * 20}px`; - dirImg.id = dirImgId; - td.replaceChildren(dirImg, span); - } - } - else { // is file - const value = this.getRowValue(row); - const span = document.createElement("span"); - span.textContent = value; - span.id = fileNameId; - span.style.marginLeft = `${(node.depth + 1) * 20}px`; - td.replaceChildren(span); + let span = td.children[1]; + if (span === undefined) { + span = document.createElement("span"); + td.append(span); } + span.textContent = value; + span.style.marginLeft = node.isFolder ? "0" : `${(node.depth + 1) * 20}px`; }; // renamed - this.columns["renamed"].updateTd = function(td, row) { + this.columns["renamed"].updateTd = (td, row) => { const id = row.rowId; const fileNameRenamedId = `filesTablefileRenamed${id}`; - const value = this.getRowValue(row); + const node = that.getNode(id); - const span = document.createElement("span"); - span.textContent = value; + let span = td.firstElementChild; + if (span === null) { + span = document.createElement("span"); + td.append(span); + } span.id = fileNameRenamedId; - td.replaceChildren(span); + span.textContent = node.renamed; }; }, @@ -2431,7 +2562,15 @@ window.qBittorrent.DynamicTable ??= (() => { row.full_data.remaining = (row.full_data.size * (1.0 - (row.full_data.progress / 100))); }, - setupCommonEvents: () => {} + setupCommonEvents: function() { + const headerDiv = document.getElementById("bulkRenameFilesTableFixedHeaderDiv"); + this.dynamicTableDiv.addEventListener("scroll", (e) => { + headerDiv.scrollLeft = this.dynamicTableDiv.scrollLeft; + // rerender on scroll + if (this.useVirtualList) + this.rerender(); + }); + } }); const TorrentFilesTable = new Class({ @@ -2445,6 +2584,108 @@ window.qBittorrent.DynamicTable ??= (() => { prevReverseSort: null, fileTree: new window.qBittorrent.FileTree.FileTree(), + initialize: function() { + this.collapseState = new Map(); + }, + + isCollapsed: function(id) { + return this.collapseState.get(id)?.collapsed ?? false; + }, + + expandNode: function(id) { + const state = this.collapseState.get(id); + if (state !== undefined) + state.collapsed = false; + this._updateNodeState(id, false); + }, + + collapseNode: function(id) { + const state = this.collapseState.get(id); + if (state !== undefined) + state.collapsed = true; + this._updateNodeState(id, true); + }, + + expandAllNodes: function() { + for (const [key, _] of this.collapseState) + this.expandNode(key); + }, + + collapseAllNodes: function() { + for (const [key, state] of this.collapseState) { + // collapse all nodes except root + if (state.depth >= 1) + this.collapseNode(key); + } + }, + + _updateNodeVisibility: (node, shouldHide) => { + const span = document.getElementById(`filesTablefileName${node.rowId}`); + // span won't exist if row has been filtered out + if (span === null) + return; + const tr = span.parentElement.parentElement; + tr.classList.toggle("invisible", shouldHide); + }, + + _updateNodeCollapseIcon: (node, isCollapsed) => { + const span = document.getElementById(`filesTablefileName${node.rowId}`); + // span won't exist if row has been filtered out + if (span === null) + return; + const td = span.parentElement; + + // rotate the collapse icon + const collapseIcon = td.firstElementChild; + collapseIcon.classList.toggle("rotate", isCollapsed); + }, + + _updateNodeState: function(id, shouldCollapse) { + // collapsed rows will be filtered out when using virtual list + if (this.useVirtualList) + return; + const node = this.getNode(id); + if (!node.isFolder) + return; + + this._updateNodeCollapseIcon(node, shouldCollapse); + + for (const child of node.children) + this._updateNodeVisibility(child, shouldCollapse); + }, + + clear: function() { + this.parent(); + + this.collapseState.clear(); + }, + + setupVirtualList: function() { + this.parent(); + + this.rowHeight = 29.5; + }, + + expandFolder: function(id) { + const node = this.getNode(id); + if (node.isFolder) + this.expandNode(node); + }, + + collapseFolder: function(id) { + const node = this.getNode(id); + if (node.isFolder) + this.collapseNode(node); + }, + + isAllCheckboxesChecked: function() { + return this.fileTree.toArray().every((node) => node.checked === 1); + }, + + isAllCheckboxesUnchecked: function() { + return this.fileTree.toArray().every((node) => node.checked !== 1); + }, + populateTable: function(root) { this.fileTree.setRoot(root); root.children.each((node) => { @@ -2456,6 +2697,8 @@ window.qBittorrent.DynamicTable ??= (() => { node.depth = depth; if (node.isFolder) { + if (!this.collapseState.has(node.rowId)) + this.collapseState.set(node.rowId, { depth: depth, collapsed: depth > 0 }); const data = { rowId: node.rowId, size: node.size, @@ -2470,7 +2713,7 @@ window.qBittorrent.DynamicTable ??= (() => { node.data = data; node.full_data = data; - this.updateRowData(data); + this.updateRowData(data, depth); } else { node.data.rowId = node.rowId; @@ -2496,6 +2739,11 @@ window.qBittorrent.DynamicTable ??= (() => { return this.rows.get(rowId); }, + getRowFileId: function(rowId) { + const row = this.rows.get(rowId); + return row?.full_data.fileId; + }, + initColumns: function() { this.newColumn("checked", "", "", 50, true); this.newColumn("name", "", "QBT_TR(Name)QBT_TR[CONTEXT=TrackerListWidget]", 300, true); @@ -2526,15 +2774,19 @@ window.qBittorrent.DynamicTable ??= (() => { const id = row.rowId; const value = this.getRowValue(row); - if (window.qBittorrent.PropFiles.isDownloadCheckboxExists(id)) { - window.qBittorrent.PropFiles.updateDownloadCheckbox(id, value); - } - else { + if (td.firstElementChild === null) { const treeImg = document.createElement("img"); treeImg.src = "images/L.gif"; treeImg.style.marginBottom = "-2px"; - td.append(treeImg, window.qBittorrent.PropFiles.createDownloadCheckbox(id, row.full_data.fileId, value)); + td.append(treeImg); } + + const downloadCheckbox = td.children[1]; + if (downloadCheckbox === undefined) + td.append(window.qBittorrent.PropFiles.createDownloadCheckbox(id, row.full_data.fileId, value)); + else + window.qBittorrent.PropFiles.updateDownloadCheckbox(downloadCheckbox, id, row.full_data.fileId, value); + }; this.columns["checked"].staticWidth = 50; @@ -2543,46 +2795,56 @@ window.qBittorrent.DynamicTable ??= (() => { const id = row.rowId; const fileNameId = `filesTablefileName${id}`; const node = that.getNode(id); + const value = this.getRowValue(row); + let collapseIcon = td.firstElementChild; + if (collapseIcon === null) { + collapseIcon = document.createElement("img"); + collapseIcon.src = "images/go-down.svg"; + collapseIcon.className = "filesTableCollapseIcon"; + collapseIcon.addEventListener("click", (e) => { + const id = collapseIcon.dataset.id; + const node = that.getNode(id); + if (node !== null) { + if (that.isCollapsed(node.rowId)) + that.expandNode(node.rowId); + else + that.collapseNode(node.rowId); + if (that.useVirtualList) + that.rerender(); + } + }); + td.append(collapseIcon); + } if (node.isFolder) { - const value = this.getRowValue(row); - const collapseIconId = `filesTableCollapseIcon${id}`; - const dirImgId = `filesTableDirImg${id}`; - if ($(dirImgId)) { - // just update file name - $(fileNameId).textContent = value; - } - else { - const collapseIcon = document.createElement("img"); - collapseIcon.src = "images/go-down.svg"; - collapseIcon.style.marginLeft = `${node.depth * 20}px`; - collapseIcon.className = "filesTableCollapseIcon"; - collapseIcon.id = collapseIconId; - collapseIcon.setAttribute("data-id", id); - collapseIcon.addEventListener("click", function(e) { qBittorrent.PropFiles.collapseIconClicked(this); }); - - const span = document.createElement("span"); - span.textContent = value; - span.id = fileNameId; - - const dirImg = document.createElement("img"); - dirImg.src = "images/directory.svg"; - dirImg.style.width = "20px"; - dirImg.style.paddingRight = "5px"; - dirImg.style.marginBottom = "-3px"; - dirImg.id = dirImgId; - - td.replaceChildren(collapseIcon, dirImg, span); - } + collapseIcon.style.marginLeft = `${node.depth * 20}px`; + collapseIcon.style.display = "inline"; + collapseIcon.dataset.id = id; + collapseIcon.classList.toggle("rotate", that.isCollapsed(node.rowId)); } else { - const value = this.getRowValue(row); - const span = document.createElement("span"); - span.textContent = value; - span.id = fileNameId; - span.style.marginLeft = `${(node.depth + 1) * 20}px`; - td.replaceChildren(span); + collapseIcon.style.display = "none"; } + + let dirImg = td.children[1]; + if (dirImg === undefined) { + dirImg = document.createElement("img"); + dirImg.src = "images/directory.svg"; + dirImg.style.width = "20px"; + dirImg.style.paddingRight = "5px"; + dirImg.style.marginBottom = "-3px"; + td.append(dirImg); + } + dirImg.style.display = node.isFolder ? "inline" : "none"; + + let span = td.children[2]; + if (span === undefined) { + span = document.createElement("span"); + td.append(span); + } + span.id = fileNameId; + span.textContent = value; + span.style.marginLeft = node.isFolder ? "0" : `${(node.depth + 1) * 20}px`; }; this.columns["name"].calculateBuffer = (rowId) => { const node = that.getNode(rowId); @@ -2599,10 +2861,9 @@ window.qBittorrent.DynamicTable ??= (() => { const id = row.rowId; const value = Number(this.getRowValue(row)); - const progressBar = $(`pbf_${id}`); + const progressBar = td.firstElementChild; if (progressBar === null) { td.append(new window.qBittorrent.ProgressBar.ProgressBar(value, { - id: `pbf_${id}`, width: 80 })); } @@ -2617,10 +2878,11 @@ window.qBittorrent.DynamicTable ??= (() => { const id = row.rowId; const value = this.getRowValue(row); - if (window.qBittorrent.PropFiles.isPriorityComboExists(id)) - window.qBittorrent.PropFiles.updatePriorityCombo(id, value); - else + const priorityCombo = td.firstElementChild; + if (priorityCombo === null) td.append(window.qBittorrent.PropFiles.createPriorityCombo(id, row.full_data.fileId, value)); + else + window.qBittorrent.PropFiles.updatePriorityCombo(priorityCombo, id, row.full_data.fileId, value); }; this.columns["priority"].staticWidth = 140; @@ -2652,7 +2914,7 @@ window.qBittorrent.DynamicTable ??= (() => { }, _filterNodes: function(node, filterTerms, filteredRows) { - if (node.isFolder) { + if (node.isFolder && (!this.useVirtualList || !this.isCollapsed(node.rowId))) { const childAdded = node.children.reduce((acc, child) => { // we must execute the function before ORing w/ acc or we'll stop checking child nodes after the first successful match return (this._filterNodes(child, filterTerms, filteredRows) || acc); @@ -2689,19 +2951,11 @@ window.qBittorrent.DynamicTable ??= (() => { const generateRowsSignature = () => { const rowsData = []; for (const { full_data } of this.getRowValues()) - rowsData.push(full_data); + rowsData.push({ ...full_data, collapsed: this.isCollapsed(full_data.rowId) }); return JSON.stringify(rowsData); }; const getFilteredRows = function() { - if (this.filterTerms.length === 0) { - const nodeArray = this.fileTree.toArray(); - const filteredRows = nodeArray.map((node) => { - return this.getRow(node); - }); - return filteredRows; - } - const filteredRows = []; this.getRoot().children.each((child) => { this._filterNodes(child, this.filterTerms, filteredRows); @@ -2758,11 +3012,11 @@ window.qBittorrent.DynamicTable ??= (() => { switch (e.key) { case "ArrowLeft": e.preventDefault(); - window.qBittorrent.PropFiles.collapseFolder(this.getSelectedRowId()); + this.collapseFolder(this.getSelectedRowId()); break; case "ArrowRight": e.preventDefault(); - window.qBittorrent.PropFiles.expandFolder(this.getSelectedRowId()); + this.expandFolder(this.getSelectedRowId()); break; } }); @@ -3247,10 +3501,6 @@ window.qBittorrent.DynamicTable ??= (() => { filterText: "", - filteredLength: function() { - return this.tableBody.rows.length; - }, - initColumns: function() { this.newColumn("rowId", "", "QBT_TR(ID)QBT_TR[CONTEXT=ExecutionLogWidget]", 50, true); this.newColumn("message", "", "QBT_TR(Message)QBT_TR[CONTEXT=ExecutionLogWidget]", 350, true); @@ -3293,7 +3543,7 @@ window.qBittorrent.DynamicTable ??= (() => { } td.textContent = logLevel; td.title = logLevel; - td.closest("tr").className = `logTableRow${addClass}`; + td.closest("tr").classList.add(`logTableRow${addClass}`); }; }, @@ -3323,6 +3573,8 @@ window.qBittorrent.DynamicTable ??= (() => { return (this.reverseSort === "0") ? res : -res; }); + this.filteredLength = filteredRows.length; + return filteredRows; }, }); @@ -3355,7 +3607,7 @@ window.qBittorrent.DynamicTable ??= (() => { } td.textContent = status; td.title = status; - td.closest("tr").className = `logTableRow${addClass}`; + td.closest("tr").classList.add(`logTableRow${addClass}`); }; }, diff --git a/src/webui/www/private/scripts/prop-files.js b/src/webui/www/private/scripts/prop-files.js index e5eaae54a..482781112 100644 --- a/src/webui/www/private/scripts/prop-files.js +++ b/src/webui/www/private/scripts/prop-files.js @@ -33,16 +33,11 @@ window.qBittorrent.PropFiles ??= (() => { const exports = () => { return { normalizePriority: normalizePriority, - isDownloadCheckboxExists: isDownloadCheckboxExists, createDownloadCheckbox: createDownloadCheckbox, updateDownloadCheckbox: updateDownloadCheckbox, - isPriorityComboExists: isPriorityComboExists, createPriorityCombo: createPriorityCombo, updatePriorityCombo: updatePriorityCombo, updateData: updateData, - collapseIconClicked: collapseIconClicked, - expandFolder: expandFolder, - collapseFolder: collapseFolder, clear: clear }; }; @@ -126,25 +121,20 @@ window.qBittorrent.PropFiles ??= (() => { updateGlobalCheckbox(); }; - const isDownloadCheckboxExists = (id) => { - return $(`cbPrio${id}`) !== null; - }; - const createDownloadCheckbox = (id, fileId, checked) => { const checkbox = document.createElement("input"); checkbox.type = "checkbox"; - checkbox.id = `cbPrio${id}`; checkbox.setAttribute("data-id", id); checkbox.setAttribute("data-file-id", fileId); - checkbox.className = "DownloadedCB"; checkbox.addEventListener("click", fileCheckboxClicked); updateCheckbox(checkbox, checked); return checkbox; }; - const updateDownloadCheckbox = (id, checked) => { - const checkbox = $(`cbPrio${id}`); + const updateDownloadCheckbox = (checkbox, id, fileId, checked) => { + checkbox.setAttribute("data-id", id); + checkbox.setAttribute("data-file-id", fileId); updateCheckbox(checkbox, checked); }; @@ -162,10 +152,6 @@ window.qBittorrent.PropFiles ??= (() => { } }; - const isPriorityComboExists = (id) => { - return $(`comboPrio${id}`) !== null; - }; - const createPriorityCombo = (id, fileId, selectedPriority) => { const createOption = (priority, isSelected, text) => { const option = document.createElement("option"); @@ -195,8 +181,10 @@ window.qBittorrent.PropFiles ??= (() => { return select; }; - const updatePriorityCombo = (id, selectedPriority) => { - const combobox = $(`comboPrio${id}`); + const updatePriorityCombo = (combobox, id, fileId, selectedPriority) => { + combobox.id = `comboPrio${id}`; + combobox.setAttribute("data-id", id); + combobox.setAttribute("data-file-id", fileId); if (Number(combobox.value) !== selectedPriority) selectComboboxPriority(combobox, selectedPriority); }; @@ -258,9 +246,9 @@ window.qBittorrent.PropFiles ??= (() => { const updateGlobalCheckbox = () => { const checkbox = $("tristate_cb"); - if (isAllCheckboxesChecked()) + if (torrentFilesTable.isAllCheckboxesChecked()) setCheckboxChecked(checkbox); - else if (isAllCheckboxesUnchecked()) + else if (torrentFilesTable.isAllCheckboxesUnchecked()) setCheckboxUnchecked(checkbox); else setCheckboxPartial(checkbox); @@ -283,10 +271,6 @@ window.qBittorrent.PropFiles ??= (() => { checkbox.indeterminate = true; }; - const isAllCheckboxesChecked = () => Array.prototype.every.call(document.querySelectorAll("input.DownloadedCB"), (checkbox => checkbox.checked)); - - const isAllCheckboxesUnchecked = () => Array.prototype.every.call(document.querySelectorAll("input.DownloadedCB"), (checkbox => !checkbox.checked)); - const setFilePriority = (ids, fileIds, priority) => { if (current_hash === "") return; @@ -317,8 +301,6 @@ window.qBittorrent.PropFiles ??= (() => { if (combobox !== null) selectComboboxPriority(combobox, priority); }); - - torrentFilesTable.updateTable(false); }; let loadTorrentFilesDataTimer = -1; @@ -364,7 +346,7 @@ window.qBittorrent.PropFiles ??= (() => { else { handleNewTorrentFiles(files); if (loadedNewTorrent) - collapseAllNodes(); + torrentFilesTable.collapseAllNodes(); } }) .finally(() => { @@ -470,29 +452,6 @@ window.qBittorrent.PropFiles ??= (() => { torrentFilesTable.reselectRows(selectedFiles); }; - const collapseIconClicked = (event) => { - const id = event.getAttribute("data-id"); - const node = torrentFilesTable.getNode(id); - const isCollapsed = (event.parentElement.getAttribute("data-collapsed") === "true"); - - if (isCollapsed) - expandNode(node); - else - collapseNode(node); - }; - - const expandFolder = (id) => { - const node = torrentFilesTable.getNode(id); - if (node.isFolder) - expandNode(node); - }; - - const collapseFolder = (id) => { - const node = torrentFilesTable.getNode(id); - if (node.isFolder) - collapseNode(node); - }; - const filesPriorityMenuClicked = (priority) => { const selectedRows = torrentFilesTable.selectedRowsIds(); if (selectedRows.length === 0) @@ -501,9 +460,8 @@ window.qBittorrent.PropFiles ??= (() => { const rowIds = []; const fileIds = []; selectedRows.forEach((rowId) => { - const elem = $(`comboPrio${rowId}`); rowIds.push(rowId); - fileIds.push(elem.getAttribute("data-file-id")); + fileIds.push(torrentFilesTable.getRowFileId(rowId)); }); const uniqueRowIds = {}; @@ -607,7 +565,7 @@ window.qBittorrent.PropFiles ??= (() => { } }); - torrentFilesTable.setup("torrentFilesTableDiv", "torrentFilesTableFixedHeaderDiv", torrentFilesContextMenu); + torrentFilesTable.setup("torrentFilesTableDiv", "torrentFilesTableFixedHeaderDiv", torrentFilesContextMenu, true); // inject checkbox into table header const tableHeaders = document.querySelectorAll("#torrentFilesTableFixedHeaderDiv .dynamicTableHeader th"); if (tableHeaders.length > 0) { @@ -641,111 +599,12 @@ window.qBittorrent.PropFiles ??= (() => { torrentFilesTable.updateTable(); if (value.trim() === "") - collapseAllNodes(); + torrentFilesTable.collapseAllNodes(); else - expandAllNodes(); + torrentFilesTable.expandAllNodes(); }, window.qBittorrent.Misc.FILTER_INPUT_DELAY); }); - /** - * Show/hide a node's row - */ - const _hideNode = (node, shouldHide) => { - const span = $(`filesTablefileName${node.rowId}`); - // span won't exist if row has been filtered out - if (span === null) - return; - const rowElem = span.parentElement.parentElement; - rowElem.classList.toggle("invisible", shouldHide); - }; - - /** - * Update a node's collapsed state and icon - */ - const _updateNodeState = (node, isCollapsed) => { - const span = $(`filesTablefileName${node.rowId}`); - // span won't exist if row has been filtered out - if (span === null) - return; - const td = span.parentElement; - - // store collapsed state - td.setAttribute("data-collapsed", isCollapsed); - - // rotate the collapse icon - const collapseIcon = td.getElementsByClassName("filesTableCollapseIcon")[0]; - collapseIcon.classList.toggle("rotate", isCollapsed); - }; - - const _isCollapsed = (node) => { - const span = $(`filesTablefileName${node.rowId}`); - if (span === null) - return true; - - const td = span.parentElement; - return td.getAttribute("data-collapsed") === "true"; - }; - - const expandNode = (node) => { - _collapseNode(node, false, false, false); - }; - - const collapseNode = (node) => { - _collapseNode(node, true, false, false); - }; - - const expandAllNodes = () => { - const root = torrentFilesTable.getRoot(); - root.children.each((node) => { - node.children.each((child) => { - _collapseNode(child, false, true, false); - }); - }); - }; - - const collapseAllNodes = () => { - const root = torrentFilesTable.getRoot(); - root.children.each((node) => { - node.children.each((child) => { - _collapseNode(child, true, true, false); - }); - }); - }; - - /** - * Collapses a folder node with the option to recursively collapse all children - * @param {FolderNode} node the node to collapse/expand - * @param {boolean} shouldCollapse true if the node should be collapsed, false if it should be expanded - * @param {boolean} applyToChildren true if the node's children should also be collapsed, recursively - * @param {boolean} isChildNode true if the current node is a child of the original node we collapsed/expanded - */ - const _collapseNode = (node, shouldCollapse, applyToChildren, isChildNode) => { - if (!node.isFolder) - return; - - const shouldExpand = !shouldCollapse; - const isNodeCollapsed = _isCollapsed(node); - const nodeInCorrectState = ((shouldCollapse && isNodeCollapsed) || (shouldExpand && !isNodeCollapsed)); - const canSkipNode = (isChildNode && (!applyToChildren || nodeInCorrectState)); - if (!isChildNode || applyToChildren || !canSkipNode) - _updateNodeState(node, shouldCollapse); - - node.children.each((child) => { - _hideNode(child, shouldCollapse); - - if (!child.isFolder) - return; - - // don't expand children that have been independently collapsed, unless applyToChildren is true - const shouldExpandChildren = (shouldExpand && applyToChildren); - const isChildCollapsed = _isCollapsed(child); - if (!shouldExpandChildren && isChildCollapsed) - return; - - _collapseNode(child, shouldCollapse, applyToChildren, true); - }); - }; - const clear = () => { torrentFilesTable.clear(); }; diff --git a/src/webui/www/private/scripts/prop-peers.js b/src/webui/www/private/scripts/prop-peers.js index e7fa59ac2..80120c86e 100644 --- a/src/webui/www/private/scripts/prop-peers.js +++ b/src/webui/www/private/scripts/prop-peers.js @@ -187,7 +187,7 @@ window.qBittorrent.PropPeers ??= (() => { } }); - torrentPeersTable.setup("torrentPeersTableDiv", "torrentPeersTableFixedHeaderDiv", torrentPeersContextMenu); + torrentPeersTable.setup("torrentPeersTableDiv", "torrentPeersTableFixedHeaderDiv", torrentPeersContextMenu, true); return exports(); })(); diff --git a/src/webui/www/private/scripts/prop-trackers.js b/src/webui/www/private/scripts/prop-trackers.js index 9b02b6aef..fbf5c0eef 100644 --- a/src/webui/www/private/scripts/prop-trackers.js +++ b/src/webui/www/private/scripts/prop-trackers.js @@ -248,7 +248,7 @@ window.qBittorrent.PropTrackers ??= (() => { } }); - torrentTrackersTable.setup("torrentTrackersTableDiv", "torrentTrackersTableFixedHeaderDiv", torrentTrackersContextMenu); + torrentTrackersTable.setup("torrentTrackersTableDiv", "torrentTrackersTableFixedHeaderDiv", torrentTrackersContextMenu, true); return exports(); })(); diff --git a/src/webui/www/private/scripts/prop-webseeds.js b/src/webui/www/private/scripts/prop-webseeds.js index af674d6b4..96cfbd4ea 100644 --- a/src/webui/www/private/scripts/prop-webseeds.js +++ b/src/webui/www/private/scripts/prop-webseeds.js @@ -223,7 +223,7 @@ window.qBittorrent.PropWebseeds ??= (() => { } }); - torrentWebseedsTable.setup("torrentWebseedsTableDiv", "torrentWebseedsTableFixedHeaderDiv", torrentWebseedsContextMenu); + torrentWebseedsTable.setup("torrentWebseedsTableDiv", "torrentWebseedsTableFixedHeaderDiv", torrentWebseedsContextMenu, true); return exports(); })(); diff --git a/src/webui/www/private/views/log.html b/src/webui/www/private/views/log.html index 0790bc0bb..99fe8660a 100644 --- a/src/webui/www/private/views/log.html +++ b/src/webui/www/private/views/log.html @@ -223,8 +223,8 @@ } }); - tableInfo["main"].instance.setup("logMessageTableDiv", "logMessageTableFixedHeaderDiv", logTableContextMenu); - tableInfo["peer"].instance.setup("logPeerTableDiv", "logPeerTableFixedHeaderDiv", logTableContextMenu); + tableInfo["main"].instance.setup("logMessageTableDiv", "logMessageTableFixedHeaderDiv", logTableContextMenu, true); + tableInfo["peer"].instance.setup("logPeerTableDiv", "logPeerTableFixedHeaderDiv", logTableContextMenu, true); MUI.Panels.instances.LogPanel.contentEl.style.height = "100%"; @@ -331,7 +331,7 @@ if (curTab === undefined) curTab = currentSelectedTab; - $("numFilteredLogs").textContent = tableInfo[curTab].instance.filteredLength(); + $("numFilteredLogs").textContent = tableInfo[curTab].instance.filteredLength; $("numTotalLogs").textContent = tableInfo[curTab].instance.getRowSize(); }; diff --git a/src/webui/www/private/views/preferences.html b/src/webui/www/private/views/preferences.html index 30173ccb0..07109e68e 100644 --- a/src/webui/www/private/views/preferences.html +++ b/src/webui/www/private/views/preferences.html @@ -106,6 +106,10 @@
+
+ + +
@@ -2221,6 +2225,7 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD $("statusBarExternalIP").checked = pref.status_bar_external_ip; $("performanceWarning").checked = pref.performance_warning; document.getElementById("displayFullURLTrackerColumn").checked = (LocalPreferences.get("full_url_tracker_column", "false") === "true"); + document.getElementById("useVirtualList").checked = (LocalPreferences.get("use_virtual_list", "false") === "true"); document.getElementById("hideZeroFiltersCheckbox").checked = (LocalPreferences.get("hide_zero_status_filters", "false") === "true"); $("dblclickDownloadSelect").value = LocalPreferences.get("dblclick_download", "1"); $("dblclickCompleteSelect").value = LocalPreferences.get("dblclick_complete", "1"); @@ -2653,6 +2658,7 @@ Use ';' to split multiple entries. Can use wildcard '*'.)QBT_TR[CONTEXT=OptionsD settings["status_bar_external_ip"] = $("statusBarExternalIP").checked; settings["performance_warning"] = $("performanceWarning").checked; LocalPreferences.set("full_url_tracker_column", document.getElementById("displayFullURLTrackerColumn").checked.toString()); + LocalPreferences.set("use_virtual_list", document.getElementById("useVirtualList").checked.toString()); LocalPreferences.set("hide_zero_status_filters", document.getElementById("hideZeroFiltersCheckbox").checked.toString()); LocalPreferences.set("dblclick_download", $("dblclickDownloadSelect").value); LocalPreferences.set("dblclick_complete", $("dblclickCompleteSelect").value); diff --git a/src/webui/www/private/views/transferlist.html b/src/webui/www/private/views/transferlist.html index 0692a06db..c6feebbb5 100644 --- a/src/webui/www/private/views/transferlist.html +++ b/src/webui/www/private/views/transferlist.html @@ -111,7 +111,7 @@ }); const setup = () => { - torrentsTable.setup("torrentsTableDiv", "torrentsTableFixedHeaderDiv", contextMenu); + torrentsTable.setup("torrentsTableDiv", "torrentsTableFixedHeaderDiv", contextMenu, true); }; return exports(); From e51be45ce652deb0fa1990549bab1147e07c37e7 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Sun, 20 Apr 2025 23:34:53 +0300 Subject: [PATCH 76/80] Sync translations from Transifex and run lupdate --- dist/unix/org.qbittorrent.qBittorrent.desktop | 2 +- src/lang/qbittorrent_ar.ts | 2907 +++++------ src/lang/qbittorrent_az@latin.ts | 4424 ++++++++-------- src/lang/qbittorrent_be.ts | 3262 ++++++------ src/lang/qbittorrent_bg.ts | 2820 +++++------ src/lang/qbittorrent_ca.ts | 3191 ++++++------ src/lang/qbittorrent_cs.ts | 3190 ++++++------ src/lang/qbittorrent_da.ts | 2735 +++++----- src/lang/qbittorrent_de.ts | 3322 ++++++------ src/lang/qbittorrent_el.ts | 3061 ++++++------ src/lang/qbittorrent_en.ts | 2497 ++++----- src/lang/qbittorrent_en_AU.ts | 2875 +++++------ src/lang/qbittorrent_en_GB.ts | 3190 ++++++------ src/lang/qbittorrent_eo.ts | 3228 ++++++------ src/lang/qbittorrent_es.ts | 3190 ++++++------ src/lang/qbittorrent_et.ts | 2890 +++++------ src/lang/qbittorrent_eu.ts | 3053 ++++++----- src/lang/qbittorrent_fa.ts | 3140 ++++++------ src/lang/qbittorrent_fi.ts | 2987 ++++++----- src/lang/qbittorrent_fr.ts | 3260 ++++++------ src/lang/qbittorrent_gl.ts | 3189 ++++++------ src/lang/qbittorrent_he.ts | 2918 +++++------ src/lang/qbittorrent_hi_IN.ts | 2819 +++++------ src/lang/qbittorrent_hr.ts | 3148 ++++++------ src/lang/qbittorrent_hu.ts | 3218 ++++++------ src/lang/qbittorrent_hy.ts | 2703 +++++----- src/lang/qbittorrent_id.ts | 2831 +++++------ src/lang/qbittorrent_is.ts | 2489 ++++----- src/lang/qbittorrent_it.ts | 3238 ++++++------ src/lang/qbittorrent_ja.ts | 3190 ++++++------ src/lang/qbittorrent_ka.ts | 2704 +++++----- src/lang/qbittorrent_ko.ts | 3190 ++++++------ src/lang/qbittorrent_lt.ts | 2860 +++++------ src/lang/qbittorrent_ltg.ts | 4452 +++++++++-------- src/lang/qbittorrent_lv_LV.ts | 3032 ++++++----- src/lang/qbittorrent_mn_MN.ts | 2485 ++++----- src/lang/qbittorrent_ms_MY.ts | 2741 +++++----- src/lang/qbittorrent_nb.ts | 3190 ++++++------ src/lang/qbittorrent_nl.ts | 3053 ++++++----- src/lang/qbittorrent_oc.ts | 2665 +++++----- src/lang/qbittorrent_pl.ts | 3194 ++++++------ src/lang/qbittorrent_pt_BR.ts | 3190 ++++++------ src/lang/qbittorrent_pt_PT.ts | 2936 +++++------ src/lang/qbittorrent_ro.ts | 2859 +++++------ src/lang/qbittorrent_ru.ts | 3212 ++++++------ src/lang/qbittorrent_sk.ts | 2875 +++++------ src/lang/qbittorrent_sl.ts | 3033 ++++++----- src/lang/qbittorrent_sr.ts | 2797 +++++------ src/lang/qbittorrent_sv.ts | 3198 ++++++------ src/lang/qbittorrent_th.ts | 2774 +++++----- src/lang/qbittorrent_tr.ts | 3216 ++++++------ src/lang/qbittorrent_uk.ts | 3190 ++++++------ src/lang/qbittorrent_uz@Latn.ts | 4443 ++++++++-------- src/lang/qbittorrent_vi.ts | 3200 ++++++------ src/lang/qbittorrent_zh_CN.ts | 3190 ++++++------ src/lang/qbittorrent_zh_HK.ts | 2820 +++++------ src/lang/qbittorrent_zh_TW.ts | 3190 ++++++------ src/webui/www/translations/webui_ar.ts | 532 +- src/webui/www/translations/webui_az@latin.ts | 740 +-- src/webui/www/translations/webui_be.ts | 702 +-- src/webui/www/translations/webui_bg.ts | 526 +- src/webui/www/translations/webui_ca.ts | 740 +-- src/webui/www/translations/webui_cs.ts | 740 +-- src/webui/www/translations/webui_da.ts | 474 +- src/webui/www/translations/webui_de.ts | 780 +-- src/webui/www/translations/webui_el.ts | 624 +-- src/webui/www/translations/webui_en.ts | 228 +- src/webui/www/translations/webui_en_AU.ts | 536 +- src/webui/www/translations/webui_en_GB.ts | 740 +-- src/webui/www/translations/webui_eo.ts | 502 +- src/webui/www/translations/webui_es.ts | 690 +-- src/webui/www/translations/webui_et.ts | 564 ++- src/webui/www/translations/webui_eu.ts | 622 +-- src/webui/www/translations/webui_fa.ts | 697 +-- src/webui/www/translations/webui_fi.ts | 640 +-- src/webui/www/translations/webui_fr.ts | 742 +-- src/webui/www/translations/webui_gl.ts | 672 +-- src/webui/www/translations/webui_he.ts | 572 ++- src/webui/www/translations/webui_hi_IN.ts | 482 +- src/webui/www/translations/webui_hr.ts | 694 +-- src/webui/www/translations/webui_hu.ts | 750 +-- src/webui/www/translations/webui_hy.ts | 444 +- src/webui/www/translations/webui_id.ts | 512 +- src/webui/www/translations/webui_is.ts | 293 +- src/webui/www/translations/webui_it.ts | 743 +-- src/webui/www/translations/webui_ja.ts | 630 +-- src/webui/www/translations/webui_ka.ts | 468 +- src/webui/www/translations/webui_ko.ts | 740 +-- src/webui/www/translations/webui_lt.ts | 558 ++- src/webui/www/translations/webui_ltg.ts | 442 +- src/webui/www/translations/webui_lv_LV.ts | 628 +-- src/webui/www/translations/webui_mn_MN.ts | 334 +- src/webui/www/translations/webui_ms_MY.ts | 470 +- src/webui/www/translations/webui_nb.ts | 740 +-- src/webui/www/translations/webui_nl.ts | 622 +-- src/webui/www/translations/webui_oc.ts | 416 +- src/webui/www/translations/webui_pl.ts | 742 +-- src/webui/www/translations/webui_pt_BR.ts | 740 +-- src/webui/www/translations/webui_pt_PT.ts | 610 +-- src/webui/www/translations/webui_ro.ts | 530 +- src/webui/www/translations/webui_ru.ts | 744 +-- src/webui/www/translations/webui_sk.ts | 536 +- src/webui/www/translations/webui_sl.ts | 580 ++- src/webui/www/translations/webui_sr.ts | 491 +- src/webui/www/translations/webui_sv.ts | 744 +-- src/webui/www/translations/webui_th.ts | 484 +- src/webui/www/translations/webui_tr.ts | 754 +-- src/webui/www/translations/webui_uk.ts | 740 +-- src/webui/www/translations/webui_uz@Latn.ts | 228 +- src/webui/www/translations/webui_vi.ts | 746 +-- src/webui/www/translations/webui_zh_CN.ts | 740 +-- src/webui/www/translations/webui_zh_HK.ts | 526 +- src/webui/www/translations/webui_zh_TW.ts | 740 +-- 113 files changed, 101172 insertions(+), 105188 deletions(-) diff --git a/dist/unix/org.qbittorrent.qBittorrent.desktop b/dist/unix/org.qbittorrent.qBittorrent.desktop index 2cd055a1a..1b71eb024 100644 --- a/dist/unix/org.qbittorrent.qBittorrent.desktop +++ b/dist/unix/org.qbittorrent.qBittorrent.desktop @@ -105,7 +105,7 @@ GenericName[ka]=BitTorrent კლიენტი Comment[ka]=გადმოტვირთეთ და გააზიარეთ ფაილები BitTorrent-ის საშუალებით Name[ka]=qBittorrent GenericName[ko]=BitTorrent 클라이언트 -Comment[ko]=BitTorrent를 통한 파일 다운로드 및 공유 +Comment[ko]=BitTorrent를 통해 파일 다운로드 및 공유 Name[ko]=qBittorrent GenericName[lt]=BitTorrent klientas Comment[lt]=Atsisiųskite bei dalinkitės failais BitTorrent tinkle diff --git a/src/lang/qbittorrent_ar.ts b/src/lang/qbittorrent_ar.ts index 136789a74..1372480a4 100644 --- a/src/lang/qbittorrent_ar.ts +++ b/src/lang/qbittorrent_ar.ts @@ -170,10 +170,6 @@ Never show again لا تعرض مرة أخرى - - Torrent settings - إعدادات التورنت - Set as default category @@ -207,7 +203,7 @@ Torrent options - + خيارات التورنت @@ -235,25 +231,25 @@ شرط التوقف: - - + + None بدون - - + + Metadata received استلمت البيانات الوصفية - + Torrents that have metadata initially will be added as stopped. ستتم إضافة التورينت التي تحتوي على بيانات وصفية في البداية على أنها متوقفة. - + Files checked فُحصت الملفات @@ -368,112 +364,112 @@ أحفظ كملف تورنت... - + I/O Error خطأ إدخال/إخراج - + Not Available This comment is unavailable غير متوفر - + Not Available This date is unavailable غير متوفر - + Not available غير متوفر - + Magnet link رابط مغناطيسي - + Retrieving metadata... يجلب البيانات الوصفية... - - + + Choose save path اختر مسار الحفظ - + No stop condition is set. لم يتم وضع شرط للتوقف - + Torrent will stop after metadata is received. سيتوقف التورنت بعد استقبال البيانات الوصفية - + Torrent will stop after files are initially checked. سيتوقف التورنت بعد الملفات التي تم فحصحها - + This will also download metadata if it wasn't there initially. سيؤدي هذا أيضًا إلى تنزيل البيانات الوصفية إذا لم تكن موجودة في البداية. - + N/A لا يوجد - + %1 (Free space on disk: %2) %1 (المساحة الخالية من القرص: %2) - + Not available This size is unavailable. غير متوفر - + Torrent file (*%1) ملف تورنت (*%1) - + Save as torrent file أحفظ كملف تورنت - + Couldn't export torrent metadata file '%1'. Reason: %2. تعذر تصدير ملف بيانات التعريف للتورنت '%1'. السبب: %2. - + Cannot create v2 torrent until its data is fully downloaded. لا يمكن إنشاء إصدار 2 للتورنت حتى يتم تنزيل بياناته بالكامل. - + Filter files... تصفية الملفات... - + Parsing metadata... يحلّل البيانات الوصفية... - + Metadata retrieval complete اكتمل جلب البيانات الوصفية @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" تحميل التورنت... المصدر: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" فشل أضافة التورنت. المصدر: "%1". السبب: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - تم الكشف عن محاولة اضافة تورينت مكرر. المصدر: %1. التورينت الموجود: %2. النتيجة: %3 + تم الكشف عن محاولة اضافة تورينت مكرر. المصدر: %1. التورينت الموجود: %2. النتيجة: %3 - + Merging of trackers is disabled تم تعطيل دمج التتبع - + Trackers cannot be merged because it is a private torrent لا يمكن دمج التتبع بسبب ان التورينت خاص - + Trackers are merged from new source تم دمج التتبع من مصدر جديد + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB م.بايت - + Recheck torrents on completion إعادة تأكيد البيانات بعد اكتمال التنزيل - - + + ms milliseconds ملي ثانية - + Setting الخيار - + Value Value set for this setting القيمة - + (disabled) (مُعطّل) - + (auto) (آلي) - - + + min minutes دقيقة - + All addresses جميع العناوين - + qBittorrent Section قسم كيوبت‎تورنت - - + + Open documentation فتح التعليمات - + All IPv4 addresses جميع عناوين IPv4 - + All IPv6 addresses جميع عناوين IPv6 - + libtorrent Section قسم libtorrent - + Fastresume files ملفات Fastresume - + SQLite database (experimental) قاعدة بيانات SQLite (تجريبية) - + Resume data storage type (requires restart) استئناف نوع تخزين البيانات (يتطلب إعادة التشغيل) - + Normal عادي - + Below normal أقل من المعتاد - + Medium متوسط - + Low منخفض - + Very low منخفض جدًا - + Physical memory (RAM) usage limit حد استخدام الذاكرة الفعلية (RAM). - + Asynchronous I/O threads مواضيع الإدخال/الإخراج غير متزامنة - + Hashing threads تجزئة المواضيع - + File pool size حجم تجمع الملفات - + Outstanding memory when checking torrents ذاكرة مميزة عند فحص التورنتات - + Disk cache ذاكرة التخزين المؤقت على القرص - - - - + + + + + s seconds ث - + Disk cache expiry interval مدة بقاء الذاكرة المؤقتة للقرص - + Disk queue size حجم صف القرص - - + + Enable OS cache مكّن النظام من خاصية الـcache - + Coalesce reads & writes اندماج القراءة والكتابة - + Use piece extent affinity استخدم مدى تقارب القطعة - + Send upload piece suggestions إرسال اقتراحات للقطع المُراد رفعها - - - - - + + + + + 0 (disabled) 0 (معطَّل) - + Save resume data interval [0: disabled] How often the fastresume file is saved. حفظ الفاصل الزمني للاستئناف [0: معطل] - + Outgoing ports (Min) [0: disabled] المنافذ الصادرة (الحد الأدنى) [0: معطلة] - + Outgoing ports (Max) [0: disabled] المنافذ الصادرة (الحد الأقصى) [0: معطلة] - + 0 (permanent lease) 0 (إيجار دائم) - + UPnP lease duration [0: permanent lease] مدة تأجير UPnP [0: عقد إيجار دائم] - + Stop tracker timeout [0: disabled] إيقاف مهلة التتبع [0: معطل] - + Notification timeout [0: infinite, -1: system default] مهلة الإشعار [0: لا نهائي، -1: النظام الافتراضي] - + Maximum outstanding requests to a single peer الحد الأقصى للطلبات للقرين الواحد - - - - - + + + + + KiB ك.بايت - + (infinite) لا نهائي - + (system default) (الوضع الافتراضي للنظام) - + Delete files permanently - + حذف الملفات نهائيا - + Move files to trash (if possible) - + نقل الملفات إلى سلة المهملات (إذا كان ذلك ممكنا) - + Torrent content removing mode - + وضعية إزالة محتوى التورنت - + This option is less effective on Linux هذا الخيار أقل فعالية على لينكس - + Process memory priority أولوية ذاكرة العملية - + Bdecode depth limit حد عمق Bdecode - + Bdecode token limit حد رمز Bdecode - + Default الوضع الإفتراضي - + Memory mapped files ملفات الذاكرة المعينة - + POSIX-compliant متوافق مع POSIX - + Simple pread/pwrite - + pread/pwrite بسيطة - + Disk IO type (requires restart) نوع إدخال القرص Disk IO (يتطلب إعادة التشغيل) - - + + Disable OS cache تعطيل ذاكرة التخزين المؤقت لنظام التشغيل - + Disk IO read mode وضع قراءة إدخال القرص Disk IO - + Write-through الكتابة من خلال - + Disk IO write mode وضع الكتابة إدخال القرص Disk IO - + Send buffer watermark إرسال علامة مائية المخزن المؤقت - + Send buffer low watermark إرسال علامة مائية منخفضة المخزن المؤقت - + Send buffer watermark factor إرسال عامل العلامة المائية المخزن المؤقت - + Outgoing connections per second الاتصالات الصادرة في الثانية - - + + 0 (system default) 0 (افتراضي للنظام) - + Socket send buffer size [0: system default] حجم المخزن المؤقت لإرسال المقبس [0: النظام الافتراضي] - + Socket receive buffer size [0: system default] يتلقى المقبس حجم المخزن المؤقت [0: النظام الافتراضي] - + Socket backlog size حجم تراكم مأخذ التوصيل - + Save statistics interval [0: disabled] How often the statistics file is saved. - + الفاصل الزمني لحفظ الإحصائيات [0: معطل] - + .torrent file size limit الحد الأقصى لحجم ملف torrent. - + Type of service (ToS) for connections to peers نوع الخدمة (ToS) للاتصالات مع الأقران - + Prefer TCP أفضل TCP - + Peer proportional (throttles TCP) القرين المتناسب (سرّع TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) دعم اسم نطاق الإنترنت الدولي (IDN) - + Allow multiple connections from the same IP address السماح باتصالات متعددة من نفس عنوان الآي بي - + Validate HTTPS tracker certificates تحقق من صحة شهادات متتبع HTTPS - + Server-side request forgery (SSRF) mitigation التخفيف من تزوير الطلب من جانب الخادم (SSRF) - + Disallow connection to peers on privileged ports عدم السماح بالاتصال بالقرناء على المنافذ ذات الامتيازات - + It appends the text to the window title to help distinguish qBittorent instances يقوم بإلحاق النص بعنوان النافذة للمساعدة في التمييز بين مثيلات qBittorent - + Customize application instance name تخصيص اسم مثيل التطبيق - + It controls the internal state update interval which in turn will affect UI updates فهو يتحكم في الفاصل الزمني لتحديث الحالة الداخلية والذي سيؤثر بدوره على تحديثات واجهة المستخدم - + Refresh interval الفاصل الزمني للتحديث - + Resolve peer host names اظهار اسم الجهاز للقرين - + IP address reported to trackers (requires restart) تم الإبلاغ عن عنوان IP للمتتبعين (يتطلب إعادة التشغيل) - + Port reported to trackers (requires restart) [0: listening port] - + تم الإبلاغ عن المنفذ إلى المتتبعين (يتطلب إعادة التشغيل) [0: منفذ الاستماع] - + Reannounce to all trackers when IP or port changed إعادة الاتصال بجميع المتتبعات عند تغيير IP أو المنفذ - + Enable icons in menus تفعيل الرموز في القوائم - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker تفعيل إعادة توجيه المنفذ لتتبع المضمن - + Enable quarantine for downloaded files تمكين العزل للملفات التي تم تنزيلها - + Enable Mark-of-the-Web (MOTW) for downloaded files تمكين Mark-of-the-Web (MOTW) للملفات التي تم تنزيلها - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + يؤثر على التحقق من الشهادات وأنشطة البروتوكولات غير المتعلقة بالتورنت (مثل خلاصات RSS، تحديثات البرامج، ملفات التورنت، قاعدة بيانات geoip، إلخ). - + Ignore SSL errors - + تجاهل أخطاء SSL - + (Auto detect if empty) (الكشف التلقائي إذا كان فارغًا) - + Python executable path (may require restart) مسار بايثون القابل للتنفيذ (قد يتطلب إعادة التشغيل) - + Start BitTorrent session in paused state - + بدء جلسة BitTorrent في حالة الإيقاف المؤقت - + sec seconds - ث + ث - + -1 (unlimited) - + -1 (غير محدود) - + BitTorrent session shutdown timeout [-1: unlimited] - + مهلة إيقاف جلسة BitTorrent [-1: غير محدود] - + Confirm removal of tracker from all torrents تأكيد إزالة المتتبع (التراكر) من جميع التورينتات - + Peer turnover disconnect percentage النسبة المئوية لفصل دوران الأقران - + Peer turnover threshold percentage النسبة المئوية لبداية دوران الأقران - + Peer turnover disconnect interval الفترة الزمنية لفصل دوران الأقران - + Resets to default if empty يعيد التعيين إلى الوضع الافتراضي إذا كان فارغًا - + DHT bootstrap nodes عقد التمهيد DHT - + I2P inbound quantity I2P الكمية الواردة - + I2P outbound quantity الكمية الصادرة I2P - + I2P inbound length طول I2P الوارد - + I2P outbound length طول I2P الصادر - + Display notifications عرض الإشعارات - + Display notifications for added torrents عرض الإشعارات للتورنت المضافة. - + Download tracker's favicon تنزيل ايقونة التراكر - + Save path history length طول سجل مسار الحفظ - + Enable speed graphs تفعيل الرسم البياني لسرعة النقل - + Fixed slots فتحات ثابتة - + Upload rate based معدل الرفع على أساس - + Upload slots behavior سلوك فتحات الرفع - + Round-robin القرين الآلي الذي لا يبذر - + Fastest upload أسرع رفع - + Anti-leech مكافحة المُستهلكين - + Upload choking algorithm رفع خوارزمية الاختناق - + Confirm torrent recheck تأكيد إعادة التحقق من التورنت - + Confirm removal of all tags تأكيد إزالة جميع العلامات - + Always announce to all trackers in a tier أعلن دائمًا لجميع المتتبعات في المستوى - + Always announce to all tiers أعلن دائما لجميع المستويات - + Any interface i.e. Any network interface أي واجهة - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm خوارزمية الوضع المختلط %1-TCP - + Resolve peer countries اظهار أعلام الدول للقرناء - + Network interface واجهة الشبكة - + Optional IP address to bind to عنوان آي بي اختياري للربط به - + Max concurrent HTTP announces يعلن أقصى HTTP متزامن - + Enable embedded tracker تمكين المتتبع الداخلي - + Embedded tracker port منفذ المتتبع الداخلي @@ -1382,142 +1393,142 @@ Invalid directory path - + مسار المجلد غير صحيح Directory does not exist - + المجلد غير موجود Invalid mode, allowed values: %1 - + وضع غير صالح، القيم المسموح بها: %1 cookies must be array - + يجب أن تكون ملفات تعريف الارتباط مصفوفة. Application - + Running in portable mode. Auto detected profile folder at: %1 يعمل في الوضع المحمول. مجلد ملف التعريف المكتشف تلقائيًا في: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. اكتشاف علامة سطر أوامر متكررة: "%1". يشير الوضع المحمول إلى استئناف سريع نسبي. - + Using config directory: %1 استخدام دليل التكوين: %1 - + Torrent name: %1 اسم التورنت: %1 - + Torrent size: %1 حجم التورنت: %1 - + Save path: %1 مسار الحفظ: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds تم تنزيل التورنت في %1. - - + + Thank you for using qBittorrent. شكرا لاستخدامك كيوبت‎تورنت. - + Torrent: %1, sending mail notification التورنت: %1، يرسل إشعار البريد الإلكتروني - + Add torrent failed فشل إضافة تورنت - + Couldn't add torrent '%1', reason: %2. تعذّر إضافة التورنت '%1'، السبب: %2. - + The WebUI administrator username is: %1 اسم المستخدم لمسؤول واجهة الويب هو: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 لم يتم تعيين كلمة مرور لمسؤول واجهة الويب. تم تعيين كلمة مرور مؤقتة لهذه الجلسة: %1 - + You should set your own password in program preferences. يجب عليك تعيين كلمة مرور خاصة بك في إعدادات البرنامج. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. واجهة الويب للمستخدم معطلة! لتفعيل واجهة الويب للمستخدم، قم بتحرير ملف الإعدادات يدويًا. - + Running external program. Torrent: "%1". Command: `%2` تشغيل برنامج خارجي تورنت: "%1". الأمر: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` فشل في تشغيل برنامج خارجي. تورنت: "%1". الأمر: `%2` - + Torrent "%1" has finished downloading انتهى تنزيل التورنت "%1". - + WebUI will be started shortly after internal preparations. Please wait... سيتم بدء تشغيل WebUI بعد وقت قصير من الاستعدادات الداخلية. انتظر من فضلك... - - + + Loading torrents... جارِ تحميل التورنت... - + E&xit &خروج - + I/O Error i.e: Input/Output Error خطأ إدخال/إخراج - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ السبب: %2 - + Torrent added تمت إضافة تورنت - + '%1' was added. e.g: xxx.avi was added. تم إضافة '%1' - + Download completed انتهى التحميل - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started تم بدء %1 من qbittorrent. معرف العملية: %2 - + This is a test email. - + هذا بريد إلكتروني اختباري. - + Test email - + بريد إلكتروني اختباري - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. انتهى تنزيل '%1'. - + Information معلومات - + To fix the error, you may need to edit the config file manually. لإصلاح الخطأ، قد تحتاج إلى تعديل ملف الإعدادات يدويًا. - + To control qBittorrent, access the WebUI at: %1 للتحكم في كيوبت‎تورنت، افتح واجهة الوِب الرسومية على: %1 - + Exit خروج - + Recursive download confirmation تأكيد متكرر للتنزيل - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? يحتوي ملف التورنت '%1' على ملفات .torrent، هل تريد متابعة تنزيلاتها؟ - + Never أبدًا - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" تنزيل متكرر لملف .torren. داخل التورنت. تورنت المصدر: "%1". الملف: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" فشل في تعيين حد استخدام الذاكرة الفعلية (RAM). رمز الخطأ: %1. رسالة الخطأ: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" فشل في تعيين الحد الأقصى لاستخدام الذاكرة الفعلية (RAM). الحجم المطلوب: %1. الحد الأقصى للنظام: %2. رمز الخطأ: %3. رسالة الخطأ: "%4" - + qBittorrent termination initiated بدأ إنهاء qBittorrent - + qBittorrent is shutting down... كيوبت‎تورنت قيد الإغلاق ... - + Saving torrent progress... حفظ تقدم التورنت... - + qBittorrent is now ready to exit qBittorrent جاهز الآن للخروج @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also ت&صدير... - + Matches articles based on episode filter. مطابقة المقالات بناءً على مُصفّي الحلقات. - + Example: مثال: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match ستطابق 2 و 5 و 8 خلال 15 و 30 وما بعدها من حلقات الموسم الأول - + Episode filter rules: قواعد تصفية الحلقات: - + Season number is a mandatory non-zero value رقم الموسم يجب ألا يكون قيمة صفرية - + Filter must end with semicolon عبارة التصفية يجب أن تنتهي بـفاصلة منقوطة (;) - + Three range types for episodes are supported: يتم دعم ثلاثة أنواع من النطاقات للحلقات: - + Single number: <b>1x25;</b> matches episode 25 of season one العدد المُفرد: <b>1x25;</b> يطابق الحلقة 25 من الموسم الأول - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one المدى الطبيعي: <b>1x25-40;</b> يطابق الحلقات من 25 إلى 40 من الموسم الأول - + Episode number is a mandatory positive value رقم الحلقة يجب أن يكون قيمة موجبة - + Rules القواعد - + Rules (legacy) القواعد (الموروثة) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons المدى اللانهائي: <b>1x25-;</b> يطابق الحلقات من 25 من الموسم الأول إلى نهايته وحتى آخر حلقة من الموسم الأخير - + Last Match: %1 days ago آخر تطابق: %1 يوم/أيام مضت - + Last Match: Unknown آخر مطابقة: غير معروفة - + New rule name اسم قاعدة جديد - + Please type the name of the new download rule. يرجى كتابة اسم قاعدة التنزيل الجديدة. - - + + Rule name conflict تعارض في اسم القاعدة - - + + A rule with this name already exists, please choose another name. تعارض في اسم القاعدة اختر اسم اخر. - + Are you sure you want to remove the download rule named '%1'? هل أنت متأكد من رغبتك في إزالة قاعدة التنزيل المسمّاة "%1"؟ - + Are you sure you want to remove the selected download rules? هل أنت متأكد من رغبتك في إزالة قواعد التنزيل المُختارة؟ - + Rule deletion confirmation تأكيد حذف القاعدة - + Invalid action إجراء غير صالح - + The list is empty, there is nothing to export. القائمة فارغة، لا يوجد شيء لاستخراجه. - + Export RSS rules استخراج قواعد تغذية RSS - + I/O Error خطأ في الإدخال/الإخراج - + Failed to create the destination file. Reason: %1 فشل في إنشاء الملف الهدف. السبب: %1 - + Import RSS rules استيراد قواعد تغذية RSS - + Failed to import the selected rules file. Reason: %1 فشل في استيراد ملف القواعد المُختار. السبب: %1 - + Add new rule... اضافة قاعدة جديدة... - + Delete rule حذف القاعدة - + Rename rule... تغيير تسمية القاعدة... - + Delete selected rules حذف القواعد المختارة - + Clear downloaded episodes... مسح الحلقات المُنزّلة... - + Rule renaming تغيير تسمية القاعدة - + Please type the new rule name اكتب اسم القاعدة الجديدة - + Clear downloaded episodes مسح الحلقات المُنزّلة - + Are you sure you want to clear the list of downloaded episodes for the selected rule? هل أنت متأكد من رغبتك في مسح قائمة الحلقات التي تم تنزيلها للقاعدة المُختارة؟ - + Regex mode: use Perl-compatible regular expressions وضع Regex: استخدم التعبيرات العادية المتوافقة مع Perl - - + + Position %1: %2 مكان %1: %2 - + Wildcard mode: you can use وضع البدل: يمكنك استخدام - - + + Import error خطأ في الاستيراد - + Failed to read the file. %1 فشل في قراءة الملف. %1 - + ? to match any single character ؟ لتتناسب مع أي حرف واحد - + * to match zero or more of any characters * لتناسب صفر أو أكثر من أي حرف - + Whitespaces count as AND operators (all words, any order) تعتبر المسافات البيضاء عوامل تشغيل AND (كل الكلمات ، أي ترتيب) - + | is used as OR operator | يستخدم كعامل OR - + If word order is important use * instead of whitespace. إذا كان ترتيب الكلمات مهمًا ، استخدم * بدلاً من المسافات البيضاء. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) تعبير بجملة %1 فارغة (مثل %2) - + will match all articles. سيطابق جميع المقالات. - + will exclude all articles. سيستبعد جميع المقالات. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also لا يمكن تحليل بيانات الاستئناف: التنسيق غير صالح - - + + Cannot parse torrent info: %1 لا يمكن تحليل معلومات التورنت: %1 - + Cannot parse torrent info: invalid format لا يمكن تحليل معلومات التورنت: التنسيق غير صالح - + Mismatching info-hash detected in resume data تم اكتشاف تجزئة معلومات غير متطابقة في بيانات الاستئناف. - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. تعذر حفظ بيانات التعريف للتورنت في '%1'. خطأ: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. تعذر حفظ بيانات الاستئناف للتورنت في '%1'. خطأ: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 لا يمكن تحليل بيانات الاستئناف: %1 - + Resume data is invalid: neither metadata nor info-hash was found بيانات الاستئناف غير صالحة: لم يتم العثور على البيانات الوصفية ولا تجزئة المعلومات - + Couldn't save data to '%1'. Error: %2 تعذر حفظ البيانات في '%1'. خطأ: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. غير موجود. - + Couldn't load resume data of torrent '%1'. Error: %2 تعذر تحميل بيانات الاستئناف للتورنت '%1'. خطأ: %2 - - + + Database is corrupted. قاعدة البيانات تالفة. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. تعذر تمكين وضع تسجيل دفتر اليومية (WAL) لتسجيل الدخول. الخطأ: %1. - + Couldn't obtain query result. تعذر الحصول على نتيجة الاستعلام. - + WAL mode is probably unsupported due to filesystem limitations. ربما يكون وضع WAL غير مدعوم بسبب قيود نظام الملفات. - + + + Cannot parse resume data: %1 + لا يمكن تحليل بيانات الاستئناف: %1 + + + + + Cannot parse torrent info: %1 + لا يمكن تحليل معلومات التورنت: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 تعذر بدء المعاملة. الخطأ: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. تعذر حفظ بيانات التعريف للتورنت. خطأ: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 تعذر تخزين بيانات الاستئناف للتورنت '%1'. خطأ: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 تعذر حذف بيانات الاستئناف للتورنت '%1'. خطأ: %2 - + Couldn't store torrents queue positions. Error: %1 تعذر تخزين موضع صف التورنتات. خطأ: %1 @@ -2185,530 +2229,504 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 دعم جدول التجزئة الموزع (DHT): %1 - - - - - - - - - + + + + + + + + + ON يعمل - - - - - - - - - + + + + + + + + + OFF متوقف - - + + Local Peer Discovery support: %1 دعم اكتشاف الأقران المحليين: %1 - + Restart is required to toggle Peer Exchange (PeX) support يلزم إعادة التشغيل لتبديل دعم Peer Exchange (PeX). - + Failed to resume torrent. Torrent: "%1". Reason: "%2" فشل في استئناف التورنت. تورنت: "%1". السبب: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" فشل استئناف التورنت: تم اكتشاف معرف تورنت غير متناسق. تورنت: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" تم اكتشاف بيانات غير متناسقة: الفئة مفقودة من ملف التضبيط. سيتم استرداد الفئة ولكن سيتم إعادة ضبط إعداداتها على الوضع الافتراضي. تورنت: "%1". الفئة: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" تم اكتشاف بيانات غير متناسقة: فئة غير صالحة. تورنت: "%1". الفئة: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" تم اكتشاف عدم تطابق بين مسارات الحفظ للفئة المستردة ومسار الحفظ الحالي للتورنت. تم الآن تحويل التورنت إلى الوضع اليدوي. تورنت: "%1". الفئة: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" تم اكتشاف بيانات غير متناسقة: العلامة مفقودة من ملف التضبيط. سيتم استرداد العلامة. تورنت: "%1". العلامة: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" تم اكتشاف بيانات غير متناسقة: وسم غير صالح. تورنت: "%1". العلامة: "%2" - + System wake-up event detected. Re-announcing to all the trackers... تم اكتشاف حدث تنبيه النظام .جارِ إعادة إعلان إلى كافة المتتبعين... - + Peer ID: "%1" معرّف النظير: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 دعم تبادل الأقران (PeX): %1 - - + + Anonymous mode: %1 الوضع المجهول: %1 - - + + Encryption support: %1 دعم التشفير: %1 - - + + FORCED مُجبر - + Could not find GUID of network interface. Interface: "%1" تعذر العثور على GUID لواجهة الشبكة. الواجهة: "%1" - + Trying to listen on the following list of IP addresses: "%1" محاولة الاستماع إلى قائمة عناوين IP التالية: "%1" - + Torrent reached the share ratio limit. وصل تورنت إلى الحد الأقصى لنسبة المشاركة. - + Torrent: "%1". تورنت: "%1". - Removed torrent. - تمت إزالة التورنت. - - - Removed torrent and deleted its content. - تمت إزالة التورنت وحذف محتواه. - - - Torrent paused. - توقف التورنت مؤقتًا. - - - + Super seeding enabled. تم تفعيل البذر الفائق. - + Torrent reached the seeding time limit. وصل التورنت إلى حد زمني البذر. - + Torrent reached the inactive seeding time limit. وصل التورنت إلى حد زمني للنشر الغير نشط. - + Failed to load torrent. Reason: "%1" فشل تحميل التورنت. السبب: "%1" - + I2P error. Message: "%1". خطأ I2P. الرسالة: "%1". - + UPnP/NAT-PMP support: ON دعم UPnP/NAT-PMP: مشغّل - + Saving resume data completed. - + حفظ فترة استئناف البيانات +  - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + حذف التورنت - + Removing torrent and deleting its content. - + إزالة التورنت وحذف محتواه. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - تم تعطيل دمج التتبع + تم تعطيل دمج التتبع - + Trackers cannot be merged because it is a private torrent - لا يمكن دمج التتبع بسبب ان التورينت خاص + لا يمكن دمج التتبع بسبب ان التورينت خاص - + Trackers are merged from new source - تم دمج التتبع من مصدر جديد + تم دمج التتبع من مصدر جديد - + UPnP/NAT-PMP support: OFF دعم UPnP/NAT-PMP: متوقف - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" فشل تصدير تورنت. تورنت: "%1". الوجهة: "%2". السبب: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 تم إحباط حفظ بيانات الاستئناف. عدد التورنت المعلقة: %1 - + The configured network address is invalid. Address: "%1" عنوان الشبكة الذي تم تضبيطه غير صالح. العنوان %1" - - + + Failed to find the configured network address to listen on. Address: "%1" فشل العثور على عنوان الشبكة الذي تم تضبيطه للاستماع إليه. العنوان "%1" - + The configured network interface is invalid. Interface: "%1" واجهة الشبكة التي تم تضبيطها غير صالحة. الواجهة: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" تم رفض عنوان IP غير صالح أثناء تطبيق قائمة عناوين IP المحظورة. عنوان IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" تمت إضافة تتبع إلى تورنت. تورنت: "%1". المتعقب: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" تمت إزالة المتتبع من التورنت. تورنت: "%1". المتعقب: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" تمت إضافة بذور URL إلى التورنت. تورنت: "%1". عنوان URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" تمت إزالة بذور URL من التورنت. تورنت: "%1". عنوان URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - توقف التورنت مؤقتًا. تورنت: "%1" - - - + Torrent resumed. Torrent: "%1" استئنف التورنت. تورنت: "%1" - + Torrent download finished. Torrent: "%1" انتهى تحميل التورنت. تورنت: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" تم إلغاء حركة التورنت. تورنت: "%1". المصدر: "%2". الوجهة: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination فشل في إدراج نقل التورنت. تورنت: "%1". المصدر: "%2". الوجهة: "%3". السبب: ينتقل التورنت حاليًا إلى الوجهة - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location فشل في إدراج نقل التورنت. تورنت: "%1". المصدر: "%2" الوجهة: "%3". السبب: كلا المسارين يشيران إلى نفس الموقع - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" تحرك سيل في الصف. تورنت: "%1". المصدر: "%2". الوجهة: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" ابدأ في تحريك التورنت. تورنت: "%1". الوجهة: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" فشل حفظ تضبيط الفئات. الملف: "%1". خطأ: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" فشل في تحليل تضبيط الفئات. الملف: "%1". خطأ: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 تم تحليل ملف مرشح IP بنجاح. عدد القواعد المطبقة: %1 - + Failed to parse the IP filter file فشل في تحليل ملف مرشح IP - + Restored torrent. Torrent: "%1" استُعيدت التورنت. تورنت: "%1" - + Added new torrent. Torrent: "%1" تمت إضافة تورنت جديد. تورنت: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" خطأ في التورنت. تورنت: "%1". خطأ: "%2" - Removed torrent. Torrent: "%1" - أُزيلت التورنت. تورنت: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - أُزيلت التورنت وحُذفت محتواه. تورنت: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" يفتقر التورنت إلى إعدادات SSL. التورنت: "%1". الرسالة: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" تنبيه خطأ في الملف. تورنت: "%1". الملف: "%2". السبب: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" فشل تعيين منفذ UPnP/NAT-PMP. الرسالة: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" نجح تعيين منفذ UPnP/NAT-PMP. الرسالة: "%1" - + IP filter this peer was blocked. Reason: IP filter. تصفية الآي بي - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). المنفذ المتصفي (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). المنفذ المميز (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" واجهت جلسة BitTorrent خطأ خطيرًا. السبب: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". خطأ وكيل SOCKS5. العنوان: %1. الرسالة: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 قيود الوضع المختلط - + Failed to load Categories. %1 فشل تحميل الفئات. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" فشل تحميل تضبيط الفئات. الملف: "%1". خطأ: "تنسيق البيانات غير صالح" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - أُزيلت التورنت ولكن فشل في حذف محتواه و/أو ملفه الجزئي. تورنت: "%1". خطأ: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 مُعطّل - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 مُعطّل - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - فشل البحث عن DNS لبذرة عنوان URL. تورنت: "%1". URL: "%2". خطأ: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" تم تلقي رسالة خطأ من بذرة URL. تورنت: "%1". URL: "%2". الرسالة: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" تم الاستماع بنجاح على IP. عنوان IP: "%1". المنفذ: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" فشل الاستماع على IP. عنوان IP: "%1". المنفذ: "%2/%3". السبب: "%4" - + Detected external IP. IP: "%1" تم اكتشاف IP خارجي. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" خطأ: قائمة انتظار التنبيهات الداخلية ممتلئة وتم إسقاط التنبيهات، وقد ترى انخفاضًا في الأداء. نوع التنبيه المسقط: "%1". الرسالة: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" تم النقل بالتورنت بنجاح تورنت: "%1". الوجهة: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" فشل في التورنت. تورنت: "%1". المصدر: "%2". الوجهة: "%3". السبب: "%4" @@ -2758,47 +2776,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also لا يمكن الكتابة إلى الملف. السبب: "%1". أصبح التورنت الآن في وضع "الرفع فقط". - + Download first and last piece first: %1, torrent: '%2' تنزيل أول وآخر قطعة أولًا: %1، التورنت: '%2' - + On مُفعل - + Off مُعطل - + Failed to reload torrent. Torrent: %1. Reason: %2 فشل إعادة تحميل التورنت. التورنت: %1. السبب: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" فشل إنشاء بيانات الاستئناف. تورنت: "%1". السبب: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" فشل في استعادة التورنت. ربما تم نقل الملفات أو لا يمكن الوصول إلى مساحة التخزين. تورنت: "%1". السبب: "%2" - + Missing metadata البيانات الوصفية مفقودة - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" فشل إعادة تسمية الملف. التورنت: "%1"، الملف: "%2"، السبب: "%3" - + Performance alert: %1. More info: %2 تنبيه الأداء: %1. مزيد من المعلومات: %2 @@ -2835,11 +2853,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' رقم صحيح متوقع في متغير المحيط '%1'، لكن تم الحصول على '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - يجب أن يتبع المعلمة '%1' بناء الجملة '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2893,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - يجب أن يتبع المعلمة '%1' بناء الجملة '%1=%2' + يجب أن يتبع المعلمة '%1' بناء الجملة '%1=%2' @@ -2970,10 +2983,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - أضف التورنت كـ تم بدؤه أو متوقف - Skip hash check @@ -3070,14 +3079,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - استئناف التورنتات - - - Pause torrents - إيقاف مؤقت التورنتات - Remove torrents @@ -3176,10 +3177,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - Also permanently delete the files - أيضًا احذف الملفات نهائيًا - Are you sure you want to remove '%1' from the transfer list? @@ -3411,26 +3408,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" تحميل التورنت... من المصدر: "%1" - Trackers cannot be merged because it is a private torrent - لا يمكن دمج التتبع بسبب ان التورينت خاص - - - + Torrent is already present التورنت موجود مسبقا بالفعل - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? التورنت '%1' موجود بالفعل في قائمة النقل. هل تريد دمج المتتبعات من مصدر الجديد؟ @@ -3548,6 +3541,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also ملفات الصور المدعومة + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3716,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &خيارات... - - &Resume - ا&ستئناف - &Remove @@ -3774,10 +3797,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window إغلاق النافذة - - R&esume All - اس&تئناف الكل - Manage Cookies... @@ -3893,10 +3912,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System إ&لباث النظام - - S&hutdown System - إ&طفاء تشغيل الجهاز - &Statistics @@ -3917,14 +3932,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &عن - - &Pause - إ&لباث - - - P&ause All - إل&باث الكل - &Add Torrent File... @@ -3958,12 +3965,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show أظهر - + Check for program updates التحقق من وجود تحديثات للتطبيق @@ -3978,388 +3985,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also إذا أعجبك كيوبت‎تورنت، رجاءً تبرع! - + Execution Log السجل - + Clear the password إزالة كلمة السر - + &Set Password ت&عيين كلمة سر - + Preferences التفضيلات - + &Clear Password &مسح كلمة السر - + Transfers النقل - - + + qBittorrent is minimized to tray كيوبت‎تورنت مُصغّر في جوار الساعة - - - + + + This behavior can be changed in the settings. You won't be reminded again. هذا السلوك يمكن تغييره من الإعدادات. لن يتم تذكيرك مرة أخرى. - + Icons Only أيقونات فقط - + Text Only نص فقط - + Text Alongside Icons النص بجانب الأيقونات - + Text Under Icons النص أسفل الأيقونات - + Follow System Style اتباع شكل النظام - - + + UI lock password كلمة سر قفل الواجهة - - + + Please type the UI lock password: اكتب كلمة سر قفل الواجهة: - + Are you sure you want to clear the password? هل ترغب حقا في إزالة كلمة السر؟ - + Use regular expressions استخدم التعبيرات العادية - - + + Search Engine - مُحرك البحث + مُحرك البحث - + Search has failed - فشلت عملية البحث + فشلت عملية البحث - + Search has finished - + انتهى البحث - + Search البحث - + Transfers (%1) النقل (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. تم تحديث كيوبت‎تورنت للتو ويحتاج لإعادة تشغيله لتصبح التغييرات فعّالة. - + qBittorrent is closed to tray تم إغلاق كيوبت‎تورنت إلى جوار الساعة - + Some files are currently transferring. بعض الملفات تنقل حاليا. - + Are you sure you want to quit qBittorrent? هل أنت متأكد من رغبتك في إغلاق كيوبت‎تورنت؟ - + &No &لا - + &Yes &نعم - + &Always Yes نعم &دائما - + Options saved. تم حفظ الخيارات. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Python Runtime مفقود - + qBittorrent Update Available يوجد تحديث متاح - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? كيوبت تورنت بحاجة لبايثون ليتمكن من تشغيل محرك البحث، ولكن على ما يبدو أن بايثون غير مثبّت على جهازك. هل ترغب بتثبيت بايثون الآن؟ - + Python is required to use the search engine but it does not seem to be installed. كيوبت تورنت بحاجة لبايثون ليتمكن من تشغيل محرك البحث، ولكن على ما يبدو أن بايثون غير مثبّت على جهازك. - - + + Old Python Runtime إصدار بايثون قديم - + A new version is available. إصدار جديد متاح. - + Do you want to download %1? هل ترغب بتنزيل %1؟ - + Open changelog... فتح سجل التغييرات ... - + No updates available. You are already using the latest version. لا تحديثات متاحة. أنت تستخدم أحدث إصدار. - + &Check for Updates &فحص وجود تحديثات - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? إصدار بايثون لديك قديم (%1). والإصدار المتطلب يجب أن يكون %2 على الأقل. هل ترغب بتثبيت الإصدار الأحدث الآن؟ - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. إصدار بايثون لديك (%1) قديم. يرجى الترقية إلى أحدث إصدار حتى تعمل محركات البحث. أدنى إصدار ممكن: %2. - + Paused - مُلبث + مُلبث - + Checking for Updates... يتفقد وجود تحديثات... - + Already checking for program updates in the background يتحقق من وجود تحديثات للتطبيق في الخلفية - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error خطأ في التنزيل - Python setup could not be downloaded, reason: %1. -Please install it manually. - تعذّر تنزيل مُثبّت بايثون، والسبب: %1. -يرجى تثبيته يدويا. - - - - + + Invalid password كلمة سرّ خاطئة - + Filter torrents... تصفية التورنت.. - + Filter by: صنف بواسطة: - + The password must be at least 3 characters long يجب أن تتكون كلمة المرور من 3 أحرف على الأقل - - - + + + RSS (%1) RSS (%1) - + The password is invalid كلمة السرّ خاطئة - + DL speed: %1 e.g: Download speed: 10 KiB/s سرعة التنزيل: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s سرعة الرفع: %1 - + Hide إخفاء - + Exiting qBittorrent إغلاق البرنامج - + Open Torrent Files فتح ملف تورنت - + Torrent Files ملفات التورنت @@ -5854,47 +5855,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 فشل الاتصال، الرد غير معروف: %1 - + Authentication failed, msg: %1 فشلت المصادقة، الرسالة: %1 - + <mail from> was rejected by server, msg: %1 <mail from> تم رفضه من قبل الخادم، الرسالة: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> تم رفضه من قبل الخادم، الرسالة: %1 - + <data> was rejected by server, msg: %1 <data> تم رفضه من قبل الخادم، الرسالة: %1 - + Message was rejected by the server, error: %1 تم رفض الرسالة من قبل الخادم، الخطأ: %1 - + Both EHLO and HELO failed, msg: %1 فشل كل من EHLO وHELO، الرسالة: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 يبدو أن خادم SMTP لا يدعم أيًا من أوضاع المصادقة التي ندعمها [CRAM-MD5|PLAIN|LOGIN]، ويتخطى المصادقة، مع العلم أنه من المحتمل أن تفشل... أوضاع مصادقة الخادم: %1 - + Email Notification Error: %1 خطأ في إشعار البريد الإلكتروني: %1 @@ -5936,10 +5937,6 @@ Please install it manually. RSS RSS - - Web UI - واجهة الوِب الرسومية - Advanced @@ -5960,14 +5957,6 @@ Please install it manually. Confirm when deleting torrents التأكيد عند حذف التورنتات - - Shows a confirmation dialog upon pausing/resuming all the torrents - يعرض مربع حوار التأكيد عند الإيقاف المؤقت/استئناف كافة ملفات التورنت - - - Confirm "Pause/Resume all" actions - قم بتأكيد إجراءات "الإيقاف المؤقت/استئناف الكل". - Use alternating row colors @@ -5984,10 +5973,6 @@ Please install it manually. Always دائما - - Paused torrents only - التورنتات المٌقفة مؤقتًا فقط - Action on double-click @@ -5998,10 +5983,6 @@ Please install it manually. Downloading torrents: أثناء تنزيل التورنتات: - - Start / Stop Torrent - تشغيل / إيقاف التورنت - @@ -6060,179 +6041,179 @@ Please install it manually. ك.بايت - + + Show free disk space in status bar + + + + Torrent content layout: تخطيط محتوى التورنت: - + Original الأصلي - + Create subfolder إنشاء مجلد فرعي - + Don't create subfolder لا تقم بإنشاء مجلد فرعي - + The torrent will be added to the top of the download queue ستتم إضافة التورنت إلى أعلى صف التنزيل - + Add to top of queue The torrent will be added to the top of the download queue أضفه إلى قمة الصف - + When duplicate torrent is being added عندما يتم إضافة تورنت مكررة - + Merge trackers to existing torrent دمج المتتبعات في التورنت الموجودة - + Keep unselected files in ".unwanted" folder - + Add... إضافة... - + Options.. خيارات... - + Remove إزالة - + Email notification &upon download completion إرسال تنبيه عبر البريد الإلكتروني عند اكتمال التنزيل - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: بروتوكول اتصال القرين: - + Any أي - + I2P (experimental) I2P (تجريبي) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>إذا كان &quot;الوضع المختلط&quot; تم تفعيل تورنتات I2P، كما يُسمح لها بالحصول على أقران من مصادر أخرى غير المتتبع، والاتصال بعناوين IP العادية، دون توفير أي إخفاء للهوية. قد يكون هذا مفيدًا إذا لم يكن المستخدم مهتمًا بإخفاء هوية I2P، ولكنه لا يزال يريد أن يكون قادرًا على الاتصال بأقران I2P. - - - + Mixed mode وضع مختلط - Some options are incompatible with the chosen proxy type! - بعض الخيارات غير متوافقة مع نوع الوكيل الذي تم اختياره! + بعض الخيارات غير متوافقة مع نوع الوكيل الذي تم اختياره! - + If checked, hostname lookups are done via the proxy إذا تم تحديده، فسيتم إجراء عمليات البحث عن اسم المضيف (hostname) عبر الوكيل - + Perform hostname lookup via proxy إجراء بحث عن اسم المضيف عبر الوكيل - + Use proxy for BitTorrent purposes استخدم الوكيل لأغراض BitTorrent - + RSS feeds will use proxy سوف تستخدم مواجز RSS الوكيل - + Use proxy for RSS purposes استخدم الوكيل لأغراض RSS - + Search engine, software updates or anything else will use proxy سيستخدم محرك البحث أو تحديثات البرامج أو أي شيء آخر الوكيل - + Use proxy for general purposes استخدم الوكيل للأغراض العامة - + IP Fi&ltering تصفية الآي بي - + Schedule &the use of alternative rate limits جدولة واستخدام المعدل البديل - + From: From start time من: - + To: To end time إلى: - + Find peers on the DHT network ابحث عن القرناء على شبكة DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6241,188 +6222,190 @@ Disable encryption: Only connect to peers without protocol encryption تعطيل التشفير: اتصل بالقرناء فقط بدون تشفير البروتوكول - + Allow encryption السماح بالتشفير - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">لمعلومات أكثر</a>) - + Maximum active checking torrents: الحد الأقصى التحقق النشطة لتورنت: - + &Torrent Queueing &انتظار التورنت - + When total seeding time reaches عندما يصل وقت البذر الكلي - + When inactive seeding time reaches عندما يصل وقت البذر غير النشط - A&utomatically add these trackers to new downloads: - إضافة هذه المتتبعات تلقائيًا إلى التنزيلات الجديدة: - - - + RSS Reader قارئ RSS - + Enable fetching RSS feeds تفعيل جلب مواجز RSS - + Feeds refresh interval: الفاصل الزمني لتحديث المواجز: - + Same host request delay: - + Maximum number of articles per feed: أقصى عدد من المقالات لكل موجز: - - - + + + min minutes د - + Seeding Limits حدود البذر - Pause torrent - إيقاف مؤقت التورنت - - - + Remove torrent إزالة التورنت - + Remove torrent and its files إزالة التورنت وملفاته - + Enable super seeding for torrent تفعيل البذر الخارق للتورنت - + When ratio reaches عندما تصل النسبة - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - الرابط: + الرابط: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader منزّل التورنت التلقائي من تغذية RSS - + Enable auto downloading of RSS torrents تفعيل التنزيل التلقائي لتورنتات RSS - + Edit auto downloading rules... تحرير قواعد التنزيل التلقائي... - + RSS Smart Episode Filter RSS مُصفّي الحلقات الذكي - + Download REPACK/PROPER episodes تنزيل REPACK/PROPER الحلقات - + Filters: تصفيات: - + Web User Interface (Remote control) واجهة مستخدم الويب (التحكم عن بُعد) - + IP address: عنوان الآي بي: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6431,41 +6414,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv "::" لأي عنوان IPv6 ، أو "*" لكلا IPv4 و IPv6. - + Ban client after consecutive failures: حظر العميل بعد إخفاقات متتالية: - + Never أبدًا - + ban for: حظر لـ: - + Session timeout: مهلة الجلسة: - + Disabled مُعطّل - Enable cookie Secure flag (requires HTTPS) - تفعيل علامة تأمين ملفات تعريف الارتباط (يتطلب HTTPS) - - - + Server domains: نطاقات الخادم: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6478,37 +6457,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP استخدام HTTPS بدلًا من HTTP - + Bypass authentication for clients on localhost تجاوز المصادقة للعملاء على المضيف المحلي - + Bypass authentication for clients in whitelisted IP subnets تجاوز المصادقة للعملاء في شبكات الآي بي الفرعية المدرجة في القائمة البيضاء - + IP subnet whitelist... القائمة البيضاء للشبكة الفرعية للآي بي ... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. حدد عناوين IP للوكيل العكسي (أو الشبكات الفرعية، على سبيل المثال 0.0.0.0/24) لاستخدام عنوان العميل المُعاد توجيهه (رأس X-Forwarded-For). يستخدم '؛' لتقسيم إدخالات متعددة. - + Upda&te my dynamic domain name تحديث اسم النطاق الديناميكي الخاص بي @@ -6520,7 +6499,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - البحث + البحث @@ -6621,99 +6600,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.حذف سجلات النسخ الاحتياطي الأقدم من: - + Show external IP in status bar - + When adding a torrent عند إضافة تورنت - + Bring torrent dialog to the front إحضار نافذة التورنت إلى الأمام - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled احذف أيضًا ملفات .torrent التي تم إلغاء إضافتها - + Also when addition is cancelled أيضا عندما يتم إلغاء الإضافة - + Warning! Data loss possible! تحذير! فقدان البيانات ممكن! - + Saving Management إدارة التوفير - + Default Torrent Management Mode: نمط إدارة التورنت الافتراضي: - + Manual يدوي - + Automatic آلي - + When Torrent Category changed: عند تغيير فئة التورنت: - + Relocate torrent نقل التورنت - + Switch torrent to Manual Mode تبديل التورنت إلى الوضع اليدوي - - + + Relocate affected torrents نقل التورنتات المتضررة - - + + Switch affected torrents to Manual Mode تبديل التورنتات المتضررة إلى الوضع اليدوي - + Use Subcategories استخدام فئات فرعية - + Default Save Path: مسار الحفظ الافتراضي: - + Copy .torrent files to: نسخ ملفات torrent. إلى: @@ -6723,26 +6702,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.إظهار كيوبت‎تورنت بجوار الساعة - &Log file - ملف السجل - - - + Display &torrent content and some options عرض محتويات التورنت وبعض الخيارات - + De&lete .torrent files afterwards حذف ملفات .torrent بعد ذلك - + Copy .torrent files for finished downloads to: نسخ ملفات .torrent للتنزيلات المنتهية إلى: - + Pre-allocate disk space for all files تخصيص مسبق لمساحة القرص لجميع الملفات @@ -6772,10 +6747,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder معاينة الملف، وإلا افتح مجلد الوجهة - - Show torrent options - عرض خيارات التورنت - Shows a confirmation dialog when exiting with active torrents @@ -6841,69 +6812,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.أعوام - + Log performance warnings سجل تحذيرات الأداء - The torrent will be added to download list in a paused state - ستتم إضافة التورنت إلى قائمة التنزيل في حالة الإيقاف المؤقت - - - + Do not start the download automatically The torrent will be added to download list in a stopped state عدم بدء التنزيل بشكل تلقائي - + Whether the .torrent file should be deleted after adding it ما إذا كان يجب حذف ملف .torrent بعد إضافته - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. تخصيص أحجام الملفات الكاملة على القرص قبل بدء التنزيلات لتقليل التجزئة. مفيد فقط لمحركات الأقراص الصلبة. - + Append .!qB extension to incomplete files إضافة امتداد !qB. للملفات غير المنتهية - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it عند تنزيل ملف تورنت ، اعرض إضافة التورنتات من أي ملفات .torrent موجودة بداخله - + Enable recursive download dialog تفعيل مربع حوار التنزيل المتكرر - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually تلقائي: سيتم تحديد خصائص التورنت المختلفة (مثل مسار الحفظ) من خلال الفئة المرتبطة يدوي: يجب تعيين خصائص التورنت المختلفة (مثل مسار الحفظ) يدويًا - + When Default Save/Incomplete Path changed: عند تغيير مسار الحفظ/غير الكامل الافتراضي: - + When Category Save Path changed: عند تغيير مسار حفظ الفئة: - + Use Category paths in Manual Mode استخدم مسارات الفئات في الوضع اليدوي - + Resolve relative Save Path against appropriate Category path instead of Default one حل مسار الحفظ النسبي مقابل مسار الفئة المناسب بدلاً من المسار الافتراضي @@ -6923,50 +6890,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyqBittorrent حالة النافذة عند بدء التشغيل - + Torrent stop condition: شرط توقف التورنت: - - + + None بدون - - + + Metadata received تم استلام البيانات الوصفية - - + + Files checked تم فحص الملف - + Ask for merging trackers when torrent is being added manually اطلب دمج المتتبعات عند إضافة التورنت يدويًا - + Use another path for incomplete torrents: استخدم مسارًا آخر للتورنتات غير المكتملة: - + Automatically add torrents from: إضافة التورنتات تلقائيًا من: - + Excluded file names أسماء الملفات المستبعدة - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6995,523 +6962,510 @@ readme.txt: تصفية اسم الملف الدقيق. الملف التمهيدي [0-9].txt: قم بتصفية "readme1.txt" و"readme2.txt" ولكن ليس "readme10.txt". - + Receiver المتلقي - + To: To receiver إلى: - + SMTP server: خادم SMTP: - + Sender مُرسل - + From: From sender من: - + This server requires a secure connection (SSL) يتطلب هذا الخادم اتصالًا آمنًا (SSL) - - + + Authentication المصادقة - - - - + + + + Username: اسم المستخدم: - - - - + + + + Password: كلمة المرور: - + Run external program تشغيل برنامج خارجي - Run on torrent added - التشغيل على التورنت مضافة - - - Run on torrent finished - تشغيل على التورنت انتهى - - - + Show console window عرض نافذة وحدة التحكم - + TCP and μTP TCP و μTP - + Listening Port منفذ الاستماع - + Port used for incoming connections: المنفذ المستخدم للاتصالات الواردة: - + Set to 0 to let your system pick an unused port قم بالتعيين إلى 0 للسماح للنظام الخاص بك باختيار منفذ غير مستخدم - + Random عشوائي - + Use UPnP / NAT-PMP port forwarding from my router استخدام UPnP / NAT-PMP لفتح المنافذ تلقائيا - + Connections Limits حدود الاتصالات - + Maximum number of connections per torrent: أقصى عدد من الاتصالات لكل تورنت: - + Global maximum number of connections: أقصى عدد من الاتصالات العامة: - + Maximum number of upload slots per torrent: أقصى عدد من فتحات الرفع لكل تورنت: - + Global maximum number of upload slots: أقصى عدد من فتحات الرفع العامة: - + Proxy Server خادم البروكسي - + Type: النوع: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: المضيف: - - - + + + Port: المنفذ: - + Otherwise, the proxy server is only used for tracker connections خلاف ذلك، خادم البروكسي سيستخدم على اتصالات المتتبعات فقط - + Use proxy for peer connections استخدام البروكسي على اتصالات القرناء - + A&uthentication المصادقة - Info: The password is saved unencrypted - معلومة: كلمة السر يتم حفظها بشكل غير مشفّر + معلومة: كلمة السر يتم حفظها بشكل غير مشفّر - + Filter path (.dat, .p2p, .p2b): مسار الفلتر (.dat, .p2p, .p2b): - + Reload the filter تحديث الفلاتر - + Manually banned IP addresses... عناوين الآي بي المحجوبة يدويًا ... - + Apply to trackers التطبيق على المتتبعات - + Global Rate Limits حدود المعدل العام - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s ك.بايت/ث - - + + Upload: الرفع: - - + + Download: التنزيل: - + Alternative Rate Limits حدود المعدل البديل - + Start time وقت البدء - + End time وقت النهاية - + When: عندما: - + Every day كل يوم - + Weekdays نهاية اليوم - + Weekends نهاية الأسبوع - + Rate Limits Settings إعدادات حدود المعدل - + Apply rate limit to peers on LAN تطبيق حد المعدل على القرناء الموجودين على الشبكة المحلية - + Apply rate limit to transport overhead تطبيق حد المعدل على النقل الزائد - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol تطبيق حد المعدل على بروتوكول µTP - + Privacy الخصوصية - + Enable DHT (decentralized network) to find more peers تفعيل DHT (الشبكة اللامركزية) للعثور على المزيد من القرناء - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) استبدال القرناء بعملاء بت تورنت متوافقين (µTorrent، Vuze، ...) - + Enable Peer Exchange (PeX) to find more peers تفعيل تبادل القرناء (PeX) للعثور على المزيد من الأقران - + Look for peers on your local network إيجاد القرناء على شبكتك المحلية - + Enable Local Peer Discovery to find more peers تفعيل اكتشاف القرناء المحليين للعثور على المزيد من الأقران - + Encryption mode: نمط التشفير: - + Require encryption طلب التشفير - + Disable encryption تعطيل التشفير - + Enable when using a proxy or a VPN connection تفعيل عند استخدام اتصال بروكسي أو VPN - + Enable anonymous mode تفعيل الوضع المجهول - + Maximum active downloads: أقصى عدد للتنزيلات النشطة: - + Maximum active uploads: أقصى عدد للمرفوعات النشطة: - + Maximum active torrents: أقصى عدد للتورنتات النشطة: - + Do not count slow torrents in these limits عدم حساب التورنتات البطيئة في هذه الحدود - + Upload rate threshold: حد معدل الرفع: - + Download rate threshold: حد معدل التنزيل: - - - - + + + + sec seconds ث - + Torrent inactivity timer: مؤقت عدم نشاط التورنت: - + then ثم - + Use UPnP / NAT-PMP to forward the port from my router استخدام UPnP / NAT-PMP لفتح المنافذ تلقائيًا - + Certificate: الشهادة: - + Key: المفتاح: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>معلومات عن الشهادات</a> - + Change current password تغيير كلمة المرور الحالية - Use alternative Web UI - استخدم واجهة وِب رسومية بديلة - - - + Files location: مكان الملفات: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security الأمان - + Enable clickjacking protection تفعيل الحماية من الاختراق - + Enable Cross-Site Request Forgery (CSRF) protection تفعيل الحماية عبر الموقع لطلب التزوير (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation تفعيل التحقق من صحة رأس المضيف - + Add custom HTTP headers أضف رؤوس HTTP مخصصة - + Header: value pairs, one per line الرأس: أهمية مزدوجة، واحد لكل سطر - + Enable reverse proxy support تفعيل دعم البروكسي العكسي - + Trusted proxies list: قائمة البروكسي الموثوق بهم: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: الخدمة: - + Register تسجيل - + Domain name: اسم النطاق: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! من خلال تمكين هذه الخيارات ، يمكنك أن <strong>تفقد</strong> ملفات .torrent الخاصة بك بشكل نهائي! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog إذا قمت بتفعيل الخيار الثاني ("أيضًا عند إلغاء الإضافة") ، ملف torrent. <strong>سيتم حذفه</strong> حتى لو ضغطت على " <strong>إلغاء</strong> "في مربع حوار "إضافة تورنت" @@ -7521,12 +7475,12 @@ readme.txt: تصفية اسم الملف الدقيق. حدد ملف سمة واجهة مستخدم رسومية كيوبت‎تورنت - + Choose Alternative UI files location اختر موقع ملفات واجهة المستخدم البديلة - + Supported parameters (case sensitive): المعلمات المدعومة (حساس لحالة الأحرف): @@ -7546,183 +7500,183 @@ readme.txt: تصفية اسم الملف الدقيق. مُعطل بسبب الفشل في اكتشاف وجود علبة النظام (system tray) - + No stop condition is set. لم يتم وضع شرط للتوقف - + Torrent will stop after metadata is received. سيتوقف التورنت بعد استقبال البيانات الوصفية - + Torrent will stop after files are initially checked. سيتوقف التورنت بعد الملفات التي تم فحصحها - + This will also download metadata if it wasn't there initially. سيؤدي هذا أيضًا إلى تنزيل البيانات الوصفية إذا لم تكن موجودة في البداية. - + %N: Torrent name %N: اسم التورنت - + %L: Category %L: الفئة - + %F: Content path (same as root path for multifile torrent) %F: مسار المحتوى (نفس مسار الجذر لملفات التورنت المتعددة) - + %R: Root path (first torrent subdirectory path) %R: مسار الجذر (مسار الدليل الفرعي الأول للتورنت) - + %D: Save path %D: مسار الحفظ - + %C: Number of files %C: عدد الملفات - + %Z: Torrent size (bytes) %Z: حجم التونت (بالبايتات) - + %T: Current tracker %T: المتتبع الحالي - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") نصيحة: غلف المعلمات بعلامات اقتباس لتجنب قطع النص عند مسافة بيضاء (على سبيل المثال، "%N") - + Test email - + بريد إلكتروني اختباري - + Attempted to send email. Check your inbox to confirm success - + (None) (لا شيء) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds سيتم اعتبار التورنت بطيئًا إذا ظلت معدلات التنزيل والتحميل أقل من هذه القيم لثواني "مؤقت عدم نشاط التورنت" - + Certificate الشهادة - + Select certificate حدد الشهادة - + Private key المفتاح الخاص - + Select private key حدد المفتاح الخاص - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor حدد المجلد المراد مراقبته - + Adding entry failed فشل إضافة الإدخال - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error خطأ في المكان - - + + Choose export directory اختر مكان التصدير - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well عندما يتم تفعيل هذه الخيارات، سيقوم كيوبت‎تورنت <strong>بحذف</strong> ملفات torrent. بعد إضافتها بنجاح (الخيار الأول) أو عدم إضافتها (الخيار الثاني) إلى قائمة انتظار التنزيل الخاصة به. سيتم تطبيق هذا<strong>ليس فقط</strong> إلى الملفات التي تم فتحها عبر إجراء قائمة "إضافة تورنت" ولكن لتلك التي تم فتحها عبر <strong>اقتران نوع الملف</strong> كذلك @@ -7732,69 +7686,69 @@ readme.txt: تصفية اسم الملف الدقيق. ملف سمة واجهة رسومية كيوبت‎تورنت (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: وسوم (مفصولة بفاصلة) - + %I: Info hash v1 (or '-' if unavailable) %I: معلومات التحقق من البيانات (الهاش) الإصدار 1 (أو '-' إذا لم تكن متوفرة) - + %J: Info hash v2 (or '-' if unavailable) %J: معلومات التحقق من البيانات (الهاش) الإصدار 2 (أو '-' إذا لم تكن متوفرة) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: معرف التورنت (إما تجزئة معلومات sha-1 للإصدار 1 للتورنت أو تجزئة معلومات sha-256 المقطوعة للإصدار 2 / التورنت المختلط) - - + + Choose a save directory اختر مكان الحفظ - + Torrents that have metadata initially will be added as stopped. ستتم إضافة التورينت التي تحتوي على بيانات وصفية في البداية على أنها متوقفة. - + Choose an IP filter file اختر ملف تصفية آي بي - + All supported filters جميع التصفيات المدعومة - + The alternative WebUI files location cannot be blank. - + Parsing error خطأ تحليل - + Failed to parse the provided IP filter فشل تحليل عامل تصفية آي بي المقدم - + Successfully refreshed تم التحديث بنجاح - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number تم تحليل عامل تصفية الآي بي المقدم بنجاح: تم تطبيق %1 قواعد. @@ -7805,18 +7759,18 @@ readme.txt: تصفية اسم الملف الدقيق. التفضيلات - + Time Error خطأ في الوقت - + The start time and the end time can't be the same. لا يمكن أن يكون وقت البدء مطابق لوقت الانتهاء. - - + + Length Error خطأ في الطول @@ -7907,163 +7861,163 @@ readme.txt: تصفية اسم الملف الدقيق. PeerListWidget - + Country/Region الدولة/المنطقة - + IP/Address IP/العنوان - + Port المنفذ - + Flags أعلام - + Connection الاتصال - + Client i.e.: Client application العميل - + Peer ID Client i.e.: Client resolved from Peer ID عميل معرف النظير - + Progress i.e: % downloaded التقدم - + Down Speed i.e: Download speed سرعة التنزيل - + Up Speed i.e: Upload speed سرعة الرفع - + Downloaded i.e: total data downloaded تم تنزيله - + Uploaded i.e: total data uploaded تم رفعه - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. الصلة - + Files i.e. files that are being downloaded right now الملفات - + Column visibility وضوح العامود - + Resize columns تغيير حجم الأعمدة - + Resize all non-hidden columns to the size of their contents قم بتغيير حجم جميع الأعمدة غير المخفية إلى حجم محتوياتها - + Add peers... إضافة قرناء ... - - + + Adding peers إضافة قرناء - + Some peers cannot be added. Check the Log for details. لا يمكن إضافة بعض القرناء. تحقق من السجل للحصول على التفاصيل. - + Peers are added to this torrent. تمت إضافة القرناء إلى هذا التورنت. - - + + Ban peer permanently حظر القرين نهائيا - + Cannot add peers to a private torrent لا يمكن إضافة قرناء إلى تورنت خاص - + Cannot add peers when the torrent is checking لا يمكن إضافة قرناء أثناء فحص التورنت - + Cannot add peers when the torrent is queued لا يمكن إضافة قرناء عندما يكون التورنت في الصف - + No peer was selected لم يتم اختيار أي قرين - + Are you sure you want to permanently ban the selected peers? هل أنت متأكد من رغبتك في حظر القرناء المحددين نهائيًا؟ - + Peer "%1" is manually banned تم حظر القرين "%1" يدويًا - + N/A لا يوجد - + Copy IP:port نسخ آي بي: المنفذ @@ -8344,34 +8298,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - كيوبت‎تورنت نشط - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + كيوبت‎تورنت نشط @@ -8663,153 +8591,124 @@ Those plugins were disabled. مسار الحفظ: - + Never أبدًا - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (لديك %3) - - + + %1 (%2 this session) %1 (%2 هذه الجلسة) - - + + N/A غير متاح - + Yes - نعم + نعم - + No - لا + لا - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (بذرت لـ %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 كحد أقصى) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (من إجمالي %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (بمعدّل %2) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - رابط للقرين عبر الويب - - - Remove Web seed - ازالة رابط القرين عبر الويب - - - Copy Web seed URL - نسخ رابط القرين عبر الويب - - - Edit Web seed URL - تعديل رابط القرين عبر الويب - - - + Filter files... تصفية الملفات... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled تم تعطيل الرسوم البيانية للسرعة - + You can enable it in Advanced Options يمكنك تفعيله في الخيارات المتقدمة - New URL seed - New HTTP source - URL بذر جديد - - - New URL seed: - URL بذر جديد: - - - This URL seed is already in the list. - URL البذر هذا موجود بالفعل في القائمة. - - - + Web seed editing تعديل القرين عبر الويب - + Web seed URL: رابط القرين عبر الويب: @@ -8817,33 +8716,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. تنسيق البيانات غير صالح. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 تعذر حفظ بيانات التنزيل التلقائي لـ RSS في %1. خطأ: %2 - + Invalid data format تنسيق البيانات غير صالح - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... تم قبول مقالة RSS '%1' بواسطة القاعدة '%2'. جارِ محاولة إضافة تورنت... - + Failed to read RSS AutoDownloader rules. %1 فشل في قراءة قواعد RSS AutoDownloader %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 تعذر تحميل قواعد التنزيل التلقائي لـ RSS. السبب: %1 @@ -8851,22 +8750,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 فشل تحميل موجز RSS في '%1'. السبب: %2 - + RSS feed at '%1' updated. Added %2 new articles. تم تحديث موجز RSS في '%1'. تمت إضافة %2 مقالة جديدة. - + Failed to parse RSS feed at '%1'. Reason: %2 فشل تحليل موجز RSS في '%1'. السبب: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. تم تحميل موجز RSS في '%1' بنجاح. البدء في تحليلها. @@ -8915,12 +8814,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" تعذر حفظ تضبيط جلسة RSS. الملف: "%1". خطأ: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" تعذر حفظ بيانات جلسة RSS. الملف: "%1". خطأ: "%2" @@ -8942,76 +8841,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. العنصر غير موجود: %1. - Couldn't move folder into itself. - تعذر نقل المجلد إلى نفسه. + تعذر نقل المجلد إلى نفسه. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. لا يمكن حذف المجلد الجذر. - + Failed to read RSS session data. %1 فشل في قراءة بيانات جلسة RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" فشل في تحليل بيانات جلسة RSS. الملف: "%1". خطأ: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." فشل تحميل بيانات جلسة RSS. الملف: "%1". خطأ: "تنسيق البيانات غير صالح." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. تعذر تحميل موجز RSS. موجز: "%1". السبب: عنوان URL مطلوب. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. تعذر تحميل موجز RSS. موجز: "%1". السبب: UID غير صالح. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. تم العثور على موجز RSS مكرر .UID المعرف الفريد : "%1". خطأ: يبدو أن التضبيط تالف. - + Couldn't load RSS item. Item: "%1". Invalid data format. تعذر تحميل عنصر RSS. البند 1". تنسيق البيانات غير صالح. - + Corrupted RSS list, not loading it. قائمة RSS تالفة، ولا يتم تحميلها. - + Incorrect RSS Item path: %1. مسار عنصر RSS غير صحيح: %1. - + RSS item with given path already exists: %1. عنصر RSS بالمسار المحدد موجود بالفعل: %1. - + Parent folder doesn't exist: %1. المجلد الأصلي غير موجود: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + الموجز غير موجود: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + الرابط: + + + + Refresh interval: + + + + + sec + ث + + + + Default + + + RSSWidget @@ -9111,78 +9055,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - تحرير رابط الموجز... + تحرير رابط الموجز... - Edit feed URL - تحرير رابط الموجز + تحرير رابط الموجز - + Please choose a folder name يرجى اختيار اسم المجلد - + Folder name: اسم المجلد: - + New folder مجلد جديد - - Please type a RSS feed URL - يرجى كتابة رابط موجز RSS + يرجى كتابة رابط موجز RSS - - Feed URL: - رابط الموجز: + رابط الموجز: - + Deletion confirmation تأكيد الحذف - + Are you sure you want to delete the selected RSS feeds? هل أنت متأكد من رغبتك في حذف موجز RSS المحددة؟ - + Please choose a new name for this RSS feed يرجى اختيار اسمًا جديدًا لهذا موجز RSS - + New feed name: اسم الموجز الجديد: - + Rename failed فشل إعادة التسمية - + Date: التاريخ: - + Feed: - + Author: المؤلف: @@ -9319,10 +9262,6 @@ Those plugins were disabled. i.e: Number of partial sources المحمِّلون - - Search engine - محرّك البحث - Filter search results... @@ -9443,104 +9382,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. تنسيق ملحق محرك البحث غير معروف. - + Plugin already at version %1, which is greater than %2 الملحق موجود بالفعل في الإصدار %1، وهو أكبر من %2 - + A more recent version of this plugin is already installed. تم بالفعل تثبيت إصدار أحدث من هذا الملحق. - + Plugin %1 is not supported. الملحقة %1 غير مدعومة. - - + + Plugin is not supported. المُلحقة غير مدعومة. - + Plugin %1 has been successfully updated. تم تحديث المُلحقة %1 بنجاح. - + All categories كل الفئات - + Movies أفلام - + TV shows برامج تلفزيونية - + Music موسيقى - + Games ألعاب - + Anime رسوم متحركة - + Software برمجيات - + Pictures صور - + Books كتب - + Update server is temporarily unavailable. %1 خادوم التحديث غير متاح مؤقتا. %1 - - + + Failed to download the plugin file. %1 فشل في تنزيل ملف المُلحقة. %1 - + Plugin "%1" is outdated, updating to version %2 الملحق "%1" قديم ، ويتم التحديث إلى الإصدار %2 - + Incorrect update info received for %1 out of %2 plugins. تلقي معلومات تحديث غير صحيحة لـ %1 من %2 ملحق. - + Search plugin '%1' contains invalid version string ('%2') يحتوي ملحق البحث '%1' على سلسلة إصدار غير صالح ('%2') @@ -9566,135 +9505,127 @@ Click the "Search plugins..." button at the bottom right of the window مُلحقات البحث... - + A phrase to search for. عبارة للبحث عنها. - + Spaces in a search term may be protected by double quotes. يمكن حماية المسافات في مصطلح البحث بعلامات اقتباس مزدوجة. - + Example: Search phrase example المثال: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>"السلام عليكم"</b>: يبحث عن<b>السلام عليكم</b> - + All plugins جميع الملحقات - + Only enabled المُفعلة فقط - - + + Invalid data format. - تنسيق البيانات غير صالح. + تنسيق البيانات غير صالح. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>السلام عليكم</b>: يبحث عن<b>السلام</b>و<b>عليكم</b> - + Refresh - + Close tab إغلاق علامة التبويب - + Close all tabs أغلق كل علامات التبويب - + Select... اختر... - - + + Search Engine مُحرك البحث - - + + Please install Python to use the Search Engine. برجاء تثبيت Python لاستخدام محرك البحث. - + Empty search pattern نمط البحث فارغ - + Please type a search pattern first الرجاء كتابة نمط البحث اولا - + Stop أوقف - - Search has finished - اكتمل البحث - - - Search has failed - فشلت عملية البحث - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10092,67 +10023,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: حالة الاتصال: - - + + No direct connections. This may indicate network configuration problems. لا اتصالات مباشرة. قد يشير هذا إلى وجود مشاكل في إعداد الشبكة. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 nodes - + qBittorrent needs to be restarted! يحتاج كيوبت‎تورنت لإعادة تشغيله! - - + + Connection Status: حالة الاتصال: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. غير متصل. قد تعود المشكلة إلى فشل البرنامج في الاستماع إلى المنفذ المختار للاتصالات القادمة. - + Online متصل - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits انقر للتبديل إلى حدود السرعات البديلة - + Click to switch to regular speed limits انقر للتبديل إلى حدود السرعات العادية @@ -10180,14 +10121,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) المكتمل (0) - - Resumed (0) - المُستأنف (0) - - - Paused (0) - المُلبث (0) - Running (0) @@ -10278,32 +10211,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - المُلبث (%1) - Moving (%1) نقل (%1) - - Resume torrents - استئناف التورنتات - - - Pause torrents - إلباث التورنتات - Remove torrents إزالة التورنت - - Resumed (%1) - المُستأنف (%1) - Active (%1) @@ -10375,23 +10292,11 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags إزالة الوسوم غير المستخدمة - - Resume torrents - استئناف التورنتات - - - Pause torrents - إلباث التورنتات - Remove torrents إزالة التورنت - - New Tag - وسم جديد - Start torrents @@ -10727,17 +10632,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10989,17 +10894,6 @@ Please choose a different name and try again. مراقبة مجلد: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - فشل في تخصيص الذاكرة عند قراءة الملف. الملف: "%1". خطأ: "%2" - - - Invalid metadata - بيانات وصفية خاطئة - - TorrentOptionsDialog @@ -11037,10 +10931,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - حدود سرعة التورنت - Download: @@ -11073,34 +10963,6 @@ Please choose a different name and try again. Upload: الرفع: - - Torrent share limits - حدود مشاركة التورنت - - - Use global share limit - استخدام حد المشاركة العامة - - - Set no share limit - تعيين بدون حد مشاركة - - - Set share limit to - تعيين حد المشاركة إلى - - - ratio - النسبة - - - total minutes - إجمالي الدقائق - - - inactive minutes - دقائق غير نشطة - Disable DHT for this torrent @@ -11142,14 +11004,6 @@ Please choose a different name and try again. Not applicable to private torrents لا ينطبق على التورنتات الخاصة - - No share limit method selected - لم يتم تحديد طريقة حد المشاركة - - - Please select a limit method first - الرجاء تحديد طريقة الحد أولا - TorrentShareLimitsWidget @@ -11209,7 +11063,7 @@ Please choose a different name and try again. Remove torrent - إزالة التورنت + إزالة التورنت @@ -11219,7 +11073,7 @@ Please choose a different name and try again. Enable super seeding for torrent - تفعيل البذر الخارق للتورنت + تفعيل البذر الخارق للتورنت @@ -11234,10 +11088,6 @@ Please choose a different name and try again. Torrent Tags وسوم تورنت - - New Tag - وسم جديد - Add tag @@ -11272,78 +11122,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. خطأ: ملف التورنت '%1' غير صالح. - + Priority must be an integer يجب أن تكون الأولوية عددًا صحيحًا - + Priority is not valid الأولوية غير صالحة - + Torrent's metadata has not yet downloaded البيانات الوصفية للتورنت لم تنزل بعد - + File IDs must be integers يجب أن تكون معرفات الملفات أعدادًا صحيحة - + File ID is not valid معرف الملف غير صالح - - - - + + + + Torrent queueing must be enabled يجب تفعيل قائمة اصطفاف التورنت - - + + Save path cannot be empty مسار الحفظ لا يمكن أن يكون فارغا - - + + Cannot create target directory لا يمكن إنشاء الدليل الهدف - - + + Category cannot be empty لا يمكن أن يكون الفئة فارغة - + Unable to create category تعذّر إنشاء الفئة - + Unable to edit category تعذّر تعديل الفئة - + Unable to export torrent file. Error: %1 غير قادر على تصدير ملف تورنت. الخطأ: %1 - + Cannot make save path تعذّر إنشاء مسار الحفظ @@ -11363,39 +11213,39 @@ Please choose a different name and try again. معلمة "sort" غير صالح - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" ليس فهرس ملف صالح. - + Index %1 is out of bounds. الفهرس %1 خارج الحدود. - - + + Cannot write to directory تعذّر الكتابة إلى المجلد - + WebUI Set location: moving "%1", from "%2" to "%3" تعيين وجهة واجهة الوِب الرسومية: ينقل "%1" من "%2" إلى "%3" - + Incorrect torrent name اسم تورنت غير صحيح - - + + Incorrect category name اسم الفئة غير صحيحة @@ -11543,73 +11393,73 @@ Please choose a different name and try again. هذا التورنت خاص - + Tracker editing تعديل المتتبع - + Tracker URL: رابط المتتبع: - - + + Tracker editing failed فشل تعديل المتتبع - + The tracker URL entered is invalid. رابط المتتبع الذي أدخلته غير صالح. - + The tracker URL already exists. رابط المتتبع موجود بالفعل. - + Edit tracker URL... تعديل رابط المتتبع... - + Remove tracker إزالة المتتبع - + Copy tracker URL نسخ رابط المتتبع - + Force reannounce to selected trackers إجبار إعادة الإعلان للمتتبعات المحددة - + Force reannounce to all trackers إجبار إعادة الإعلان لجميع المتتبعات - + Resize columns تغيير حجم الأعمدة - + Resize all non-hidden columns to the size of their contents قم بتغيير حجم جميع الأعمدة غير المخفية إلى حجم محتوياتها - + Add trackers... إضافة متتبعات... - + Column visibility وضوح العامود @@ -11699,14 +11549,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - استئناف التورنتات - - - Pause torrents - إلباث التورنتات - Remove torrents @@ -11829,10 +11671,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. يتحقق من بيانات الاستئناف - - Paused - مُلبث - Completed @@ -11873,21 +11711,16 @@ Please choose a different name and try again. % Done التقدّم - - Status - Torrent status (e.g. downloading, seeding, paused) - الحالة - Stopped - + متوقف Status Torrent status (e.g. downloading, seeding, stopped) - الحالة + الحالة @@ -12003,22 +11836,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - فترة النشاط + فترة النشاط Yes - نعم + نعم No - لا - - - Time Active - Time (duration) the torrent is active (not paused) - فترة النشاط + لا @@ -12120,358 +11948,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility وضوح الصفوف - + Recheck confirmation اعادة التأكد - + Are you sure you want to recheck the selected torrent(s)? هل أنت متأكد من رغبتك في اعادة التأكد من الملفات المختارة؟ - + Rename تغيير التسمية - + New name: الاسم الجديد: - + Choose save path اختر مسار الحفظ - Confirm pause - تأكيد الإيقاف المؤقت - - - Would you like to pause all torrents? - هل ترغب في إيقاف جميع ملفات التورنت مؤقتًا؟ - - - Confirm resume - تأكيد الاستئناف - - - Would you like to resume all torrents? - هل ترغب في استئناف جميع ملفات التورنت؟ - - - + Unable to preview غير قادر على المعاينة - + The selected torrent "%1" does not contain previewable files لا يحتوي التورنت المحدد "%1" على ملفات قابلة للمعاينة - + Resize columns تغيير حجم الأعمدة - + Resize all non-hidden columns to the size of their contents قم بتغيير حجم جميع الأعمدة غير المخفية إلى حجم محتوياتها - + Enable automatic torrent management تفعيل الإدارة التلقائية للتورنت - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. هل أنت متأكد من أنك تريد تفعيل الإدارة التلقائية للتورنت المحدد؟ قد يتم نقلهم. - Add Tags - إضافة وسوم - - - + Choose folder to save exported .torrent files اختر مجلدًا لحفظ ملفات torrent. المصدرة - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" فشل تصدير ملف .torrent. تورنت: "%1". حفظ المسار: "%2". السبب: "%3" - + A file with the same name already exists يوجد ملف بنفس الاسم بالفعل - + Export .torrent file error خطأ في تصدير ملف torrent. - + Remove All Tags إزالة جميع الوسوم - + Remove all tags from selected torrents? إزالة جميع الوسوم من التورنتات المُختارة؟ - + Comma-separated tags: وسوم مفصولة بفواصل: - + Invalid tag وسم غير صالح - + Tag name: '%1' is invalid اسم الوسم: '%1' غير صالح - &Resume - Resume/start the torrent - ا&ستئناف - - - &Pause - Pause the torrent - إ&لباث - - - Force Resu&me - Force Resume/start the torrent - فرض الا&ستئناف - - - + Pre&view file... م&عاينة الملف... - + Torrent &options... &خيارات التورنت... - + 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 loc&ation... تحديد المك&ان... - + Force rec&heck فرض إعا&دة التحقق - + Force r&eannounce فر&ض الإعلان - + &Magnet link &رابط المغناطيس - + Torrent &ID مع&رف التورنت - + &Comment - + &Name ا&سم - + Info &hash v1 ت&جزئة المعلومات v1 - + Info h&ash v2 ت&جزئة المعلومات v2 - + Re&name... &غيّر الاسم - + Edit trac&kers... تحر&ير التتبع... - + E&xport .torrent... &تصدير .torrent... - + Categor&y ال&فئة - + &New... New category... جدي&د... - + &Reset Reset category إعادة ت&عيين - + Ta&gs الوس&وم - + &Add... Add / assign multiple tags... إ&ضافة... - + &Remove All Remove all tags إزالة الك&ل - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &صف - + &Copy ن&سخ - + Exported torrent is not necessarily the same as the imported التورنت المُصدَّر ليس بالضرورة نفس المستورد - + Download in sequential order تنزيل بترتيب تسلسلي - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. حدثت أخطاء عند تصدير ملفات .torrent. تحقق من سجل التنفيذ للحصول على التفاصيل. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &إزالة - + Download first and last pieces first تنزيل أول وآخر قطعة أولًا - + Automatic Torrent Management إدارة ذاتية للتورنت - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category الوضع التلقائي يعني أن العديد من خصائص التورنت (مثل مسار الحفظ) سيتم تحديده عن طريق الفئة المرتبطة بها - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - لا يمكن فرض إعادة الإعلان إذا كان التورنت متوقفًا مؤقتًا/في الصف/خطأ/جارٍ التحقق - - - + Super seeding mode نمط البذر الخارق @@ -12603,32 +12392,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12720,52 +12509,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. تم تحديد اسم كعكات الجلسة غير المقبول: '%1'. يتم استخدام واحد افتراضي. - + Unacceptable file type, only regular file is allowed. نوع ملف غير مقبول، الملفات الاعتيادية فقط هي المسموح بها. - + Symlinks inside alternative UI folder are forbidden. الروابط الرمزية الموجودة داخل مجلد واجهة المستخدم البديلة ممنوعة. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" فاصل ':' مفقودة في رأس HTTP المخصص لواجهة الوِب الرسومية: "%1" - + Web server error. %1 خطأ في خادم الويب. %1 - + Web server error. Unknown error. خطأ في خادم الويب. خطأ غير معروف. @@ -12823,7 +12612,7 @@ Please choose a different name and try again. Unknown error - خطأ غير معروف + خطأ غير معروف diff --git a/src/lang/qbittorrent_az@latin.ts b/src/lang/qbittorrent_az@latin.ts index ef5f11999..e0ccf05dc 100644 --- a/src/lang/qbittorrent_az@latin.ts +++ b/src/lang/qbittorrent_az@latin.ts @@ -12,75 +12,75 @@ Haqqında - + Authors Müəlliflər - + Current maintainer Cari tərtibatçı - + Greece Yunanıstan - - + + Nationality: Milliyət: - - + + E-mail: E-poçt: - - + + Name: Adı: - + Original author Orijinal müəllifi - + France Fransa - + Special Thanks Xüsusi təşəkkürlər - + Translators Tərcüməçilər - + License Lisenziya - + Software Used İstifadə olunan proqram təminatı - + qBittorrent was built with the following libraries: qBittorrent aşağıdakı kitabxanalar ilə hazılandı: - + Copy to clipboard Mübadilə yaddaşına kopyalayın @@ -164,15 +164,10 @@ Saxlama yeri - + Never show again Bir daha göstərmə - - - Torrent settings - Torrent parametrləri - Set as default category @@ -189,12 +184,12 @@ Torrenti başlat - + Torrent information Torrent məlumatı - + Skip hash check Heş yoxlamasını ötürmək @@ -203,6 +198,11 @@ Use another path for incomplete torrent Tamamlanmamış torrentlər üçün başqa yoldan istifadə edin + + + Torrent options + Torrent seçimləri + Tags: @@ -229,75 +229,75 @@ Dayanma vəziyyəti: - - + + None Heç nə - - + + Metadata received Meta məlumatları alındı - + Torrents that have metadata initially will be added as stopped. Öncədən meta məlumatlara malik olan torrentlər dayandırılmış kimi əılavə ediləcək. - - + + Files checked Fayllar yoxlanıldı - + Add to top of queue Növbənin ən üst sırasına əlavə et - + When checked, the .torrent file will not be deleted regardless of the settings at the "Download" page of the Options dialog Əgər bu xana işarələnərsə, seçimlər pəncərəsindəki "Yükləmə" səhifəsinin ayarlarına baxmayaraq .torrent faylı silinməyəcək - + Content layout: Məzmun maketi: - + Original Orijinal - + Create subfolder Alt qovluq yarat - + Don't create subfolder Alt qovluq yaratmamaq - + Info hash v1: məlumat heş'i v1 - + Size: Ölçü: - + Comment: Şərh: - + Date: Tarix: @@ -327,147 +327,147 @@ Son istifadə olunan saxlama yolunu xatırla - + Do not delete .torrent file .torrent faylını silməmək - + Download in sequential order Ardıcıl şəkildə yüklə - + Download first and last pieces first İlk öncə birinci və sonuncu parçaları yükləmək - + Info hash v2: Məlumat heş'i v2: - + Select All Hamısını seçin - + Select None Heç birini seçməyin - + Save as .torrent file... .torrent faylı kimi saxla... - + I/O Error Giriş/Çıxış Xətası - + Not Available This comment is unavailable Mövcud Deyil - + Not Available This date is unavailable Mövcud Deyil - + Not available Mövcud Deyil - + Magnet link Magnet linki - + Retrieving metadata... Meta məlumatlar alınır... - - + + Choose save path Saxlama yolunu seçin - + No stop condition is set. Dayanma vəziyyəti təyin edilməyib. - + Torrent will stop after metadata is received. Meta məlumatları alındıqdan sonra torrent dayanacaq. - + Torrent will stop after files are initially checked. Faylların ilkin yoxlanışından sonra torrrent daynacaq. - + This will also download metadata if it wasn't there initially. Əgər başlanğıcda meta məlumatlar olmasa onlar da yüklənəcək. - - + + N/A Əlçatmaz - + %1 (Free space on disk: %2) %1 (Diskin boş sahəsi: %2) - + Not available This size is unavailable. Mövcud deyil - + Torrent file (*%1) Torrent fayl (*%1) - + Save as torrent file Torrent faylı kimi saxlamaq - + Couldn't export torrent metadata file '%1'. Reason: %2. '%1' meta verilənləri faylı ixrac edilə bilmədi. Səbəb: %2. - + Cannot create v2 torrent until its data is fully downloaded. Tam verilənləri endirilməyənədək v2 torrent yaradıla bilməz. - + Filter files... Faylları süzgəclə... - + Parsing metadata... Meta məlumatlarının analizi... - + Metadata retrieval complete Meta məlumatlarının alınması başa çatdı @@ -485,22 +485,22 @@ Torrent əlavə edilə bilmədi. Mənbə: "%1", Səbəb: "%2" - + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 Torrentin dublikatının əlavə edilməsinə cəhd aşkarlandı. Mənbə: %1. Mövcud torrent: %2. Nəticə: %3 - + Merging of trackers is disabled İzləyicilərin birləşdirilməsi söndürülüb - + Trackers cannot be merged because it is a private torrent izləyicilər birləşdirilə bilməz, çünki bu fərdi torrentdir - + Trackers are merged from new source Yeni torrentdən izləyicilər birləşdirildi @@ -666,763 +666,852 @@ AdvancedSettings - - - - + + + + MiB MB - + Recheck torrents on completion Yüklənmə tamamlandıqdan sonra torrentləri yoxlamaq - - + + ms milliseconds msan - + Setting Ayarlar - + Value Value set for this setting Dəyər - + (disabled) (söndürülüb) - + (auto) (avtomatik) - + + min minutes dəq - + All addresses Bütün ünvanlar - + qBittorrent Section qBittorrent Bölməsi - - + + Open documentation Sənədləri açmaq - + All IPv4 addresses Bütün İPv4 ünvanları - + All IPv6 addresses Bütün İPv6 ünvanları - + libtorrent Section libtorrent bölməsi - + Fastresume files Tez bərpa olunan fayllar - + SQLite database (experimental) SQLite verilənlər bazası (təcrübi) - + Resume data storage type (requires restart) Verilənləri saxlama növünü davam etdirin (yenidən başlatmaq tələb olunur) - + Normal Normal - + Below normal Normadan aşağı - + Medium Orta - + Low Aşağı - + Very low Çox aşağı - + Physical memory (RAM) usage limit Fiziki yaddaş (RAM) istifadəsi limiti - + Asynchronous I/O threads Zamanla bir birinə uzlaşmayan Giriş/Çıxış axınları - + Hashing threads Ünvanlanan axınlar - + File pool size Dinamik yaddaş ehtiyatı faylının ölçüsü - + Outstanding memory when checking torrents Torrentləri yoxlayarkən icrası gözlənilən yaddaş - + Disk cache Disk keşi - - - - + + + + s seconds san - + Disk cache expiry interval Disk keşinin sona çatma müddəti - + Disk queue size Disk növbəsi ölçüsü - - + + Enable OS cache ƏS keşini aktiv etmək - + Coalesce reads & writes Oxuma, yazma əməliyyatlarını birləşdirmək - + Use piece extent affinity Hissələrin yaxınlıq dərəcəsindən istifadə etmək - + Send upload piece suggestions Göndərmə parçası təkliflərini göndərmək - - - - + + + + + 0 (disabled) 0 (söndürülüb) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Davametmə məlumatlarının saxlanılması aralığı (0: söndürülüb) - + Outgoing ports (Min) [0: disabled] Çıxış portları (Ən az)[0: söndürülüb] - + Outgoing ports (Max) [0: disabled] Çıxış portları (Ən çox) [0: söndürülüb] - + 0 (permanent lease) 0 (daimi icarə) - + UPnP lease duration [0: permanent lease] UPnP icarə müddəti [0: daimi icarə] - + Stop tracker timeout [0: disabled] İzləyici vaxtını dayandır [0: söndürülb] - + Notification timeout [0: infinite, -1: system default] Bildirişin bitmə vaxtı [0: sonsuz, -1: sistemdəki standart] - + Maximum outstanding requests to a single peer Hər iştirakçıya düşən ən çox icra olunmamış sorğu - - - - - + + + + + KiB KB - + (infinite) (sonsuz) - + (system default) (sistemdəki standart) - + + Delete files permanently + Faylları həmişəlik silmək + + + + Move files to trash (if possible) + Faylları səbətə atmaq (mümkün olduqda) + + + + Torrent content removing mode + Torrent məzmununun silinməsi rejimi + + + This option is less effective on Linux Bu seçim Linuxda az effektlidir - + Process memory priority Proses yaddaşının üstünlüyü - + Bdecode depth limit Bdecode dərinliyi həddi - + Bdecode token limit Bdecode tokenləri həddi - + Default Standart - + Memory mapped files Yaddaş ilə əlaqəli fayllar - + POSIX-compliant POSİX ilə uyğun - + + Simple pread/pwrite + Sadə oxuma/yazma + + + Disk IO type (requires restart) Disk giriş/çıxış növü (yenidən başladılmalıdır) - - + + Disable OS cache ƏS keşini söndür - + Disk IO read mode Diskin giriş/çıxışının oxu rejimi - + Write-through Başdan sona yazma - + Disk IO write mode Diskin giriş/çıxışının yazı rejimi - + Send buffer watermark Buferin su nişanını göndərmək - + Send buffer low watermark Buferin zəif su nişanını göndərin - + Send buffer watermark factor Bufer su nişanı əmsalını göndərmək - + Outgoing connections per second Hər saniyədə sərf olunan bağlantı - - + + 0 (system default) 0 (sistemdəki standart) - + Socket send buffer size [0: system default] Soket göndərmə bufer ölçüsü [0: sistemdəki standart] - + Socket receive buffer size [0: system default] Soket qəbul etmə bufer ölçüsü [0: sistemdəki standart] - + Socket backlog size Soket yığma ölçüsü - + + Save statistics interval [0: disabled] + How often the statistics file is saved. + Statistik intervalı saxlamaq [0: sönülü] + + + .torrent file size limit .torrent faylı ölçüsünün həddi - + Type of service (ToS) for connections to peers Iştirakçılarla bağlantı üçün xidmət növü (ToS) - + Prefer TCP TCP tərcihi - + Peer proportional (throttles TCP) İştirakçılarla mütənasib (TCP'ni məhdudlaşdırır) - + Support internationalized domain name (IDN) Beynəlxalq domen adı (İDN) dəstəkləmək - + Allow multiple connections from the same IP address Eyni İP ünvanından çoxsaylı bağlantılara icazə vermək - + Validate HTTPS tracker certificates HTTPS izləyici sertifikatlarını təsdiq etmək - + Server-side request forgery (SSRF) mitigation Server tərəfindən saxta sorğulardan (SSRF) qorunma - + Disallow connection to peers on privileged ports İmtiyazlı portlarda iştirakçılara qoşulmanı qadağan etmək - + It appends the text to the window title to help distinguish qBittorent instances O, qBittorent nümunələrini fərqləndirmək üçün pəncərə başlığına mətn əlavə edir. - + Customize application instance name Tətbiq nümunəsi adının dəyişdirilməsi - + It controls the internal state update interval which in turn will affect UI updates Bu yenilənmə tezliyinin daxili vəziyətini idarə edir, bu da öz növəsində İİ yenilənmələrinə təsir edəcək - + Refresh interval Yenilənmə aralığı - + Resolve peer host names İştirakçıların host adlarını müəyyən etmək - + IP address reported to trackers (requires restart) İP ünvanı izləyicilərə bildirildi (yenidən başladılmalıdır) - + + Port reported to trackers (requires restart) [0: listening port] + Port izləyicilərə məlumat verdi (yenidən başladaılmalı) [0: dinləmə portu] + + + Reannounce to all trackers when IP or port changed İP və ya port dəyişdirildiyi zaman təkrar bildirmək - + Enable icons in menus Menyudakı nişanları aktiv edin - + Enable port forwarding for embedded tracker Daxildə olan izləyicilər üçün port yönləndirməsini aktiv et. - + Enable quarantine for downloaded files Endirilmiş fayllar üçün qarantini aktiv edin - + Enable Mark-of-the-Web (MOTW) for downloaded files Endirilmiş fayllar üçün veb markasını (Mark-of-the-Web - MOTW) aktiv edin - + + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) + Sertifikatın doğrulanmasına və qeyri-torrent protokol fəaliyyətlərinə təsir göstərir (məs., RSS lentləri, proqram yenilənmələri, torrent faylları, GeoİP məlumatları, və sair) + + + + Ignore SSL errors + SSL xətalarını gözardı etmək + + + (Auto detect if empty) (Boş olmasının avtomatik aşkarlanması) - + Python executable path (may require restart) Python icra faylı yolu (yenidən başlatmaq tələb oluna bilər) - + + Start BitTorrent session in paused state + BitTorrent sesiyasını fasilə vəziyyətində başlatmaq + + + + sec + seconds + san + + + + -1 (unlimited) + -1 (limitsiz) + + + + BitTorrent session shutdown timeout [-1: unlimited] + BitTorrent sesiyasının sönmə vaxtı [-1: limitsiz] + + + Confirm removal of tracker from all torrents Bütün torrentlərdən izləyicilərin kənarlaşdırılmasını təsdiq etmək - + Peer turnover disconnect percentage İştirakçı axınının kəsilməsi faizi - + Peer turnover threshold percentage İştirakçı axını həddinin faizi - + Peer turnover disconnect interval İştirakçı axınının kəsilmə müddəti - + Resets to default if empty Boş olduqda ilkin vəziyyətinə qaytarmaq - + DHT bootstrap nodes DHT özüyükləmə qovşaqları - + I2P inbound quantity I2P daxilolma miqdarı - + I2P outbound quantity I2P çıxma miqdarı - + I2P inbound length I2P daxilolma uzunluğu - + I2P outbound length I2P çıxma uzunluğu - + Display notifications Bildirişləri göstərmək - + Display notifications for added torrents Əlavə edilmiş torrentlər üçün bildirişləri göstərmək - + Download tracker's favicon İzləyici nişanlarını yükləmək - + Save path history length Saxlama yolunun tarixçəsinin uzunluğu - + Enable speed graphs Sürət qrafikini aktiv etmək - + Fixed slots Sabitləşdirilmiş yuvalar - + Upload rate based Yükləmə sürəti əsasında - + Upload slots behavior Göndərmə yuvalarının davranışı - + Round-robin Dairəvi - + Fastest upload Ən sürətli yükləmə - + Anti-leech Sui-istifadəni əngəlləmək - + Upload choking algorithm Göndərmənin məhdudlaşdırılması alqoritmi - + Confirm torrent recheck Torrentin yenidən yoxlanılmasını təsdiqləmək - + Confirm removal of all tags Bütün yarlıqların silinməsini təsdiq etmək - + Always announce to all trackers in a tier Bir səviyyədəki bütün iştirakçılara həmişə bildirmək - + Always announce to all tiers Bütün səviyyələrə həmişə bildirmək - + Any interface i.e. Any network interface İstənilən interfeys - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Qarışıq %1-TCP rejimi alqoritmi - + Resolve peer countries İştirakçıların ölkələrini müəyyən etmək - + Network interface Şəbəkə interfeysi - + Optional IP address to bind to Qoşulmaq üçün ixtiyari İP ünvanı - + Max concurrent HTTP announces Ən çox paralel HTTP elanıları - + Enable embedded tracker Yerləşdirilmiş izləyicini aktiv etmək - + Embedded tracker port Yerləşdirilmiş izləyici portu + + AppController + + + + Invalid directory path + Səhv kataloq yolu + + + + Directory does not exist + Kataloq mövcud deyil + + + + Invalid mode, allowed values: %1 + Səhv rejim, icazə verilən dəyərlər: %1 + + + + cookies must be array + kukilər massiv olmalıdır + + Application - + Running in portable mode. Auto detected profile folder at: %1 Portativ rejimdə işləyir. Burada avtomatik profil qovluğu aşkar edildi: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Lazımsız əmr sətri bayrağı aşkarlandı: "%1". Portativ rejim işin nisbətən daha tez bərpa olunması anlamına gəlir. - + Using config directory: %1 Bu ayarlar qovluğu istifadə olunur: %1 - + Torrent name: %1 Torrentin adı: %1 - + Torrent size: %1 Torrentin ölçüsü: %1 - + Save path: %1 Saxlama yolu: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent %1 qovluğuna yükləndi. - + + Thank you for using qBittorrent. qBittorrent istifadə etdiyiniz üçün sizə təşəkkür edirik. - + Torrent: %1, sending mail notification Torrent: %1, poçt bildirişi göndərmək - + Add torrent failed Torrent əlavə edilməsi baş tutmadı - + Couldn't add torrent '%1', reason: %2. "%1" torrentini əlavə etmək mümkün olmadı, səbəb: %2 - + The WebUI administrator username is: %1 Veb istfadəçi interfeysi inzibatçısının istifadəçi adı: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Veb istifadəçi interfeysi inzibatçı şifrəsi təyin edilməyib. Bu sesiya üçün müvəqqəti şifrə təqdim olunur: %1 - + You should set your own password in program preferences. Öz şifrənizi proramın ayarlarında təyin etməlisiniz. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Veb istifadəçi interfeysi söndürülüb. Onu aktiv etmək üçün tənzimləmə faylınında dəyişiklik edin. - + Running external program. Torrent: "%1". Command: `%2` Xarici proqram işə düşür. Torrent: "%1". Əmr: "%2" - + Failed to run external program. Torrent: "%1". Command: `%2` Xarici proqramı başlatmaq mümkün olmadı. Torrent: "%1". Əmr: "%2" - + Torrent "%1" has finished downloading "%1" torrenti yükləməni başa çatdırdı - + WebUI will be started shortly after internal preparations. Please wait... Veb İİ daxili hazırlıqdan sonra qısa zamanda başladılacaqdır. Lütfən gözləyin... - - + + Loading torrents... Torrentlər yüklənir... - + E&xit Çı&xış - + I/O Error i.e: Input/Output Error Giriş/Çıxış xətası - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1431,100 +1520,110 @@ Səbəb: %2 - + Torrent added Torrent əlavə edildi - + '%1' was added. e.g: xxx.avi was added. "%1" əlavə edildi. - + Download completed Endirmə tamamlandı - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 başladıldı. Proses İD-si: %2 - + + This is a test email. + Bu slnaq e-poçtudur. + + + + Test email + E-poçtu sınamaq + + + '%1' has finished downloading. e.g: xxx.avi has finished downloading. "%1" endirməni tamamladı. - + Information Məlumat - + To fix the error, you may need to edit the config file manually. Xətanı aradan qaldırmaq üçün tənzimləmə faylında dəyişiklik etməniz lazımdır. - + To control qBittorrent, access the WebUI at: %1 qBittorrent'i idarə etmək üçün, bu ünvandan Veb istifadəçi interfeysinə daxil olun: %1 - + Exit Çıxış - + Recursive download confirmation Rekursiv endirmənin təsdiqi - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? "%1" torrenti torrent fayllarından ibarətdir, endirilməsinə davam etmək istəyirsinizmi? - + Never Heç vaxt - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Torrentdən .torrent faylnın rekursiv endirilməsi. Torrentin mənbəyi: "%1". Fayl: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Fiziki yaddaş (RAM) limitini təyin etmək mümkün olmadı. Xəta kodu: %1. Xəta bildirişi: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Fiziki yaddaşın (RAM) ciddi limitini təyin etmək mümkün olmadı. Tələb olunan ölçü: %1. Sistemin ciddi limiti: %2. Xəta kodu: %3. Xəta ismarıcı: "%4" - + qBittorrent termination initiated qBittorrent-in bağlanması başladıldı - + qBittorrent is shutting down... qBittorrent söndürülür... - + Saving torrent progress... Torrentin vəziyyəti saxlanılır... - + qBittorrent is now ready to exit qBittorrent indi çıxışa hazırdır @@ -1603,12 +1702,12 @@ Üstünlük: - + Must Not Contain: İbarət olmamalıdır - + Episode Filter: Bölüm filtri: @@ -1661,263 +1760,263 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin İx&rac... - + Matches articles based on episode filter. Bölüm süzgəcinə əsaslanan oxşar məqalələr - + Example: Nümunə: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match sezonun 2, 5, 8 - 15, 30 və sonrakı epizodları ilə eyniləşəcək - + Episode filter rules: Bölüm filtri qaydaları: - + Season number is a mandatory non-zero value Sezonun nömrəsi mütləq sıfırdan fərqli dəyər olmalıdır - + Filter must end with semicolon Filtr nöqtəli vergül ilə bitməlidir - + Three range types for episodes are supported: Bölümlər üçün, üç aralıq növü dəstəklənir: - + Single number: <b>1x25;</b> matches episode 25 of season one Tək nömrə: <b>1x25;</b> birinci sezonun 25-ci bölümü deməkdir - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normal aralıq: <b>1x25-40;</b> birinci sezonun 25-ci ilə 40-cı arasındakı bölümləri göstərir - + Episode number is a mandatory positive value Bölümün nömrəsi, mütləq müsbət dəyər olmalıdır - + Rules Qaydalar - + Rules (legacy) Qaydalar (köhnəlmiş) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Sonsuz aralıq: <b>1x25-;</b> birinci sezonun 25-ci ilə ondan yuxarı bölümləri və sonrakı sezonun bütün bölümlərini göstərir - + Last Match: %1 days ago Sonuncu oxşar: %1 gün əvvəl - + Last Match: Unknown Sonuncu oxşar: Naməlum - + New rule name Yeni qaydanın adı - + Please type the name of the new download rule. Lütfən, yeni endirmə qaydasının adını yazın. - - + + Rule name conflict Qaydanın adında ziddiyyət - - + + A rule with this name already exists, please choose another name. Bu adla qayda adı artıq mövcuddur, lütfən başqa ad seçin. - + Are you sure you want to remove the download rule named '%1'? Siz, "%1" adlı qaydanı silmək istədiyinizə əminsiniz? - + Are you sure you want to remove the selected download rules? Siz, seçilmiş endirmə qaydalarını silmək istədiyinizə əminsiniz? - + Rule deletion confirmation Qaydanın silinməsinin təsdiq edilməsi - + Invalid action Yalnız əməl - + The list is empty, there is nothing to export. Siyahı boşdur, ixrac edilməcək heç nə yoxdur. - + Export RSS rules RSS qaydalarının ixracı - + I/O Error Giriş/Çıxış xətası - + Failed to create the destination file. Reason: %1 Təyinat faylı yaradıla bilmədi. Səbəb: %1 - + Import RSS rules RSS qaydalarının idxalı - + Failed to import the selected rules file. Reason: %1 Seçilmiş qaydalar faylı idxalı edilə bilmədi. Səbəbi: %1 - + Add new rule... Yeni qayda əlavə edin... - + Delete rule Qaydanı silmək - + Rename rule... Qaydanın adını dəyişin... - + Delete selected rules Seçilmiş qaydaları silmək - + Clear downloaded episodes... Endirilmiş bölümləri silin... - + Rule renaming Qaydanın adının dəyişdirilməsi - + Please type the new rule name Lütfən, qayda adı yazın - + Clear downloaded episodes Endirilmiş bölümləri silmək - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Seçilmiş qayda üçün endirilmiş bölümlərin siyahısını silmək istədiyinizə əminsiniz? - + Regex mode: use Perl-compatible regular expressions Regex rejimi: Perl üslubunda müntəzəm ifadələrdən istifadə edin - - + + Position %1: %2 Mövqe: %1: %2 - + Wildcard mode: you can use Əvəzedici işarə rejimi: istifadə edə bilərsiniz - - + + Import error İdxaletmə xətası - + Failed to read the file. %1 Faylı oxumaq mümkün olmadı. %1 - + ? to match any single character «?» istənilən tək simvola uyğundur - + * to match zero or more of any characters «*» sıfıra və ya bir çox istənilən simvollara uyğundur - + Whitespaces count as AND operators (all words, any order) Boşluqlar VƏ əməlləri kimi hesab edilir (bütün sözlər, istənilən sıra) - + | is used as OR operator «|», VƏ YA əməli kimi istifadə olunur - + If word order is important use * instead of whitespace. Əgər sözlərin sıralanmasının istifadəsi vacibdirsə boşluq əvəzinə «*» istifadə edin. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) %1 şərti ilə boş ifadə (məs., %2) - + will match all articles. bütün məqalələrlə oxşar olacaq - + will exclude all articles. bütün məqalələri istisna olunacaq @@ -1959,7 +2058,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::BencodeResumeDataStorage - + Cannot create torrent resume folder: "%1" Torrenti davam etdirmək üçün qovluq yaradıla bilmir: "%1" @@ -1969,28 +2068,28 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Davam etmək üçün verilənlər təmin edilmədi: torrent formatı səhvdir - - + + Cannot parse torrent info: %1 Torrent məlumatı təmin edilə bilmədi: %1 - + Cannot parse torrent info: invalid format Torrent təhlil edilə bilmədi: format səhvdir - + Mismatching info-hash detected in resume data Bərpaetmə verilənlərində heş daxili uyğunsuzluq aşkarlandı - + Couldn't save torrent metadata to '%1'. Error: %2. Torrent meta verilənləri "%1"-də/da saxılanıla bilmədi. Xəta: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Torrentin bərpası üçün verilənlər '%1'-də/da saxlanıla bilmədi. Xəta: %2. @@ -2005,12 +2104,12 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Davam etmək üçün verilənlər təmin edilmədi: %1 - + Resume data is invalid: neither metadata nor info-hash was found Davam etdirmək üçün verilənlər səhvdir: nə meta verilənləri nə də heş-məlumat tapılmadı - + Couldn't save data to '%1'. Error: %2 Verilənləri "%1"-də/da saxlamaq mümkün olmadı. Xəta: %2 @@ -2018,38 +2117,38 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::DBResumeDataStorage - + Not found. Tapılmadı - + Couldn't load resume data of torrent '%1'. Error: %2 "%1" torentinin bərpa üçün məlumatlarını göndərmək mümkün olmadı. Xəta: %2 - - + + Database is corrupted. Verilənlər bazası zədələnib. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Öncədən Yazma Gündəliyi (ing. - WAL) jurnallama rejimi. Xəta: %1 - + Couldn't obtain query result. Sorğu nəticələrini əldə etmək mümkün olmadı. - + WAL mode is probably unsupported due to filesystem limitations. Öncədən Yazma Gündəliyi rejimi, ehtimal ki, fayl sistemindəki məhdudiyyət səbəbindən dəstəklənmir. - + Couldn't begin transaction. Error: %1 Köçürməni başlatmaq mümkün olmadı. Xəta: %1 @@ -2057,22 +2156,22 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Torrent meta verilənləri saxlanıla bilmədi. Xəta: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 "%1" torrenti üçün bərpa məlumatlarını saxlamaq mümkün olmadı. Xəta: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 "%1" torentinin bərpa üçün məlumatlarını silmək mümkün olmadı. Xəta: %2 - + Couldn't store torrents queue positions. Error: %1 Torrentin növbədəki yerini saxlamaq mümkün olmadı. Xəta: %1 @@ -2080,457 +2179,498 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Bölüşdürülən heş cədvəli (DHT) cədvəli: %1 - - - - - - - - - + + + + + + + + + ON AÇIQ - - - - - - - - - + + + + + + + + + OFF BAĞLI - - + + Local Peer Discovery support: %1 Yerli iştirakçəların aşkarlanması: %1 - + Restart is required to toggle Peer Exchange (PeX) support İştirakçı mübadiləsi (PeX) dəstəklənməsini aktiv etmək üçün yenidən başlatmaq tələb olunur - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrenti davam etdirmək mümkün olmadı: "%1". Səbəb: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrenti davam etdirmək mümkün olmadı: ziddiyyətli torrent İD aşkarlandı. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Zİddiyyətli məluymat aşkarlandı: tənzimləmə faylında kateqoriya çatışmır. Kateqoriya bərpa olunacaq, lakin onun ayarları ilkin vəziyyətə sıfırlanacaq. Torrent: "%1". Kateqoriya: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Ziddiyyətli məlumat aşkarlandı: kateqoriya səhvdir. Torrent: "%1". Kateqoriya: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Bərpa olunmuş kateqoriyanın saxlanma yolları və hazırkı torrentin saxlama yolu araında uyğunsuzluq aşkarlandı. Torrent indi əl ilə ayarlama rejiminə dəyişdirildi. Torrent: "%1". Kateqorya: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Tutarsız verilənlər aşkarlandı: tənzimləmə faylında etiketlər çatımır. Etiket bərpa olunacaqdır. Torrent: "%1". Etiket: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Tutarsız verilənlər aşkarlandı: etiket səhvdir. Torrent: "%1". Etiket: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Sistemin oyanması hadisəsi aşkar edildi. Bütün izləyicilərə yenidən bildirilir... - + Peer ID: "%1" İştirakçı İD-si: "%1" - + HTTP User-Agent: "%1" HTTP İstifadəçi Tanıtımı: "%1" - + Peer Exchange (PeX) support: %1 İştirakçı mübadiləsi (PeX) dəstəkkənməsi: %1 - - + + Anonymous mode: %1 Anonim rejim: %1 - - + + Encryption support: %1 Şifrələmə dəstəyi: %1 - - + + FORCED MƏCBURİ - + Could not find GUID of network interface. Interface: "%1" Şəbəkə interfeysinə aid GUİD tapılmadı: İnterfeys: "%1" - + Trying to listen on the following list of IP addresses: "%1" Aşağıdakı İP ünvanları siyahısını dinləməyə cəhd edilir: "%1" - + Torrent reached the share ratio limit. Torrent paylaşım nisbəti həddinə çatdı. - - - + Torrent: "%1". Torrent: "%1". - - - - Removed torrent. - Torrent silinib. - - - - - - Removed torrent and deleted its content. - Torrent və onun tərkibləri silinib. - - - - - - Torrent paused. - Torrent fasilədədir. - - - - - + Super seeding enabled. Super göndərmə aktiv edildi. - + Torrent reached the seeding time limit. Torrent göndərmə vaxtı limitinə çatdı. - + Torrent reached the inactive seeding time limit. Torrent qeyri-aktiv göndərmə vaxtı həddinə çatdı. - + Failed to load torrent. Reason: "%1" Torrent yüklənə bimədi. Səbəb: "%1" - + I2P error. Message: "%1". I2P xətası. Bildiriş: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP dəstəkləməsi: AÇIQ - + + Saving resume data completed. + Bərpa verilənlərinin saxlanılması tamamlandı. + + + + BitTorrent session successfully finished. + BitTorrent sesiyası uğurla tamamlandı. + + + + Session shutdown timed out. + Sesiaynın sönmə vaxtı sona çatdı. + + + + Removing torrent. + Torrentin silinməsi. + + + + Removing torrent and deleting its content. + Torrent və tərkibləri silinir. + + + + Torrent stopped. + Torrent dayandırıldı. + + + + Torrent content removed. Torrent: "%1" + Torrentin məzmunu silindi. Torrent: "%1" + + + + Failed to remove torrent content. Torrent: "%1". Error: "%2" + Torrentin məzmununu silmək ümkün olmadı. Torrent: "%1". Xəta: "%2" + + + + Torrent removed. Torrent: "%1" + Torrent silindi. Torrent: "%1" + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 + Təkrarlanan torrent əlavə etmək cəhdi aşkarlandı. Mövcud torrent: %1. Nəticə: %2 + + + + Merging of trackers is disabled + İzləyicilərin birləşdirilməsi söndürülüb + + + + Trackers cannot be merged because it is a private torrent + izləyicilər birləşdirilə bilməz, çünki bu fərdi torrentdir + + + + Trackers are merged from new source + Yeni torrentdən izləyicilər birləşdirildi + + + UPnP/NAT-PMP support: OFF UPnP / NAT-PMP dəstəklənməsi: BAĞLI - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Torrent ixrac edilmədi. Torrent: "%1". Təyinat: "%2". Səbəb: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Davam etdirmə məlumatları ləğv edildi. İcra olunmamış torrentlərin sayı: %1 - + The configured network address is invalid. Address: "%1" Ayarlanmış şəbəkə ünvanı səhvdir. Ünvan: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Dinləmək üçün ayarlanmış şəbəkə ünvanını tapmaq mümkün olmadı. Ünvan: "%1" - + The configured network interface is invalid. Interface: "%1" Ayarlanmış şəbəkə ünvanı interfeysi səhvdir. İnterfeys: "%1" - + + Tracker list updated + İzləyici siyahısı yeniləndi + + + + Failed to update tracker list. Reason: "%1" + İzləyici siyahısını yeniləmək mümkün olmadı. Səbəb: "%1" + + + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Qadağan olunmuş İP ünvanları siyahısını tətbiq edərkən səhv İP ünvanları rədd edildi. İP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Torrentə izləyici əlavə olundu. Torrent: "%1". İzləyici: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" İzləyici torrentdən çıxarıldı. Torrent: "%1". İzləyici: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Torrent URL göndərişi əlavə olundu. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL göndərişi torrentdən çıxarıldı. Torrent: "%1". URL: "%2" - - Torrent paused. Torrent: "%1" - Torrent fasilədədir. Torrent: "%1" + + Failed to remove partfile. Torrent: "%1". Reason: "%2". + Fayl hissəsini silmək mümkün olmadı. Torrent: "%1". Səbəb:"%2". - + Torrent resumed. Torrent: "%1" Torrent davam etdirildi: Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent endirilməsi başa çatdı. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrentin köçürülməsi ləğv edildi. Torrent: "%1". Mənbə: "%2". Təyinat: "%3" - + + Torrent stopped. Torrent: "%1" + Torrent dayandırıldı. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Torrentin köçürülməsini növbələmək mümkün olmadı. Torrent: "%1". Mənbə; "%2". Təyinat: "%3". Səbəb: torrent hal-hazırda təyinat yerinə köçürülür - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Torrentin köçürülməsini növbələmək mümkün olmadı. Torrent: "%1". Mənbə; "%2". Təyinat: "%3". Səbəb: hər iki yol eyni məkanı göstərir - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrentin köçürülməsi növbəyə qoyuıdu. Torrent: "%1". Mənbə: "%2". Təyinat: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Torrent köçürülməsini başladın. Torrent: "%1". Təyinat: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Kateqoriyalar tənzimləmələrini saxlamaq mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Kateoriya tənzimləmələrini təhlil etmək mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 İP filter faylı təhlili uğurlu oldu. Tətbiq olunmuş qaydaların sayı: %1 - + Failed to parse the IP filter file İP filter faylının təhlili uğursuz oldu - + Restored torrent. Torrent: "%1" Bərpa olunmuş torrent. Torrent; "%1" - + Added new torrent. Torrent: "%1" Əlavə olunmuş yeni torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Xətalı torrent. Torrent: "%1". Xəta: "%2" - - - Removed torrent. Torrent: "%1" - Ləğv edilmiş torrent. Torrent; "%1" - - - - Removed torrent and deleted its content. Torrent: "%1" - Ləğv edilmiş və tərkibləri silinmiş torrent. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentdə SSL parametrləri çatışmır. Torrent: "%1". İsmarıc: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Fayldakı xəta bildirişi. Torrent: "%1". Fayl: "%2". Səbəb: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP: Portun palanması uğursuz oldu. Bildiriş: %1 - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP: Portun palanması uğurlu oldu. Bildiriş: %1 - + IP filter this peer was blocked. Reason: IP filter. İP filtr - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrlənmiş port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). imtiyazlı port (%1) - + + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" + İştirakçı URL ünvanı ilə bağlantı alınmadı. Torrent: "%1". URL ünvanı: "%2". Xəta: "%3" + + + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent sesiyası bir sıra xətalarla qarşılaşdı. Səbəb: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proksi xətası. Ünvan: %1. İsmarıc: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 qarışıq rejimi məhdudiyyətləri - + Failed to load Categories. %1 Kateqoriyaları yükləmək mümkün olmadı. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Kateqoriya tənzimləmələrini yükləmək mümkün olmadı. Fayl: "%1". Xəta: "Səhv verilən formatı" - - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Ləğv edilmiş, lakin tərkiblərinin silinməsi mümkün olmayan və/və ya yarımçıq torrent faylı. Torrent: "%1". Xəta: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 söndürülüb - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 söndürülüb - - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - İştirakçı ünvanının DNS-də axtarışı uğursuz oldu. Torrent: "%1". URL: "%2". Xəta: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" İştirakçının ünvanından xəta haqqında bildiriş alındı. Torrent: "%1". URL: "%2". Bildiriş: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" İP uöurla dinlənilir. İP: "%1". port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" İP-nin dinlənilməsi uğursuz oldu. İP: "%1". port: "%2/%3". Səbəb: "%4" - + Detected external IP. IP: "%1" Kənar İP aşkarlandı. İP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Xəta: Daxili xəbərdarlıq sırası doludur və xəbərdarlıq bildirişlər kənarlaşdırıldı, sistemin işinin zəiflədiyini görə bilərsiniz. Kənarlaşdırılan xəbərdarlıq növləri: %1. Bildiriş: %2 - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent uğurla köçürüldü. Torrent: "%1". Təyinat: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrentin köçürülməsi uğursuz oldu. Torrent: "%1". Mənbə: "%2". Təyinat: "%3". Səbəb: "%4" @@ -2546,13 +2686,13 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::TorrentCreator - + Operation aborted Əməliyyat ləğv edildi - - + + Create new torrent file failed. Reason: %1. Yeni torrent faylın yaradılması baş tutmadı. Səbəb: %1. @@ -2560,67 +2700,67 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::TorrentImpl - + Failed to add peer "%1" to torrent "%2". Reason: %3 "%1" iştirakçının "%2" teorrentinə əlavə edilməsi alınmadı. Səbəb: %3 - + Peer "%1" is added to torrent "%2" "%1" iştirakçısı "%2" torrentinə əlavə edildi - + Unexpected data detected. Torrent: %1. Data: total_wanted=%2 total_wanted_done=%3. Gözlənilməyən verilən aşkarlandı. Torrent: %1. Verilən: total_wanted=%2 total_wanted_done=%3. - + Couldn't write to file. Reason: "%1". Torrent is now in "upload only" mode. Fayla yazıla bilmir. Səbəb: "%1" Torrent indi "yalnız göndərmək" rejimindədir. - + Download first and last piece first: %1, torrent: '%2' Öncə ilk və son hissəni endirmək: %1, torrent: "%2" - + On Açıq - + Off Bağlı - + Failed to reload torrent. Torrent: %1. Reason: %2 Torrenti yenidən başlatmaq mümkün olmadı. Torrent: %1. Səbəb: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Torrenti davam etdirmək üçün məlumatlar yaradıla bilmədi: "%1". Səbəb: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrent bərpa oluna bilmədi. Güman ki, fayl köçürülüb və ya yaddaşa giriş əlçatmazdır. Torrent: "%1". Səbəb: "%2" - + Missing metadata Meta verilənləri çatışmır - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Faylın adı dəyişdirilmədi. Torrent: "%1", fayl: "%2", səbəb: "%3" - + Performance alert: %1. More info: %2 Performans xəbərdarlığı: %1. Daha çox məlumat: %2 @@ -2641,189 +2781,189 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin CMD Options - + Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=value' "%1" parametri '%1=%2' sintaksisin ilə uzlaşmalıdır - + Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=<value>' "%1" parametri '%1=%2' sintaksisin ilə uzlaşmalıdır - + Expected integer number in environment variable '%1', but got '%2' Dəyişən mühitdə "%1" gözlənilən tam ədəddir, lakin "%2" alındı - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - "%1" parametri '%1=%2' sintaksisin ilə uzlaşmalıdır - - - + Expected %1 in environment variable '%2', but got '%3' "%2" dəyişən mühitində "%1" gözlənilir, lakin "%3" alındı - - + + %1 must specify a valid port (1 to 65535). "%1" düzgün port təyin etməlidir (1 ilə 65535 arası) - + Usage: İstifadəsi: - + [options] [(<filename> | <url>)...] [seçimlər] [(<filename> | <url>)...] - + Options: Seçimlər: - + Display program version and exit Proqramın versiyasını göstərmək və çıxmaq - + Display this help message and exit Bu kömək bildirişini göstərmək və çıxmaq - + + Parameter '%1' must follow syntax '%1=%2' + e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' + "%1" parametri '%1=%2' sintaksisin ilə uzlaşmalıdır + + + Confirm the legal notice Rəsmi bildirişin təsdiq edilməsi - - + + port port - + Change the WebUI port Veb istifadəçi interfeysi portunu dəyişin - + Change the torrenting port Torrent portunu dəyiş - + Disable splash screen Salamlama ekranını söndürmək - + Run in daemon-mode (background) Xidmət rejimində işə salmaq (arxa fon) - + dir Use appropriate short form or abbreviation of "directory" qovluq - + Store configuration files in <dir> Tənzimləmə fayllarını <dir> daxilində saxlamaq - - + + name ad - + Store configuration files in directories qBittorrent_<name> Tənzimləmə fayllarını qBittorrent_<name> qovluqlarında saxlamaq - + Hack into libtorrent fastresume files and make file paths relative to the profile directory Davam etdirməni cəld başlatmaq üçün libtorrent fayllarını sındırmaq və fayl yollarını profil qovluğuna nisbətən yaratmaq - + files or URLs fayllar və ya URL'lar - + Download the torrents passed by the user İstifadəçi tərəfindən təyin edilən torrentləri endirmək - + Options when adding new torrents: Yeni torrent əlavə edilmə seçimləri: - + path yol - + Torrent save path Torrent saxlama yolu - - Add torrents as started or paused - Torrentləri başladılan və ya fasilədə olan kimi əlavə etmək + + Add torrents as running or stopped + Torrenti başladılmış və ya dayandırılmış kimi əlavə etmək - + Skip hash check Heş yoxlamasını ötürün - + Assign torrents to category. If the category doesn't exist, it will be created. Torrentləri qovluğa təyin etmək. Əgər belə qovluq yoxdursa o yaradılacaq. - + Download files in sequential order Faylları növbə ardıcıllığı ilə endirmək - + Download first and last pieces first Öncə İlk və son hissələri endirmək - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. Torrent əlavə edilərkən "Yeni torrent əlavə edin" dialoqunun aşılıb aşımayacağını qeyd etmək - + Option values may be supplied via environment variables. For option named 'parameter-name', environment variable name is 'QBT_PARAMETER_NAME' (in upper case, '-' replaced with '_'). To pass flag values, set the variable to '1' or 'TRUE'. For example, to disable the splash screen: Seçim dəyərləri mühit dəyişənləri tərəfindən təchiz edilə bilər. "Parametr adı" adlı seçim üçün mühit dəyişəni adı 'QBT_PARAMETER_NAME'-dir (böyük hərfdə «-», «_» ilə əvəz edilmişdir). İşarələmə göstəricisi vermək üçün dəyişəni "1" və "TRUE" təyin edin. Misal üçün, salamlama ekranını söndürmək üçün: - + Command line parameters take precedence over environment variables Əmr sətri parametrləri mühit dəyişənləri üzərində üstünlük əldə edir - + Help Kömək @@ -2875,13 +3015,13 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin - Resume torrents - Torrentləri davam etdirmək + Start torrents + Torrentləri başlatmaq - Pause torrents - Torrentlərə fasilə + Stop torrents + Torrentləri dayandırmaq @@ -2892,15 +3032,20 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin ColorWidget - + Edit... Düzəliş et... - + Reset Sıfırlamaq + + + System + Sistem + CookiesDialog @@ -2941,12 +3086,12 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin CustomThemeSource - + Failed to load custom theme style sheet. %1 Fərdi mövzu cədvəlini yükləməkl mümkün olmadı. %1 - + Failed to load custom theme colors. %1 Fərdi mövzu rənglərini yükləmək mümkün olmadı. %1 @@ -2954,7 +3099,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin DefaultThemeSource - + Failed to load default theme colors. %1 Standart mövzu rənglərini yükləmək mümkün olmadı. %1 @@ -2973,23 +3118,23 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin - Also permanently delete the files - Həmçinin bu faylı birdəfəlik silin + Also remove the content files + Həmçinin məzmun fayllarını silmək - + Are you sure you want to remove '%1' from the transfer list? Are you sure you want to remove 'ubuntu-linux-iso' from the transfer list? "%1" faylını köçürmə sayahısından silmək istədiyinizə əminsiz? - + Are you sure you want to remove these %1 torrents from the transfer list? Are you sure you want to remove these 5 torrents from the transfer list? %1 torrentlərini köçürmə siyasından silmək istədiyinizə əminsiniz? - + Remove Silin @@ -3002,12 +3147,12 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin URL-lardan endirmək - + Add torrent links Toorent keçidləri əlavə etmək - + One link per line (HTTP links, Magnet links and info-hashes are supported) Hər sətirə bir keçid (HTTP keçidləri, maqnit keçidləri və İnfo-heş'lər dəstəklənir) @@ -3017,12 +3162,12 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Endirmək - + No URL entered URL daxil edilməyib - + Please type at least one URL. Lütfən, ən azı bir URL daxil edin @@ -3181,25 +3326,48 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Təhlil xətası: Filtr faylı, düzgün PeerGuardian P2B faylı deyil. + + FilterPatternFormatMenu + + + Pattern Format + Nümunə formatı + + + + Plain text + Sadə mətn + + + + Wildcards + Şablon nümunəsi + + + + Regular expression + Müntəzəm ifadə + + GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent endirilir... Mənbə: "%1" - - Trackers cannot be merged because it is a private torrent - izləyicilər birləşdirilə bilməz, çünki bu fərdi torrentdir - - - + Torrent is already present Torrent artıq mövcuddur - + + Trackers cannot be merged because it is a private torrent. + İzləyicilər birləşdirilə bilməz, çünki bu məxfi torrentdir. + + + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' artıq köçürülmə siyahısındadır. Mənbədən izləyiciləri birləçdirmək istəyirsiniz? @@ -3207,38 +3375,38 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin GeoIPDatabase - - + + Unsupported database file size. Dəstəklənməyən verilənlər bazasl faylının ölçüsü. - + Metadata error: '%1' entry not found. Meta məlumatları xətası: %1 daxil ediləni tapılmadı. - + Metadata error: '%1' entry has invalid type. Meta məlumatları xətası: "%1" daxil ediləni növü yararsızdır. - + Unsupported database version: %1.%2 Dəstəklənməyən verilənlər bazası versiyası: %1.%2 - + Unsupported IP version: %1 Dəstəklənməyən İP versiyası: %1 - + Unsupported record size: %1 Dəstəklənməyən yazılma ölçüsü: %1 - + Database corrupted: no data section found. Verilənlər bazası pozulub: verilənlər bölməsi tapılmadı. @@ -3246,17 +3414,17 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Http::Connection - + Http request size exceeds limitation, closing socket. Limit: %1, IP: %2 Tələb olunan Http ölçüsü limiti aşır, socket bağlanır. Limit: %1, İP: %2 - + Bad Http request method, closing socket. IP: %1. Method: "%2" Səhv Http sorğu üsulu, soket bağlanır. İP: %1. Üsul: "%2" - + Bad Http request, closing socket. IP: %1 Səhv Http tələbi, socket bağlanır. İP: %1 @@ -3297,22 +3465,22 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin IconWidget - + Browse... Baxmaq... - + Reset Sıfırlamaq - + Select icon Nişan seç - + Supported image files Dəstəklənən şəkil faylları @@ -3348,13 +3516,13 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin LogPeerModel - + %1 was blocked. Reason: %2. 0.0.0.0 was blocked. Reason: reason for blocking. %1 bloklandı. Səbəb: %2. - + %1 was banned 0.0.0.0 was banned %1 qadağan edildi @@ -3363,60 +3531,60 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Main - + %1 is an unknown command line parameter. --random-parameter is an unknown command line parameter. %1, naməlum əmr sətiri parametridir. - - + + %1 must be the single command line parameter. %1, tək əmr sətri parametri olmalıdır. - + Run application with -h option to read about command line parameters. Əmr sətri parametrləri haqqında oxumaq üçün tətbiqi -h seçimi ilə başladın. - + Bad command line Xətalı əmr sətri - + Bad command line: Xətalı əmr sətri: - + An unrecoverable error occurred. Sazlana bilməyən xəta baş verdi. + - qBittorrent has encountered an unrecoverable error. qBittorrent sazlana bilməyən bir xəta ilə qarşılaşdı. - + You cannot use %1: qBittorrent is already running. Siz %1 istifadə edə bilməzsiniz: qBittorrent artıq işləkdir. - + Another qBittorrent instance is already running. Başqa bir qBittorrent nümunəsi artıq işləkdir. - + Found unexpected qBittorrent instance. Exiting this instance. Current process ID: %1. Gözlənilməz qBittorent nüsxəsi tapıldı. Bu nüsxədən çıxılır. Cari proses İD-si: %1. - + Error when daemonizing. Reason: "%1". Error code: %2. Demonizasiya zamanı xəta. Səbəb: "%1". Xəta kodu: %2 @@ -3429,604 +3597,681 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin &Düzəliş etmək - + &Tools Alə&tlər - + &File &Fayl - + &Help &Kömək - + On Downloads &Done Endirmələr başa çat&dıqda - + &View &Baxış - + &Options... &Seçimlər... - - &Resume - Davam etdi&rmək - - - + &Remove Silin - + Torrent &Creator Torrent Yaradı&cı - - + + Alternative Speed Limits Alternativ sürət hədləri - + &Top Toolbar Üs&t alətlər paneli - + Display Top Toolbar Üst alətlər panelini göstərmək - + Status &Bar Vəziyyət çu&buğu - + Filters Sidebar Filtrlər yan paneli - + S&peed in Title Bar Sürət başlıq &panelində - + Show Transfer Speed in Title Bar Köçürmə sürətini başlıq panelində göstərmək - + &RSS Reader &RSS oxuyucu - + Search &Engine Axtarış &vasitəsi - + L&ock qBittorrent qBittorrent'i kilidləmək - + Do&nate! İa&nə vermək! - + + Sh&utdown System + Siste&mi söndürmək + + + &Do nothing &Heç nə etməmək - + Close Window Pəncərəni bağlamaq - - R&esume All - Hamısına dava&m - - - + Manage Cookies... Kikilər Meneceri... - + Manage stored network cookies Saxlanılmış şəbəkə kukilərini idarə etmək - + Normal Messages Normal Bildirişlər - + Information Messages Məlumat Bildirişləri - + Warning Messages Xəbərdarlıq Bildirişlər - + Critical Messages Kritik Bildirişlər - + &Log Jurna&l - + + Sta&rt + &Başlatmaq + + + + Sto&p + &Dayandırmaq + + + + R&esume Session + S&esiyanı bərpa etmək + + + + Pau&se Session + Sesiyaya fa&silə + + + Set Global Speed Limits... Ümumi sürət limitlərini təyin edin... - + Bottom of Queue Növbənin sonu - + Move to the bottom of the queue Növbənin sonuna köçürmək - + Top of Queue Növbənin əvvəli - + Move to the top of the queue Növbənin əvvəlinə köçürmək - + Move Down Queue Növbəni aşağı köçürmək - + Move down in the queue Növbənin aşağısına doğru - + Move Up Queue Növbəni yuxarı köçürmək - + Move up in the queue Növbənin yuxarısına doğru - + &Exit qBittorrent qBittorrent'dən çıxma&q - + &Suspend System &Sistemi dayandırmaq - + &Hibernate System &Yuxu rejimi - - S&hutdown System - Sistemi sö&ndürmək - - - + &Statistics &Statistikalar - + Check for Updates Yenilənmələri yoxlamaq - + Check for Program Updates Proqram yenilənmələrini yoxlamaq - + &About H&aqqında - - &Pause - &Fasilə - - - - P&ause All - Hamısına F&asilə - - - + &Add Torrent File... Torrent faylı əl&avə edin... - + Open Açmaq - + E&xit Çı&xış - + Open URL URL açmaq - + &Documentation Sənə&dləşmə - + Lock Kilidləmək - - - + + + Show Göstərmək - + Check for program updates Proqram yenilənmələrini yoxlamaq - + Add Torrent &Link... Torrent keçidi ə&lavə edin... - + If you like qBittorrent, please donate! qBittorrent'i bəyənirsinizsə ianə edin! - - + + Execution Log İcra jurnalı - + Clear the password Şifrəni silmək - + &Set Password Şifrə &təyin etmək - + Preferences Tərcihlər - + &Clear Password Şifrəni silmə&k - + Transfers Köçürmələr - - + + qBittorrent is minimized to tray qBittorent treyə yığıldı - - - + + + This behavior can be changed in the settings. You won't be reminded again. Bu davranış ayarlarda dəyişdirilə bilər. Sizə bir daha xatırladılmayacaq. - + Icons Only Yalnız Nişanlar - + Text Only Yalnlız Mətn - + Text Alongside Icons Nişanlar yanında mətn - + Text Under Icons Nişanlar altında mətn - + Follow System Style Sistem üslubuna uyğun - - + + UI lock password İİ-nin kilid şifrəsi - - + + Please type the UI lock password: Lütfən, İİ-nin kilid şifrəsini yazın - + Are you sure you want to clear the password? Şifrəni silmək istədiyinizə əminsiniz? - + Use regular expressions Müntəzəm ifadədən istifadə etmək - + + + Search Engine + Axtarış sistemi + + + + Search has failed + Axtarış alınmadı + + + + Search has finished + Axtarış sona çatdı + + + Search Axtarış - + Transfers (%1) Köçürmələr (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent indicə yeniləndi və dəyişikliklərin qüvvəyə minməsi üçün yenidən başladılmalıdır. - + qBittorrent is closed to tray qBittorrent treyə yığıldı - + Some files are currently transferring. Hazırda bəzi fayllar ötürülür - + Are you sure you want to quit qBittorrent? qBittorent'dən çıxmaq istədiyinizə əminsiniz? - + &No &Xeyr - + &Yes &Bəli - + &Always Yes &Həmişə bəli - + Options saved. Parametrlər saxlanıldı. - + + [PAUSED] %1 + %1 is the rest of the window title + [FASİLƏDƏ] %1 + + + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - - + + Python installer could not be downloaded. Error: %1. +Please install it manually. + Python quraşdırıcısı endirilə bilməz. Xəta: %1. +Onu əllə quraşdırın. + + + + Rename Python installer failed. Source: "%1". Destination: "%2". + Python quraşdırıcısının adını dəyişmək mümkün olmadı. Mənbə: "%1". Hədəf: "%2". + + + + Python installation success. + Python quraşdırılması uğurlu oldu. + + + + Exit code: %1. + Çıxış kodu: %1 + + + + Reason: installer crashed. + Səbəb: Quraşdırılmada qəza baş verdi. + + + + Python installation failed. + Python quraşdırılması baş tutmadı. + + + + Launching Python installer. File: "%1". + Python quraşdırılması başlayır. Fayl: "%1". + + + + Missing Python Runtime Python icraçısı çatışmır - + qBittorrent Update Available qBittorrent yenilənməsi mövcuddur - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python axtarş vasitəsindən istifadə etməyi tələb edir, lakin, belə görünür ki, bu vasitə quraşdırılmayıb. Bunu indi quraşdırmaq istəyirsiniz? - + Python is required to use the search engine but it does not seem to be installed. Python axtarış vasitəsi istifadə etməyi tələb edir, lakin belə görünür ki, o quraşdırılmayıb. - - + + Old Python Runtime Köhnə Python iş mühiti - + A new version is available. Yeni versiya mövcuddur. - + Do you want to download %1? %1 yükləmək istəyirsiniz? - + Open changelog... Dəyişikliklər jurnalını açın... - + No updates available. You are already using the latest version. Yenilənmələr yoxdur. Siz artıq sonuncu versiyadan istifadə edirsiniz. - + &Check for Updates Yenilənmələri yo&xlamaq - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Sizin Python versiyanız (%1) köhnədir. Minimum tələb olunan versiya: %2. Yeni versiyanı quraşdırmaq istəyirsiniz? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Sizin Python versiyanız (%1) köhnədir. Lütfən axtarış vasitələrinin işləməsi üçün son versiyaya yeniləyin. Minimum tələb olunan versiya: %2. - + + Paused + Fasilədə + + + Checking for Updates... Yenilənmələr yoxlanılır... - + Already checking for program updates in the background Proqramın yenilənmələri, artıq arxa planda yoxlanılır - + + Python installation in progress... + Python quraşdırılması davam edir... + + + + Failed to open Python installer. File: "%1". + Python quraşdırıcısını açmaq mümkün olmadı. Fayl: "%1". + + + + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". + Python quraşdırıcısının MD5 heş yoxlaması mümkün olmadı. Fayl: "%1". Alınan heş: "%2". Gözlənilən heş: "%3". + + + + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". + Python quraşdırıcısının SHA3-512 heş yoxlaması mümkün olmadı. Fayl: "%1". Alınan heş: "%2". Gözlənilən heş: "%3". + + + Download error Endirilmə xətası - - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python quraşdırmasını yükləmək mümkün olmadı: %1 -Lütfən, əl ilə qyraşdırın. - - - - + + Invalid password Səhv şifrə - + Filter torrents... Torrentləri süzgəclə... - + Filter by: Buna görə süzgəclə: - + The password must be at least 3 characters long Şifrə ən az 3 işarədən ibarət olmalıdır - - + + RSS (%1) RSS (%1) - + The password is invalid Şifrə səhvdir - + DL speed: %1 e.g: Download speed: 10 KiB/s EN sürəti: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s GN sürəti: %1 - + Hide Gizlətmək - + Exiting qBittorrent qBittorrentü'dən çıxılır - + Open Torrent Files Torrent faylları açmaq - + Torrent Files Torrent faylları @@ -4221,7 +4466,12 @@ Lütfən, əl ilə qyraşdırın. Net::DownloadManager - + + SSL error, URL: "%1", errors: "%2" + SSL xətası, URL: "%1", xətalar: "%2" + + + Ignoring SSL error, URL: "%1", errors: "%2" SSL xətasını nəzərə almadan, URL: !%1", xəta: "%2" @@ -5593,299 +5843,283 @@ Lütfən, əl ilə qyraşdırın. BitTorrent - + RSS RSS - - Web UI - Veb İİ - - - + Advanced Əlavə - + Customize UI Theme... Fərdi İİ mövzusu... - + Transfer List Köçürmə siyahısı - + Confirm when deleting torrents Torrentlərin silinməsinin təsdiq edilməsi - - Shows a confirmation dialog upon pausing/resuming all the torrents - Bütün torrentlərin dayandırılması/davam etdirilməsi üzərində təsdiqlənmə dialoqunu göstərir - - - - Confirm "Pause/Resume all" actions - "Hamısını Dayandırın/Davam etdirin" əməlləri - - - + Use alternating row colors In table elements, every other row will have a grey background. Alternativ sıra rənglərindən istifadə edin - + Hide zero and infinity values Sıfır və sonsuzluq göstəricilərini gizlətmək - + Always Həmişə - - Paused torrents only - Yalnız fasilədəki torrentlər - - - + Action on double-click İki dəfə klik əməli - + Downloading torrents: Torrentlər yüklənir: - - - Start / Stop Torrent - Torrenti Başlatmaq / Dayandırmaq - - - - + + Open destination folder Təyinat qovluğunu açmaq - - + + No action Əməl yoxdur - + Completed torrents: Tamamlanmış torrentlər - + Auto hide zero status filters Sıfır süzgəc nəticələrini avtomatik gizlətmək - + Desktop İş Masası - + Start qBittorrent on Windows start up ƏS işə düşdükdə qBittorrent'i başlatmaq - + Show splash screen on start up Başlanğıcda qarşılama ekranını göstərmək - + Confirmation on exit when torrents are active Aktiv torrenlər olduqda çıxarkən təsdiq etmək - + Confirmation on auto-exit when downloads finish Endirmələr sona çatdıqda avtomtik çıxışı təsdiq etmək - + <html><head/><body><p>To set qBittorrent as default program for .torrent files and/or Magnet links<br/>you can use <span style=" font-weight:600;">Default Programs</span> dialog from <span style=" font-weight:600;">Control Panel</span>.</p></body></html> <html><body><p>qBitttorenti, .torrent faylları və/vəya Magnet keçidləri<br/>üçün standart proqram kimi, <span style=" font-weight:600;">Standart proqramlar</span> dialoquna <span style=" font-weight:600;">İdarəetmə paneli bölməsindən</span> daxil olaraq təyin edə bilərsiniz.</p></body><head/></html> - + KiB KB - + Torrent content layout: Torrent məzmunu maketi: - + Original Orijinal - + Create subfolder Alt qovluq yaratmaq - + Don't create subfolder Alt qovluq yaratmamaq - + The torrent will be added to the top of the download queue Torrent, fasilə vəziyyətində yükləmə siyahısına əlavə ediləcək - + Add to top of queue The torrent will be added to the top of the download queue Növbənin ən üst sırasına əlavə et - + When duplicate torrent is being added Torrentin təkrar nüsxəsi əlavə olunduqda - + Merge trackers to existing torrent İzləyiciləri mövcud torrentdə birləşdirin - + Keep unselected files in ".unwanted" folder Seçilməmiş faylları "baxılmamışlar" qovluğunda saxlamaq - + Add... Əlavə edin... - + Options.. Seçimlər... - + Remove Silin - + Email notification &upon download completion Endirilmə başa çatdıqdan so&nra e-poçt bildirişi - + + Send test email + Yoxlamaq üçün e-poçt göndərmək + + + + Run on torrent added: + Torrent əlavə edildikdə başlatmaq: + + + + Run on torrent finished: + Torrent tmamlandıqda başlatmaq: + + + Peer connection protocol: İştirakçı bağlantı protokolu - + Any Hər hansı - + I2P (experimental) I2P (təcrübə üçün) - - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Əgər &quot;qarışıq rejim&quot; aktiv edilərsə I2P torrentlərə izləyicidən başqa digər mənbələrdən iştirakçılar əldə etməyə və heç bir anonimləşdirmə təmin etməyən adi IP-lərə qoşulmağa icazə verilir. Bu, istifadəçiyə I2P-nin anonimləşdirilmə maraqlı deyilsə, lakin yenə də I2P iştirakçılarına qoşulmaq istədiyi halda faydalı ola bilər.</p></body></html> - - - + Mixed mode Qarışıq rejim - + Some options are incompatible with the chosen proxy type! Bəzi parametrlıər seçilmiş proksi növü ilə uyğun gəlmir! - + If checked, hostname lookups are done via the proxy Əgər işarələnərsə, host adı axtarışı proksi ilə icra olunur. - + Perform hostname lookup via proxy Proksi vasitəsilə host adı axtarışını icra etmək - + Use proxy for BitTorrent purposes Proksini BitTorrent məqsədləri üçün istifadə et - + RSS feeds will use proxy RSS xəbər lentləri proksi istifadə edəcək - + Use proxy for RSS purposes RSS məqsədləri üçün proksi istifadə et - + Search engine, software updates or anything else will use proxy Axtarış mühərriki, proqram təminatı yenilənmələri və başqaları proksi istifdə edəcək - + Use proxy for general purposes Əsas məqsədlər üçün proksi istifadə et - + IP Fi&ltering İP fi&ltirləmə - + Schedule &the use of alternative rate limits Alternativ sürət limitinin istifadəsini planlaşdırmaq - + From: From start time Bu vaxtdan: - + To: To end time Bu vaxta: - + Find peers on the DHT network DHT şəbəkəsindəki iştirakçıları tapmaq - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -5894,145 +6128,180 @@ Disable encryption: Only connect to peers without protocol encryption Şifrələməni söndürmək: İştirakşılara yalnız şifrələmə protokolu olmadan qoşulmaq - + Allow encryption Şifrələməyə icazə vermək - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Daha ətraflı</a>) - + Maximum active checking torrents: Maksimum aktiv torrent yoxlamaları: - + &Torrent Queueing &Torrent növbələnməsi - + When total seeding time reaches Ümumi göndərmə həddinə çatdıqda - + When inactive seeding time reaches Qeyri-aktiv göndərmə həddinə çatdıqda - - A&utomatically add these trackers to new downloads: - Bu izləyiciləri a&vtomatik yükləmələrə əlavə edin: - - - + RSS Reader RSS Oxuyucu - + Enable fetching RSS feeds RSS lentlərinin alınmasını aktiv etmək - + Feeds refresh interval: Lentlərin yenilənmə intervalı: - + Same host request delay: Eyni host tələbi gecikməsi: - + Maximum number of articles per feed: Hər iştirakçıya ən çox məqalə sayı: - - - + + + min minutes dəq - + Seeding Limits Paylaşım limitləri - - Pause torrent - Torrentə fasilə - - - + Remove torrent Torrenti silmək - + Remove torrent and its files Torrenti ə fayllarını silmək - + Enable super seeding for torrent Torrent üçün super göndərişi aktivləşdirmək - + When ratio reaches Göstəricini aşdıqda - + + Stop torrent + Torrenti dayandırmaq + + + + A&utomatically append these trackers to new downloads: + Bu izləyiciləri yeni endirmələrə a&vtomatik əlavə etmək: + + + + Automatically append trackers from URL to new downloads: + URL-dakı izləyiciləri avtomatik yeni endirmələrə əlavə etmək: + + + + URL: + URL: + + + + Fetched trackers + İzləyicilər alındı + + + + Search UI + Axtarış interfeysi + + + + Store opened tabs + Açıq vərəqləri saxlamaq + + + + Also store search results + Həmçinin axtarış nəticələrini saxlamaq + + + + History length + Tarixçənin uzunluğu + + + RSS Torrent Auto Downloader RSS torrent avto yükləyici - + Enable auto downloading of RSS torrents RSS torrentlərinin avtomatik yüklənməsini aktiv etmək - + Edit auto downloading rules... Avtomatik yükləmə qaydalarına düzəliş... - + RSS Smart Episode Filter RSS Ağıllı Bölmə Filtri - + Download REPACK/PROPER episodes REPACK/PROPER bölümlərini endirmək - + Filters: Filtrlər: - + Web User Interface (Remote control) Veb İstifadəçi İnterfeysi (Uzaqdan idarəetmə) - + IP address: İP ünvanları: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6040,42 +6309,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv İPv4 və ya İPv6 ünvanı göstərin. Siz hər hansı İPv4 ünvanı üçün "0.0.0.0", hər hansı İPv6 ünvanı üçün "::", və ya İPv4 və İPv6-lərin hər ikisi üçün "*" göstərə bilərsiniz. - + Ban client after consecutive failures: Belə ardıcıl xətalardan sonra müştərini bloklamaq: - + Never Heç vaxt - + ban for: bundan sonra bloklamaq: - + Session timeout: Sessiya bitmə vaxtı: - + Disabled Söndürülüb - - Enable cookie Secure flag (requires HTTPS) - Kukilərin təhlükəsizliyini aktiv etmək (HTTPS tələb olunur) - - - + Server domains: Server domenləri: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6088,442 +6352,483 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Çoxsaylı elementləri bölmək üçün ';' istifadə edin. '*' ümumi nişanından istifadə edə bilərsiniz - + &Use HTTPS instead of HTTP HTTP əvəzinə HTTPS &istifadə edin - + Bypass authentication for clients on localhost Locahosst-da müştəri üçün kimlik doğrulamasını ötürmək - + Bypass authentication for clients in whitelisted IP subnets İP alt şəbəkələri ağ siyahısında müştəri üçün kimlik doğrulamasını ötürmək - + IP subnet whitelist... İP al şəbəkəsi ağ siyahısı... - + + Use alternative WebUI + Alternativ WebUI istifadə edin + + + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Yönləndirilmiş müştəri ünvanından (X-Forwarded-For header) istifadə etmək üçün əks proxy IP-lərini (və ya alt şəbəkələri, məs., 0.0.0.0/24) göstərin. Birdən çox girişi bölmək üçün ';' işarəsindən istifadə edin. - + Upda&te my dynamic domain name Dinamik domen adını &yeniləmək - + Minimize qBittorrent to notification area qBittorrent-i bildiriş çubuğuna endirmək - + + Search + Axtarış + + + + WebUI + Veb istifadəçi interfeysi + + + Interface İnterfeys - + Language: Dil: - + + Style: + Üslüb: + + + + Color scheme: + Rəng sxemi: + + + + Stopped torrents only + Yalnız dayandırılmış torrentlər + + + + + Start / stop torrent + Torrenti başlatmaq / dayandırmaq + + + + + Open torrent options dialog + Torrent seçimləri dialoqunu açmaq + + + Tray icon style: Trey nişanı tərzi: - - + + Normal Normal - + File association Fayl əlaqələri - + Use qBittorrent for .torrent files Torrent faylları üçün qBittorrent-i istifadə etmək - + Use qBittorrent for magnet links Maqnit keçidlər üçün qBittorrent-i istifadə etmək - + Check for program updates Proqramın yeni versiyasını yoxlamaq - + Power Management Enerjiyə Nəzarət - + + &Log Files + Jurna&l faylları + + + Save path: Saxlama yolu: - + Backup the log file after: Bundan sonra jurnal faylını yedəkləmək: - + Delete backup logs older than: Bundan köhnə jurnal fayllarını silmək: - + + Show external IP in status bar + Xarici İP-ni vəziyyət çubuğunda göstərmək + + + When adding a torrent Torrent əlavə edildikdə: - + Bring torrent dialog to the front Torrent dialoqunu ön plana çıxarmaq - + + The torrent will be added to download list in a stopped state + Torrent, endirmə siyahısına dayandırılmış vəziyyətdə əlavə ediləcək + + + Also delete .torrent files whose addition was cancelled Həmçinin əlavə edilməsi ləğv olunan .torrent fayllarını silmək - + Also when addition is cancelled Həmçinin əlavə edilməsi ləğv edildikdə - + Warning! Data loss possible! Xəbərdarlıq! Verilənlərin itirilə bilər! - + Saving Management Yaddaşa yazılmanın idarə edilməsi - + Default Torrent Management Mode: Standart Torrent İdarəetmə Rejimi: - + Manual Əl ilə - + Automatic Avtomatik - + When Torrent Category changed: Torrent Kateqoriyaları dəyişdirildikdə: - + Relocate torrent Torrentin yerini dəyişmək - + Switch torrent to Manual Mode Torrenti əl ilə idarə rrejiminə keçirmək - + Relocate affected torrents Təsirə məruz qalan torrentlərin yerini dəyişmək - + Switch affected torrents to Manual Mode Təsirə məruz qalan torrentləri əl ilə idarə rejiminə keçirmək - + Use Subcategories Alt kateqoriyaları istifadə etmək - + Default Save Path: Standart saxlama yolu: - + Copy .torrent files to: Torrent fayllarını buraya kopyalamaq: - + Show &qBittorrent in notification area &qBittorrenti bu bildiriş sahəsində göstərmək: - - &Log file - Jurna&l faylı - - - + Display &torrent content and some options &Torrent tərkibini və bəzi seçimləri göstərmək - + De&lete .torrent files afterwards Əlavə edildikdən sonra torrent fayllarını si&lmək - + Copy .torrent files for finished downloads to: Bitmiş yükləmələr üçün .torrent fayllarını buraya kopyalamq: - + Pre-allocate disk space for all files Bütün fayllar üçün əvvəlcədən yer ayırmaq - + Use custom UI Theme Başqa İstifadəçi interfeysi mövzusu istifadə etmək - + UI Theme file: İİ mövzusu faylı: - + Changing Interface settings requires application restart İnterfeys ayarlarının dəyişdirilməsi tətbiqi yenidən başlatmağı tələb edir - + Shows a confirmation dialog upon torrent deletion Torrentin silinməsinin təsdiq edilməsi dialoqunu göstərir - - + + Preview file, otherwise open destination folder Fayla öncədən baxış, əksa halda təyinat qovluğunu açmaq - - - Show torrent options - Torrent parametrlərini göstərmək - - - + Shows a confirmation dialog when exiting with active torrents Aktiv torrentlər olduqda tətbiqdən çıxarkən, çıxışı təsdiq etmək - + When minimizing, the main window is closed and must be reopened from the systray icon Yığıldıqda əsas pəncərə bağlanır və onu sistem treyindən yenidən açmaq olar - + The systray icon will still be visible when closing the main window Əsas pəncərə bağlandıqda treydəki nişanı hələ də görünəcəkdir - + Close qBittorrent to notification area The systray icon will still be visible when closing the main window qBittorrent-i bildiriş çubuğuna endirmək - + Monochrome (for dark theme) Monoxrom (qara mövzu üçün) - + Monochrome (for light theme) Monoxrom (işıqlı mövzu üçün) - + Inhibit system sleep when torrents are downloading Torrentlər endirilən zaman komputerin yuxu rejiminə keçməsini əngəlləmək - + Inhibit system sleep when torrents are seeding Torrentlər paylaşılarkən komputerin yuxu rejiminə keçməsini əngəlləmək - + Creates an additional log file after the log file reaches the specified file size Jurnal faylı göstərilmiş ölçüyə çatdıqda sonra əlavə jurnal faylı yaradılır - + days Delete backup logs older than 10 days günlər - + months Delete backup logs older than 10 months aylar - + years Delete backup logs older than 10 years illər - + Log performance warnings Performans xəbərdarlıqlarını qeydə alamaq - - The torrent will be added to download list in a paused state - Torrent, fasilə vəziyyətində yükləmə siyahısına əlavə ediləcək - - - + Do not start the download automatically - The torrent will be added to download list in a paused state + The torrent will be added to download list in a stopped state Endirməni avtomatik başlatmamaq - + Whether the .torrent file should be deleted after adding it Əlavə edildikdən sonra .torrent faylın silinib silinməməsi - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Daha çox hissələrə bölünmənin qarşısını almaq üçün diskdə tam fayl ölçüsündə yer ayrılır. Yalnız HDD-lər (Sərt Disklər) üçün yararlıdır. - + Append .!qB extension to incomplete files Tamamlanmamış fayllara .!qB uzantısı əlavə etmək - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Torrent endirilən zaman onun daxilindəki .torrent fayllarını endirməyi təklif etmək - + Enable recursive download dialog Təkrarlanan yükləmə dialoqunu aktiv etmək - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Avtomatik: Müxtəlif torrent xüsusiyyətləri (məs., saxlama yolu) əlaqəli kateqoriyalar tərəfindən təyin ediləcəkdir. Əl ilə: Müxtəlif torrent xüsusiyyətləri (məs., saxlama yolu) əl ilə daxil edilməlidir - + When Default Save/Incomplete Path changed: Standart saxlam/tamamlanmamış yolu dəyişdirildiyi zaman: - + When Category Save Path changed: Saxlama Yolu Kateqoriyası dəyişdirildiyində: - + Use Category paths in Manual Mode Kateqoriya yollarını Əl ilə Rejimində istifadə edin - + Resolve relative Save Path against appropriate Category path instead of Default one Nisbi saxlama yolunu, standarta yola görə deyil, uyğun kateqriya yoluna görə təyin edin - + Use icons from system theme Sistem mövzusundakı nişandan istifadə etmək. - + Window state on start up: Sistem açıldıqda pəncərnin vəziyyəti: - + qBittorrent window state on start up Sistemin açılışında qBittorrent pəncərəsinin vəziyyəti - + Torrent stop condition: Torrentin dayanma vəziyyəti: - - + + None Heç nə - - + + Metadata received Meta məlumatları alındı - - + + Files checked Fayllar yoxlanıldı - + Ask for merging trackers when torrent is being added manually Torrent əl ilə əlavə olunduqda izləyicilərin birləşdirilməsini soruşmaq - + Use another path for incomplete torrents: Tamamlanmamış torrentlər üçün başqa yoldan istifadə edin: - + Automatically add torrents from: Torrenti buradan avtomatik əlavə etmək: - + Excluded file names Fayl adları istisna edilir - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6553,766 +6858,816 @@ readme.txt: dəqiq fayl adını seçir. readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, lakin "readme10.txt"-ni seçmir. - + Receiver Qəbuledici - + To: To receiver Buraya: - + SMTP server: SMTP server: - + Sender Göndərən - + From: From sender Buradan: - + This server requires a secure connection (SSL) Bu server təhlükəsiz bağlantı (SSL) tələb edir - - + + Authentication Kimlik doğrulaması - - - - + + + + Username: İstifadəçi adı: - - - - + + + + Password: Şifrə: - + Run external program Xarici proqramı başladın - - Run on torrent added - Torrent əlavə edildikdə başlatmaq - - - - Run on torrent finished - Torrent tamamlandlqda başlatmaq - - - + Show console window Konsol pəncərəsini göstərmək - + TCP and μTP TCP və μTP - + Listening Port Dinlənilən port - + Port used for incoming connections: Daxil olan bağlantılar üçün istifadə olunan port - + Set to 0 to let your system pick an unused port Dəyəri 0 təyin edin ki, sistem istifadə olunmayan portu seçsin - + Random Təsadüfi - + Use UPnP / NAT-PMP port forwarding from my router UPnP / NAT-PMP portlarının yönləndirməsi üçün routerimdən istifadə etmək - + Connections Limits Bağlantı limiti - + Maximum number of connections per torrent: Hər torrent üçün ən çox bağlantı limiti: - + Global maximum number of connections: Ən çox ümumi bağlantı sayı: - + Maximum number of upload slots per torrent: Hər torrent üçün ən çox göndərmə yuvası sayı: - + Global maximum number of upload slots: Ən çox ümumi göndərmə yuvaları sayı: - + Proxy Server Proksi server: - + Type: Növ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Əks halda proksi server yalnız izləyici bağlantıları üçün istifadə olunur - + Use proxy for peer connections Proksi serveri, iştirakçı bağlantıları üçün istifadə etmək - + A&uthentication Kimlik doğr&ulaması - + Info: The password is saved unencrypted Məlumat: Parol, şifrələnməmiş şəkildə saxlanıldı - + Filter path (.dat, .p2p, .p2b): Filtr yolu (.dat, .p2p, .p2b): - + Reload the filter Filtri təkrarlamaq - + Manually banned IP addresses... İstifadəçinin qadağan etdiyi İP ünvanları... - + Apply to trackers İzləyicilərə tətbiq etmək - + Global Rate Limits Ümumi sürət limitləri - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KB/san - - + + Upload: Göndərmə: - - + + Download: Yükləmə: - + Alternative Rate Limits Alternativ sürət limitləri - + Start time Başlama vaxtı - + End time Bitmə tarixi - + When: Nə zaman: - + Every day Hər gün - + Weekdays Həftəiçi: - + Weekends Həstə sonları: - + Rate Limits Settings Sürət limitləri ayarları - + Apply rate limit to peers on LAN Sürət limitini LAN şəbəkəsindəki hər iştirakçıya tətbiq etmək - + Apply rate limit to transport overhead Sürət limitini trafik mübadiləsinə tətbiq etmək - + + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> + <html><head/><body><p>Əgər "qarışıq rejim" aktiv edilərsə I2P torrentlər izləyicilərdən başqa digər mənbələrdən iştirakçılar əldə etməyə və heç bir anonimləşdirmə təqdim etmədən müntəzəm İP-lərə qoşulmağa icazə verir. Bu, əgər istifadəçi üçün I2P anonimləşdirilməsi maraqlı deyilsə və o, hələ də I2P iştirakçılarına qoşulmaq istədiyi halda faydalı ola bilər, </p></body></html> + + + Apply rate limit to µTP protocol Sürət limitini µTP protokoluna tətbiq etmək - + Privacy Məxfi - + Enable DHT (decentralized network) to find more peers Daha çox iştirakçılar tapmaq üçün DHT (mərkəzləşməmiş şəbəkə) aktiv etmək - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) İştirakçıları uyğun qBittorrent müştəriləri ilə əvəzləmək (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Daha çox iştirakçılar tapmaq üçün İştirakçı mübadiləsini (PeX) aktiv etmək - + Look for peers on your local network Yerli şəbəkədəki iştirakçıları axtarmaq - + Enable Local Peer Discovery to find more peers Daha çox iştirakçılar tapmaq üçün Yerli İştirakçı Axtarışını aktiv etmək - + Encryption mode: Şifrələmə rejimi: - + Require encryption Şifrələmə tələbi - + Disable encryption Şifrələməni söndürmək: - + Enable when using a proxy or a VPN connection Proksi və ya VPN bağlantıları istifadə oluduqda - + Enable anonymous mode Anonim rejimi aktiv etmək - + Maximum active downloads: Ən çox aktiv yükləmələr: - + Maximum active uploads: Ən çox aktiv göndərmələr: - + Maximum active torrents: Ən çox aktiv torrentlər: - + Do not count slow torrents in these limits Bu limitlərdə yavaş torrentləri saymamaq - + Upload rate threshold: Göndərmə sürəti həddi: - + Download rate threshold: Yükləmə sürəti həddi: - - - - + + + + sec seconds san - + Torrent inactivity timer: Torrent boşdayanma zamanlayıcısı: - + then sonra - + Use UPnP / NAT-PMP to forward the port from my router UPnP / NAT-PMP portlarının yönləndirməsi üçün routerimdən istifadə etmək - + Certificate: Sertifikat: - + Key: Açar: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>sertifikatlar haqqında məlumat</a> - + Change current password Hazırkı şifrəni dəyişmək - - Use alternative Web UI - Alternativ Web İstifadəçi İnterfeysindən istifadə etmək - - - + Files location: Fayl yerləşməsi: - + + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Alternativ Veb İİ siyahısı</a> + + + Security Təhlükəsizlik - + Enable clickjacking protection Klikdən sui-istifadənin qarşısının alınmasını aktiv etnək - + Enable Cross-Site Request Forgery (CSRF) protection Saytlar arası sorğuların saxtalaşdırılmasından (CSRF) mühafizəni aktiv etmək - + + Enable cookie Secure flag (requires HTTPS or localhost connection) + Kuk təhlükəsizliyi bayrağını aktiv etmək (HTTPS və ya yerli host bağlantısı tələb olunur) + + + Enable Host header validation Host başlığı doğrulamasını aktiv etmək - + Add custom HTTP headers Başqa HTTP başlıqları əlavə etmək - + Header: value pairs, one per line Başlıq: hər sətir başına bir dəyər cütü - + Enable reverse proxy support Əks proksi dəstəklənməsini açın - + Trusted proxies list: Etibarlı proksilər siyahısı: - + + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Əks proksi quraşdırma nümunələri</a> + + + Service: Xidmət: - + Register Qeydiyyat - + Domain name: Domen adı: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Bu seçimi aktiv etmək torrent fayllarınızı <strong>birdəfəlik itirmək</strong> ilə nəticələnə bilər! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog İkinci seçimi aktiv etdikdə (&ldquo;Həmçinin əlavə edilmə ləğv edildikdə&rdquo;) torrent faylları hətta &ldquo;Torrent əlavə etmək&rdquo; dialoqunda &ldquo;<strong>İmtina</strong>&rdquo; vurduqda belə <strong>silinəcəkdir</strong> - + Select qBittorrent UI Theme file qBittorrent İstifadəçi İnterfeysi mövzusu faylını seçmək - + Choose Alternative UI files location Alternativ İİ faylları yerini seçmək - + Supported parameters (case sensitive): Dəstəklnən parametrlər (böyük-kiçik hərflərə həssas) - + Minimized Yığılmış - + Hidden Gizli - + Disabled due to failed to detect system tray presence Sistem çəkməcəsinin mövcudluğunu aşkar edə bilmədiyinə görə söndürüldü - + No stop condition is set. Dayanma vəziyyəti təyin edilməyib. - + Torrent will stop after metadata is received. Meta məlumatları alındıqdan sonra torrent dayanacaq. - + Torrent will stop after files are initially checked. Faylların ilkin yoxlanışından sonra torrrent daynacaq. - + This will also download metadata if it wasn't there initially. Əgər başlanğıcda meta məlumatlar olmasa onlar da yüklənəcək. - + %N: Torrent name %N: Torrentin adı - + %L: Category %L: Kateqoriyası - + %F: Content path (same as root path for multifile torrent) %F: Məzmun yolu (çoxsaylı torrentlər üçün kök (root) yolu kimi) - + %R: Root path (first torrent subdirectory path) %R: Kök (root) yolu (ilk torrent alt qovluqları yolu) - + %D: Save path %D: Saxlama yolu - + %C: Number of files %C: Faylların sayı - + %Z: Torrent size (bytes) %Z: Torrentin ölçüsü (bayt) - + %T: Current tracker %T: Cari izləyici - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Növ: Mətni, ara boşluğunda kəsilmələrndən qorumaq üçün parametrləri dırnaq işarəsinə alın (məs., "%N") - + + Test email + E-poçtu sınamaq + + + + Attempted to send email. Check your inbox to confirm success + E-poçt göndərməyə cəhd edildi. Uğurlu olduğunu təsdiqləmək üçün poçtunuzu yoxlayın. + + + (None) (Heç nə) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Bir torrent endirmə və göndərmə sürəti, "Torrent boşdayanma zamanlayıcısı"nın saniyələrlə dəyərindən az olarsa, o, yavaş torrent hesab olunacaq - + Certificate Sertifikat - + Select certificate Sertifakatı seçin - + Private key Məxfi açar - + Select private key Məxfi açarı seçin - + WebUI configuration failed. Reason: %1 Veb İİ tənzimləməsini dəyişmək mümkün olmadı. Səbəb: %1 - + + %1 is recommended for best compatibility with Windows dark mode + Fusion is recommended for best compatibility with Windows dark mode + Windows qaranlıq rejimi ilə daha yaxşı uyğunluq üçün %1 tövsiyyə olunur + + + + System + System default Qt style + Sistem + + + + Let Qt decide the style for this system + Qt-yə bu sistem üçün üslub seçməyə icazə vermək + + + + Dark + Dark color scheme + Qaranlıq + + + + Light + Light color scheme + İşıqlı + + + + System + System color scheme + Sistem + + + Select folder to monitor İzləmək üçün qovluğu seçin - + Adding entry failed Girişin əlavə edilməsi alınmadı - + The WebUI username must be at least 3 characters long. Veb İİ istifadəçi adı ən az 3 işarədən ibarət olmalıdır. - + The WebUI password must be at least 6 characters long. Veb İİ şifrəsi ən az 6 işarədən ibarət olmalıdır. - + Location Error Yerləşmə xətası - - + + Choose export directory İxrac qovluğunu seçmək - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Bu seçim aktiv olduqda qBittorrent, yükləmə növbəsinə uğurla əlavə olunduqdan (ilk seçim) və ya olunmadıqdan (ikinci seçim) sonra, .torrent fayllarını <strong>siləcək</strong>. Bu sadəcə &ldquo;Torrent əlavə etmək&rdquo; menyusu vasitəsi ilə açılmış fayllara <strong>deyil</strong>, həmçinin, <strong>fayl növü əlaqələri</strong> vasitəsi ilə açılanlara da tətbiq ediləcəkdir - + qBittorrent UI Theme file (*.qbtheme config.json) qBittorrent İİ mövzusu faylı (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiketlər (vergüllə ayrılmış) - + %I: Info hash v1 (or '-' if unavailable) %I: Məlumat heş'i v1 (və ya əgər əlçatmazdırsa '-') - + %J: Info hash v2 (or '-' if unavailable) %J: məlumat heş'i v2 (və ya əgər əlçatmazdırsa '-') - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent İD-si (ya məlumat heş'i sha-1 v1 üçün və ya v2/hibrid torrenti üçün qısaldılmış sha-256 məlumat heş' i) - - - + + + Choose a save directory Saxlama qovluğunu seçmək - + Torrents that have metadata initially will be added as stopped. Əvvəlcədən meta məlumatlara malik olan torrentlər dayandırılmış kimi əılavə ediləcək. - + Choose an IP filter file İP filtri faylını seçmək - + All supported filters Bütün dəstəklənən filtrlər - + The alternative WebUI files location cannot be blank. Alternativ Veb İİ faylları üçün boş ola bilməz. - + Parsing error Təhlil xətası - + Failed to parse the provided IP filter Təqdim olunan İP filtrinin təhlil baş tutmadı - + Successfully refreshed Uğurla təzələndi - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Təqdim olunan İP filtri uğurla təhlil olundu: %1 qayda tətbiq olundu. - + Preferences Tərcihlər - + Time Error Vaxt xətası - + The start time and the end time can't be the same. Başlama və bitmə vaxtı eyni ola bilməz. - - + + Length Error Ölçü xətası @@ -7320,80 +7675,85 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l PeerInfo - + Unknown Naməlum - + Interested (local) and choked (peer) Maraqlanan (müştəri) və məşğul (iştirakçı) - + Interested (local) and unchoked (peer) Maraqlanmır (müştəri) və məğul deyil (iştirakçı) - + Interested (peer) and choked (local) Maraqlanan (iştirakçı) və məşğuldur (müştəri) - + Interested (peer) and unchoked (local) Maraqlanmır (iştirakçı) və məşğul deyil (müştəri) - + Not interested (local) and unchoked (peer) Maraqlanmır (müştəri) və məşğul deyil (iştirakçı) - + Not interested (peer) and unchoked (local) Maraqlanmır (iştirakşı) və məşğul deyil (müştəri) - + Optimistic unchoke Tezliklə endirilməyə başlanacaq - + Peer snubbed İştirakçıya irad tutuldu - + Incoming connection Daxil olan bağlantı - + Peer from DHT DHT-dən iştirakçı - + Peer from PEX PEX-dən iştirakçı - + Peer from LSD LSD-dən iştirakçı - + Encrypted traffic Şifrələnmiş trafik - + Encrypted handshake Şifrələnmiş görüşmə + + + Peer is using NAT hole punching + İştirakçı NAT tunellərindən istifadə edir + PeerListWidget @@ -7549,7 +7909,7 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l İştirakçı "%1" həmişəlik əngəlləndi - + N/A Ə/D @@ -7572,7 +7932,7 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l İştirakçılar siyahısı əlavə edildi (hər sətirə bir İP): - + Format: IPv4:port / [IPv6]:port İPv4 portu formatı / [IPv6]:portu @@ -7613,27 +7973,27 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l PiecesBar - + Files in this piece: Bu hissədəki fayllar: - + File in this piece: Bu hissədəki fayl: - + File in these pieces: Bu hissələrdəki fayl: - + Wait until metadata become available to see detailed information Ətraflı məlumatı görmək üçün meta verilənlərinin daxil olmasını gözləyin - + Hold Shift key for detailed information Ətraflı məlumat üçün Shift düyməsini basıb saxlayın @@ -7646,58 +8006,58 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l Axtarış qoşmaları - + Installed search plugins: Quraşdırılmış axtarış qoşmaları - + Name Adı - + Version Versiyası - + Url Url - - + + Enabled Aktiv edildi - + Warning: Be sure to comply with your country's copyright laws when downloading torrents from any of these search engines. Xəbərdarlıq: Bu axtarış sistemlərinin hər hansı birindən istifadə edərək torrentləri yükləyərkən, mütləq ölkənizin müəllif hüquqları haqqında qanununa rəayət edin. - + You can get new search engine plugins here: <a href="https://plugins.qbittorrent.org">https://plugins.qbittorrent.org</a> Yeni axtarış mühərriki qoşmalarını buradan əldə edə bilərsiniz: <a href="https://plugins.qbittorrent.org">https://plugins.qbittorrent.org</a> - + Install a new one Yeni birini quraşdırın - + Check for updates Yenilənmələri yoxlamaq - + Close Bağlamaq - + Uninstall Silmək @@ -7817,17 +8177,17 @@ Bu qoşmalar söndürülüb. Qoşmanın mənbəyi - + Search plugin source: Axtarış qoşmasının mənbəyi: - + Local file Yerli fayl - + Web link Veb keçidi @@ -7868,47 +8228,47 @@ Bu qoşmalar söndürülüb. PreviewSelectDialog - + The following files from torrent "%1" support previewing, please select one of them: Aşağıdakı "%1" torrentindəki fayllar öncədən baxışı dəstəkləyir, onlardan birini seçin: - + Preview Öncədən baxış - + Name Adı - + Size Ölçüsü - + Progress İrəliləyiş - + Preview impossible Öncədən baxış mümkün deyil - + Sorry, we can't preview this file: "%1". Təəssüf ki, bu faylı öncədən göstərə bilmirik: "%1" - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək @@ -7921,27 +8281,27 @@ Bu qoşmalar söndürülüb. Private::FileLineEdit - + Path does not exist Yol mövcud deyil - + Path does not point to a directory Yol qovluğu göstərmir - + Path does not point to a file Yol fayla aparmır - + Don't have read permission to path Yol üçün oxumaq icazəsi yoxdur - + Don't have write permission to path Yol üçün yazmaq icazəsi yoxdur @@ -7982,12 +8342,12 @@ Bu qoşmalar söndürülüb. PropertiesWidget - + Downloaded: Endirilən: - + Availability: Mövcud: @@ -8002,53 +8362,53 @@ Bu qoşmalar söndürülüb. Köçürmə - + Time Active: - Time (duration) the torrent is active (not paused) + Time (duration) the torrent is active (not stopped) Aktivlik müddəti: - + ETA: Qalan Vaxt: - + Uploaded: Göndərilən: - + Seeds: Göndərənlər: - + Download Speed: Endirmə sürəti: - + Upload Speed: Göndərmə sürəti: - + Peers: İştirakçılar: - + Download Limit: Endirmə limiti: - + Upload Limit: Göndərmə limiti: - + Wasted: İtirilən: @@ -8058,193 +8418,220 @@ Bu qoşmalar söndürülüb. Bağlantılar - + Information Məlumat - + Info Hash v1: Məlumat heş'i v1: - + Info Hash v2: Məlumat heş'i v2: - + Comment: Şərh: - + Select All Hamısını seçmək - + Select None Heç birini seçməmək - + Share Ratio: Paylaşım nisbəti: - + Reannounce In: Növbəti anons: - + Last Seen Complete: Son görünən tamamlanmış: - + + + Ratio / Time Active (in months), indicates how popular the torrent is + Nisbət / vaxt aktivliyi (aylar ərzində) torrentlərin nə qədər populyar olduğunu göstərir + + + + Popularity: + Populyarlıq: + + + Total Size: Ümumi ölçüsü: - + Pieces: Hissələr: - + Created By: Yaradan: - + Added On: Əlavə edilib: - + Completed On: Tamamlanıb: - + Created On: Yaradılıb: - + + Private: + Gizli: + + + Save Path: Saxlama yolu: - + Never Heç zaman - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (%3 var) - - + + %1 (%2 this session) %1 (%2 bu sesiyada) - - + + + N/A Əlçatmaz - + + Yes + Bəli + + + + No + Xeyr + + + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (%2 üçün göndərilmə) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 ən çox) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 ümumi) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 orta.) - - New Web seed - Yeni veb göndərimi + + Add web seed + Add HTTP source + Veb iştirakçı əlavə etmək - - Remove Web seed - Veb göndərimini silmək + + Add web seed: + Veb iştirakçı əlavə etmək: - - Copy Web seed URL - Veb göndərim keçidini kopyalamaq + + + This web seed is already in the list. + Bu veb iştirakçı artıq siyahıdadır. - - Edit Web seed URL - Veb göndərim keçidinə düzəliş - - - + Filter files... Faylları filtrləmək... + + + Add web seed... + Veb iştirakçı əlavə etmək... + + + + Remove web seed + Veb iştirakçını silmək + + Copy web seed URL + Veb iştirakçı ünvanını kopyalamaq + + + + Edit web seed URL... + Veb iştirakçı ünvanına düzəliş etmək... + + + Speed graphs are disabled Tezlik qrafiki söndürülüb - + You can enable it in Advanced Options Siz bunu Əlavə Seçimlər-də aktiv edə bilərsiniz - - New URL seed - New HTTP source - Yeni URL göndərimi - - - - New URL seed: - Yeni URL göndərimi: - - - - - This URL seed is already in the list. - Bu YRL göndərimi artıq bu siyahıdadır. - - - + Web seed editing Veb göndəriminə düzəliş edilir - + Web seed URL: Veb göndərim URL-u: @@ -8263,22 +8650,22 @@ Bu qoşmalar söndürülüb. RSS avtomatik yükləmə tarixini %1 daxilində saxlamaq mümkün olmadı:. Xəta: %2 - + Invalid data format Səhv tarix formatı - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... "%1" RSS məqaləsi "%2" qaydası tərəfindən qəbul edildi. Torrent əlavə edilməyə cəhd edilir... - + Failed to read RSS AutoDownloader rules. %1 RSS avtomatik yükləmə qaydalarını oxumaq mümkün olmadı. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 RSS avtomatik yükləmə qaydaları yüklənə bilmədi. Səbəb: %1 @@ -8337,12 +8724,12 @@ Bu qoşmalar söndürülüb. RSS::Private::Parser - + Invalid RSS feed. Səhv RSS lenti. - + %1 (line: %2, column: %3, offset: %4). %1 (sətir: %2, sütun: %3, sürüşmə: %4). @@ -8360,89 +8747,89 @@ Bu qoşmalar söndürülüb. RSS sessiyası verilənləri saxlanıla bilmədi. Fayl: "%1". Xəta: "%2" - - + + RSS feed with given URL already exists: %1. Verilmiş URL ilə RSS lenti artıq mövcuddur: %1 - + Feed doesn't exist: %1. Xəbər lenti mövcud deyil: %1 - + Cannot move root folder. Kök (root) qovluğu köçürülə bilmir. - - + + Item doesn't exist: %1. Element tapılmadı: %1. - + Couldn't move folder into itself. Qovluğu öz daxilinə köçürmək mümkün deyil - + Cannot delete root folder. Kök qovluğu silinə bilmir. - + Failed to read RSS session data. %1 RSS sesiya verilənlərini oxumaq mümkün olmadı. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" RSS sesiya verilənlərini həll etmək mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." RSS sesiya verilənlərini yükləmək mümkün olmadı. Fayl: "%1". Xəta: "Səhv verilənlər formatı." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. RSS xəbər lenti yüklənə bilmədi. Xəbər lenti: "%1". Səbəb: URL tələb olunur. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. RSS xəbər lentini yükləmək alınmadı. Xəbər lenti: "%1". Səbəb: UİD səhvdir. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. RSS xəbər lentinin təkrarı aşkarlandı. UİD: "%1". Xəta: Belə görünür ki, tənzimləmə pozulub. - + Couldn't load RSS item. Item: "%1". Invalid data format. RSS elemntlərini yüləmək mümkün olmadı. Element: "%1". Verilənlər formatı səhvdir. - + Corrupted RSS list, not loading it. RSS siyahısı pozulub, o, yüklənmir. - + Incorrect RSS Item path: %1. Düzgün olmayan RSS elementi yolu: %1 - + RSS item with given path already exists: %1. Verilmiş yol ilə RSS elementi artıq mövcuddur: %1 - + Parent folder doesn't exist: %1. Ana qovluq yoxdur; %1. @@ -8466,8 +8853,8 @@ Bu qoşmalar söndürülüb. - - + + Mark items read Elementləri oxunmuş kimi işarələmək @@ -8492,132 +8879,132 @@ Bu qoşmalar söndürülüb. Torrentlər: (endirmək üçün iki dəfə vurun) - - + + Delete Silmək - + Rename... Adını dəyişmək... - + Rename Adını dəyişmək - - + + Update Yeniləmək - + New subscription... Yeni abunəlik... - - + + Update all feeds Bütün lentləri yeniləmək - + Download torrent Torrenti endirmək - + Open news URL Yeni URL açın - + Copy feed URL Lent URL-nu kopyalamaq - + New folder... Yeni qovluq... - + Edit feed URL... Xəbər lenti ünvanına düzəliş et... - + Edit feed URL Xəbər lenti ünvanına düzəliş et - + Please choose a folder name Qovluğu ad verin - + Folder name: Qovluğun adı: - + New folder Yeni qovluq - - + + Please type a RSS feed URL RSS lenti URL-nu yazın - - + + Feed URL: Lent URL-u: - + Deletion confirmation Silinmənin təsdiqlənməsi - + Are you sure you want to delete the selected RSS feeds? Seçilmiş RSS lentlərini silmək istədiyinizə əminsiniz? - + Please choose a new name for this RSS feed RSS lenti üçün yeni ad seçin - + New feed name: Yeni lent adı: - + Rename failed Adı dəyişdirilə bilmədi - + Date: Tarix: - + Feed: Lent: - + Author: Müəllif: @@ -8625,38 +9012,38 @@ Bu qoşmalar söndürülüb. SearchController - + Python must be installed to use the Search Engine. Axtarış sistemini istifadə etmək üçün Python quraşdırılmalıdır. - + Unable to create more than %1 concurrent searches. %1-dən/dan çox paralel axtarışlar yaratmaq mümkün deyil. - - + + Offset is out of range Sürüşmə əhatə dairəsindən kənardadır - + All plugins are already up to date. Bütün qoşmalar artıq yenilənib. - + Updating %1 plugins %1 qoşmaları yenilənir - + Updating plugin %1 %1 qoşması yenilənir - + Failed to check for plugin updates: %1 Qoşmanın yenilənməsini yoxlamaq baş tutmadı: %1 @@ -8731,132 +9118,142 @@ Bu qoşmalar söndürülüb. Ölçüsü: - + Name i.e: file name Adı - + Size i.e: file size Ölçüsü - + Seeders i.e: Number of full sources Göndəricilər - + Leechers i.e: Number of partial sources İstismar edənlər - - Search engine - Axtarış vasitəsi - - - + Filter search results... Axtarış nəticələrini filtrləmək... - + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Nəticələr (<i>%2</i>dən/dan <i>%1</i> göstərmək): - + Torrent names only Torrent adı yalnız - + Everywhere Hər yerdə - + Use regular expressions Müntəzəm ifadələri istiadə etmək - + Open download window Endirmə pəncrəsini açın - + Download Endirmək - + Open description page Tanıtma səhifəsini açmaq - + Copy Kopyalamaq - + Name Adı - + Download link Endirmə keçidi - + Description page URL Tanıtma səhifəsi URL-u - + Searching... Axtarılır... - + Search has finished Axtarış sona çatdı - + Search aborted Axtarış ləğv edildi - + An error occurred during search... Axtarış zamanı xəta baş verdi... - + Search returned no results Axtarış nəticə vermədi - + + Engine + Mühərrik + + + + Engine URL + Mühərrikin ünvanı + + + + Published On + Yayımlandığı yer + + + Column visibility Sütunun görünməsi - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək @@ -8864,104 +9261,104 @@ Bu qoşmalar söndürülüb. SearchPluginManager - + Unknown search engine plugin file format. Naməlum axtarış vasitəsi qoşması fayl formatı. - + Plugin already at version %1, which is greater than %2 Qoşma artıq %2 versiyasından böyük olan %1 versiyasındadır - + A more recent version of this plugin is already installed. Bu qoşmanın artıq ən son versiyası quraşdırılıb. - + Plugin %1 is not supported. %1 qoşması dəstəklənmir. - - + + Plugin is not supported. Qoşma dəstəklənmir. - + Plugin %1 has been successfully updated. %1 qoşması uğurla yeniləndi. - + All categories Bütün kateqoriyalar - + Movies Filmlər - + TV shows TV verilişləri - + Music Musiqi - + Games Oyun - + Anime Cizgi filmləri - + Software Proqram təminatı - + Pictures Şəkillər - + Books Kitablar - + Update server is temporarily unavailable. %1 Yeniləmə serveri müvəqqəti işləmir. %1 - - + + Failed to download the plugin file. %1 Qoşma faylının endrilməsi alınmadı. %1 - + Plugin "%1" is outdated, updating to version %2 "%1" qoşmasının bersiyası köhnədir, %2 versiyasına yenilənir - + Incorrect update info received for %1 out of %2 plugins. %2 qoşmalarından %1 yenilənməsi haqqında səhv məlumatı alındı. - + Search plugin '%1' contains invalid version string ('%2') '%1' axtarış qoşması versiyası ('%2') səhv sətirlərdən ibarətdir @@ -8971,114 +9368,145 @@ Bu qoşmalar söndürülüb. - - - - Search Axtarış - + There aren't any search plugins installed. Click the "Search plugins..." button at the bottom right of the window to install some. Quraşdırılmış axtarış qoşması yoxdur. Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı "Axtarış qoşmaları..." düyməsinə vurun. - + Search plugins... Axtarış qoşmaları... - + A phrase to search for. Axtarış ifadəsi. - + Spaces in a search term may be protected by double quotes. Axtarış sorğusundakı boşluq cüt dırnaq işarəsi ilə qorunur. - + Example: Search phrase example Nümunə: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: <b>foo bar</b> axtarmaq üçün - + All plugins Bütün qoşmalar - + Only enabled Yalnız aktiv edilənlər - + + + Invalid data format. + Səhv tarix formatı + + + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: <b>foo</b> və <b>bar</b> axtarmaq üçün - + + Refresh + Təzələmək + + + Close tab Vərəqi bağlayın - + Close all tabs Bütün vərəqləri bağlayın - + Select... Seçin... - - - + + Search Engine Axtarış sistemi - + + Please install Python to use the Search Engine. Axtarış sistemini istifadə etmək üçün Python quraşdırın. - + Empty search pattern Boş axtarış nümunəsi - + Please type a search pattern first Öncə axtarış nümunəsini daxil edin - + + Stop Dayandırmaq + + + SearchWidget::DataStorage - - Search has finished - Axtarış sona çatdı + + Failed to load Search UI saved state data. File: "%1". Error: "%2" + Axtarış İİ-nin saxlanılması vəziyyəti haqqında məlumatı yükləmək mümkün olmadı. Fayl: "%1". Xəta: "%2" - - Search has failed - Axtarış alınmadı + + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" + Saxlanılmış axtarış nəticələrini yükləmək mümkün olmadı. Vərəq: "%1". Fayl: "%2". Xəta: "%3" + + + + Failed to save Search UI state. File: "%1". Error: "%2" + Axtarıç İİ vəziyyətini saxlamaq mümüknü olmadı. Fayl: "%1". Xəta: "%2" + + + + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" + Axtarış nəticələrini saxlamaq mümkün olmadı: Vərəq: "%1". Fayl: "%2". Xəta: "%3" + + + + Failed to load Search UI history. File: "%1". Error: "%2" + Axtarış İİ tarixçəsini yükləmək mümkün olmadı. Fayl: "%1". Xəta: "%2" + + + + Failed to save search history. File: "%1". Error: "%2" + Axtarış tarixçəsini saxlamaq mümkün olmadı. Fayl: "%1". Xəta: "%2" @@ -9191,34 +9619,34 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı - + Upload: Göndərmə: - - - + + + - - - + + + KiB/s KB/san - - + + Download: Yükləmə: - + Alternative speed limits Alternativ sürət hədləri @@ -9410,32 +9838,32 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı Növbədəki orta vaxt: - + Connected peers: Qoşulmuş iştirakçılar: - + All-time share ratio: Ümumi paylaşım nisbəti: - + All-time download: İndiyədək yüklənən: - + Session waste: Sesiyada itirilən: - + All-time upload: İndiyədək göndərilən: - + Total buffer size: Ümumi bufer ölçüsü: @@ -9450,12 +9878,12 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı Növbədəki Giriş/Çıxış əməliyyatları: - + Write cache overload: Yazı keşinin :artıq yüklənməsi: - + Read cache overload: Oxuma keşinin artıq yüklənməsi:: @@ -9474,51 +9902,67 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı StatusBar - + Connection status: Bağlantının vəziyyəti: - - + + No direct connections. This may indicate network configuration problems. Birbaşa bağlantılar yoxdur. Bu şəbəkə bağlantısı probleminə işarədir. - - + + + External IP: N/A + Xarici İP: Ə/D + + + + DHT: %1 nodes DHT: %1 qovşaqlar - + qBittorrent needs to be restarted! qBittorrenti yenidən başlatmaq lazımdır! - - - + + + Connection Status: Bağlantının vəziyyəti: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Şəbəkədən kənar: Bu, adətən o deməkdir ki, qBittorrent-in daxil olan bağlantılar üçün seçilmiş portları dinləməsi baş tutmadı - + Online Şəbəkədə - + + External IPs: %1, %2 + Xarici İP-lər: %1, %2 + + + + External IP: %1%2 + Xarici İP: %1%2 + + + Click to switch to alternative speed limits Alternativ sürət limitlərinə keçmək üçün vurun - + Click to switch to regular speed limits Müntəzəm sürət limitlərinə keçmək üçün vurun @@ -9548,13 +9992,13 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı - Resumed (0) - Davm etdirilən (0) + Running (0) + Başladılır (0) - Paused (0) - Fasilədə (0) + Stopped (0) + Dyandırıldı (0) @@ -9616,36 +10060,36 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı Completed (%1) Başa çatdı (%1) + + + Running (%1) + Başlayır (%1) + - Paused (%1) - Fasilədə (%1) + Stopped (%1) + Dayandırıldı (%1) + + + + Start torrents + Torrentləri başlatmaq + + + + Stop torrents + Torrentləri dayandırmaq Moving (%1) Köçürülür (%1) - - - Resume torrents - Torrentləri davam etdirmək - - - - Pause torrents - Torrentlərə fasilə - Remove torrents Torrentləri silin - - - Resumed (%1) - Davam etdirilən (%1) - Active (%1) @@ -9717,31 +10161,31 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı Remove unused tags İstifadəsiz etiketləri silmək - - - Resume torrents - Torrentləri davam etdirmək - - - - Pause torrents - Torrentlərə fasilə - Remove torrents Torrentləri silin - - New Tag - Yeni etiket + + Start torrents + Torrentləri başlatmaq + + + + Stop torrents + Torrentləri dayandırmaq Tag: Etiket: + + + Add tag + Etiket əlavə etmək + Invalid tag name @@ -9888,32 +10332,32 @@ Başqa ad verin və yenidən cəhd edin. TorrentContentModel - + Name Ad - + Progress Gedişat - + Download Priority Endirmə üstünlüyü - + Remaining Qalır - + Availability Mövcuddur - + Total Size Ümumi ölçü @@ -9958,98 +10402,98 @@ Başqa ad verin və yenidən cəhd edin. TorrentContentWidget - + Rename error Ad dəyişmədə xəta - + Renaming Adı dəyişdirilir - + New name: Yeni ad: - + Column visibility Sütunun görünməsi - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək - + Open Açın - + Open containing folder Bu tərkibli qovluğu aç - + Rename... Adını dəyişin.. - + Priority Üstünlük - - + + Do not download Endirməyin - + Normal Normal - + High Yüksək - + Maximum Ən çox - + By shown file order Göstərilən fayl sırasına görə - + Normal priority Adi üstünlük - + High priority Yüksək üstünlük - + Maximum priority Ən yüksək üstünlük - + Priority by shown file order Göstərilən fayl sırasına görə üstünlük @@ -10096,13 +10540,13 @@ Başqa ad verin və yenidən cəhd edin. - + Select file Faylı seçmək - + Select folder Qovluğu seçmək @@ -10177,83 +10621,83 @@ Başqa ad verin və yenidən cəhd edin. Sahələr - + You can separate tracker tiers / groups with an empty line. İzləyici səviyyələrini/qruplarını boş bir sətirlə ayırmaq olar. - + Web seed URLs: Veb göndərişi URL-ları: - + Tracker URLs: İzləyici URL-ları: - + Comments: Şərhlər: - + Source: Mənbə: - + Progress: Gedişat: - + Create Torrent Torrent yaratmaq - - + + Torrent creation failed Torrent yaratmaq alınmadı - + Reason: Path to file/folder is not readable. Səbəbi: Fayla/qovluğa yol oxuna bilən deyil. - + Select where to save the new torrent Yeni torrenti harada saxlayacağınızı seçin - + Torrent Files (*.torrent) Torrent faylları (*.torrent) - + Add torrent to transfer list failed. Köçürmə siyahısına torrent əlavə etmək baş tutmadı. - + Reason: "%1" Səbəb: "%1" - + Add torrent failed Torrent əlavə edilməsi baş tutmadı - + Torrent creator Torrent yaradıcı - + Torrent created: Yaradılan torrent: @@ -10261,32 +10705,32 @@ Başqa ad verin və yenidən cəhd edin. TorrentFilesWatcher - + Failed to load Watched Folders configuration. %1 Baxılmış qovluqların tənzimləməsini yükləmək mümkün olmadı. %1 - + Failed to parse Watched Folders configuration from %1. Error: "%2" %1-dən baxılmış qovluqların tənzimləməsini həll etmək mümkün olmadı. Xəta: "%2" - + Failed to load Watched Folders configuration from %1. Error: "Invalid data format." %1-dən baxılmış qovluqların tənzimləməsini yükləmək mükün olmadı. Xəta: "Səhv verilənlər formatı". - + Couldn't store Watched Folders configuration to %1. Error: %2 İzlənilən qovluq tənzilmləməsi %1-ə/a yazıla bilmədi. Xəta: %2 - + Watched folder Path cannot be empty. İzlənilən qovluq yolu boş ola bilməz. - + Watched folder Path cannot be relative. İzlənilən qovluq yolu nisbi ola bilməz. @@ -10294,44 +10738,31 @@ Başqa ad verin və yenidən cəhd edin. TorrentFilesWatcher::Worker - + Invalid Magnet URI. URI: %1. Reason: %2 Xətalı Magnet keçidi. Keçid ünvanı: %1. Səbəb: %2 - + Magnet file too big. File: %1 Maqnit fayl çox böyükdür. Fayl: %1 - + Failed to open magnet file: %1 Maqnit faylı açıla bilmədi: %1 - + Rejecting failed torrent file: %1 Uğursuz torrent faylından imtina edilir: %1 - + Watching folder: "%1" İzlənilən qovluq: "%1" - - TorrentInfo - - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Faylın oxunması zamanı yaddaş ayırmaq mümkün olmadı. Fayl: "%1". Xəta: "%2" - - - - Invalid metadata - Səhv meta verilənləri - - TorrentOptionsDialog @@ -10360,173 +10791,161 @@ Başqa ad verin və yenidən cəhd edin. Tamamlanmamış torrentlər üçün başqa yoldan istifadə edin - + Category: Kateqoriya: - - Torrent speed limits - Torrent sürət limitləri + + Torrent Share Limits + Torrenti paylamaq limitləri - + Download: Yükləmə: - - + + - - + + Torrent Speed Limits + Torrrent sürəti limiti + + + + KiB/s KB/san - + These will not exceed the global limits Bunlar ümumi hədləri keçməyəcək - + Upload: Göndərmə: - - Torrent share limits - Torrent paylaşım limitləri - - - - Use global share limit - Ümumi paylaşım limitindən istifadə edin - - - - Set no share limit - Paylaşma limiti təyin etməyin - - - - Set share limit to - Paylaşma limiti təyin etmək - - - - ratio - nisbət - - - - total minutes - ümumi dəqiqələr - - - - inactive minutes - qeyri-aktiv dəqiqlələr - - - + Disable DHT for this torrent Bu torrent üçün DHT-ni söndürmək - + Download in sequential order Ardıcıl şəkildə yükləmək - + Disable PeX for this torrent Bu torrent üçün PeX-i söndürmək - + Download first and last pieces first Öncə İlk və son hissələri endirmək - + Disable LSD for this torrent Bu torrent üçün LSD-ni söndürmək - + Currently used categories Hazırda istifadə olunan kateqoriyalar - - + + Choose save path Saxlama yolunu seçin - + Not applicable to private torrents Şəxsi torrentlərə tətbiq olunmur - - - No share limit method selected - Paylaşma limiti üsulu seçilməyib - - - - Please select a limit method first - Öncə paylaşma limitini seçin - TorrentShareLimitsWidget - - - + + + + Default Standart - - - + + + Unlimited Limitsiz - - - + + + Set to Təyin edin - + Seeding time: Paylama vaxtı: - - - - + + + + + + min minutes dəq - + Inactive seeding time: Qeyri-aktiv paylama vaxtı: - + + Action when the limit is reached: + Limitə çatdlıqda fəaliyyət: + + + + Stop torrent + Torrenti dayandırmaq + + + + Remove torrent + Torrenti silmək + + + + Remove torrent and its content + Torrenti və onun tərkiblərini silmək + + + + Enable super seeding for torrent + Torrent üçün super göndərişi aktivləşdirmək + + + Ratio: Nisbət: @@ -10539,32 +10958,32 @@ Başqa ad verin və yenidən cəhd edin. Torrent etiketləri - - New Tag - Yeni etiket + + Add tag + Etiket əlavə etməkEtiket əlavə etmək - + Tag: Etiket: - + Invalid tag name Səhv etiket adı - + Tag name '%1' is invalid. "%1" etiket adı qəbul edilmir - + Tag exists Etiket mövcuddur - + Tag name already exists. Etiket adı artıq mövcuddur. @@ -10572,115 +10991,130 @@ Başqa ad verin və yenidən cəhd edin. TorrentsController - + Error: '%1' is not a valid torrent file. Xəta: '%1' torrent faylı düzgün deyil. - + Priority must be an integer Üstünlük tam ədəd olmalıdır - + Priority is not valid Üstünlük etibarsızdır - + Torrent's metadata has not yet downloaded Torrent meta verilənləri hələlik yüklənməyib - + File IDs must be integers Fayl İD-ləri uyğunlaşdırılmalıdır - + File ID is not valid Fayl İD-ləri etibarlı deyil - - - - + + + + Torrent queueing must be enabled Torrent növbələnməsi aktiv edilməlidir - - + + Save path cannot be empty Saxlama yolu boş ola bilməz - - + + Cannot create target directory Hədəf kataloqu yaradıla bilmir - - + + Category cannot be empty Kateqoriya boş ola bilməz - + Unable to create category Kateqoriya yaratmaq mümkün olmadı - + Unable to edit category Kateqoriyaya düzəliş etmək mümkün olmadı - + Unable to export torrent file. Error: %1 Torrent faylın ixracı mümkün deyil. Xəta: %1 - + Cannot make save path Saxlama yolu yaradıla bilmədi - + + "%1" is not a valid URL + "%1" etibarlı URL deyil + + + + URL scheme must be one of [%1] + URL sxemi bunlardan biri olmalıdır: [%1] + + + 'sort' parameter is invalid 'çeşid' parametri səhvdir - + + "%1" is not an existing URL + "%1" mövcud URL deyil + + + "%1" is not a valid file index. "%1" düzgün indeks faylı deyil. - + Index %1 is out of bounds. %1 indeksi hüdülardan kənardadır. - - + + Cannot write to directory Qovluğa yazmaq mümkün olmadı - + WebUI Set location: moving "%1", from "%2" to "%3" Veb İİ, yerdəyişmə: "%1" "%2"-dən/dan "%3"-ə\a - + Incorrect torrent name Səhv torrent adı - - + + Incorrect category name Səhv kateqoriya adı @@ -10711,196 +11145,191 @@ Başqa ad verin və yenidən cəhd edin. TrackerListModel - + Working İşləyir - + Disabled Söndürülüb - + Disabled for this torrent Bu torrent söndürülüb - + This torrent is private Bu torrent məxfidir - + N/A Əlçatmaz - + Updating... Yenilənir... - + Not working İşləmir - + Tracker error İzləyici xətası - + Unreachable Əlçatmaz - + Not contacted yet Hələ qoşulmayıb - - Invalid status! + + Invalid state! Xətalı vəziyyət! - - URL/Announce endpoint - Keçid ünvanını/son nöqtəni elan edin + + URL/Announce Endpoint + URL/Anons son nöqtəsi - + + BT Protocol + BitTorrent protokolu + + + + Next Announce + Növbəti anons + + + + Min Announce + Ən az anons + + + Tier Səviyyə - - Protocol - Protokol - - - + Status Vəziyyəti - + Peers İştirakçılar - + Seeds Göndəricilər - + Leeches Sui-istifadə edənlər - + Times Downloaded Endirilmə sayı - + Message İsmarıc - - - Next announce - Növbəti anons - - - - Min announce - Ən az anons - - - - v%1 - v%1 - TrackerListWidget - + This torrent is private Bu torrent məxfidir - + Tracker editing İzləyicilərə düzəliş edilir - + Tracker URL: İzləyici URL-u: - - + + Tracker editing failed İzləyicilərə düzəliş alınmadı - + The tracker URL entered is invalid. Daxil edilən izləyici URL-u səhvdir - + The tracker URL already exists. İzləyici URL-u artıq mövcuddur. - + Edit tracker URL... İzləyici URL-na düzəliş edin... - + Remove tracker İzləyicini silmək - + Copy tracker URL İzləyici URL-nu kopyalamaq - + Force reannounce to selected trackers Seçilmiş izləyicilərə məcburi təkrar anons etmək - + Force reannounce to all trackers Bütün izləyicilərə məcburi təkrar anons etmək - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək - + Add trackers... İzləyicilər əlavə edin... - + Column visibility Sütunun görünməsi @@ -10918,37 +11347,37 @@ Başqa ad verin və yenidən cəhd edin. Əlavə ediləcək izləyicilərin siyahısı (hər sətirə bir) - + µTorrent compatible list URL: µTorrent ilə uyğun siyahı URL-u: - + Download trackers list İzləyici siyahısını endirin - + Add Əlavə edin - + Trackers list URL error İzləyici siyahısı ünvanı səhvdir - + The trackers list URL cannot be empty İzləyici siyahısı ünvanı boş ola bilməz - + Download trackers list error İzləyici siyahısını endirilməsində xəta - + Error occurred when downloading the trackers list. Reason: "%1" İzləyici siyahısı endirilən zaman xəta baş verdi. Səbəb: "%1" @@ -10956,62 +11385,62 @@ Başqa ad verin və yenidən cəhd edin. TrackersFilterWidget - + Warning (%1) Xəbərdarlıq (%1) - + Trackerless (%1) İzləyicilərsiz (%1) - + Tracker error (%1) İzləyici xətası (%1) - + Other error (%1) Başqa xəta (%1) - + Remove tracker İzləyicini silmək - - Resume torrents - Torrentləri davam etdirmək + + Start torrents + Torrentləri başlatmaq - - Pause torrents - Torrentlərə fasilə + + Stop torrents + Torrentləri dayandırmaq - + Remove torrents Torrentləri silin - + Removal confirmation Silinmənin təsdiqi - + Are you sure you want to remove tracker "%1" from all torrents? "%1" izləyicisini bütün torrentlərdən silmək istədiyinizə əminisiniz? - + Don't ask me again. Bir daha soruşmamaq. - + All (%1) this is for the tracker filter Hamısı (%1) @@ -11020,7 +11449,7 @@ Başqa ad verin və yenidən cəhd edin. TransferController - + 'mode': invalid argument "mode": səhv arqument @@ -11112,11 +11541,6 @@ Başqa ad verin və yenidən cəhd edin. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Bərpa olunma tarixi yoxlanılır - - - Paused - Fasilədə - Completed @@ -11140,220 +11564,252 @@ Başqa ad verin və yenidən cəhd edin. Xətalı - + Name i.e: torrent name Ad - + Size i.e: torrent size Ölçü - + Progress % Done Gedişat - + + Stopped + Dayandırılıb + + + Status - Torrent status (e.g. downloading, seeding, paused) + Torrent status (e.g. downloading, seeding, stopped) Vəziyyət - + Seeds i.e. full sources (often untranslated) Göndəricilər - + Peers i.e. partial sources (often untranslated) İştirakçılar - + Down Speed i.e: Download speed Endirmə sürəti - + Up Speed i.e: Upload speed Göndərmə sürəti - + Ratio Share ratio Reytinq - + + Popularity + Populyarlıq + + + ETA i.e: Estimated Time of Arrival / Time left Qalan Vaxt - + Category Kateqoriya - + Tags Etiketlər - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Əlavə edilib - + Completed On Torrent was completed on 01/01/2010 08:00 Tamamlanıb - + Tracker İzləyici - + Down Limit i.e: Download limit Endirmə limiti - + Up Limit i.e: Upload limit Göndərmə limiti - + Downloaded Amount of data downloaded (e.g. in MB) Endirildi - + Uploaded Amount of data uploaded (e.g. in MB) Göndərildi - + Session Download Amount of data downloaded since program open (e.g. in MB) Sesiyada yüklənən - + Session Upload Amount of data uploaded since program open (e.g. in MB) Sesiyada göndərilən - + Remaining Amount of data left to download (e.g. in MB) Qalır - + Time Active - Time (duration) the torrent is active (not paused) + Time (duration) the torrent is active (not stopped) Aktivlik müddəti - + + Yes + Bəli + + + + No + Xeyr + + + Save Path Torrent save path Yolu saxla - + Incomplete Save Path Torrent incomplete save path Tamamlanmayanların saxlama yolu - + Completed Amount of data completed (e.g. in MB) Başa çatdı - + Ratio Limit Upload share ratio limit Nisbət həddi - + Last Seen Complete Indicates the time when the torrent was last seen complete/whole Son görünən tamamlanmış - + Last Activity Time passed since a chunk was downloaded/uploaded Sonuncu aktiv - + Total Size i.e. Size including unwanted data Ümumi ölçü - + Availability The number of distributed copies of the torrent Mövcud - + Info Hash v1 i.e: torrent info hash v1 Məlumat heş-i v1 - + Info Hash v2 i.e: torrent info hash v2 Məlumat heş-i v2 - + Reannounce In Indicates the time until next trackers reannounce Növbəti anons vaxtı - - + + Private + Flags private torrents + Məxfi + + + + Ratio / Time Active (in months), indicates how popular the torrent is + Nisbət / vaxt aktivliyi (aylar ərzində) torrentlərin nə qədər populyar olduğunu göstərir + + + + + N/A Ə/D - + %1 ago e.g.: 1h 20m ago %1 əvvəl - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (%2 üçün göndərildi) @@ -11362,339 +11818,319 @@ Başqa ad verin və yenidən cəhd edin. TransferListWidget - + Column visibility Sütunun görünməsi - + Recheck confirmation Yenidən yoxlamanı təsdiq etmək - + Are you sure you want to recheck the selected torrent(s)? Seçilmiş torrent(lər)i yenidən yoxlamaq istədiyinizə əminsiniz? - + Rename Adını dəyişmək - + New name: Yeni ad: - + Choose save path Saxlama yolunu seçmək - - Confirm pause - Fasiləni təsdiq et - - - - Would you like to pause all torrents? - Bütün torrenlərə fasilə verilsin? - - - - Confirm resume - Davam etdirməni təsdiqlə - - - - Would you like to resume all torrents? - Bütün torrentlər davam etdirilsin? - - - + Unable to preview Öncədən baxış alınmadı - + The selected torrent "%1" does not contain previewable files "%1" seçilmiş torrent öncədən baxıla bilən fayllardan ibarət deyil - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək - + Enable automatic torrent management Avtomatik Torrent İdarəetməsini aktiv edin - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Seçilmiş torrent(lər) üçün avtomatik torrent idarəetməsini aktiv etmək istədiyinizə əminsiniz? Torrentlər başqa yerə köçürülə bilər. - - Add Tags - Etiketlər əlavə etmək - - - + Choose folder to save exported .torrent files İxrac edilmiş .torrent fayllarının saxlanılması üçün qovluq seçin - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" ştorrent faylın ixracı baş tutmadı. Torrent: "%1". Saxlama yolu: "%2". Səbəb: "%3" - + A file with the same name already exists Eyni adlı fayl artıq mövcuddur - + Export .torrent file error .torrent faylın ixracı xətası - + Remove All Tags Bütün etiketləri silmək - + Remove all tags from selected torrents? Seçilmiş torrentlərdən bütün etiketlər silinsin? - + Comma-separated tags: Vergüllə ayrılan etiketlər: - + Invalid tag Yalnış etiket - + Tag name: '%1' is invalid Etiket adı: "%1" səhvdir - - &Resume - Resume/start the torrent - Davam etdi&rin - - - - &Pause - Pause the torrent - &Fasilə - - - - Force Resu&me - Force Resume/start the torrent - &Məcburi davam etdirin - - - + Pre&view file... &Fayla öncədən baxış... - + Torrent &options... T&orrent seçimləri... - + Open destination &folder Təyinat &qovluğunu açın - + Move &up i.e. move up in the queue Y&uxarı köçürün - + Move &down i.e. Move down in the queue &Aşağı köçürün - + Move to &top i.e. Move to top of the queue Ən üs&tə köçürün - + Move to &bottom i.e. Move to bottom of the queue Ən aşağı&ya köçürün - + Set loc&ation... Y&er təyin edin... - + Force rec&heck Məcburi tə&krar yoxlayın - + Force r&eannounce Məcburi təkrar anons &edin - + &Magnet link &Maqnit keçid - + Torrent &ID Torrent &İD-si - + &Comment &Şərh - + &Name A&d - + Info &hash v1 Məlumat &heşi v1 - + Info h&ash v2 Məlum&at heşi v2 - + Re&name... Adı&nı dəyişin... - + Edit trac&kers... İz&ləyicilərə düzəliş... - + E&xport .torrent... .torrent faylı i&xrac edin... - + Categor&y Kateqori&ya - + &New... New category... Ye&ni... - + &Reset Reset category Sıfı&rlayın - + Ta&gs Etike&tlər - + &Add... Add / assign multiple tags... Əl&avə edin... - + &Remove All Remove all tags &Hamısını silin - + + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking + Fasilədə/Növbədə/Xətalı/Yoxlamada olduqda torrent təkrar məcburi anons etmək mümkün deyil + + + &Queue &Növbə - + &Copy &Kopyalayın - + Exported torrent is not necessarily the same as the imported İxrac edilən torrent idxal edilən torrent kimi vacib deyil - + Download in sequential order Ardıcıl şəkildə yükləmək - + + Add tags + Etiket əlavə etmək + + + Errors occurred when exporting .torrent files. Check execution log for details. Torrent faylı ixrac olunarkən xətalar baş verdi. Ətraflı məlumat üçün icra olunma jurnalına baxın. - + + &Start + Resume/start the torrent + &Başlatmaq + + + + Sto&p + Stop the torrent + &Dayandırmaq + + + + Force Star&t + Force Resume/start the torrent + Məcburi başla&tmaq + + + &Remove Remove the torrent &Silin - + Download first and last pieces first Öncə İlk və son hissələri endirmək - + Automatic Torrent Management Avtomatik Torrent İdarəetməsi - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Avtomatik rejim o deməkdir ki, müxtəlif torrent xüsusiyyətləri (məs., saxlama yolu) uyğun kateqoriyalara görə müəyyən ediləcəkdir - - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Fasilədə/Növbədə/Xətalı/Yoxlamada olduqda torrent təkrar məcburi anons edilə bilməz - - - + Super seeding mode Super göndərmə rejimi @@ -11739,28 +12175,28 @@ Başqa ad verin və yenidən cəhd edin. Nişan İD-si - + UI Theme Configuration. İİ mövzusu tənzimləməsi. - + The UI Theme changes could not be fully applied. The details can be found in the Log. İİ mövzusu dəyişikliklərini tam olaraq tətbiq etmək mümkün olmadı. Ətraflı məlumat üçün Jurnala bax. - + Couldn't save UI Theme configuration. Reason: %1 İİ mövzusu tənzimləməsini saxlamaq mümkün olmadı. Səbəb: %1 - - + + Couldn't remove icon file. File: %1. Nişan faylını silmək mümkün olmadı. Fayl: %1 - + Couldn't copy icon file. Source: %1. Destination: %2. Nişan faylını kopyalamaq mümkün olmadı. Mənbə: %1. Hədəf: %2 @@ -11768,7 +12204,12 @@ Başqa ad verin və yenidən cəhd edin. UIThemeManager - + + Set app style failed. Unknown style: "%1" + TTətbiq üslubunu təyin etmək mümkün olmadı: "%1" + + + Failed to load UI theme from file: "%1" İİ mövzusunu fayldan yükləmək alınmadı: "%1" @@ -11799,20 +12240,21 @@ Başqa ad verin və yenidən cəhd edin. Upgrade - + Migrate preferences failed: WebUI https, file: "%1", error: "%2" Miqrasiya tərcihləri uğursuz oldu: WebUI https, fayl: "%1", xəta: "%2" - + Migrated preferences: WebUI https, exported data to file: "%1" Miqrasiya tərcihləri: WebUI https, fayla ixrac tarixi: "%1" - - - - + + + + + Invalid value found in configuration file, reverting it to default. Key: "%1". Invalid value: "%2". Tənzimləmə faylında səhv dəyər tapıldı, ilkin vəziyyətinə qaytarılır. Açar: "%1". Səhv dəyər: "%2". @@ -11942,67 +12384,67 @@ Başqa ad verin və yenidən cəhd edin. Sessiya kuki faylına verilmiş bu ad qəbuledilməzdir: "%1". Standart bir ad istifadə edildi. - + Unacceptable file type, only regular file is allowed. Qəbuledilməz fayl növü, yalnız müntəzəm fayllar qəbul edilir. - + Symlinks inside alternative UI folder are forbidden. Alternativ İstifadəçi İnterfeysi daxilində simvolik bağlantılar qadağandır. - + Using built-in WebUI. Daxili Veb İİ istifadə edilir. - + Using custom WebUI. Location: "%1". Xüsusi Veb İİ-nin istifadəsi. Yeri: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Seçilmiş məkan (%1) üçün Veb İİ tərcüməsi uğurla yükləndi. - + Couldn't load WebUI translation for selected locale (%1). Seçilmiş məkan (%1) üçün Veb İİ tərcüməsini yükləmək mümkün olmadı. - + Missing ':' separator in WebUI custom HTTP header: "%1" Veb İİ fərdi HTTP başlığında ":" ayırıcısı çatışmır: "%1" - + Web server error. %1 Veb server xətası. %1 - + Web server error. Unknown error. Veb server xətası. Naməlum xəta. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' Veb İİ: Mənbə başlığı və Hədəf Mənbəyi uyğun gəlmir! İP mənbəyi: "%1". Orojonal başlıq: "%2". Hədəf mənbəyi: "%3" - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' Veb İİ: İstinad başllğı və Hədəf mənşəyi uyğun gəlmir! İP mənbəyi: "%1". İstinad başlığı: "%2". Hədəf mənşəyi: "%3" - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' Veb İİ: Səhv host başlığı və port uyğun gəlmir. Tələb olunan İP mənbəyi: "%1". Server portu: "%2". Alınan host başlığı: "%3" - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' Veb İİ səhv host başlığı. Tələb olunan İP mənbəyi: "%1". Alınan host başlığı: "%2" @@ -12010,125 +12452,133 @@ Başqa ad verin və yenidən cəhd edin. WebUI - + Credentials are not set İstifaəçi hesabı məlumatları göstərilməyib - + WebUI: HTTPS setup successful Veb İİ: HTTPS quraşdırıldı - + WebUI: HTTPS setup failed, fallback to HTTP Veb İİ: HTTPS quraşdırmaq baş tutmadı, HTTP-yə qaytarmaq - + WebUI: Now listening on IP: %1, port: %2 Veb İİ: İndi dinlənilən İP: %1, port: %2 - + Unable to bind to IP: %1, port: %2. Reason: %3 Bağlantı alınmayan İP: %1, port: %2. Səbəb: %3 + + fs + + + Unknown error + Naməlum xəta + + misc - + B bytes B - + KiB kibibytes (1024 bytes) KB - + MiB mebibytes (1024 kibibytes) MB - + GiB gibibytes (1024 mibibytes) QB - + TiB tebibytes (1024 gibibytes) TB - + PiB pebibytes (1024 tebibytes) PB - + EiB exbibytes (1024 pebibytes) EB - + /s per second /san - + %1s e.g: 10 seconds %1s - + %1m e.g: 10 minutes %1dəq - + %1h %2m e.g: 3 hours 5 minutes %1s %2 d - + %1d %2h e.g: 2 days 10 hours %1g %2s - + %1y %2d e.g: 2 years 10 days %1y %2d - - + + Unknown Unknown (size) Naməlum - + qBittorrent will shutdown the computer now because all downloads are complete. qBittorrent, komputeri indi söndürəcəkdir, çünki bütün torrentlərin endirilməsi başa çatdı. - + < 1m < 1 minute < 1dəq diff --git a/src/lang/qbittorrent_be.ts b/src/lang/qbittorrent_be.ts index ec0deb184..12ca0eff7 100644 --- a/src/lang/qbittorrent_be.ts +++ b/src/lang/qbittorrent_be.ts @@ -123,19 +123,19 @@ The old path is invalid: '%1'. - Стары шлях памылковы: '%1'. + Стары шлях памылковы: «%1». The new path is invalid: '%1'. - Новы шлях памылковы: '%1'. + Новы шлях памылковы: «%1». Absolute path isn't allowed: '%1'. - Абсалютны шлях не дазволены: '%1'. + Абсалютны шлях не дазволены: «%1». @@ -170,10 +170,6 @@ Never show again Больш ніколі не паказваць - - Torrent settings - Налады торэнта - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Параметры торэнта @@ -235,25 +231,25 @@ Умова спынення: - - + + None Няма - - + + Metadata received Метаданыя атрыманы - + Torrents that have metadata initially will be added as stopped. Торэнты, якія адпачатку ўтрымліваюць метаданыя, будуць дададзеныя як спыненыя. - + Files checked Файлы правераны @@ -360,7 +356,7 @@ Select None - Зняць усё + Зняць выбар @@ -368,112 +364,112 @@ Захаваць як файл .torrent... - + I/O Error Памылка ўводу/вываду - + Not Available This comment is unavailable Недаступны - + Not Available This date is unavailable Недаступна - + Not available Недаступна - + Magnet link Magnet-спасылка - + Retrieving metadata... Атрыманне метаданых... - - + + Choose save path Выберыце шлях захавання - + No stop condition is set. Умова спынення не зададзена. - + Torrent will stop after metadata is received. Торэнт спыніцца пасля атрымання метаданых. - + Torrent will stop after files are initially checked. Торэнт спыніцца пасля першапачатковай праверкі файлаў. - + This will also download metadata if it wasn't there initially. Гэта таксама спампуе метаданыя, калі іх не было першапачаткова. - + N/A Н/Д - + %1 (Free space on disk: %2) %1 (на дыску вольна: %2) - + Not available This size is unavailable. Недаступна - + Torrent file (*%1) Торэнт-файл (*%1) - + Save as torrent file Захаваць як файл торэнт - + Couldn't export torrent metadata file '%1'. Reason: %2. - Не ўдалося экспартаваць метаданыя торэнта '%1' з прычыны: %2 + Не ўдалося экспартаваць метаданыя торэнта «%1» з прычыны: %2 - + Cannot create v2 torrent until its data is fully downloaded. Немагчыма стварыць торэнт v2, пакуль яго даныя не будуць спампаваны цалкам. - + Filter files... Фільтр файлаў... - + Parsing metadata... Аналіз метаданых... - + Metadata retrieval complete Атрыманне метаданых скончана @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Спампоўванне торэнта... Крыніца: «%1» - + Failed to add torrent. Source: "%1". Reason: "%2" Не ўдалося дадаць торэнт. Крыніца: "%1". Прычына: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Выяўлена спроба паўторнага дадавання наяўнага торэнта. Крыніца: %1. Наяўны торэнт: %2. Вынік: %3 + Выяўлена спроба паўторнага дадавання наяўнага торэнта. Крыніца: %1. Наяўны торэнт: %2. Вынік: %3 - + Merging of trackers is disabled Аб'яднанне трэкераў адключана - + Trackers cannot be merged because it is a private torrent Немагчыма дадаць трэкеры, бо гэта прыватны торэнт - + Trackers are merged from new source Трэкеры з новай крыніцы дададзены + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB МБ - + Recheck torrents on completion Пераправераць торэнты пасля спампоўвання - - + + ms milliseconds мс - + Setting Параметр - + Value Value set for this setting Значэнне - + (disabled) (адключана) - + (auto) (аўта) - - + + min minutes  хв - + All addresses Усе адрасы - + qBittorrent Section Раздзел qBittorrent - - + + Open documentation Адкрыць дакументацыю - + All IPv4 addresses Усе адрасы IPv4 - + All IPv6 addresses Усе адрасы IPv6 - + libtorrent Section Раздзел libtorrent - + Fastresume files Хуткае аднаўленне файлаў - + SQLite database (experimental) База даных SQLite (эксперыментальная) - + Resume data storage type (requires restart) Тып захавання даных узнаўлення (патрабуецца перазапуск) - + Normal Звычайны - + Below normal Ніжэй звычайнага - + Medium Сярэдні - + Low Нізкі - + Very low Вельмі нізкі - + Physical memory (RAM) usage limit Абмежаванне выкарыстання фізічнай памяці (RAM) - + Asynchronous I/O threads Патокі асінхроннага ўводу/вываду - + Hashing threads Патокі хэшавання - + File pool size Памер пула файлаў - + Outstanding memory when checking torrents Дадатковая памяць пры праверцы торэнтаў - + Disk cache Кэш дыска - - - - + + + + + s seconds с - + Disk cache expiry interval Інтэрвал ачысткі дыскавага кэшу - + Disk queue size Памер чаргі дыска - - + + Enable OS cache Уключыць кэш АС - + Coalesce reads & writes Узбуйненне чытання і запісу - + Use piece extent affinity Групаваць змежныя часткі - + Send upload piece suggestions Адпраўляць прапановы частак раздачы - - - - - + + + + + 0 (disabled) 0 (адключана) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Інтэрвал захавання даных узнаўлення [0: адключана] - + Outgoing ports (Min) [0: disabled] Выходныя парты (мін) [0: адключана] - + Outgoing ports (Max) [0: disabled] Выходныя парты (макс) [0: адключана] - + 0 (permanent lease) 0 (пастаянная арэнда) - + UPnP lease duration [0: permanent lease] Працягласць арэнды UPnP [0: пастаянная арэнда] - + Stop tracker timeout [0: disabled] Час чакання спынення трэкера [0: адключана] - + Notification timeout [0: infinite, -1: system default] Час чакання паведамлення [0: бясконца, -1: сістэмнае значэнне] - + Maximum outstanding requests to a single peer Максімальная колькасць невыкананых запытаў да аднаго піра - - - - - + + + + + KiB КБ - + (infinite) (бясконца) - + (system default) (сістэмнае значэнне) - + Delete files permanently - + Выдаляць файлы незваротна - + Move files to trash (if possible) - + Перамяшчаць файлы ў сметніцу (калі магчыма) - + Torrent content removing mode - + Рэжым выдалення змесціва торэнта - + This option is less effective on Linux Гэты параметр менш эфектыўны ў Linux. - + Process memory priority Прыярытэт памяці працэсу - + Bdecode depth limit Абмежаванне глыбіні Bdecode - + Bdecode token limit Абмежаванне токена Bdecode - + Default Па змаўчанні - + Memory mapped files Файлы размешчаныя у памяці - + POSIX-compliant POSIX-сумяшчальны - + Simple pread/pwrite - + Disk IO type (requires restart) Тып дыскавага ўводу-вываду (патрабуецца перазапуск) - - + + Disable OS cache Адключыць кэш АС - + Disk IO read mode Рэжым чытання дыскавага ўводу-вываду - + Write-through Скразны запіс - + Disk IO write mode Рэжым запісу дыскавага ўводу-вываду - + Send buffer watermark - Адправіць вадзяны знак буфера + Адзнака буфера адпраўкі - + Send buffer low watermark - Адправіць нізкі вадзяны знак буфера + Ніжняя адзнака буфера адпраўкі - + Send buffer watermark factor - Адправіць фактар вадзянога знака буфера + Каэфіцыент адзнакі буфера адпраўкі - + Outgoing connections per second Выходныя злучэнні ў секунду - - + + 0 (system default) 0 (сістэмнае значэнне) - + Socket send buffer size [0: system default] Памер буфера адпраўлення сокета [0: сістэмнае значэнне] - + Socket receive buffer size [0: system default] Памер буфера прыёму сокета [0: сістэмнае значэнне] - + Socket backlog size Памер чаргі сокета - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Інтэрвал захавання статыстыкі [0: адключана] - + .torrent file size limit Абмежаванне памеру файла .torrent - + Type of service (ToS) for connections to peers Тып абслугоўвання (ToS) для злучэння з пірамі - + Prefer TCP Перавага за TCP - + Peer proportional (throttles TCP) Прапарцыянальна пірам (рэгулюе TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Падтрымліваць інтэрнацыянальныя імёны даменаў (IDN) - + Allow multiple connections from the same IP address Дазволіць некалькі злучэнняў з аднаго IP-адраса - + Validate HTTPS tracker certificates Правяраць сертыфікаты трэкераў HTTPS - + Server-side request forgery (SSRF) mitigation Папярэджваць серверную падробку запыту (SSRF) - + Disallow connection to peers on privileged ports Забараніць злучэнне з пірамі на прывілеяваных партах - + It appends the text to the window title to help distinguish qBittorent instances Дадае тэкст да загалоўка акна з мэтай адрознення экзэмпляраў qBittorent - + Customize application instance name Дапоўніць назву гэтага экзэмпляра праграмы - + It controls the internal state update interval which in turn will affect UI updates Кіруе інтэрвалам абнаўлення ўнутранага стану, які ўплывае на абнаўленне інтэрфейсу - + Refresh interval Інтэрвал абнаўлення - + Resolve peer host names Вызначаць імя хоста піра - + IP address reported to trackers (requires restart) Паведамляць трэкерам гэты IP-адрас (патрабуецца перазапуск) - + Port reported to trackers (requires restart) [0: listening port] - + Паведамляць трэкерам гэты порт (патрабуецца перазапуск) [0: праслухванне порта] - + Reannounce to all trackers when IP or port changed Пераанансаваць на ўсе трэкеры пры змене IP або порта - + Enable icons in menus Уключыць значкі ў меню - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Уключыць пракід партоў для ўбудаванага трэкера - + Enable quarantine for downloaded files Уключыць каранцін для спампаваных файлаў - + Enable Mark-of-the-Web (MOTW) for downloaded files Ставіць вэб-пазнаку (MOTW) на спампаваныя файлы - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + Ігнараваць памылкі SSL - + (Auto detect if empty) (Аўтавызначэнне, калі пуста) - + Python executable path (may require restart) Шлях да выконвальнага файла Python (можа спатрэбіцца перазапуск) - + Start BitTorrent session in paused state - + Запускаць сеанс qBittorrent спыненым - + sec seconds - с + с - + -1 (unlimited) - + -1 (неабмежавана) - + BitTorrent session shutdown timeout [-1: unlimited] - + Час чакання адключэння сеанса BitTorrent [-1: неабмежавана] - + Confirm removal of tracker from all torrents Пацвярджаць выдаленне трэкера з усіх торэнтаў - + Peer turnover disconnect percentage Працэнт адключэння для абароту піраў - + Peer turnover threshold percentage Працэнт абмежавання для абароту піраў - + Peer turnover disconnect interval Інтэрвал адключэння для абароту піраў - + Resets to default if empty Скінуць на значэнне па змаўчанні, калі пуста - + DHT bootstrap nodes Вузлы самазагрузкі DHT - + I2P inbound quantity Колькасць уваходных паведамленняў I2P - + I2P outbound quantity Колькасць выходных паведамленняў I2P - + I2P inbound length Даўжыня ўваходных паведамленняў I2P - + I2P outbound length Даўжыня выходных паведамленняў I2P - + Display notifications Паказваць апавяшчэнні - + Display notifications for added torrents Паказваць апавяшчэнні для дададзеных торэнтаў - + Download tracker's favicon Загружаць значкі трэкераў - + Save path history length Гісторыя шляхоў захавання (колькасць) - + Enable speed graphs Уключыць графікі хуткасці - + Fixed slots Фіксаваныя слоты - + Upload rate based На аснове хуткасці раздачы - + Upload slots behavior Паводзіны слотаў раздачы - + Round-robin Кругавы - + Fastest upload Хутчэйшая раздача - + Anti-leech Анты-ліч - + Upload choking algorithm Алгарытм прыглушэння раздачы - + Confirm torrent recheck Пацвярджаць пераправерку торэнта - + Confirm removal of all tags Пацвярджаць выдаленне ўсіх тэгаў - + Always announce to all trackers in a tier Заўсёды анансаваць на ўсе трэкеры ва ўзроўні - + Always announce to all tiers Заўсёды анансаваць на ўсе ўзроўні - + Any interface i.e. Any network interface Любы інтэрфейс - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Алгарытм змешанага %1-TCP рэжыму - + Resolve peer countries Вызначаць краіну піра - + Network interface Сеткавы інтэрфэйс - + Optional IP address to bind to Неабавязковы IP-адрас для прывязкі - + Max concurrent HTTP announces Максімум адначасовых анонсаў HTTP - + Enable embedded tracker Задзейнічаць убудаваны трэкер - + Embedded tracker port Порт убудаванага трэкеру @@ -1382,17 +1393,17 @@ Invalid directory path - + Недапушчальны шлях каталога Directory does not exist - + Каталог не існуе Invalid mode, allowed values: %1 - + Недапушчальны рэжым, магчымыя значэнні: %1 @@ -1403,233 +1414,233 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Выконваецца ў партатыўным рэжыме. Аўтаматычна вызначаная папка профілю: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 Выкарыстоўваецца каталог налад: %1 - + Torrent name: %1 Імя торэнта: %1 - + Torrent size: %1 Памер торэнта: %1 - + Save path: %1 Шлях захавання: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Торэнт быў спампаваны за %1. - - + + Thank you for using qBittorrent. Дзякуй за выкарыстанне qBittorrent. - + Torrent: %1, sending mail notification Торэнт: %1, адпраўка апавяшчэння на пошту - + Add torrent failed Не ўдалося дадаць торэнт - + Couldn't add torrent '%1', reason: %2. Не ўдалося дадаць торэнт «%1» з прычыны: %2. - + The WebUI administrator username is: %1 Імя адміністратара вэб-інтэрфейсу: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Пароль адміністратара вэб-інтэрфейсу не быў зададзены. Для гэтага сеанса дадзены часовы пароль: %1 - + You should set your own password in program preferences. Вам варта задаць уласны пароль у наладах праграмы. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Вэб-інтэрфейс адключаны! Каб уключыць вэб-інтэрфейс, адрэдагуйце файл канфігурацыі ўручную. - + Running external program. Torrent: "%1". Command: `%2` Запуск знешняй праграмы. Торэнт: «%1». Каманда: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Не ўдалося запусціць знешнюю праграму. Торэнт: «%1». Каманда: `%2` - + Torrent "%1" has finished downloading - Спампоўванне торэнта '%1' завершана + Спампоўванне торэнта «%1» завершана - + WebUI will be started shortly after internal preparations. Please wait... Вэб-інтэрфейс хутка запусціцца пасля ўнутраннай падрыхтоўкі, Пачакайце... - - + + Loading torrents... Загрузка торэнтаў... - + E&xit В&ыйсці - + I/O Error i.e: Input/Output Error Памылка ўводу/вываду - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. Reason: disk is full. - Памылка ўводу/вываду для торэнта '%1'. + Памылка ўводу/вываду для торэнта «%1». Прычына: %2 - + Torrent added Торэнт дададзены - + '%1' was added. e.g: xxx.avi was added. - '%1' дададзены. + «%1» дададзены. - + Download completed Спампоўванне завершана - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 запушчаны. Ідэнтыфікатар працэсу: %2 - + This is a test email. - + Гэта праверачны электронны ліст. - + Test email - + Праверыць эл. пошту - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. - Спампоўванне '%1' завершана. + Спампоўванне «%1» завершана. - + Information Інфармацыя - + To fix the error, you may need to edit the config file manually. Каб выправіць памылку, можа спатрэбіцца адрэдагаваць файл канфігурацыі ўручную. - + To control qBittorrent, access the WebUI at: %1 Увайдзіце ў вэб-інтэрфейс для кіравання qBittorrent: %1 - + Exit Выйсці - + Recursive download confirmation Пацвярджэнне рэкурсіўнага спампоўвання - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Торэнт «%1» змяшчае файлы .torrent, хочаце працягнуць спампоўванне з іх? - + Never Ніколі - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Рэкурсіўнае спампоўванне файла .torrent з торэнта. Зыходны торэнт: «%1». Файл: «%2» - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Не ўдалося задаць абмежаванне на выкарыстанне фізічнай памяці (RAM). Код памылкі: %1. Тэкст памылкі: «%2» - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Не ўдалося задаць жорсткае абмежаванне на выкарыстанне фізічнай памяці (RAM). Запытаны памер: %1. Жорсткае абмежаванне сістэмы: %2. Код памылкі: %3. Тэкст памылкі: «%4» - + qBittorrent termination initiated Пачалося завяршэнне працы qBittorrent - + qBittorrent is shutting down... Завяршэнне працы qBittorrent... - + Saving torrent progress... Захаванне стану торэнта... - + qBittorrent is now ready to exit Цяпер qBittorrent гатовы да выхаду @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Экспарт... - + Matches articles based on episode filter. Распазнае артыкулы паводле фільтру эпізодаў. - + Example: Прыклад: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match адпавядае 2, 5, эпізодам з 8 па 15, 30 і наступным эпізодам з першага сезона - + Episode filter rules: Правілы фільтравання эпізодаў: - + Season number is a mandatory non-zero value Нумар сезона абавязкова павінен быць ненулявым значэннем - + Filter must end with semicolon Фільтр павінен заканчвацца кропкай з коскай - + Three range types for episodes are supported: Для эпізодаў падтрымліваецца тры тыпы дыяпазонаў: - + Single number: <b>1x25;</b> matches episode 25 of season one Адзіночны нумар: <b>1x25;</b> адпавядае 25-му эпізоду з першага сезона - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Звычайны дыяпазон: <b>1x25-40;</b> адпавядае эпізодам першага сезона з 25-га па 40-ы - + Episode number is a mandatory positive value Нумар эпізоду абавязкова павінен мець дадатнае значэнне - + Rules Правілы - + Rules (legacy) Правілы (састарэлыя) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Бясконцы дыяпазон: <b>1x25-;</b> адпавядае эпізодам першага сезона з 25-га далей, а таксама ўсім эпізодам з наступных сезонаў - + Last Match: %1 days ago Апошняе супадзенне: %1 дзён таму - + Last Match: Unknown Апошняе супадзенне: невядома - + New rule name Новая назва правіла - + Please type the name of the new download rule. Дайце назву новаму правілу спампоўвання. - - + + Rule name conflict Супярэчнасць назваў правілаў - - + + A rule with this name already exists, please choose another name. Правіла з такой назвай ужо існуе, дайце іншую назву. - + Are you sure you want to remove the download rule named '%1'? Сапраўды выдаліць правіла спампоўвання з назвай «%1»? - + Are you sure you want to remove the selected download rules? Сапраўды выдаліць выбраныя правілы спампоўвання? - + Rule deletion confirmation Пацвярджэнне выдалення правіла - + Invalid action Памылковае дзеянне - + The list is empty, there is nothing to export. Спіс пусты, няма чаго экспартаваць. - + Export RSS rules Экспартаваць правілы RSS - + I/O Error Памылка ўводу/вываду - + Failed to create the destination file. Reason: %1 Не ўдалося стварыць файл прызначэння. Прычына: %1 - + Import RSS rules Імпартаваць правілы RSS - + Failed to import the selected rules file. Reason: %1 Не ўдалося імпартаваць выбраны файл правіл. Прычына: %1 - + Add new rule... Дадаць новае правіла... - + Delete rule Выдаліць правіла - + Rename rule... Перайменаваць правіла... - + Delete selected rules Выдаліць вылучаныя правілы - + Clear downloaded episodes... Ачысціць спампаваныя эпізоды... - + Rule renaming Перайменаванне правіла - + Please type the new rule name Дайце назву новаму правілу - + Clear downloaded episodes Ачысціць спампаваныя эпізоды - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Сапраўды ачысціць спіс спампаваных эпізодаў для выбранага правіла? - + Regex mode: use Perl-compatible regular expressions Рэжым Regex: выкарыстоўваце рэгулярныя выразы як у Perl - - + + Position %1: %2 Пазіцыя %1: %2 - + Wildcard mode: you can use - - + + Import error Памылка імпарту - + Failed to read the file. %1 Не ўдалося прачытаць файл. %1 - + ? to match any single character ? адпавядае аднаму любому сімвалу - + * to match zero or more of any characters * адпавядае нулю або некалькім любым сімвалам - + Whitespaces count as AND operators (all words, any order) Прабелы лічацца аператарам «І» (усе словы, любы парадак) - + | is used as OR operator | выкарыстоўваецца як аператар АБО - + If word order is important use * instead of whitespace. Калі парадак слоў важны, выкарыстоўвайце зорачку * замест прабелаў. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Выраз з пустым аператарам %1 (прыклад %2) - + will match all articles. будзе адпавядаць усім артыкулам. - + will exclude all articles. выключыць усе артыкулы. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Немагчыма прааналізаваць даныя ўзнаўлення: памылковы фармат - - + + Cannot parse torrent info: %1 Не ўдаецца прааналізаваць звесткі пра торэнт: : %1 - + Cannot parse torrent info: invalid format Не ўдаецца праналізаваць звесткі аб торэнце: памылковы фармат - + Mismatching info-hash detected in resume data У даных узнаўлення выяўлены неадпаведны хэш - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Не ўдалося захаваць метаданыя торэнта ў «%1». Памылка: %2 - + Couldn't save torrent resume data to '%1'. Error: %2. Не ўдалося захаваць даныя ўзнаўлення торэнта ў «%1». Памылка: %2 @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Немагчыма прааналізаваць даныя ўзнаўлення: %1 - + Resume data is invalid: neither metadata nor info-hash was found Памылковыя даныя ўзнаўлення: метаданыя або інфа-хэш не знойдзены - + Couldn't save data to '%1'. Error: %2 Не ўдалося захаваць даныя ў «%1». Памылка: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Не знойдзена. - + Couldn't load resume data of torrent '%1'. Error: %2 Не ўдалося загрузіць даныя ўзнаўлення торэнта «%1». Памылка: %2 - - + + Database is corrupted. База даных пашкоджана. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Не ўдалося ўключыць рэжым папераджальнай журналізацыі. Памылка: %1. - + Couldn't obtain query result. Не ўдалося атрымаць вынік запыту. - + WAL mode is probably unsupported due to filesystem limitations. Рэжым папераджальнай журналізацыі, імаверна, не падтрымліваецца праз абмежаванні файлавай сістэмы. - + + + Cannot parse resume data: %1 + Немагчыма прааналізаваць даныя ўзнаўлення: %1 + + + + + Cannot parse torrent info: %1 + Не ўдаецца прааналізаваць звесткі пра торэнт: : %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Не ўдалося пачаць транзакцыю. Памылка: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Не ўдалося захаваць метаданыя торэнта. Памылка: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Не ўдалося захаваць даныя ўзнаўлення торэнта «%1». Памылка: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Не ўдалося выдаліць даныя ўзнаўлення торэнта «%1». Памылка: %2 - + Couldn't store torrents queue positions. Error: %1 Не ўдалося захаваць чарговасць торэнтаў. Памылка: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Падтрымка DHT: %1 - - - - - - - - - + + + + + + + + + ON УКЛ - - - - - - - - - + + + + + + + + + OFF ВЫКЛ - - + + Local Peer Discovery support: %1 Падтрымка выяўлення лакальных піраў: %1 - + Restart is required to toggle Peer Exchange (PeX) support Змяненне стану PeX (абмен пірамі) патрабуе перазапуску - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Не ўдалося ўзнавіць торэнт. Торэнт: «%1». Прычына: «%2» - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Не ўдалося ўзнавіць торэнт: выяўлены няўзгоднены ідэнтыфікатар. Прычына: «%1» - - - Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - - - - - Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - Выяўленыя няўзгодненыя даныя: памылковая катэгорыя. Торэнт: «%1». Катэгорыя: «%2» - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" + Выяўлены няўзгодненыя даныя: катэгорыя адсутнічае ў файле канфігурацыі. Катэгорыя будзе адноўлена, а яе налады скінуцца на прадвызначаныя. Торэнт: «%1». Катэгорыя: «%2» + + + + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" + Выяўлены няўзгодненыя даныя: памылковая катэгорыя. Торэнт: «%1». Катэгорыя: «%2» + + + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Выяўлены няўзгодненыя даныя: тэг адсутнічае ў файле канфігурацыі. Тэг будзе адноўлены. Торэнт: «%1». Тэг: «%2» - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - Выяўленыя няўзгодненыя даныя: памылковы тэг. Торэнт: «%1». Катэгорыя: «%2» + Выяўлены няўзгодненыя даныя: памылковы тэг. Торэнт: «%1». Тэг: «%2» - + System wake-up event detected. Re-announcing to all the trackers... Выяўлена падзея абуджэння сістэмы. Выконваецца паўторны анонс для ўсіх трэкераў... - + Peer ID: "%1" Ідэнтыфікатар піра: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: «%1» - + Peer Exchange (PeX) support: %1 Падтрымка PeX (абмен пірамі): %1 - - + + Anonymous mode: %1 Ананімны рэжым: %1 - - + + Encryption support: %1 Падтрымка шыфравання: %1 - - + + FORCED ПРЫМУСОВА - + Could not find GUID of network interface. Interface: "%1" Не ўдалося знайсці GUID сеткавага інтэрфейсу. Інтэрфейс: «%1» - + Trying to listen on the following list of IP addresses: "%1" Спроба праслухоўвання наступнага спіса IP-адрасоў: «%1» - + Torrent reached the share ratio limit. Торэнт дасягнуў абмежавання рэйтынгу раздачы. - + Torrent: "%1". Торэнт: «%1». - Removed torrent. - Выдалены торэнт. - - - Removed torrent and deleted its content. - Торэнт і яго змесціва выдалены. - - - Torrent paused. - Торэнт спынены. - - - + Super seeding enabled. Суперраздача ўключана. - + Torrent reached the seeding time limit. Торэнт дасягнуў абмежавання часу раздачы. - + Torrent reached the inactive seeding time limit. Торэнт дасягнуў абмежавання часу бяздзейнасці раздачы. - + Failed to load torrent. Reason: "%1" Не ўдалося загрузіць торэнт. Прычына «%1» - + I2P error. Message: "%1". Памылка I2P. Паведамленне: «%1». - + UPnP/NAT-PMP support: ON Падтрымка UPnP/ AT-PMP: Укл - + Saving resume data completed. - + Запіс даных аднаўлення завершаны. - + BitTorrent session successfully finished. - + Сеанс BitTorrent паспяхова завершаны. - + Session shutdown timed out. - + Скончыўся час чакання для завяршэння сеанса. - + Removing torrent. - + Выдаленне торэнта. - + Removing torrent and deleting its content. - + Выдаленне торэнта і яго змесціва. - + Torrent stopped. - + Торэнт спынены. - + Torrent content removed. Torrent: "%1" - + Змесціва торэнта выдалена. Торэнт: «%1» - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Не ўдалося выдаліць змесціва торэнта. Торэнт: «%1». Памылка: «%2» - + Torrent removed. Torrent: "%1" - + Торэнт выдалены. Торэнт: «%1» - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Выяўлена спроба паўторнага дадавання наяўнага торэнта. Наяўны торэнт: %1. Вынік: %2 - + Merging of trackers is disabled - Аб'яднанне трэкераў адключана + Аб'яднанне трэкераў адключана - + Trackers cannot be merged because it is a private torrent - Немагчыма дадаць трэкеры, бо гэта прыватны торэнт + Немагчыма дадаць трэкеры, бо гэта прыватны торэнт - + Trackers are merged from new source - Трэкеры з новай крыніцы дададзены + Трэкеры з новай крыніцы дададзены - + UPnP/NAT-PMP support: OFF Падтрымка UPnP/ AT-PMP: Адкл - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Не ўдалося экспартаваць торэнт «%1». Месца прызначэння: «%2». Прычына: «%3» - + Aborted saving resume data. Number of outstanding torrents: %1 Запіс даных узнаўлення перарваны. Колькасць неапрацаваных торэнтаў: %1 - + The configured network address is invalid. Address: "%1" Наладжаны сеткавы адрас памылковы. Адрас: «%1» - - + + Failed to find the configured network address to listen on. Address: "%1" Не ўдалося знайсці наладжаны сеткавы адрас для праслухоўвання. Адрас: «%1» - + The configured network interface is invalid. Interface: "%1" Наладжаны сеткавы інтэрфейс памылковы. Інтэрфейс: «%1» - + Tracker list updated - + Спіс трэкераў абноўлены - + Failed to update tracker list. Reason: "%1" - + Не ўдалося абнавіць спіс трэкераў. Прычына «%1» - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Адхілены памылковы IP-адрас падчас ужывання спіса забароненых IP-адрасоў. IP: «%1» - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Трэкер дададзены ў торэнт. Торэнт: «%1». Трэкер: «%2» - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Трэкер выдалены з торэнта. Торэнт: «%1». Трэкер: «%2» - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Дададзены адрас сіда ў торэнт. Торэнт: «%1». Адрас: «%2» - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Выдалены адрас сіда з торэнта. Торэнт: «%1». Адрас: «%2» - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Не ўдалося выдаліць часткова спампаваны файл. Торэнт: «%1». Прычына: «%2» - Torrent paused. Torrent: "%1" - Торэнт спынены. Торэнт: «%1» - - - + Torrent resumed. Torrent: "%1" Торэнт узноўлены. Торэнт: «%1» - + Torrent download finished. Torrent: "%1" Спампоўванне торэнта завершана. Торэнт: «%1» - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Перамяшчэнне торэнта скасавана. Торэнт: «%1». Крыніца: «%2». Месца прызначэння: «%3» - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Торэнт спынены. Торэнт: «%1» + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Не ўдалося паставіць перамяшчэнне торэнта ў чаргу. Торэнт: «%1». Крыніца: «%2». Месца прызначэння: «%3». Прычына: торэнт зараз перамяшчаецца ў месца прызначэння - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Не ўдалося паставіць перамяшчэнне торэнта ў чаргу. Торэнт: «%1». Крыніца: «%2». Месца прызначэння: «%3». Прычына: абодва шляхі ўказваюць на адно размяшчэнне - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Перамяшчэнне торэнта пастаўлена ў чаргу. Торэнт: «%1». Крыніца: «%2». Месца прызначэння: «%3» - + Start moving torrent. Torrent: "%1". Destination: "%2" Пачалося перамяшчэнне торэнта. Торэнт: «%1». Месца прызначэння: «%2» - + Failed to save Categories configuration. File: "%1". Error: "%2" Не ўдалося захаваць канфігурацыю катэгорый. Файл: «%1». Памылка: «%2» - + Failed to parse Categories configuration. File: "%1". Error: "%2" Не ўдалося прааналізаваць канфігурацыю катэгорый. Файл: «%1». Памылка: «%2» - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Файл IP-фільтра прааналізаваны. Колькасць ужытых правіл: %1 - + Failed to parse the IP filter file Не ўдалося прааналізаваць файл IP-фільтра - + Restored torrent. Torrent: "%1" Торэнт адноўлены. Торэнт: «%1» - + Added new torrent. Torrent: "%1" Дададзены новы торэнт. Торэнт: «%1» - + Torrent errored. Torrent: "%1". Error: "%2" Памылка торэнта .Торэнт: «%1». Памылка: «%2» - Removed torrent. Torrent: "%1" - Торэнт выдалены. Торэнт: «%1» - - - Removed torrent and deleted its content. Torrent: "%1" - Торэнт і яго змесціва выдалены. Торэнт: «%1» - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" У торэнце прапушчаныя параметры SSL. Торэнт: «%1». Паведамленне: «%2» - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Папярэджанне пра памылку файла. Торэнт: «%1». Файл: «%2». Прычына: «%3» - + UPnP/NAT-PMP port mapping failed. Message: "%1" Не ўдалося перанакіраваць парты UPnP/NAT-PMP. Паведамленне: «%1» - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Перанакіраванне партоў UPnP/NAT-PMP выканана. Паведамленне: «%1» - + IP filter this peer was blocked. Reason: IP filter. IP-фільтр - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). адфільтраваны порт (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). прывілеяваны порт (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Не ўдалося злучыцца з URL-адрасам сіда. Торэнт: «%1». Адрас: «%2». Памылка: «%3» - + BitTorrent session encountered a serious error. Reason: "%1" У сеансе BitTorrent выявілася сур'ёзная памылка. Прычына: «%1» - + SOCKS5 proxy error. Address: %1. Message: "%2". Памылка проксі SOCKS5. Адрас: %1. Паведамленне: «%2». - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 абмежаванні ў змяшаным рэжыме - + Failed to load Categories. %1 Не ўдалося загрузіць катэгорыі. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Не ўдалося загрузіць канфігурацыю катэгорый. Файл: «%1». Памылка: «Памылковы фармат даных» - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Торэнт выдалены, але не ўдалося выдаліць яго змесціва і/або часткова спампаваныя файлы. Торэнт: «%1». Памылка: «%2» - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 адключаны - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 адключаны - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Пошук адраса сіда ў DNS не ўдаўся. Торэнт: «%1». Адрас: «%2». Памылка: «%3» - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Атрымана паведамленне пра памылку ад адраса сіда. Торэнт: «%1». Адрас: «%2». Паведамленне: «%3» - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Паспяховае праслухоўванне IP. IP: «%1». Порт: «%2/%3» - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Не ўдалося праслухаць IP. IP: «%1». Порт: «%2/%3». Прычына: «%4» - + Detected external IP. IP: "%1" Выяўлены знешні IP. IP: «%1» - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Торэнт паспяхова перамяшчэнны. Торэнт: «%1». Месца прызначэння: «%2» - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Не ўдалося перамясціць торэнт; «%1». Крыніца: «%2». Месца прызначэння: «%3». Прычына: «%4» @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Не ўдалося запісаць у файл. Прычына: «%1». Торэнт цяпер у рэжыме «толькі аддача». - + Download first and last piece first: %1, torrent: '%2' - Спачатку пампаваць першую і апошнюю часткі: %1, торэнт: '%2' + Спачатку пампаваць першую і апошнюю часткі: %1, торэнт: «%2» - + On Укл. - + Off Выкл. - + Failed to reload torrent. Torrent: %1. Reason: %2 Збой паўторнай загрузкі торэнта. Торэнт: %1. Прычына: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Не ўдалося стварыць даныя ўзнаўлення. Торэнт: «%1». Прычына: «%2» - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Не ўдалося аднавіць торэнт. Магчыма, файлы перамешчаны або сховішча недаступна. Торэнт: «%1». Прычына: «%2» - + Missing metadata Адсутнічаюць метаданыя - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Не ўдалося перайменаваць файл. Торэнт: «%1», файл: «%2», прычына: «%3» - + Performance alert: %1. More info: %2 Папярэджанне аб прадукцыйнасці: %1. Больш інфармацыі: %2 @@ -2822,28 +2843,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=value' - Параметр '%1' павінен прытрымлівацца сінтаксісу '%1=%2' + Параметр «%1» павінен прытрымлівацца сінтаксісу «%1=%2» Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=<value>' - Параметр '%1' павінен прытрымлівацца сінтаксісу '%1=%2' + Параметр «%1» павінен прытрымлівацца сінтаксісу «%1=%2» Expected integer number in environment variable '%1', but got '%2' - Чакаўся цэлы лік у пераменнай асяроддзя − '%1', але атрымана '%2' - - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Параметр '%1' павінен прытрымлівацца сінтаксісу '%1=%2' + Чакаўся цэлы лік у пераменнай асяроддзя − «%1», але атрымана «%2» Expected %1 in environment variable '%2', but got '%3' - Чакалася '%1' у пераменнай асяроддзя '%2', але атрымана '%3' + Чакалася «%1» у пераменнай асяроддзя «%2», але атрымана «%3» @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Параметр '%1' павінен прытрымлівацца сінтаксісу '%1=%2' + Параметр «%1» павінен прытрымлівацца сінтаксісу «%1=%2» @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - Дадаваць торэнты як запушчаныя або спыненыя + Дадаваць торэнты як запушчаныя або спыненыя @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Запусціць торэнты Stop torrents - - - - Resume torrents - Узнавіць торэнты - - - Pause torrents - Спыніць торэнты + Спыніць торэнты @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + Сістэма @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - Таксама незваротна выдаліць файлы + Таксама выдаліць спампаваныя файлы @@ -3264,7 +3264,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Copy - Капіяваць + Скапіяваць @@ -3390,12 +3390,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + Фармат шаблона Plain text - + Звычайны тэкст @@ -3405,32 +3405,28 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Regular expression - + Рэгулярны выраз GUIAddTorrentManager - + Downloading torrent... Source: "%1" Спампоўванне торэнта... Крыніца: «%1» - Trackers cannot be merged because it is a private torrent - Немагчыма дадаць трэкеры, бо гэта прыватны торэнт - - - + Torrent is already present Торэнт ужо існуе - + Trackers cannot be merged because it is a private torrent. - + Немагчыма дадаць трэкеры, бо гэта прыватны торэнт. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Торэнт «%1» ужо ёсць у спісе. Хочаце дадаць трэкеры з новай крыніцы? @@ -3446,12 +3442,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Metadata error: '%1' entry not found. - Памылка метаданых: запіс '%1' не знойдзены. + Памылка метаданых: запіс «%1» не знойдзены. Metadata error: '%1' entry has invalid type. - Памылка метаданых: запіс '%1' мае памылковы тып. + Памылка метаданых: запіс «%1» мае памылковы тып. @@ -3489,7 +3485,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Bad Http request, closing socket. IP: %1 - + Хібны запыт Http, закрыццё сокета. IP: %1 @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Файлы відарысаў, якія падтрымліваюцца + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Кіраванне сілкаваннем знайшло падыходны інтэрфейс D-Bus. Інтэрфейс: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Памылка кіравання энергаспажываннем. Дзеянне: %1. Памылка: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Нечаканая памылка кіравання энергаспажываннем. Стан: %1. Памылка: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3657,7 +3687,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Edit - &Рэдагаваць + &Кіраванне @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Параметры... - - &Resume - &Узнавіць - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + Вы&ключыць камп'ютар @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Закрыць акно - - R&esume All - У&знавіць усё - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + &Запусціць Sto&p - + &Спыніць R&esume Session - + &Працягнуць сеанс Pau&se Session - + П&рыпыніць сеанс @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System Перайсці ў &гібернацыю - - S&hutdown System - Вы&ключыць камп'ютар - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &Пра qBittorrent - - &Pause - &Спыніць - - - P&ause All - С&пыніць усе - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Паказаць - + Check for program updates Праверыць абнаўленні праграмы @@ -3978,387 +3988,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Калі вам падабаецца qBittorrent, калі ласка, зрабіце ахвяраванне! - + Execution Log Журнал выканання - + Clear the password Прыбраць пароль - + &Set Password &Задаць пароль - + Preferences Налады - + &Clear Password &Прыбраць пароль - + Transfers Перадачы - - + + qBittorrent is minimized to tray qBittorrent згорнуты ў вобласць апавяшчэнняў - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only Толькі значкі - + Text Only Толькі тэкст - + Text Alongside Icons Тэкст побач са значкамі - + Text Under Icons Тэкст пад значкамі - + Follow System Style Паводле сістэмнага стылю - - + + UI lock password Пароль блакіроўкі інтэрфейсу - - + + Please type the UI lock password: Увядзіце пароль, каб заблакіраваць інтэрфейс: - + Are you sure you want to clear the password? Сапраўды хочаце ачысціць пароль? - + Use regular expressions Выкарыстоўваць рэгулярныя выразы - - + + Search Engine - Пошукавая сістэма + Пошукавая сістэма - + Search has failed - Памылка пошуку + Памылка пошуку - + Search has finished - Пошук завершаны + Пошук завершаны - + Search Пошук - + Transfers (%1) Перадачы (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent абнавіўся і патрабуе перазапуску для актывацыі новых функцый. - + qBittorrent is closed to tray qBittorrent закрыты ў вобласць апавяшчэнняў - + Some files are currently transferring. Некаторыя файлы зараз перадаюцца. - + Are you sure you want to quit qBittorrent? Сапраўды хочаце выйсці з qBittorrent? - + &No &Не - + &Yes &Так - + &Always Yes &Заўсёды Так - + Options saved. Параметры захаваны. - + [PAUSED] %1 %1 is the rest of the window title - + [ПРЫПЫНЕНЫ] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [С: %1, З: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Не ўдалося спампаваць праграму ўсталявання Python. Памылка: %1. +Усталюйце яго ўручную. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Не ўдалося перайменаваць файл усталявання Python. Крыніца: «%1». Месца прызначэння: «%2». - + Python installation success. - + Усталяванне Python выканана. - + Exit code: %1. - + Reason: installer crashed. - + Прычына: аварыйнае спыненне ўсталявання. - + Python installation failed. - + Збой усталявання Python. - + Launching Python installer. File: "%1". - + Запуск праграмы ўсталявання Python. Файл: «%1». - - + + Missing Python Runtime Адсутнічае асяроддзе выканання Python - + qBittorrent Update Available Даступна абнаўленне qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Для выкарыстання пошукавай сістэмы патрабуецца Python, але падобна, што ён не ўсталяваны. Хочаце ўсталяваць? - + Python is required to use the search engine but it does not seem to be installed. Для выкарыстання пошукавай сістэмы патрабуецца Python, але падобна, што ён не ўсталяваны. - - + + Old Python Runtime Старое асяроддзе выканання Python - + A new version is available. Даступна новая версія. - + Do you want to download %1? Хочаце спампаваць %1? - + Open changelog... Адкрыць спіс змен... - + No updates available. You are already using the latest version. Няма абнаўленняў. Вы ўжо карыстаецеся апошняй версіяй. - + &Check for Updates &Праверыць абнаўленні - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Ваша версія Python (%1) састарэла. Патрабуецца мінімум: %2. Хочаце ўсталяваць навейшую версію? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. У вас састарэлая версія Python (%1). Абнавіце яго да апошняй версіі, каб пошукавая сістэма працавала. Патрабуецца прынамсі %2 - + Paused - Прыпынены + Прыпынены - + Checking for Updates... Праверка абнаўленняў... - + Already checking for program updates in the background У фоне ўжо ідзе праверка абнаўленняў праграмы - + Python installation in progress... - + Выконваецца ўсталяванне Python... - + Failed to open Python installer. File: "%1". - + Не ўдалося адкрыць праграму ўсталявання Python. Файл: «%1». - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Файл праграмы ўсталявання Python не прайшоў праверку хэш-сумы MD5. Файл: «%1». Атрыманы хэш: «%2». Чаканы хэш: «%3». - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Файл праграмы ўсталявання Python не прайшоў праверку хэш-сумы SHA3-512. Файл: «%1». Атрыманы хэш: «%2». Чаканы хэш: «%3». - + Download error Памылка спампоўвання - Python setup could not be downloaded, reason: %1. -Please install it manually. - Не ўдалося спампаваць праграму ўсталявання Python, прычына: %1. -Усталюйце яго ўручную. - - - - + + Invalid password Памылковы пароль - + Filter torrents... Фільтраваць торэнты... - + Filter by: Фільтры - + The password must be at least 3 characters long Пароль павінен змяшчаць не менш за 3 сімвалы. - - - + + + RSS (%1) RSS (%1) - + The password is invalid Уведзены пароль памылковы - + DL speed: %1 e.g: Download speed: 10 KiB/s Спамп. %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Разд: %1 - + Hide Схаваць - + Exiting qBittorrent Сканчэнне працы qBittorrent - + Open Torrent Files Адкрыць Torrent-файлы - + Torrent Files Torrent-файлы @@ -4555,7 +4560,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + Памылка SSL, адрас: «%1», памылкі: «%2» @@ -5852,47 +5857,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 Збой злучэння, нявызначаны адказ: %1 - + Authentication failed, msg: %1 Збой аўтэнтыфікацыі, msg: %1 - + <mail from> was rejected by server, msg: %1 <mail from> адхілена серверам, паведамленне: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> адхілена серверам, паведамленне: %1 - + <data> was rejected by server, msg: %1 <data>адхілена серверам, паведамленне: %1 - + Message was rejected by the server, error: %1 Паведамленне адхілена серверам, памылка: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 Памылка паведамлення на email: %1 @@ -5934,10 +5939,6 @@ Please install it manually. RSS RSS - - Web UI - Вэб-інтэрфейс - Advanced @@ -5958,14 +5959,6 @@ Please install it manually. Confirm when deleting torrents Пацвярджаць выдаленне торэнтаў - - Shows a confirmation dialog upon pausing/resuming all the torrents - Паказвае дыялог пацвярджэння, перш чым спыніць/узнавіць усе торэнты - - - Confirm "Pause/Resume all" actions - Пацвярджаць дзеянні «Спыніць/Узнавіць усе» - Use alternating row colors @@ -5982,10 +5975,6 @@ Please install it manually. Always Заўсёды - - Paused torrents only - Толькі для спыненых - Action on double-click @@ -5996,10 +5985,6 @@ Please install it manually. Downloading torrents: Торэнты, якія спампоўваюцца: - - Start / Stop Torrent - Запусціць / спыніць торэнт - @@ -6035,7 +6020,7 @@ Please install it manually. Show splash screen on start up - Паказваць застаўку падчас запуску + Паказваць падчас запуску застаўку @@ -6058,179 +6043,179 @@ Please install it manually. КБ - + + Show free disk space in status bar + + + + Torrent content layout: Структура змесціва торэнта: - + Original Зыходная - + Create subfolder Стварыць падпапку - + Don't create subfolder Не ствараць падпапку - + The torrent will be added to the top of the download queue Торэнт будзе дададзены ў пачатак чаргі спампоўвання - + Add to top of queue The torrent will be added to the top of the download queue Дадаць у пачатак чаргі - + When duplicate torrent is being added Пры паўторным дадаванні торэнта - + Merge trackers to existing torrent Дадаваць новыя трэкеры ў наяўны торэнт - + Keep unselected files in ".unwanted" folder Захоўваць нявыбраныя файлы ў папцы «.unwanted» - + Add... Дадаць... - + Options.. Параметры.. - + Remove Выдаліць - + Email notification &upon download completion Апавяшчэнне па электроннай пошце пасля &завяршэння спампоўвання - + Send test email - + Адправіць праверачны ліст - + Run on torrent added: - + Запускаць пры дадаванні торэнта: - + Run on torrent finished: - + Запускаць пры завяршэнні торэнта: - + Peer connection protocol: Пратакол злучэння для піраў: - + Any Любы - + I2P (experimental) I2P (эксперыментальны) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Калі ўключаны «змяшаны рэжым», торэнты I2P могуць атрымліваць піры і з іншых крыніц, акрамя трэкера, і падлучацца да звычайных IP-адрасоў, без забеспячэння ананімнасці. Можа быць карысным, калі карыстальнік не зацікаўлены ў ананімнасці, але хоча мець магчымасць злучацца з пірамі I2P.</p></body></html> - - - + Mixed mode Змяшаны рэжым - Some options are incompatible with the chosen proxy type! - Некаторыя параметры несумяшчальныя з выбраным тыпам проксі! + Некаторыя параметры несумяшчальныя з выбраным тыпам проксі! - + If checked, hostname lookups are done via the proxy Калі пазначана, пошук назвы хоста выконваецца праз проксі - + Perform hostname lookup via proxy Выконваць пошук назвы хоста праз проксі - + Use proxy for BitTorrent purposes Выкарыстоўваць проксі для працы BitTorrent - + RSS feeds will use proxy RSS-каналы будуць выкарыстоўваць проксі - + Use proxy for RSS purposes Выкарыстоўваць проксі для мэт RSS - + Search engine, software updates or anything else will use proxy Пошукавік, модуль абнаўлення і іншыя кампаненты будуць выкарыстоўваць проксі - + Use proxy for general purposes Выкарыстоўваць проксі для агульных задач - + IP Fi&ltering &Фільтрацыя па IP - + Schedule &the use of alternative rate limits &Запланаваць выкарыстанне альтэрнатыўных абмежаванняў хуткасці - + From: From start time З: - + To: To end time Да: - + Find peers on the DHT network Шукаць піры праз сетку DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6239,188 +6224,190 @@ Disable encryption: Only connect to peers without protocol encryption Адключыць шыфраванне: злучацца толькі з вузламі, якія НЕ выкарыстоўваюць шыфраванне пратаколу - + Allow encryption Дазволіць шыфраванне - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Больш інфармацыі</a>) - + Maximum active checking torrents: Максімальная колькасць торэнтаў, якія правяраюцца: - + &Torrent Queueing &Чарговасць торэнтаў - + When total seeding time reaches Калі агульны час раздачы дасягне - + When inactive seeding time reaches Калі неактыўны час раздачы дасягне - A&utomatically add these trackers to new downloads: - Аўта&матычна дадаваць гэтыя трэкеры ў новыя спампоўванні: - - - + RSS Reader Менеджар RSS - + Enable fetching RSS feeds Уключыць атрыманне RSS-каналаў - + Feeds refresh interval: Інтэрвал абнаўлення каналаў: - + Same host request delay: Затрымка паўторнага запыту хоста: - + Maximum number of articles per feed: Максімальная колькасць артыкулаў на канал: - - - + + + min minutes  хв - + Seeding Limits Абмежаванне раздачы - Pause torrent - Спыніць торэнт - - - + Remove torrent Выдаліць торэнт - + Remove torrent and its files Выдаліць торэнт і яго файлы - + Enable super seeding for torrent Уключыць для торэнта рэжым суперраздачы - + When ratio reaches Калі рэйтынг раздачы дасягне паказчыка - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Спыніць торэнт - + A&utomatically append these trackers to new downloads: - + Аўта&матычна дадаваць гэтыя трэкеры ў новыя спампоўванні: - + Automatically append trackers from URL to new downloads: - + Аўтаматычна дадаваць трэкеры з URL-адраса ў новыя спампоўванні: - + URL: - Адрас: + Адрас: - + Fetched trackers - + Атрыманыя трэкеры - + Search UI - + Інтэрфейс пошуку - + Store opened tabs - + Захоўваць адкрытыя ўкладкі - + Also store search results - + Таксама захоўваць вынікі пошуку - + History length - + Даўжыня гісторыі (колькасць) - + RSS Torrent Auto Downloader Аўтаспампоўванне торэнтаў з RSS - + Enable auto downloading of RSS torrents Уключыць аўтаспампоўванне торэнтаў з RSS - + Edit auto downloading rules... Рэдагаваць правілы аўтаспампоўвання... - + RSS Smart Episode Filter Разумны фільтр эпізодаў з RSS - + Download REPACK/PROPER episodes Спампоўваць эпізоды REPACK/PROPER - + Filters: Фільтры: - + Web User Interface (Remote control) Вэб-інтэрфейс (Аддаленае кіраванне) - + IP address: IP-адрас: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6429,41 +6416,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv «::» для любога IPv6-адраса або «*» для абодвух IPv4 і IPv6. - + Ban client after consecutive failures: Блакіраваць кліента пасля чарады збояў: - + Never Ніколі - + ban for: заблакіраваць на: - + Session timeout: - Прыпыніць сувязь на: + Час чакання сеанса: - + Disabled Адключана - Enable cookie Secure flag (requires HTTPS) - Ужываць для cookie пазнаку Secure (патрабуецца HTTPS) - - - + Server domains: Дамены сервера: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Выкарыстоўваць HTTPS замест HTTP - + Bypass authentication for clients on localhost Не выкарыстоўваць аўтэнтыфікацыю кліентаў для localhost - + Bypass authentication for clients in whitelisted IP subnets Не выкарыстоўваць аўтэнтыфікацыю кліентаў для дазволеных падсетак - + IP subnet whitelist... Дазволеныя падсеткі... - + Use alternative WebUI - + Выкарыстоўваць альтэрнатыўны вэб-інтэрфейс - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name А&бнаўляць мой дынамічны DNS @@ -6519,12 +6502,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Пошук + Пошук WebUI - + Вэб-інтэрфейс @@ -6539,29 +6522,29 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + Стыль: Color scheme: - + Схема колераў: Stopped torrents only - + Толькі для спыненых торэнтаў Start / stop torrent - + Запусціць / спыніць торэнт Open torrent options dialog - + Адкрыць акно параметраў торэнта @@ -6602,7 +6585,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - + &Файлы журнала @@ -6620,101 +6603,101 @@ Use ';' to split multiple entries. Can use wildcard '*'.Выдаляць рэзервовыя копіі старэйшыя за: - + Show external IP in status bar - + Паказваць знешні IP у радку стану - + When adding a torrent Пры дадаванні торэнта - + Bring torrent dialog to the front Паказваць акно дадавання торэнта па-над іншымі вокнамі - + The torrent will be added to download list in a stopped state - + Торэнт будзе дадавацца ў спіс спампоўвання спыненым - + Also delete .torrent files whose addition was cancelled Таксама выдаляюцца файлы .torrent дадаванне якіх было скасавана - + Also when addition is cancelled У тым ліку, калі дадаванне скасоўваецца - + Warning! Data loss possible! Увага! Магчыма страта даных! - + Saving Management Кіраванне захаваннем - + Default Torrent Management Mode: Рэжым кіравання торэнтам па змаўчанні: - + Manual Ручны - + Automatic Аўтаматычны - + When Torrent Category changed: Пры змене катэгорыі торэнта: - + Relocate torrent Перамясціць торэнт - + Switch torrent to Manual Mode Пераключыць торэнт у Ручны рэжым - - + + Relocate affected torrents Перамясціць закранутыя торэнты - - + + Switch affected torrents to Manual Mode Пераключыць закранутыя торэнты ў Ручны рэжым - + Use Subcategories Выкарыстоўваць падкатэгорыі - + Default Save Path: Шлях захавання па змаўчанні: - + Copy .torrent files to: - Капіяваць .torrent файлы ў: + Капіяваць файлы .torrent у: @@ -6722,26 +6705,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Паказваць &qBittorrent у вобласці апавяшчэнняў - &Log file - &Файл журнала - - - + Display &torrent content and some options Паказваць змесціва &торэнта і некаторыя параметры - + De&lete .torrent files afterwards Выда&ляць файлы .torrent адразу пасля дадавання - + Copy .torrent files for finished downloads to: Капіяваць файлы .torrent завершаных спампоўванняў у: - + Pre-allocate disk space for all files Папярэдне рэзерваваць месца для ўсіх файлаў @@ -6771,10 +6750,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Прагляд файла, інакш адкрыць папку прызначэння - - Show torrent options - Паказаць параметры торэнта - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.год/гады - + Log performance warnings - The torrent will be added to download list in a paused state - Торэнт будзе дададзены ў спіс спампоўвання ў спыненым стане - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Не пачынаць спампоўванне аўтаматычна - + Whether the .torrent file should be deleted after adding it Ці патрэбна выдаляць файлы .torrent адразу ж пасля іх дадавання - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Каб паменшыць фрагментацыю, вылучаць на дыску ўсё патрэбнае месца да пачатку спампоўвання. Карысна толькі для цвёрдых дыскаў. - + Append .!qB extension to incomplete files Дадаваць пашырэнне .!qB да незавершаных файлаў - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog Уключыць акно рэкурсіўнага спампоўвання - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Аўтаматычны: пэўныя ўласцівасці торэнта (напр. шлях захавання) вызначаюцца ў залежнасці ад катэгорыі Ручны: пэўныя ўласцівасці торэнта (напр. шлях захавання) вызначаюцца ўручную - + When Default Save/Incomplete Path changed: Калі змяніўся шлях па змаўчанні для захавання/незавершаных: - + When Category Save Path changed: Пры змене шляху захавання для катэгорыі: - + Use Category paths in Manual Mode Выкарыстоўваць шляхі катэгорый у ручным рэжыме - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6922,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyСтан акна qBittorrent пры запуску - + Torrent stop condition: Умова спынення торэнта: - - + + None Нічога - - + + Metadata received Метаданыя атрыманы - - + + Files checked Файлы правераны - + Ask for merging trackers when torrent is being added manually Спытаць мяне, ці аб'ядноўваць трэкеры, калі торэнт дадаецца ўручную - + Use another path for incomplete torrents: Выкарыстоўваць іншы шлях для незавершаных торэнтаў: - + Automatically add torrents from: Аўтаматычна дадаваць торэнты з: - + Excluded file names Выключаць файлы з назвай - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6982,523 +6953,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Атрымальнік - + To: To receiver Да: - + SMTP server: SMTP-сервер: - + Sender Адпраўшчык - + From: From sender З: - + This server requires a secure connection (SSL) Гэты сервер патрабуе бяспечнага злучэння (SSL) - - + + Authentication Аўтэнтыфікацыя - - - - + + + + Username: Імя карыстальніка: - - - - + + + + Password: Пароль: - + Run external program Запуск знешняй праграмы - Run on torrent added - Запускаць пры дадаванні торэнта - - - Run on torrent finished - Запускаць пры завяршэнні торэнта - - - + Show console window Паказваць акно кансолі - + TCP and μTP TCP і μTP - + Listening Port Порт які праслухоўваецца - + Port used for incoming connections: Порт для ўваходных злучэнняў: - + Set to 0 to let your system pick an unused port Задайце значэнне 0, каб сістэма сама выбірала незаняты порт - + Random Выпадковы - + Use UPnP / NAT-PMP port forwarding from my router Выкарыстоўваць UPnP / NAT-PMP пракід партоў майго маршрутызатара - + Connections Limits Абмежаванні злучэнняў - + Maximum number of connections per torrent: Максімальная колькасць злучэнняў на торэнт: - + Global maximum number of connections: Максімальная колькасць злучэнняў: - + Maximum number of upload slots per torrent: Максімальная колькасць слотаў раздачы на торэнт: - + Global maximum number of upload slots: Максімальная колькасць слотаў раздач: - + Proxy Server Проксі-сервер - + Type: Тып: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Хост: - - - + + + Port: Порт: - + Otherwise, the proxy server is only used for tracker connections У адваротным выпадку проксі-сервер выкарыстоўваецца толькі для злучэнняў з трэкерамі - + Use proxy for peer connections Выкарыстоўваць проксі для злучэння з пірамі - + A&uthentication &Аўтэнтыфікацыя - Info: The password is saved unencrypted - Інфармацыя: пароль будзе захаваны ў незашыфраваным выглядзе + Інфармацыя: пароль будзе захаваны ў незашыфраваным выглядзе - + Filter path (.dat, .p2p, .p2b): Шлях да фільтраў (.dat, .p2p, .p2b): - + Reload the filter Перазагрузіць фільтр - + Manually banned IP addresses... Адрасы IP, забароненыя ўручную… - + Apply to trackers Ужываць да трэкераў - + Global Rate Limits Агульныя абмежаванні хуткасці - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s КБ/с - - + + Upload: Раздача: - - + + Download: Спампоўванне: - + Alternative Rate Limits Альтэрнатыўныя абмежаванні хуткасці - + Start time Час запуску - + End time Час заканчэння - + When: Калі: - + Every day Кожны дзень - + Weekdays Будні - + Weekends Выхадныя - + Rate Limits Settings Налады абмежавання хуткасці - + Apply rate limit to peers on LAN Ужываць абмежаванне хуткасці да лакальных піраў LAN - + Apply rate limit to transport overhead Ужываць абмежаванне хуткасці да службовага трафіку - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Ужываць абмежаванне хуткасці да пратаколу µTP - + Privacy Канфідэнцыйнасць - + Enable DHT (decentralized network) to find more peers Уключыць DHT (дэцэнтралізаваную сетку), каб знайсці больш піраў - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Абмен пірамі з сумяшчальны кліентамі Bittorrent (µTorrent, Vuze, …) - + Enable Peer Exchange (PeX) to find more peers Уключыць абмен пірамі (PeX), каб знайсці больш піраў - + Look for peers on your local network Шукаць піры ў лакальнай сетцы - + Enable Local Peer Discovery to find more peers Уключыць выяўленне лакальных піраў, каб знайсці больш піраў - + Encryption mode: Рэжым шыфравання: - + Require encryption Патрабаваць шыфраванне - + Disable encryption Адключыць шыфраванне - + Enable when using a proxy or a VPN connection Уключыць, калі выкарыстоўваюцца злучэнні проксі альбо VPN - + Enable anonymous mode Уключыць ананімны рэжым - + Maximum active downloads: Максімальная колькасць актыўных спампоўванняў: - + Maximum active uploads: Максімальная колькасць актыўных раздач: - + Maximum active torrents: Максімальная колькасць актыўных торэнтаў: - + Do not count slow torrents in these limits Не ўлічваць колькасць павольных торэнтаў у гэтых абмежаваннях - + Upload rate threshold: Абмежаванне хуткасці раздачы: - + Download rate threshold: Абмежаванне хуткасці спампоўвання: - - - - + + + + sec seconds с - + Torrent inactivity timer: Таймер неактыўнасці торэнта: - + then затым - + Use UPnP / NAT-PMP to forward the port from my router Выкарыстоўваць UPnP / NAT-PMP для перанакіравання порта ад майго маршрутызатара - + Certificate: Сертыфікат: - + Key: Ключ: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Інфармацыя аб сертыфікатах</a> - + Change current password Змяніць бягучы пароль - Use alternative Web UI - Выкарыстоўваць альтэрнатыўны вэб-інтэрфейс - - - + Files location: Размяшчэнне файла: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Спіс альтэрнатыўных вэб-інтэрфейсаў</a> - + Security Бяспека - + Enable clickjacking protection Уключыць абарону ад клікджэкінга - + Enable Cross-Site Request Forgery (CSRF) protection Уключыць абарону ад падробкі міжсайтавых запытаў (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Уключыць праверку Host загалоўкаў - + Add custom HTTP headers Дадаць ўласныя загалоўкі HTTP - + Header: value pairs, one per line Загаловак: пары значэнняў, па адной на радок - + Enable reverse proxy support Уключыць падтрымку reverse proxy - + Trusted proxies list: Спіс давераных проксі: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Прыклады налад адваротнага проксі</a> - + Service: Сэрвіс: - + Register Рэгістрацыя - + Domain name: Даменнае імя: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Пасля ўключэння гэтага параметру вы можаце <strong>незваротна страціць</strong> свае torrent-файлы! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Калі ўключыць другі параметр (&ldquo;У тым ліку, калі дадаванне скасоўваецца&rdquo;) файл .torrent <strong>будзе выдалены,</strong> нават, калі націснуць &ldquo;<strong>Скасаваць</strong>&rdquo; у дыялогавым акне &ldquo;Дадаць торэнт&rdquo; @@ -7508,12 +7466,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Выберыце файл тэмы qBittorrent - + Choose Alternative UI files location Выбраць альтэрнатыўнае размяшчэнне для файлаў інтэрфейсу - + Supported parameters (case sensitive): Параметры якія падтрымліваюцца (з улікам рэгістру): @@ -7533,183 +7491,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Адключана, бо не ўдалося выявіць наяўнасць вобласці апавяшчэнняў - + No stop condition is set. Умова спынення не зададзена. - + Torrent will stop after metadata is received. Торэнт спыніцца пасля атрымання метаданых. - + Torrent will stop after files are initially checked. Торэнт спыніцца пасля першапачатковай праверкі файлаў. - + This will also download metadata if it wasn't there initially. Гэта таксама спампуе метаданыя, калі іх не было першапачаткова. - + %N: Torrent name %N: Назва торэнта - + %L: Category %L: Катэгорыя - + %F: Content path (same as root path for multifile torrent) %F: Шлях прызначэння (тое ж, што і каранёвы шлях для шматфайлавага торэнта) - + %R: Root path (first torrent subdirectory path) %R: Каранёвы шлях (галоўны шлях для падкаталога торэнта) - + %D: Save path %D: Шлях захавання - + %C: Number of files %C: Колькасць файлаў - + %Z: Torrent size (bytes) %Z: Памер торэнта (байты) - + %T: Current tracker %T: Бягучы трэкер - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Падказка: вазьміце параметр у двукоссі, каб пазбегнуць абразання на прабелах (напр. "%N") - + Test email - + Праверыць эл. пошту - + Attempted to send email. Check your inbox to confirm success - + Выканана спроба адправіць электронны ліст. Праверце ўваходную пошту, каб упэўніцца ў паспяховасці - + (None) (Няма) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Торэнт будзе лічыцца павольным, калі яго хуткасць спампоўвання або раздачы застаецца меншай за пазначанае значэнне на «Час бяздзейнасці торэнта» - + Certificate Сертыфікат - + Select certificate Выберыце сертыфікат - + Private key Закрыты ключ - + Select private key Выберыце закрыты ключ - + WebUI configuration failed. Reason: %1 Не ўдалася канфігурацыя вэб-інтэрфейсу. Прычына: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 найлепш адпавядае цёмнай тэме Windows - + System System default Qt style - + Сістэма - + Let Qt decide the style for this system - + Dark Dark color scheme - + Цёмная - + Light Light color scheme - + Светлая - + System System color scheme - + Сістэма - + Select folder to monitor - Выбраць папку для наглядання + Выберыце папку для назірання - + Adding entry failed Няўдалае дадаванне запісу - + The WebUI username must be at least 3 characters long. Імя карыстальніка вэб-інтэрфейсу павінна змяшчаць не менш за 3 сімвалы. - + The WebUI password must be at least 6 characters long. Пароль вэб-інтэрфейсу павінен змяшчаць не менш за 6 сімвалаў. - + Location Error Памылка размяшчэння - - + + Choose export directory Выберыце каталог для экспарту - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Калі гэты параметр уключаны, qBittorrent будзе <strong>выдаляць</strong> файлы .torrent пасля іх паспяховага (першы параметр) або не (другі параметр) дадавання ў чаргу спампоўвання. Ужываецца <strong>не толькі</strong> да файлаў, якія адкрываюцца праз меню «Дадаць торэнт», але і да адкрытых праз <strong>суаднесеныя тыпы файлаў</strong> @@ -7719,69 +7677,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Файл тэмы qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Тэгі (раздзеленыя коскай) - + %I: Info hash v1 (or '-' if unavailable) %I: Хэш v1 (або '-' калі недаступна) - + %J: Info hash v2 (or '-' if unavailable) %J: Хэш v2 (або '-' калі недаступна) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Ідэнтыфікатар торэнта (хэш sha-1 для торэнта v1 або ўсечаны хэш sha-256 для торэнта v2/гібрыда) - - + + Choose a save directory Выберыце каталог для захавання - + Torrents that have metadata initially will be added as stopped. Торэнты, якія адпачатку ўтрымліваюць метаданыя, будуць дададзеныя як спыненыя. - + Choose an IP filter file Выберыце файл IP фільтраў - + All supported filters Усе фільтры, якія падтрымліваюцца - + The alternative WebUI files location cannot be blank. Размяшчэнне файлаў альтэрнатыўнага вэб-інтэрфейсу не можа быць пустым. - + Parsing error Памылка аналізу - + Failed to parse the provided IP filter Не атрымалася прааналізаваць дадзены IP-фільтр - + Successfully refreshed Паспяхова абноўлена - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number IP-фільтр паспяхова прачытаны: ужыта %1 правілаў. @@ -7792,18 +7750,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Налады - + Time Error Памылка часу - + The start time and the end time can't be the same. Час пачатку і завяршэння не можа быць аднолькавым. - - + + Length Error Памылка памеру @@ -7894,165 +7852,165 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Краіна/рэгіён - + IP/Address IP/Адрас - + Port Порт - + Flags Сцяжкі - + Connection Злучэнне - + Client i.e.: Client application Кліент - + Peer ID Client i.e.: Client resolved from Peer ID ID кліента - + Progress i.e: % downloaded Ход выканання - + Down Speed i.e: Download speed Хуткасць спампоўвання - + Up Speed i.e: Upload speed Хуткасць раздачы - + Downloaded i.e: total data downloaded Спампавана - + Uploaded i.e: total data uploaded Раздадзена - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Рэлевантнасць - + Files i.e. files that are being downloaded right now Файлы - + Column visibility Бачнасць калонак - + Resize columns Дапасаваць памер калонак - + Resize all non-hidden columns to the size of their contents Змяніць памер усіх несхаваных калонак да памеру іх змесціва - + Add peers... Дадаць піры... - - + + Adding peers Дадаванне піраў - + Some peers cannot be added. Check the Log for details. Некаторыя піры нельга дадаць. Праверце журнал, каб атрымаць больш інфармацыі. - + Peers are added to this torrent. Піры дададзены да торэнта. - - + + Ban peer permanently Заблакіраваць пір назаўсёды - + Cannot add peers to a private torrent Немагчыма дадаць піры да прыватнага торэнта - + Cannot add peers when the torrent is checking Нельга дадаваць піроў, пакуль торэнт правяраецца - + Cannot add peers when the torrent is queued Нельга дадаваць піры, пакуль торэнт у чарзе - + No peer was selected Пір не выбраны - + Are you sure you want to permanently ban the selected peers? Сапраўды хочаце назаўсёды заблакіраваць выбраныя піры? - + Peer "%1" is manually banned Пір «%1» заблакіраваны ўручную - + N/A Н/Д - + Copy IP:port - Капіяваць IP:порт + Скапіяваць IP:порт @@ -8331,34 +8289,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent актыўны + qBittorrent актыўны PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Кіраванне сілкаваннем знайшло падыходны інтэрфейс D-Bus. Інтэрфейс: %1 + Кіраванне сілкаваннем знайшло падыходны інтэрфейс D-Bus. Інтэрфейс: %1 - Power management error. Did not found suitable D-Bus interface. - Памылка кіравання сілкаваннем. Не знойдзены падыодны інтэрфейс D-Bus. + Памылка кіравання сілкаваннем. Не знойдзены падыодны інтэрфейс D-Bus. - - - Power management error. Action: %1. Error: %2 - Памылка кіравання энергаспажываннем. Дзеянне: %1. Памылка: %2 + Памылка кіравання энергаспажываннем. Дзеянне: %1. Памылка: %2 - Power management unexpected error. State: %1. Error: %2 - Нечаканая памылка кіравання энергаспажываннем. Стан: %1. Памылка: %2 + Нечаканая памылка кіравання энергаспажываннем. Стан: %1. Памылка: %2 @@ -8546,7 +8497,7 @@ Those plugins were disabled. Wasted: - Згублена: + Страчана: @@ -8576,12 +8527,12 @@ Those plugins were disabled. Select All - Вылучыць усё + Выбраць усе Select None - Зняць усё + Зняць выбар @@ -8602,12 +8553,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Рэйтынг/ час актыўнасці (у месяцах), паказвае папулярнасць торэнта Popularity: - + Папулярнасць: @@ -8642,7 +8593,7 @@ Those plugins were disabled. Private: - + Прыватны: @@ -8650,153 +8601,124 @@ Those plugins were disabled. Шлях захавання: - + Never Ніколі - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ёсць %3) - - + + %1 (%2 this session) - %1 (%2 гэтая сесія) + %1 (%2 за гэты сеанс) - - + + N/A Н/Д - + Yes - Так + Так - + No - Не + Не - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (раздаецца %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (макс. %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (усяго %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (сяр. %2) - + Add web seed Add HTTP source - + Дадаць вэб-сід - + Add web seed: - + Дадаць вэб-сід: - - + + This web seed is already in the list. - + Гэты вэб-сід ужо ў спісе. - New Web seed - Новы вэб-сід - - - Remove Web seed - Выдаліць вэб-сід - - - Copy Web seed URL - Капіяваць адрас вэб-сіда - - - Edit Web seed URL - Змяніць адрас вэб-сіда - - - + Filter files... Фільтр файлаў... - + Add web seed... - + Дадаць вэб-сід... - + Remove web seed - + Выдаліць вэб-сід - + Copy web seed URL - + Скапіяваць адрас вэб-сіда - + Edit web seed URL... - + Змяніць адрас вэб-сіда... - + Speed graphs are disabled Вывад графіка хуткасці адключаны - + You can enable it in Advanced Options Можна ўключыць яго праз Пашыраныя параметры - New URL seed - New HTTP source - Новы URL раздачы - - - New URL seed: - URL новага сіда: - - - This URL seed is already in the list. - URL гэтага сіда ўжо ў спісе. - - - + Web seed editing Рэдагаванне вэб-раздачы - + Web seed URL: Адрас вэб-раздачы: @@ -8804,33 +8726,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Памылковы фармат даных. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Не ўдалося захаваць у %1 даныя Аўтаспампоўвання з RSS. Памылка: %2 - + Invalid data format Памылковы фармат даных - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS-артыкул «%1» прынятын правілам «%2». Спроба дадаць торэнт... - + Failed to read RSS AutoDownloader rules. %1 Не ўдалося прачытаць правілы Аўтаспампоўвання з RSS. Прычына: %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Не ўдалося загрузіць правілы Аўтаспампоўвання з RSS. Прычына: %1 @@ -8838,22 +8760,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Не ўдалося спампаваць RSS-канал з «%1». Прычына: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-канал з «%1» абноўлены. Новыя артыкулы: %2. - + Failed to parse RSS feed at '%1'. Reason: %2 Не ўдалося прааналізаваць RSS-канал з «%1». Прычына: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-канал з «%1» паспяхова загружаны. Запушчаны яе аналіз. @@ -8902,12 +8824,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Не ўдалося захаваць канфігурацыю сеанса RSS. Файл: «%1». Памылка: «%2» - + Couldn't save RSS session data. File: "%1". Error: "%2" Не ўдалося захаваць даныя сеанса RSS. Файл: «%1». Памылка: «%2» @@ -8929,76 +8851,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. Элемент не існуе: %1. - Couldn't move folder into itself. - Немагчыма перамясціць папку саму ў сябе. + Немагчыма перамясціць папку саму ў сябе. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Немагчыма выдаліць каранёвую папку. - + Failed to read RSS session data. %1 Не ўдалося прачытаць даныя RSS-сеанса. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Не ўдалося прааналізаваць даныя сеанса RSS. Файл: «%1». Памылка: «%2» - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Не ўдалося загрузіць даныя сеанса RSS. Файл: «%1». Памылка: «памылковы фармат даных» - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Не ўдалося загрузіць RSS-канал. Канал: «%1». Прычына: патрабуецца URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Не ўдалося загрузіць RSS-канал. Канал: «%1». Прычына: памылковы UID. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Выяўлены дублікат RSS-канала. UID: «%1». Памылка: здаецца, канфігурацыя пашкоджаная. - + Couldn't load RSS item. Item: "%1". Invalid data format. Не ўдалося загрузіць RSS-элемент. Элемент: «%1». Памылковы фармат даных. - + Corrupted RSS list, not loading it. Пашкоджаны спіс RSS, ён не будзе загружаны. - + Incorrect RSS Item path: %1. Няправільны шлях RSS элемента: %1. - + RSS item with given path already exists: %1. RSS элемент з такім шляхам ужо існуе: %1. - + Parent folder doesn't exist: %1. Бацькоўская папка не існуе: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Канал не існуе: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Адрас: + + + + Refresh interval: + + + + + sec + с + + + + Default + Па змаўчанні + + RSSWidget @@ -9089,7 +9056,7 @@ Those plugins were disabled. Copy feed URL - Капіяваць спасылку канала + Скапіяваць спасылку канала @@ -9098,78 +9065,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Змяніць URL канала... + Змяніць URL канала... - Edit feed URL - Змяніць URL канала + Змяніць URL канала - + Please choose a folder name Выберыце назву папкі - + Folder name: Назва папкі: - + New folder Новая папка - - Please type a RSS feed URL - Увядзіце адрас RSS-канала + Увядзіце адрас RSS-канала - - Feed URL: - Адрас канала: + Адрас канала: - + Deletion confirmation Пацвярджэнне выдалення - + Are you sure you want to delete the selected RSS feeds? Сапраўды выдаліць выбраныя RSS-каналы? - + Please choose a new name for this RSS feed Выберыце новую назву для гэтага RSS-канала - + New feed name: Новае імя канала: - + Rename failed Памылка перайменавання - + Date: Дата: - + Feed: Канал: - + Author: Аўтар: @@ -9306,10 +9272,6 @@ Those plugins were disabled. i.e: Number of partial sources Спампоўваюць - - Search engine - Пошукавая сістэма - Filter search results... @@ -9354,7 +9316,7 @@ Those plugins were disabled. Copy - Капіяваць + Скапіяваць @@ -9399,17 +9361,17 @@ Those plugins were disabled. Engine - + Пошукавая сістэма Engine URL - + Адрас пошукавай сістэмы Published On - + Апублікавана @@ -9430,104 +9392,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Невядомы фармат файла пошукавга плагіна. - + Plugin already at version %1, which is greater than %2 Версія плагіна %1 ўжо вышэй за версію %2 - + A more recent version of this plugin is already installed. Ужо ўсталявана больш новая версія плагіна. - + Plugin %1 is not supported. Плагін %1 не падтрымліваецца. - - + + Plugin is not supported. Плагін не падтрымліваецца. - + Plugin %1 has been successfully updated. Плагін %1 паспяхова абноўлены. - + All categories Усе катэгорыі - + Movies Фільмы - + TV shows Тэлеперадачы - + Music Музыка - + Games Гульні - + Anime Анімэ - + Software Праграмнае забеспячэнне - + Pictures Выявы - + Books Кнігі - + Update server is temporarily unavailable. %1 Сервер абнаўленняў часова недаступны. %1 - - + + Failed to download the plugin file. %1 Памылка загрузкі файла плагіна. %1 - + Plugin "%1" is outdated, updating to version %2 Плагін «%1» састарэў, абнаўленне да версіі %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') Пошукавы плагін «%1» змяшчае памылковы радок версіі («%2») @@ -9553,137 +9515,129 @@ Click the "Search plugins..." button at the bottom right of the window Пошукавыя плагіны... - + A phrase to search for. Фраза для пошуку. - + Spaces in a search term may be protected by double quotes. Прабелы ў пошукавым запыце могуць быць абаронены двукоссямі. - + Example: Search phrase example Узор: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: пошук для <b>foo bar</b> - + All plugins Усе плагіны - + Only enabled Толькі ўключаныя - - + + Invalid data format. - Памылковы фармат даных. + Памылковы фармат даных. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: пошук для <b>foo</b> і <b>bar</b> - + Refresh - + Абнавіць - + Close tab Закрыць укладку - + Close all tabs Закрыць усе ўкладкі - + Select... Выберыце… - - + + Search Engine Пошукавая сістэма - - + + Please install Python to use the Search Engine. Каб выкарыстоўваць пошукавую сістэму, усталюйце Python. - + Empty search pattern Ачысціць шаблон пошуку - + Please type a search pattern first Спачатку ўвядзіце шаблон пошуку - + Stop Стоп - - Search has finished - Пошук завершаны - - - Search has failed - Памылка пошуку - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Не ўдалося захаваць вынікі пошуку. Укладка: «%1». Файл: «%2». Памылка: «%3» - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Не ўдалося захаваць гісторыю пошуку. Файл: «%1». Памылка: «%2» @@ -10032,7 +9986,7 @@ Click the "Search plugins..." button at the bottom right of the window Session waste: - Згублена за севнс: + Страчана за сеанс: @@ -10079,67 +10033,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Стан злучэння: - - + + No direct connections. This may indicate network configuration problems. Няма прамых злучэнняў. Гэта можа сведчыць аб праблемах канфігурацыі сеткі. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Знешні IP: Н/Д + + + + DHT: %1 nodes DHT: %1 вузлоў - + qBittorrent needs to be restarted! qBittorrent неабходна перазапусціць! - - + + Connection Status: Стан злучэння: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Адлучаны ад сеткі. Звычайна гэта значыць, што qBittorrent не змог праслухаць порт на ўваходныя злучэнні. - + Online У сетцы - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Знешнія IP: %1, %2 + + + + External IP: %1%2 + Знешні IP: %1%2 + + + Click to switch to alternative speed limits Націсніце для пераключэння на альтэрнатыўныя абмежаванні хуткасці - + Click to switch to regular speed limits Націсніце для пераключэння на звычайныя абмежаванні хуткасці @@ -10167,23 +10131,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Завершаныя (0) - - Resumed (0) - Узноўленыя (0) - - - Paused (0) - Спыненыя (0) - Running (0) - + Запушчаны (0) Stopped (0) - + Спынены (0) @@ -10248,49 +10204,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + Запушчаны (%1) Stopped (%1) - + Спынены (%1) Start torrents - + Запусціць торэнты Stop torrents - - - - Paused (%1) - Спыненыя (%1) + Спыніць торэнты Moving (%1) Перамяшчаецца (%1) - - Resume torrents - Узнавіць торэнты - - - Pause torrents - Спыніць торэнты - Remove torrents Выдаліць торэнты - - Resumed (%1) - Узноўленыя (%1) - Active (%1) @@ -10362,32 +10302,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Выдаліць пустыя тэгі - - Resume torrents - Узнавіць торэнты - - - Pause torrents - Спыніць торэнты - Remove torrents Выдаліць торэнты - - New Tag - Новы тэг - Start torrents - + Запусціць торэнты Stop torrents - + Спыніць торэнты @@ -10397,7 +10325,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + Дадаць тэг @@ -10714,17 +10642,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Занадта шмат актыўных заданняў - + Torrent creation is still unfinished. Стварэнне торэнта яшчэ не завершана. - + Torrent creation failed. Не ўдалося стварыць торэнт. @@ -10976,17 +10904,6 @@ Please choose a different name and try again. Назіранне за папкай: «%1» - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Не ўдалося размеркаваць памяць падчас чытання файла. Файл: «%1». Памылка: «%2» - - - Invalid metadata - Памылковыя метаданыя - - TorrentOptionsDialog @@ -11022,11 +10939,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Абмежаванні хуткасці торэнта + Абмежаванні раздачы торэнта @@ -11042,7 +10955,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Абмежаванні хуткасці торэнта @@ -11060,34 +10973,6 @@ Please choose a different name and try again. Upload: Раздача: - - Torrent share limits - Абмежаванні раздачы торэнта - - - Use global share limit - Выкарыстоўваць агульнае абмежаванне раздачы - - - Set no share limit - Прыбраць абмежаванне раздачы - - - Set share limit to - Задаць абмежаванне раздачы - - - ratio - рэйтынг - - - total minutes - хвілін агулам - - - inactive minutes - хвілін неактыўных - Disable DHT for this torrent @@ -11129,14 +11014,6 @@ Please choose a different name and try again. Not applicable to private torrents Немагчыма ўжыць да прыватных торэнтаў - - No share limit method selected - Не абраны спосаб абмежавання раздачы - - - Please select a limit method first - Выберыце спачатку спосаб абмежавання - TorrentShareLimitsWidget @@ -11186,27 +11063,27 @@ Please choose a different name and try again. Action when the limit is reached: - + Дзеянне пры дасягненні абмежавання: Stop torrent - + Спыніць торэнт Remove torrent - Выдаліць торэнт + Выдаліць торэнт Remove torrent and its content - + Выдаліць торэнт і яго змесціва Enable super seeding for torrent - Уключыць для торэнта рэжым суперраздачы + Уключыць для торэнта рэжым суперраздачы @@ -11221,14 +11098,10 @@ Please choose a different name and try again. Torrent Tags Тэгі торэнта - - New Tag - Новы тэг - Add tag - + Дадаць тэг @@ -11259,85 +11132,85 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Памылка: «%1» гэта памылковы торэнт-файл. - + Priority must be an integer Прыярытэт павінен быць цэлым лікам - + Priority is not valid Недапушчальны прыярытэт - + Torrent's metadata has not yet downloaded Метаданыя торэнта яшчэ не спампаваны - + File IDs must be integers Ідэнтыфікатары файлаў павінны быць цэлымі лікамі - + File ID is not valid Няправільны ідэнтыфікатар файла - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty Шлях захавання не можа быць пустым - - + + Cannot create target directory Немагчыма стварыць каталог прызначэння - - + + Category cannot be empty Катэгорыя не можа быць пустой - + Unable to create category Не атрымалася стварыць катэгорыю - + Unable to edit category Не атрымалася змяніць катэгорыю - + Unable to export torrent file. Error: %1 Немагчыма экспартаваць torrent-файл. Памылка: %1 - + Cannot make save path Не атрымалася стварыць шлях захавання "%1" is not a valid URL - + «%1» — няправільны URL-адрас @@ -11350,39 +11223,39 @@ Please choose a different name and try again. Параметр «sort» памылковы - + "%1" is not an existing URL - + «%1» — URL-адрас не існуе - + "%1" is not a valid file index. «%1» — няправільны індэкс файла. - + Index %1 is out of bounds. - + Індэкс %1 па-за дапушчальнымі межамі. - - + + Cannot write to directory Запіс у каталог немагчымы - + WebUI Set location: moving "%1", from "%2" to "%3" Вэб-інтэрфейс, перамяшчэнне: «%1» перамяшчаецца з «%2» у «%3» - + Incorrect torrent name Няправільная назва торэнта - - + + Incorrect category name Няправільная назва катэгорыі @@ -11465,45 +11338,33 @@ Please choose a different name and try again. Invalid state! - + Памылковы стан! URL/Announce Endpoint - + Атрымальнік спасылкі/анонса BT Protocol - + Пратакол BT Next Announce - + Наступны анонс Min Announce - - - - Invalid status! - Памылковы стан! - - - URL/Announce endpoint - Атрымальнік спасылкі/анонса + Мінімум анонса Tier Узровень - - Protocol - Пратакол - Status @@ -11534,18 +11395,6 @@ Please choose a different name and try again. Message Паведамленне - - Next announce - Наступны анонс - - - Min announce - Мінімум анонса - - - v%1 - v%1 - TrackerListWidget @@ -11555,73 +11404,73 @@ Please choose a different name and try again. Гэты торэнт прыватны - + Tracker editing Рэдагаванне трэкера - + Tracker URL: Адрас трэкера: - - + + Tracker editing failed Рэдагаванне трэкера не ўдалося - + The tracker URL entered is invalid. Уведзены адрас трэкера памылковы. - + The tracker URL already exists. Такі адрас трэкера ўжо існуе. - + Edit tracker URL... Рэдагаваць адрас трэкера... - + Remove tracker Выдаліць трэкер - + Copy tracker URL - Капіяваць адрас трэкера + Скапіяваць адрас трэкера - + Force reannounce to selected trackers Пераанансаваць на выбраныя трэкеры - + Force reannounce to all trackers Пераанансаваць на ўсе трэкеры - + Resize columns Дапасаваць памер калонак - + Resize all non-hidden columns to the size of their contents Змяніць памер усіх несхаваных калонак да памеру іх змесціва - + Add trackers... Дадаць трэкеры... - + Column visibility Бачнасць калонак @@ -11704,20 +11553,12 @@ Please choose a different name and try again. Start torrents - + Запусціць торэнты Stop torrents - - - - Resume torrents - Узнавіць торэнты - - - Pause torrents - Спыніць торэнты + Спыніць торэнты @@ -11841,10 +11682,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Праверка даных узнаўлення - - Paused - Прыпынены - Completed @@ -11885,21 +11722,16 @@ Please choose a different name and try again. % Done Ход выканання - - Status - Torrent status (e.g. downloading, seeding, paused) - Стан - Stopped - + Спынена Status Torrent status (e.g. downloading, seeding, stopped) - Стан + Стан @@ -11934,7 +11766,7 @@ Please choose a different name and try again. Popularity - + Папулярнасць @@ -12015,22 +11847,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Час актыўнасці + Час актыўнасці Yes - Так + Так No - Не - - - Time Active - Time (duration) the torrent is active (not paused) - Час актыўнасці + Не @@ -12102,12 +11929,12 @@ Please choose a different name and try again. Private Flags private torrents - + Прыватны Ratio / Time Active (in months), indicates how popular the torrent is - + Рэйтынг/ час актыўнасці (у месяцах), паказвае папулярнасць торэнта @@ -12120,7 +11947,7 @@ Please choose a different name and try again. %1 ago e.g.: 1h 20m ago - %1 таму + %1 таму @@ -12132,358 +11959,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Бачнасць калонак - + Recheck confirmation Пацвярджэнне пераправеркі - + Are you sure you want to recheck the selected torrent(s)? Сапраўды хочаце пераправерыць выбраныя торэнты? - + Rename Перайменаваць - + New name: Новая назва: - + Choose save path Выберыце шлях захавання - Confirm pause - Пацвердзіць спыненне - - - Would you like to pause all torrents? - Сапраўды спыніць усе торэнты? - - - Confirm resume - Пацвердзіць узнаўленне - - - Would you like to resume all torrents? - Сапраўды ўзнавіць усе торэнты? - - - + Unable to preview Немагчыма праглядзець - + The selected torrent "%1" does not contain previewable files Выбраны торэнт «%1» не змяшчае файлаў, якія можна праглядаць - + Resize columns Дапасаваць памер калонак - + Resize all non-hidden columns to the size of their contents Змяніць памер усіх несхаваных калонак да памеру іх змесціва - + Enable automatic torrent management Уключыць аўтаматычнае кіраванне торэнтамі - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Сапраўды хочаце ўключыць аўтаматычнае кіраванне для выбраных торэнтаў? Яны могуць перамясціцца. - Add Tags - Дадаць тэгі - - - + Choose folder to save exported .torrent files Выберыце папку, каб захаваць экспартаваныя файлы .torrent - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Не ўдалося экспартаваць файл .torrent. торэнт: «%1». Шлях захавання: «%2». Прычына: «%3» - + A file with the same name already exists Файл з такім імем ужо існуе - + Export .torrent file error Памылка экспартавання файла .torrent - + Remove All Tags Выдаліць усе тэгі - + Remove all tags from selected torrents? Выдаліць усе тэгі для выбраных торэнтаў? - + Comma-separated tags: Тэгі, падзеленыя коскай: - + Invalid tag Памылковы тэг - + Tag name: '%1' is invalid Назва тэга: «%1» памылкова - &Resume - Resume/start the torrent - &Узнавіць - - - &Pause - Pause the torrent - &Спыніць - - - Force Resu&me - Force Resume/start the torrent - Узнавіць &прымусова - - - + Pre&view file... П&ерадпрагляд файла... - + Torrent &options... &Параметры торэнта... - + 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 loc&ation... Задаць раз&мяшчэнне... - + Force rec&heck Пера&праверыць прымусова - + Force r&eannounce Пера&анансаваць прымусова - + &Magnet link Magnet-&спасылка - + Torrent &ID ID &торэнта - + &Comment &Каментарый - + &Name &Назва - + Info &hash v1 &Хэш v1 - + Info h&ash v2 Х&эш v2 - + Re&name... Пера&йменаваць... - + Edit trac&kers... Рэдагаваць трэ&керы... - + E&xport .torrent... Э&кспартаваць .torrent - + Categor&y Катэгор&ыя - + &New... New category... &Новая... - + &Reset Reset category &Скінуць - + Ta&gs Тэ&гі - + &Add... Add / assign multiple tags... &Дадаць... - + &Remove All Remove all tags &Выдаліць усе - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Нельга прымусова пераанансаваць, калі торэнт спынены, у чарзе, з памылкай або правяраецца - + &Queue &Чарга - + &Copy - &Капіяваць + С&капіяваць - + Exported torrent is not necessarily the same as the imported Экспартаваны торэнт не павінен абавязкова супадаць з імпартаваным - + Download in sequential order Спампоўваць паслядоўна - + Add tags - + Дадаць тэгі - + Errors occurred when exporting .torrent files. Check execution log for details. Адбылася памылка пры экспартаванні файлаў .torrent. Праверце журнал выканання праграмы, каб паглядзець звесткі. - + &Start Resume/start the torrent - + Зап&усціць - + Sto&p Stop the torrent - + &Спыніць - + Force Star&t Force Resume/start the torrent - + Запусціць &прымусова - + &Remove Remove the torrent &Выдаліць - + Download first and last pieces first Спачатку пампаваць першую і апошнюю часткі - + Automatic Torrent Management Аўтаматычнае кіраванне - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Аўтаматычны рэжым азначае, што пэўныя ўласцівасці торэнта (напр. шлях захавання) вызначаюцца ў залежнасці ад катэгорыі - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Нельга прымусова пераанансаваць, калі торэнт спынены, у чарзе або правяраецца - - - + Super seeding mode Рэжым суперраздачы @@ -12559,7 +12347,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + Не ўдалося задаць стыль праграмы. Невядомы стыль: «%1» @@ -12615,32 +12403,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Знойдзены выконвальны файл Python. Назва: «%1». Версія: «%2» - + Failed to find Python executable. Path: "%1". Не ўдалося знайсці выконвальны файл Python. Шлях: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Не ўдалося знайсці выконвальны файл «python3» у пераменнай асяроддзя PATH. PATH: «%1» - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Не ўдалося знайсці выконвальны файл «python» у пераменнай асяроддзя PATH. PATH: «%1» - + Failed to find `python` executable in Windows Registry. Не ўдалося знайсці ў рэестры Windows запіс пра выконвальны файл «python». - + Failed to find Python executable Не ўдалося знайсці выконвальны файл Python. @@ -12732,52 +12520,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - Пазначана непрымальная назва сеансавага файла кукі: '%1'. Ужытая назва па змаўчанні. + Пазначана непрымальная назва для файла cookie сеанса: «%1». Ужыта стандартная назва. - + Unacceptable file type, only regular file is allowed. Непрымальны тып файла, дазволены толькі звычайны файл. - + Symlinks inside alternative UI folder are forbidden. Сімвальныя спасылкі ўнутры каталога альтэрнатыўнага інтэрфейсу забароненыя. - + Using built-in WebUI. Выкарыстоўваецца ўбудаваны вэб-інтэрфейс. - + Using custom WebUI. Location: "%1". Выкарыстоўваецца уласны вэб-інтэрфейс. Месцазнаходжанне: «%1». - + WebUI translation for selected locale (%1) has been successfully loaded. Пераклад вэб-інтэрфейса для выбранай мовы (%1) паспяхова загружаны. - + Couldn't load WebUI translation for selected locale (%1). Не ўдалося загрузіць пераклад вэб-інтэрфейсу для выбранай мовы (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Прапушчаны раздзяляльнік «:» ва ўласным загалоўку HTTP вэб-інтэрфейса: «%1» - + Web server error. %1 Памылка вэб-сервера. %1 - + Web server error. Unknown error. Памылка вэб-сервера. Невядомая памылка. @@ -12835,7 +12623,7 @@ Please choose a different name and try again. Unknown error - Невядомая памылка + Невядомая памылка @@ -12892,31 +12680,31 @@ Please choose a different name and try again. %1s e.g: 10 seconds - %1 с + %1 с %1m e.g: 10 minutes - %1  хв + %1 хв %1h %2m e.g: 3 hours 5 minutes - %1 гадз %2 хв + %1 гадз %2 хв %1d %2h e.g: 2 days 10 hours - %1 дз %2 гадз + %1 дз %2 гадз %1y %2d e.g: 2 years 10 days - %1 г. %2 дз + %1 г. %2 дз diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index 633f8b3e2..b4dfd4c3d 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -170,10 +170,6 @@ Never show again Не показвай никога повече - - Torrent settings - Настройки на торента - Set as default category @@ -235,25 +231,25 @@ Условие за спиране: - - + + None Няма - - + + Metadata received Метаданни получени - + Torrents that have metadata initially will be added as stopped. - + Files checked Файлове проверени @@ -368,112 +364,112 @@ Запиши като .torrent файл... - + I/O Error Грешка на Вход/Изход - + Not Available This comment is unavailable Не е налично - + Not Available This date is unavailable Не е налично - + Not available Не е наличен - + Magnet link Магнитна връзка - + Retrieving metadata... Извличане на метаданни... - - + + Choose save path Избери път за съхранение - + No stop condition is set. Не е зададено условие за спиране. - + Torrent will stop after metadata is received. Торента ще спре след като метаданни са получени. - + Torrent will stop after files are initially checked. Торента ще спре след като файловете са първоначално проверени. - + This will also download metadata if it wasn't there initially. Това също ще свали метаданни, ако ги е нямало първоначално. - + N/A Не е налично - + %1 (Free space on disk: %2) %1 (Свободно място на диска: %2) - + Not available This size is unavailable. Недостъпен - + Torrent file (*%1) Торент файл (*%1) - + Save as torrent file Запиши като торент файл - + Couldn't export torrent metadata file '%1'. Reason: %2. Не може да се експортират метаданни от файл '%1'. Причина: %2. - + Cannot create v2 torrent until its data is fully downloaded. Не може да се създаде v2 торент, докато данните не бъдат напълно свалени. - + Filter files... Филтрирай файлове... - + Parsing metadata... Проверка на метаданните... - + Metadata retrieval complete Извличането на метаданни завърши @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB МБ - + Recheck torrents on completion Провери торентите при завършване - - + + ms milliseconds мс - + Setting Настройка - + Value Value set for this setting Стойност - + (disabled) (изключено) - + (auto) (автоматично) - - + + min minutes min - + All addresses Всички адреси - + qBittorrent Section qBittorrent Раздел - - + + Open documentation Отваряне на докумнтация - + All IPv4 addresses Всички IPv4 адреси - + All IPv6 addresses Всички IPv6 адреси - + libtorrent Section libtorrent Раздел - + Fastresume files Бързо възобновяване на файлове - + SQLite database (experimental) SQLite база данни (експериментално) - + Resume data storage type (requires restart) Възобновяване на типа съхранение на данни (изисква рестартиране) - + Normal Нормален - + Below normal Под нормален - + Medium Среден - + Low Нисък - + Very low Много нисък - + Physical memory (RAM) usage limit Ограничение на потреблението на физическата памет (RAM) - + Asynchronous I/O threads Асинхронни Входно/Изходни нишки - + Hashing threads Хеширане на нишки - + File pool size Размер на файловия пул - + Outstanding memory when checking torrents Оставаща памет при проверка на торентите - + Disk cache Дисков кеш - - - - + + + + + s seconds с - + Disk cache expiry interval Продължителност на дисковия кеш - + Disk queue size Размер на опашката на диска - - + + Enable OS cache Включи кеширане от ОС - + Coalesce reads & writes Обединяване на записванията и прочитанията - + Use piece extent affinity Използвай афинитет на размерите на парчета - + Send upload piece suggestions Изпращане на съвети за частите на качване - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer Максимален брой неизпълнени заявки към един участник - - - - - + + + + + KiB  KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux Тази опция е по-малко ефективна на Линукс - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default По подразбиране - + Memory mapped files Отбелязани в паметта файлове - + POSIX-compliant POSIX-съобразен - + Simple pread/pwrite - + Disk IO type (requires restart) Диск ВИ тип (изисква рестарт) - - + + Disable OS cache Забрани кеш на ОС - + Disk IO read mode Режим на четене на ВИ на диск - + Write-through Писане чрез - + Disk IO write mode Режим на писане на ВИ на диск - + Send buffer watermark Изпращане на буферен воден знак - + Send buffer low watermark Изпращане на нисък буферен воден знак - + Send buffer watermark factor Изпращане на фактор на буферния воден знак - + Outgoing connections per second Изходящи връзки в секунда - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Размер на задържане на сокет - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers Тип услуга (ToS) за връзки с пиъри - + Prefer TCP Предпочитане на TCP - + Peer proportional (throttles TCP) Пиър пропорционален (дроселиран TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Поддържа интернационализирано домейн име (IDN) - + Allow multiple connections from the same IP address Позволяване на множество връзки от един и същи IP адрес - + Validate HTTPS tracker certificates Проверявай сертификати на HTTPS тракер - + Server-side request forgery (SSRF) mitigation Подправяне на заявка от страна на сървъра (SSRF) смекчаване - + Disallow connection to peers on privileged ports Не разрешавай връзка към пиъри на привилегировани портове - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates Контролира интервала на обновяване на вътрешното състояние, което от своя страна засяга опреснявания на ПИ - + Refresh interval Интервал на опресняване - + Resolve peer host names Намиране името на хоста на участниците - + IP address reported to trackers (requires restart) IP адреси, докладвани на тракерите (изисква рестарт) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Повторно обявяване на всички тракери при промяна на IP или порт - + Enable icons in menus Разрешаване на икони в менюта - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Разреши пренасочване на портове за вграден тракер - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - сек + сек - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage Процент на прекъсване на оборота на участници - + Peer turnover threshold percentage Процент на праг на оборота на участници - + Peer turnover disconnect interval Интервал на прекъсване на партньорския оборот - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Екранни уведомления - + Display notifications for added torrents Екранни уведомления за добавени торенти. - + Download tracker's favicon Сваляне на логото на тракера - + Save path history length Брой запазени последно използвани местоположения. - + Enable speed graphs Разреши графика на скоростта - + Fixed slots Фиксиран брой слотове - + Upload rate based Скорост на качване въз основа на - + Upload slots behavior Поведение на слотовете за качване - + Round-robin Кръгла система - + Fastest upload Най-бързо качване - + Anti-leech Анти-лийч - + Upload choking algorithm Задушаващ алгоритъм за качване - + Confirm torrent recheck Потвърждаване на проверка на торент - + Confirm removal of all tags Потвърдете изтриването на всички тагове - + Always announce to all trackers in a tier Винаги анонсирай до всички тракери в реда - + Always announce to all tiers Винаги анонсирай до всички тракер-редове - + Any interface i.e. Any network interface Произволен интерфейс - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP алгоритъм смесен режим - + Resolve peer countries Намиране държавата на участниците - + Network interface Мрежов интерфейс - + Optional IP address to bind to Опционален IP адрес за свързване - + Max concurrent HTTP announces Макс. едновременни HTTP анонси - + Enable embedded tracker Включи вградения тракер - + Embedded tracker port Вграден порт на тракер @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Работи в преносим режим. Автоматично открита папка с профил на адрес: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Открит е флаг за излишен команден ред: "%1". Преносимият режим предполага относително бързо възобновяване. - + Using config directory: %1 Използване на конфигурационна папка: %1 - + Torrent name: %1 Име но торент: %1 - + Torrent size: %1 Размер на торент: %1 - + Save path: %1 Местоположение за запис: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Торента бе свален в %1. - - + + Thank you for using qBittorrent. Благодарим Ви за ползването на qBittorrent. - + Torrent: %1, sending mail notification Торент: %1, изпращане на уведомление по имейл. - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` Изпълнение на външна програма. Торент "%1". Команда: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Торент "%1" завърши свалянето - + WebUI will be started shortly after internal preparations. Please wait... УебПИ ще бъде стартиран малко след вътрешни подготовки. Моля, изчакайте... - - + + Loading torrents... Зареждане на торенти... - + E&xit И&зход - + I/O Error i.e: Input/Output Error В/И грешка - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ Причина: %2 - + Torrent added Торент добавен - + '%1' was added. e.g: xxx.avi was added. '%1' бе добавен. - + Download completed Сваляне приключено - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' завърши свалянето. - + Information Информация - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 За да контролирате qBittorrent, достъпете УебПИ при: %1 - + Exit Изход - + Recursive download confirmation Допълнително потвърждение за сваляне - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Торентът '%'1 съдържа .torrent файлове, искате ли да продължите с техните сваляния? - + Never Никога - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Рекурсивно сваляне на .torrent файл в торента. Торент-източник: "%1". Файл: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Неуспешно задаване на ограничение на потреблението на физическата памет (RAM). Код на грешка: %1. Съобщение на грешка: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated Прекратяване на qBittorrent започнато - + qBittorrent is shutting down... qBittorrent се изключва... - + Saving torrent progress... Прогрес на записване на торент... - + qBittorrent is now ready to exit qBittorrent сега е готов за изход @@ -1766,263 +1773,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Експортиране... - + Matches articles based on episode filter. Намерени статии, базирани на епизодичен филтър. - + Example: Пример: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match ще търси резултати 2, 5, 8 през 15, 30 и повече епизода на първи сезон - + Episode filter rules: Правила на епизодния филтър: - + Season number is a mandatory non-zero value Номерът на сезона трябва да бъде със стойност, различна от нула - + Filter must end with semicolon Филтърът трябва да завършва с точка и запетая - + Three range types for episodes are supported: Три типа диапазони за епизоди се поддържат: - + Single number: <b>1x25;</b> matches episode 25 of season one Едно число: <b>1x25;</b> съответства на епизод 25 на първи сезон - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Нормален диапазон: <b>1x25-40;</b> съответства на епизоди 25 до 40 на първи сезон - + Episode number is a mandatory positive value Номерът на е епизода е задължително да е с позитивна стойност - + Rules Правила - + Rules (legacy) Правила (наследени) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Безкраен диапазон: <b>1x25-;</b> съответства на епизодите от 25 до края на първи сезон и всички епизоди следващите сезони - + Last Match: %1 days ago Последно Съвпадение: преди %1 дни - + Last Match: Unknown Последно Съвпадение: Неизвестно - + New rule name Име на ново правила - + Please type the name of the new download rule. Моля, въведете името на новото правило за сваляне. - - + + Rule name conflict Конфликт в имената на правилата - - + + A rule with this name already exists, please choose another name. Правило с това име вече съществува, моля изберете друго име. - + Are you sure you want to remove the download rule named '%1'? Сигурни ли сте че искате да изтриете правилото с име '%1'? - + Are you sure you want to remove the selected download rules? Сигурни ли сте че искате да изтриете избраните правила? - + Rule deletion confirmation Потвърждение за изтриване на правилото - + Invalid action Невалидно действие - + The list is empty, there is nothing to export. Списъкът е празен, няма какво да експортирате. - + Export RSS rules Експорт на RSS правила - + I/O Error В/И Грешка - + Failed to create the destination file. Reason: %1 Неуспешно създаване на файл. Причина: %1 - + Import RSS rules Импорт на RSS правила - + Failed to import the selected rules file. Reason: %1 Неуспешно импортиране на избрания файл с правила. Причина: %1 - + Add new rule... Добави ново правило... - + Delete rule Изтрий правилото - + Rename rule... Преименувай правилото... - + Delete selected rules Изтрий избраните правила - + Clear downloaded episodes... Изчистване на изтеглените епизоди... - + Rule renaming Преименуване на правилото - + Please type the new rule name Моля напишете името на новото правило - + Clear downloaded episodes Изчистване на изтеглените епизоди - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Наистина ли искате да изчистите списъка с изтеглени епизоди за избраното правило? - + Regex mode: use Perl-compatible regular expressions Режим регулярни изрази: използвайте Perl-съвместими регулярни изрази - - + + Position %1: %2 Позиция %1: %2 - + Wildcard mode: you can use Режим на заместващи символи: можете да изпозвате - - + + Import error - + Failed to read the file. %1 - + ? to match any single character ? за съвпадане на един, какъвто и да е символ - + * to match zero or more of any characters * за съвпадане на нула или повече каквито и да са символи - + Whitespaces count as AND operators (all words, any order) Приеми празно пространствените символи като И оператори (всички думи, в независимо какъв ред) - + | is used as OR operator | се използва за ИЛИ оператор - + If word order is important use * instead of whitespace. Ако поредността на думите е важна, използвайте * вместо пауза. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Израз с празна %1 клауза (пр.: %2) - + will match all articles. ще съответства на всички артикули. - + will exclude all articles. ще изключи всички артикули. @@ -2074,28 +2081,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Не може да се анализират данни за продължение: невалиден формат - - + + Cannot parse torrent info: %1 Не може да се анализират данни за торент: %1 - + Cannot parse torrent info: invalid format Не може да се анализират данни за торент: невалиден формат - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Метаданните на торент не можаха да бъдат запазени '%1'. Грешка: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Не можа да се запишат данните за възобновяване на торента на '%1'. Грешка: %2. @@ -2106,16 +2123,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Не могат да се предадат данни за продължение: %1 - + Resume data is invalid: neither metadata nor info-hash was found Данни за продължение са невалидни: нито метаданни, нито инфо-хеш бяха намерени - + Couldn't save data to '%1'. Error: %2 Данните не можаха да бъдат запазени в '%1'. Грешка: %2 @@ -2123,38 +2141,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Не намерено. - + Couldn't load resume data of torrent '%1'. Error: %2 Данните за възобновяване на торент не можаха да се заредят '%1'. Грешка: %2 - - + + Database is corrupted. Базата данни е повредена. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + Не могат да се предадат данни за продължение: %1 + + + + + Cannot parse torrent info: %1 + Не може да се анализират данни за торент: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2202,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Метаданните на торент не можаха да бъдат запазени. Грешка: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Данните за възобновяване не можаха да се съхранят за торент '%1'. Грешка: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Данните за възобновяване на торент не можаха да бъдат изтрити '%1'. Грешка: %2 - + Couldn't store torrents queue positions. Error: %1 Не можаха да се съхранят позициите на опашката на торенти. Грешка: %1 @@ -2185,526 +2225,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Поддръжка на разпределена хеш таблица (DHT): %1 - - - - - - - - - + + + + + + + + + ON ВКЛ - - - - - - - - - + + + + + + + + + OFF ИЗКЛ - - + + Local Peer Discovery support: %1 Поддръжка на откриване на местни участници: %1 - + Restart is required to toggle Peer Exchange (PeX) support Изисква се рестартиране за превключване на поддръжка на размяна на участници (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Неуспешно продължение на торент. Торент: "%1". Причина: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Неуспешно продължение на торент: непостоянен торент ИД е засечен. Торент: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Засечени непостоянни данни: категория липсва от конфигурационният файл. Категория ще бъде възстановена, но нейните настройки ще бъдат върнати към по-подразбиране. Торент: "%1". Категория: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Засечени непостоянни данни: невалидна категория. Торент: "%1". Категория: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Засечено несъответствие между пътищата на запазване на възстановената категория и текущият път на запазване на торента. Торента сега е превключен в ръчен режим. Торент: "%1". Категория: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Засечени непостоянни данни: категория липсва от конфигурационният файл. Категория ще бъде възстановена Торент: "%1". Категория: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Засечени непостоянни данни: невалидна категория. Торент: "%1". Категория: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" ID на участника: "%1" - + HTTP User-Agent: "%1" HTTP потребителски-агент: "%1" - + Peer Exchange (PeX) support: %1 Поддръжка на размяна на участници (PeX): %1 - - + + Anonymous mode: %1 Анонимен режим: %1 - - + + Encryption support: %1 Поддръжка на шифроване: %1 - - + + FORCED ПРИНУДЕНО - + Could not find GUID of network interface. Interface: "%1" Не можа да се намери GUID на мрежов интерфейс. Интерфейс: "%1" - + Trying to listen on the following list of IP addresses: "%1" Опит за прослушване на следният списък на ИП адреси: "%1" - + Torrent reached the share ratio limit. Торент достигна ограничението на съотношение за споделяне. - + Torrent: "%1". Торент: "%1". - Removed torrent. - Премахнат торент. - - - Removed torrent and deleted its content. - Премахнат торент и изтрито неговото съдържание. - - - Torrent paused. - Торент в пауза. - - - + Super seeding enabled. Супер засяване разрешено. - + Torrent reached the seeding time limit. Торент достигна ограничението на време за засяване. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Неуспешно зареждане на торент. Причина: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP поддръжка: ВКЛ - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP поддръжка: ИЗКЛ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Неуспешно изнасяне на торент. Торент: "%1". Местонахождение: "%2". Причина: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Прекратено запазване на данните за продължение. Брой неизпълнени торенти: %1 - + The configured network address is invalid. Address: "%1" Конфигурираният мрежов адрес е невалиден. Адрес: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Неуспешно намиране на конфигурираният мрежов адрес за прослушване. Адрес: "%1" - + The configured network interface is invalid. Interface: "%1" Конфигурираният мрежов интерфейс е невалиден. Интерфейс: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Отхвърлен невалиден ИП адрес при прилагане на списъкът на забранени ИП адреси. ИП: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Добавен тракер към торент. Торент: "%1". Тракер: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Премахнат тракер от торент. Торент: "%1". Тракер: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Добавено URL семе към торент. Торент: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Премахнато URL семе от торент. Торент: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Торент в пауза. Торент: "%1" - - - + Torrent resumed. Torrent: "%1" Торент продължен. Торент: "%1" - + Torrent download finished. Torrent: "%1" Сваляне на торент приключено. Торент: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Преместване на торент прекратено. Торент: "%1". Източник: "%2". Местонахождение: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Неуспешно нареден на опашка за преместване торент. Торент: "%1". Източник "%2". Местонахождение: "%3". Причина: торента понастоящем се премества към местонахождението - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Неуспешно нареден на опашка за преместване торент. Торент: "%1". Източник "%2". Местонахождение: "%3". Причина: двете пътища сочат към същото местоположение - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Нареден на опашка за преместване торент. Торент: "%1". Източник "%2". Местонахождение: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Започнато преместване на торент. Торент: "%1". Местонахождение: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Не можа да се запази Категории конфигурация. Файл: "%1". Грешка: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Не можа да се анализира Категории конфигурация. Файл: "%1". Грешка: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Успешно анализиран файлът за ИП филтър. Брой на приложени правила: %1 - + Failed to parse the IP filter file Неуспешно анализиране на файлът за ИП филтър - + Restored torrent. Torrent: "%1" Възстановен торент. Торент: "%1" - + Added new torrent. Torrent: "%1" Добавен нов торент. Торент: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Грешка в торент. Торент: "%1". Грешка: "%2" - Removed torrent. Torrent: "%1" - Премахнат торент. Торент: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Премахнат торент и изтрито неговото съдържание. Торент: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Сигнал за грешка на файл. Торент: "%1". Файл: "%2". Причина: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP пренасочване на портовете неуспешно. Съобщение: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP пренасочването на портовете успешно. Съобщение: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP филтър - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 ограничения за смесен режим - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 е забранен - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 е забранен - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Търсенето на URL засяване неуспешно. Торент: "%1". URL: "%2". Грешка: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Получено съобщение за грешка от URL засяващ. Торент: "%1". URL: "%2". Съобщение: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Успешно прослушване на ИП. ИП: "%1". Порт: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Неуспешно прослушване на ИП. ИП: "%1". Порт: "%2/%3". Причина: "%4" - + Detected external IP. IP: "%1" Засечен външен ИП. ИП: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Грешка: Вътрешната опашка за тревоги е пълна и тревогите са отпаднали, можете да видите понижена производителност. Отпаднали типове на тревога: "%1". Съобщение: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Преместване на торент успешно. Торент: "%1". Местонахождение: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Неуспешно преместване на торент. Торент: "%1". Източник: "%2". Местонахождение: "%3". Причина: "%4" @@ -2754,47 +2771,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Не можа да се запише към файл. Причина: "%1". Торента сега е в "само качване" режим. - + Download first and last piece first: %1, torrent: '%2' Изтеглете първо първото и последното парче: %1, торент: '%2' - + On Включено - + Off Изключено - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Генериране на данни за продължение неуспешно. Торент: "%1". Причина: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Неуспешно продължаване на торент. Файлове вероятно са преместени или съхранение не е достъпно. Торент: "%1". Причина: "%2". - + Missing metadata Липсващи метаданни - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Неуспешно преименуване на файл. Торент: "%1", файл: "%2", причина: "%3" - + Performance alert: %1. More info: %2 Сигнал за производителност: %1. Повече инфо: %2 @@ -2831,11 +2848,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Очаква се цяло число в променливата от средата '%1', но се получи '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Параметър '%1' трябва да следва синтаксиса '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2876,7 +2888,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Параметър '%1' трябва да следва синтаксиса '%1=%2' + Параметър '%1' трябва да следва синтаксиса '%1=%2' @@ -2966,10 +2978,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - Добавяне на торентите стартирани или в пауза. - Skip hash check @@ -3066,14 +3074,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Продължаване на торентите - - - Pause torrents - Пауза на торентите - Remove torrents @@ -3172,10 +3172,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - Also permanently delete the files - Също изтрий за постоянно файловете - Are you sure you want to remove '%1' from the transfer list? @@ -3407,22 +3403,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present Торентът вече съществува - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Торент '%1' вече е в списъка за трансфер. Искате ли да обедините тракери от нов източник? @@ -3540,6 +3536,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3681,10 +3711,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Опции... - - &Resume - &Пауза - &Remove @@ -3766,10 +3792,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Затвори прозореца - - R&esume All - П&ауза Всички - Manage Cookies... @@ -3885,10 +3907,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Хибернация на Системата - - S&hutdown System - И&зклюване на Системата - &Statistics @@ -3909,14 +3927,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &Относно - - &Pause - &Пауза - - - P&ause All - П&ауза Всички - &Add Torrent File... @@ -3950,12 +3960,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Покажи - + Check for program updates Проверка за обновления на програмата @@ -3970,388 +3980,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Ако ви харесва qBittorrent, моля дарете! - + Execution Log Изпълнение на Запис - + Clear the password Изчистване на паролата - + &Set Password &Задаване на Парола - + Preferences Предпочитания - + &Clear Password &Изчистване на Парола - + Transfers Трансфери - - + + qBittorrent is minimized to tray qBittorrent е минимизиран в трея - - - + + + This behavior can be changed in the settings. You won't be reminded again. Това поведение може да се промени в настройките. Няма да ви се напомня отново. - + Icons Only Само Икони - + Text Only Само Текст - + Text Alongside Icons Текст Успоредно с Икони - + Text Under Icons Текст Под Икони - + Follow System Style Следване на Стила на Системата - - + + UI lock password Парола за потребителски интерфейс - - + + Please type the UI lock password: Моля въведете парола за заключване на потребителския интерфейс: - + Are you sure you want to clear the password? Наистина ли искате да изчистите паролата? - + Use regular expressions Ползване на регулярни изрази - - + + Search Engine - Търсачка + Търсачка - + Search has failed - Търсенето бе неуспешно + Търсенето бе неуспешно - + Search has finished - Търсенето завърши + Търсенето завърши - + Search Търси - + Transfers (%1) Трансфери (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent току-що бе обновен и има нужда от рестарт, за да влязат в сила промените. - + qBittorrent is closed to tray qBittorrent е затворен в трея - + Some files are currently transferring. Няколко файлове в момента се прехвърлят. - + Are you sure you want to quit qBittorrent? Сигурни ли сте, че искате на излезете от qBittorent? - + &No &Не - + &Yes &Да - + &Always Yes &Винаги Да - + Options saved. Опциите са запазени. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Липсва Python Runtime - + qBittorrent Update Available Обновление на qBittorrent е Налично - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python е необходим за употребата на търсачката, но изглежда не е инсталиран. Искате ли да го инсталирате сега? - + Python is required to use the search engine but it does not seem to be installed. Python е необходим за употребата на търсачката, но изглежда не е инсталиран. - - + + Old Python Runtime Остарял Python Runtime - + A new version is available. Налична е нова версия. - + Do you want to download %1? Искате ли да изтеглите %1? - + Open changelog... Отваряне списък с промените... - + No updates available. You are already using the latest version. Няма обновления. Вече използвате последната версия. - + &Check for Updates &Проверка за Обновление - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Вашата Python версия (%1) е остаряла. Минимално изискване: %2. Искате ли да инсталирате по-нова версия сега? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Вашата Python версия (%1) е остаряла. Моля надстройте до най-нова версия за да работят търсачките. Минимално изискване: %2. - + Paused - В Пауза + Пауза - + Checking for Updates... Проверяване за Обновление... - + Already checking for program updates in the background Проверката за обновления на програмата вече е извършена - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Грешка при сваляне - Python setup could not be downloaded, reason: %1. -Please install it manually. - Инсталаторът на Python не може да се свали, причина: %1. -Моля инсталирайте го ръчно. - - - - + + Invalid password Невалидна парола - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long Паролата трябва да бъде поне 3 символи дълга - - - + + + RSS (%1) RSS (%1) - + The password is invalid Невалидна парола - + DL speed: %1 e.g: Download speed: 10 KiB/s СВ скорост: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s КЧ скорост: %1 - + Hide Скрий - + Exiting qBittorrent Напускам qBittorrent - + Open Torrent Files Отвори Торент Файлове - + Torrent Files Торент Файлове @@ -5845,47 +5849,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 Връзка неуспешна, неразпознат отговор: %1 - + Authentication failed, msg: %1 Удостоверяване неуспешно, съобщ.: %1 - + <mail from> was rejected by server, msg: %1 <mail from> бе отхвърлен от сървър, съобщ.: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> бе отхвърлен от сървър, съобщ.: %1 - + <data> was rejected by server, msg: %1 <data> бе отхвърлен от сървър, съобщ.: %1 - + Message was rejected by the server, error: %1 Съобщение бе отхвърлено от сървърът, грешка: %1 - + Both EHLO and HELO failed, msg: %1 И EHLO и HELO неуспешни, съобщ.: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP сървърът не изглежда да поддържа какъвто и да е от режимите за удостоверяване, каквито ние поддържаме [CRAM-MD5|PLAIN|LOGIN], прескачане на удостоверяване, знаейки, че е вероятно да се провали... Режими за удост. на сървъра: %1 - + Email Notification Error: %1 Грешка при известяване по имейл: %1 @@ -5927,10 +5931,6 @@ Please install it manually. RSS RSS - - Web UI - Уеб ПИ - Advanced @@ -5967,10 +5967,6 @@ Please install it manually. Always Винаги - - Paused torrents only - Само торентите в пауза - Action on double-click @@ -5981,10 +5977,6 @@ Please install it manually. Downloading torrents: Сваляне на торенти: - - Start / Stop Torrent - Пускане / Спиране Торент - @@ -6043,175 +6035,175 @@ Please install it manually. KB - + + Show free disk space in status bar + + + + Torrent content layout: Оформление на съдържанието на торента: - + Original Оригинал - + Create subfolder Създай подпапка - + Don't create subfolder Не създавай подпапка - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Добавяне... - + Options.. Опции... - + Remove Премахни - + Email notification &upon download completion Уведомяване с имейл &при завършване на свалянето - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Протокол за връзка с участника: - + Any Всякакви - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering IP Фи&лтриране - + Schedule &the use of alternative rate limits График на &използването на алтернативни пределни скорости - + From: From start time От: - + To: To end time До: - + Find peers on the DHT network Намиране на пиъри в DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6220,188 +6212,190 @@ Disable encryption: Only connect to peers without protocol encryption Забрани шифроване: Свързвай се само с участници без шифроване на протокола - + Allow encryption Позволи криптиране - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Повече информация</a>) - + Maximum active checking torrents: Максимум активни проверки на торент: - + &Torrent Queueing &Нареждане на Oпашка на Торенти - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - Автоматично добавяне на тези тракери към нови сваляния: - - - + RSS Reader RSS Четец - + Enable fetching RSS feeds Включване получаването от RSS канали. - + Feeds refresh interval: Интервал за опресняване на каналите: - + Same host request delay: - + Maximum number of articles per feed: Максимален брой на статии за канал: - - - + + + min minutes мин - + Seeding Limits Лимит за качване - Pause torrent - Пауза на торент - - - + Remove torrent Премахни торент - + Remove torrent and its files Премахване на торент и неговите файлове - + Enable super seeding for torrent Разреши супер сийд за торент - + When ratio reaches Когато съотношението достигне - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS Торентов Авто Сваляч - + Enable auto downloading of RSS torrents Включване на автоматичното сваляне на RSS торенти - + Edit auto downloading rules... Редактиране на правилата за автоматично сваляне... - + RSS Smart Episode Filter RSS Разумен Филтър на Епизоди - + Download REPACK/PROPER episodes Изтегли REPACK/PROPER епизоди - + Filters: Филтри: - + Web User Interface (Remote control) Потребителски Уеб Интерфейс (Отдалечен контрол) - + IP address: IP адрес: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6410,41 +6404,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv "::" за всеки IPv6 адрес, или "*" за двата IPv4 или IPv6. - + Ban client after consecutive failures: Банни клиент след последователни провали: - + Never Никога - + ban for: забрана за: - + Session timeout: Изтекла сесия: - + Disabled Забранено - Enable cookie Secure flag (requires HTTPS) - Разреши флаг за сигурност на бисквитка (изисква HTTPS) - - - + Server domains: Сървърни домейни: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6453,37 +6443,37 @@ Use ';' to split multiple entries. Can use wildcard '*'.Списък с разрешени за филтриране стойности на HTTP хост хедъри. За защита срещу атака "ДНС повторно свързване" въведете тук домейните използвани от Уеб ПИ сървъра. Използвайте ';' за разделител. Може да се използва и заместител '*'. - + &Use HTTPS instead of HTTP &Използване на HTTPS вместо HTTP - + Bypass authentication for clients on localhost Заобиколи удостоверяването на клиенти от localhost - + Bypass authentication for clients in whitelisted IP subnets Заобиколи удостоверяването на клиенти от позволените IP подмрежи - + IP subnet whitelist... Позволени IP подмрежи... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Посочете ИП-та на обратно прокси (или подмрежи, напр. 0.0.0.0/24), за да използвате препратени клиент адреси (X-Препратени-За заглавка). Използвайте ';' да разделите множество вписвания. - + Upda&te my dynamic domain name Обнови моето динамично име на домейн @@ -6495,7 +6485,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - + Търсене @@ -6596,99 +6586,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Изтриване на резервните копия на лог файловете по-стари от: - + Show external IP in status bar - + When adding a torrent При добавяне на торент - + Bring torrent dialog to the front Изнасяне на диалога за добавяне на торент най-отпред - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Също изтриване на .torrent файловете, чието добавяне е било отказано - + Also when addition is cancelled Също, когато добавянето е отказано - + Warning! Data loss possible! Предупреждение! Загуба на информация е възможна! - + Saving Management Управление на Съхранението - + Default Torrent Management Mode: Торентов Режим на Управление по подразбиране: - + Manual Ръчно - + Automatic Автоматично - + When Torrent Category changed: Когато Категорията на Торента се промени: - + Relocate torrent Преместване на торента - + Switch torrent to Manual Mode Превключване на торента към Ръчен Режим - - + + Relocate affected torrents Преместване на засегнатите торенти - - + + Switch affected torrents to Manual Mode Превключване на засегнатите торенти в Ръчен Режим - + Use Subcategories Използване на Под-категории - + Default Save Path: Местоположение за Запис по подразбиране: - + Copy .torrent files to: Копирай .торент файловете в: @@ -6698,26 +6688,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Показване на &qBittorrent в зоната за уведомяване - &Log file - &Лог файл - - - + Display &torrent content and some options Показване съдържание на &торента и някои опции - + De&lete .torrent files afterwards Из&триване на .torrent файловете след това - + Copy .torrent files for finished downloads to: Копирай .torrent файловете от приключилите изтегляния в: - + Pre-allocate disk space for all files Преразпредели дисково пространство за всички файлове @@ -6747,10 +6733,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Прегледай файл, иначе отвори папката на местонахождение - - Show torrent options - Покажи торент опции - Shows a confirmation dialog when exiting with active torrents @@ -6816,69 +6798,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.години - + Log performance warnings Вписвай предупреждения за производителност - The torrent will be added to download list in a paused state - Торентът ще бъде добавен към списъка за изтегляне в състояние на пауза - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Не стартирай свалянето автоматично - + Whether the .torrent file should be deleted after adding it Дали .torrent файлът трябва да бъде изтрит след добавянето му - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Задели пълните файлови размери на диск преди започване на изтегляния, да се минимизира фрагментацията. Полезно е само за HDD-та. - + Append .!qB extension to incomplete files Добави .!qB разширение към незавършени файлове - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it След като торент е изтеглен, предложи да се добавят торенти от всякакви .torrent файлове намерени вътре - + Enable recursive download dialog Разреши диалог за рекурсивно изтегляне - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Автоматичен: Разни торентни свойства (напр. пътя на запазване) ще бъде решен от асоциираната категория Ръчен: Разни торентни свойства (напр. пътя на запазване) трябва да бъдат възложени ръчно - + When Default Save/Incomplete Path changed: Когато местоположението за запис по-подразбиране/непълен път се промени: - + When Category Save Path changed: Когато пътя за запазване на категория се промени: - + Use Category paths in Manual Mode Използвай Категория пътища в ръчен режим - + Resolve relative Save Path against appropriate Category path instead of Default one Решавай относителен път на запазване срещу подходящ път на категория вместо такъв по подразбиране @@ -6898,50 +6876,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: Условие за спиране на торент: - - + + None Няма - - + + Metadata received Метаданни получени - - + + Files checked Файлове проверени - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Използвай друг път за незавършени торенти: - + Automatically add torrents from: Автоматично добави торенти от: - + Excluded file names Изключи файлови имена - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6970,523 +6948,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not прочетиме[0-9].txt: 'прочетиме1.txt', 'прочетиме2.txt' но не 'прочетиме10.txt'. - + Receiver Приемник - + To: To receiver До: - + SMTP server: SMTP сървър: - + Sender Изпращач - + From: From sender От: - + This server requires a secure connection (SSL) Този сървър изисква защитена връзка (SSL) - - + + Authentication Удостоверяване - - - - + + + + Username: Име на потребителя: - - - - + + + + Password: Парола: - + Run external program Изпълни външна програма - Run on torrent added - Изпълни на добавен торент - - - Run on torrent finished - Изпълни на приключен торент - - - + Show console window Покажи конзолен прозорец - + TCP and μTP TCP и μTP - + Listening Port Порт за слушане - + Port used for incoming connections: Порт ползван за входящи връзки: - + Set to 0 to let your system pick an unused port Задайте на 0, за да позволите на вашата система да избере неизползван порт - + Random Приблизително - + Use UPnP / NAT-PMP port forwarding from my router Използване на UPnP / NAT-PMP порт за препращане от моя рутер - + Connections Limits Ограничения на Връзките - + Maximum number of connections per torrent: Максимален брой връзки на торент: - + Global maximum number of connections: Общ максимален брой на връзки: - + Maximum number of upload slots per torrent: Максимален брой слотове за качване на торент: - + Global maximum number of upload slots: Глобален максимален брой слотове за качване: - + Proxy Server Прокси Сървър - + Type: Тип: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Хост: - - - + + + Port: Порт: - + Otherwise, the proxy server is only used for tracker connections В противен случай, прокси сървъра се използва само за връзки с тракера - + Use proxy for peer connections Използвайте прокси за свързване между участниците - + A&uthentication У&достоверяване - Info: The password is saved unencrypted - Информация: Паролата е запазена некриптирана + Информация: Паролата е запазена некриптирана - + Filter path (.dat, .p2p, .p2b): Филтър път (.dat, .p2p, .p2b): - + Reload the filter Зареди повторно филтъра - + Manually banned IP addresses... Ръчно блокирани IP адреси... - + Apply to trackers Прилагане към тракери - + Global Rate Limits Общи Пределни Скорости - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s КиБ/с - - + + Upload: Качване: - - + + Download: Сваляне: - + Alternative Rate Limits Алтернативни Пределни Скорости - + Start time Начален час - + End time Крайно час - + When: Когато: - + Every day Всеки ден - + Weekdays Дни през седмицата - + Weekends Почивни дни - + Rate Limits Settings Настройки на Пределни Скорости - + Apply rate limit to peers on LAN Прилагане на пределна скорост за участници от локалната мрежа - + Apply rate limit to transport overhead Прилагане на пределна скорост за пренатоварено пренасяне - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Прилагане на пределна скорост за µTP протокола - + Privacy Дискретност - + Enable DHT (decentralized network) to find more peers Активиране на DHT (децентрализирана мрежа) за намиране на повече участници - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Обмени участници със съвместими Bittorrent клиенти (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Активиране на Обмяна на Участници (PeX) за намиране на повече участници - + Look for peers on your local network Търси участници в твоята локална мрежа - + Enable Local Peer Discovery to find more peers Включи Откриване на Локални Участници за намиране на повече връзки - + Encryption mode: Режим на кодиране: - + Require encryption Изискване на кодиране - + Disable encryption Изключване на кодиране - + Enable when using a proxy or a VPN connection Активиране при използване на прокси или VPN връзка - + Enable anonymous mode Включи анонимен режим - + Maximum active downloads: Максимум активни сваляния: - + Maximum active uploads: Максимум активни качвания: - + Maximum active torrents: Максимум активни торенти: - + Do not count slow torrents in these limits Не изчислявай бавни торенти в тези лимити - + Upload rate threshold: Праг на скоростта на качване: - + Download rate threshold: Праг на скоростта на изтегляне: - - - - + + + + sec seconds сек - + Torrent inactivity timer: Таймер за неактивност на торент: - + then тогава - + Use UPnP / NAT-PMP to forward the port from my router Изпозване на UPnP / NAT-PMP за препращане порта от моя рутер - + Certificate: Сертификат: - + Key: Ключ: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Информация за сертификати</a> - + Change current password Промени текущата парола - Use alternative Web UI - Ползвай алтернативен Уеб ПИ - - - + Files location: Местоположение на файловете: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Сигурност - + Enable clickjacking protection Разрежи защита от прихващане на щракване - + Enable Cross-Site Request Forgery (CSRF) protection Разреши Фалшифициране на заявки между сайтове (CSRF) защита - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Разреши потвърждаване на заглавната част на хоста - + Add custom HTTP headers Добави разширени HTTP заглавни части - + Header: value pairs, one per line Заглавна част: стойностни чифтове, един на ред - + Enable reverse proxy support Разреши поддръжка на обратно прокси - + Trusted proxies list: Списък на доверени прокси: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Услуга: - + Register Регистър - + Domain name: Домейн име: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Чрез активиране на тези опции, можете <strong>безвъзвратно да загубите</strong> вашите .torrent файлове! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Ако активирате втората опция (&ldquo;Също, когато добавянето е отказна&rdquo;) .torrent файлът <strong>ще бъде изтрит</strong> дори ако натиснете &ldquo;<strong>Отказ</strong>&rdquo; в диалога &ldquo;Добавяне торент&rdquo; @@ -7496,12 +7461,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Избиране на qBittorrent ПИ тема-файл - + Choose Alternative UI files location Избиране на алтернативно местоположение за ПИ файлове - + Supported parameters (case sensitive): Поддържани параметри (чувствителност към регистъра) @@ -7521,183 +7486,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Забранен поради неуспех при засичане на присъствие на системен трей - + No stop condition is set. Не е зададено условие за спиране. - + Torrent will stop after metadata is received. Торента ще спре след като метаданни са получени. - + Torrent will stop after files are initially checked. Торента ще спре след като файловете са първоначално проверени. - + This will also download metadata if it wasn't there initially. Това също ще свали метаданни, ако ги е нямало първоначално. - + %N: Torrent name %N: Име на торент - + %L: Category %L: Категория - + %F: Content path (same as root path for multifile torrent) %F: Местоположение на съдържанието (същото като местоположението на основната директория за торент с множество файлове) - + %R: Root path (first torrent subdirectory path) %R: Местоположение на основната директория (местоположението на първата поддиректория за торент) - + %D: Save path %D: Местоположение за запис - + %C: Number of files %C: Брой на файловете - + %Z: Torrent size (bytes) %Z: Размер на торента (байтове) - + %T: Current tracker %T: Сегашен тракер - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Подсказка: Обградете параметър с кавички за предотвратяваме орязването на текста при пауза (пр., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Без) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Торент ще бъде считан за бавен, ако скоростите му за изтегляне и качване стоят под тези стойности за "Таймер за неактивност на торент" секунди - + Certificate Сертификат - + Select certificate Избиране на сертификат - + Private key Частен ключ - + Select private key Избиране на частен ключ - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Избиране на директория за наблюдение - + Adding entry failed Добавянето на запис е неуспешно - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Грешка в местоположението - - + + Choose export directory Избиране на директория за експорт - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Когато тези опции са активирани, qBittorent ще <strong>изтрие</strong> .torrent файловете след като са били успешно (първата опция) или не (втората опция) добавени към тяхната опашка за сваляне. Това ще бъде приложено <strong>не само</strong> върху файловете отворени чрез &ldquo;Добави торент&rdquo; действието в менюто, но и също така върху тези отворени чрез <strong>асоцииране по файлов тип</strong>. @@ -7707,69 +7672,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not qBittorrent ПИ файл тема (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Тагове (разделени чрез запетая) - + %I: Info hash v1 (or '-' if unavailable) %I: Инфо хеш в1 (или '-', ако недостъпен) - + %J: Info hash v2 (or '-' if unavailable) %J: Инфо хеш в2 (или '-', ако недостъпен) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Торент ИД (или sha-1 инфо хеш за в1 торент или пресечен sha-256 инфо хеш за в2/хибриден торент) - - + + Choose a save directory Избиране на директория за запис - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Избиране файл на IP филтър - + All supported filters Всички подържани филтри - + The alternative WebUI files location cannot be blank. - + Parsing error Грешка при обработване - + Failed to parse the provided IP filter Неуспешно обработване на дадения IP филтър - + Successfully refreshed Успешно обновен - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Успешно обработване на дадения IP филтър: %1 правила бяха приложени. @@ -7780,18 +7745,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Предпочитания - + Time Error Времева грешка - + The start time and the end time can't be the same. Времето на стартиране и приключване не може да бъде едно и също. - - + + Length Error Дължинна Грешка @@ -7882,163 +7847,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Държава/Област - + IP/Address - + Port Порт - + Flags Флагове - + Connection Връзка - + Client i.e.: Client application Клиент - + Peer ID Client i.e.: Client resolved from Peer ID Клиент на участник ИД - + Progress i.e: % downloaded Изпълнение - + Down Speed i.e: Download speed Скорост на сваляне - + Up Speed i.e: Upload speed Скорост на качване - + Downloaded i.e: total data downloaded Свалени - + Uploaded i.e: total data uploaded Качени - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Уместност - + Files i.e. files that are being downloaded right now Файлове - + Column visibility Видимост на колона - + Resize columns Преоразмери колони - + Resize all non-hidden columns to the size of their contents Преоразмери всички нескрити колони до размерът на техните съдържания - + Add peers... Добави участници... - - + + Adding peers Добавяне на участници - + Some peers cannot be added. Check the Log for details. Някои участници не можаха да се добавят. Проверете Журнала за детайли. - + Peers are added to this torrent. Участниците бяха добавени към този торент. - - + + Ban peer permanently Блокиране на участника за постоянно - + Cannot add peers to a private torrent Не могат да се добавят участници към частен торент - + Cannot add peers when the torrent is checking Не могат да се добавят участници, когато торентът се проверява - + Cannot add peers when the torrent is queued Не могат да се добавят участници, когато торентът е в опашка - + No peer was selected Не е избран участник - + Are you sure you want to permanently ban the selected peers? Сигурни ли сте че искате да блокирате за постоянно избраните участници? - + Peer "%1" is manually banned Участник "%1" е ръчно блокиран - + N/A Няма - + Copy IP:port Копирай IP:порт @@ -8319,34 +8284,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent е активен - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent е активен @@ -8638,153 +8577,124 @@ Those plugins were disabled. Местоположение за Запис: - + Never Никога - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (средно %3) - - + + %1 (%2 this session) %1 (%2 тази сесия) - - + + N/A Няма - + Yes - Да + Да - + No - Не + Не - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (споделян за %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 макс.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 общо) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 средно) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Ново Web споделяне - - - Remove Web seed - Изтриване на Web споделяне - - - Copy Web seed URL - Копиране URL на Web споделяне - - - Edit Web seed URL - Редактиране URL на Web споделяне - - - + Filter files... Филтриране на файловете... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Графиките на скоростта са изключени - + You can enable it in Advanced Options Можете да го разрешите в Разширени опции - New URL seed - New HTTP source - Ново URL споделяне - - - New URL seed: - Ново URL споделяне: - - - This URL seed is already in the list. - Това URL споделяне е вече в списъка. - - - + Web seed editing Редактиране на Web споделяне - + Web seed URL: URL на Web споделяне: @@ -8792,33 +8702,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Невалиден формат на данни. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Запазване данни на RSS АвтоСваляч в %1 неуспешно. Грешка: %2 - + Invalid data format Невалиден формат на данни - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Зареждане данни на RSS АвтоСваляч неуспешно. Причина: %1 @@ -8826,22 +8736,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Не мога да сваля RSS поток от %1. Причина: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS потока '%1' е успешно обновен. Добавени са %2 нови статии. - + Failed to parse RSS feed at '%1'. Reason: %2 Не мога да прочета RSS поток от %1. Причина: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS потока '%1' е успешно свален. Започване на прочитането му. @@ -8890,12 +8800,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Не можа да се запази конфигурация на RSS сесия. Файл: "%1". Грешка: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Не можаха да се запазят данни на RSS сесия. Файл: "%1". Грешка: "%2" @@ -8917,76 +8827,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. Елементът не съществува: %1 - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Не може да се изтрие коренната директория. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Не можа да се зареди RSS поток. Поток: "%1". Причина: URL се изисква. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Не можа да се зареди RSS поток. Поток: "%1". Причина: UID е невалиден. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Дублиран RSS поток намерен. UID: "%1". Грешка: Конфигурацията изглежда е повредена. - + Couldn't load RSS item. Item: "%1". Invalid data format. Не можа да се зареди RSS предмет. Предмет: "%1". Невалиден формат на данните. - + Corrupted RSS list, not loading it. Повреден RSS списък, не се зарежда. - + Incorrect RSS Item path: %1. Неправилен път на RSS артикул: %1. - + RSS item with given path already exists: %1. RSS артикул със зададения път вече съществува: %1. - + Parent folder doesn't exist: %1. Родителската папка не съществува: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + сек + + + + Default + По подразбиране + + RSSWidget @@ -9086,78 +9037,69 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Моля изберете име на папка - + Folder name: Име на папка: - + New folder Нова папка - - Please type a RSS feed URL - Моля въведете URL на RSS канал + Моля въведете URL на RSS канал - - Feed URL: - URL на канал: + URL на канал: - + Deletion confirmation Потвърждение за изтриване - + Are you sure you want to delete the selected RSS feeds? Сигурни ли сте, че искате да изтриете избраните RSS канали? - + Please choose a new name for this RSS feed Моля изберете ново име за този RSS канал - + New feed name: Име на нов канал: - + Rename failed Преименуването неуспешно - + Date: Дата: - + Feed: - + Author: Автор: @@ -9294,10 +9236,6 @@ Those plugins were disabled. i.e: Number of partial sources Вземащи - - Search engine - Търсачка - Filter search results... @@ -9418,104 +9356,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Непознат формат на файла за добавката за търсене. - + Plugin already at version %1, which is greater than %2 Добавката вече е на версия %1, която е по-голяма от %2 - + A more recent version of this plugin is already installed. По-нова версия на тази добавка е вече инсталирана. - + Plugin %1 is not supported. Добавката %1 не се поддържа. - - + + Plugin is not supported. Добавката не се поддържа. - + Plugin %1 has been successfully updated. %1 добавка на търсачката беше успешно обновена. - + All categories Всички категории - + Movies Филми - + TV shows TV предавания - + Music Музика - + Games Игри - + Anime Аниме - + Software Софтуер - + Pictures Картини - + Books Книги - + Update server is temporarily unavailable. %1 Сървърът за обновления е временно недостъпен. %1 - - + + Failed to download the plugin file. %1 Неуспешно сваляне на файла на добавката. %1 - + Plugin "%1" is outdated, updating to version %2 Добавката "%1" е остаряла, обновяване до версия %2 - + Incorrect update info received for %1 out of %2 plugins. Неправилна информация за обновление е получена за %1 от %2 добавки. - + Search plugin '%1' contains invalid version string ('%2') Добавката за търсене '%1' съдържа невалидна версия ('%2') @@ -9541,135 +9479,127 @@ Click the "Search plugins..." button at the bottom right of the window Търсене на добавки... - + A phrase to search for. Фраза за търсене. - + Spaces in a search term may be protected by double quotes. Паузите в фразата за търсене могат да бъдат предпазени с двойни кавички. - + Example: Search phrase example Пример: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: търси за - + All plugins Всички добавки - + Only enabled Само активиран - - + + Invalid data format. - Невалиден формат на данни. + Невалиден формат на данни. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: търси за <b>foo</b> и <b>bar</b> - + Refresh - + Close tab Затваряне на раздел - + Close all tabs Затваряне на всички раздели - + Select... Избор... - - + + Search Engine Търсачка - - + + Please install Python to use the Search Engine. Моля инсталирайте Python, за да ползвате Търсачката. - + Empty search pattern Празен шаблон за търсене - + Please type a search pattern first Моля въведете първо шаблон за търсене - + Stop Спиране - - Search has finished - Търсенето завърши - - - Search has failed - Търсенето бе неуспешно - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10067,67 +9997,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Състояние на връзката: - - + + No direct connections. This may indicate network configuration problems. Няма директни връзки. Това може да е от проблеми в мрежовата настройка. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 възли - + qBittorrent needs to be restarted! qBittorrent се нуждае от рестарт - - + + Connection Status: Състояние на връзката: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Извън мрежа. Това обикновено означава, че qBittorrent не е успял да прослуша избрания порт за входни връзки. - + Online Онлайн - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Натисни за смяна към други ограничения за скорост - + Click to switch to regular speed limits Натисни за смяна към стандартни ограничения за скорост @@ -10155,14 +10095,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Приключени (0) - - Resumed (0) - Продължени (0) - - - Paused (0) - В пауза (0) - Running (0) @@ -10253,32 +10185,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - В Пауза (%1) - Moving (%1) Преместване (%1) - - Resume torrents - Продължи торентите - - - Pause torrents - Пауза на торентите - Remove torrents Премахни торенти - - Resumed (%1) - Продължени (%1) - Active (%1) @@ -10350,23 +10266,11 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Изтриване на неизползвани етикети - - Resume torrents - Продължаване на торенти - - - Pause torrents - Пауза на торентите - Remove torrents Премахни торенти - - New Tag - Нов Етикет - Start torrents @@ -10702,17 +10606,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10964,13 +10868,6 @@ Please choose a different name and try again. Наблюдаване на папка: "%1" - - TorrentInfo - - Invalid metadata - Невалидни метаданни - - TorrentOptionsDialog @@ -11008,10 +10905,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - Ограничения за скорост на торент - Download: @@ -11044,26 +10937,6 @@ Please choose a different name and try again. Upload: Качване: - - Torrent share limits - Ограничения за споделяне на торент - - - Use global share limit - Използвай глобално ограничение за споделяне - - - Set no share limit - Задаване без ограничение на споделяне - - - Set share limit to - Задаване на ограничение за споделяне на - - - ratio - съотношение - Disable DHT for this torrent @@ -11105,14 +10978,6 @@ Please choose a different name and try again. Not applicable to private torrents Не приложимо за частни торенти - - No share limit method selected - Няма избран метод на ограничение на споделяне - - - Please select a limit method first - Моля първо изберете метод на ограничение първо - TorrentShareLimitsWidget @@ -11172,7 +11037,7 @@ Please choose a different name and try again. Remove torrent - Премахни торент + Премахни торент @@ -11182,7 +11047,7 @@ Please choose a different name and try again. Enable super seeding for torrent - Разреши супер сийд за торент + Разреши супер засяване за торент @@ -11197,10 +11062,6 @@ Please choose a different name and try again. Torrent Tags - - New Tag - Нов Етикет - Add tag @@ -11235,78 +11096,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Грешка: '%1' не е валиден торент файл. - + Priority must be an integer Приоритет трябва да е цяло число - + Priority is not valid Приоритет не е валиден - + Torrent's metadata has not yet downloaded Метаданни на торент все още не са свалени - + File IDs must be integers Файлови ИД-та трябва да са цели числа - + File ID is not valid Файлов ИД не е валиден - - - - + + + + Torrent queueing must be enabled Торентово нареждане на опашка трябва да бъде разрешено - - + + Save path cannot be empty Пътя на запазване не може да бъде празен - - + + Cannot create target directory Не може да се създаде целева директория - - + + Category cannot be empty Категория не може да бъде празна - + Unable to create category Не можа да се създаде категория - + Unable to edit category Не можа са се редактира категория - + Unable to export torrent file. Error: %1 Не може да се изнесе торент файл. Грешка: "%1". - + Cannot make save path Не може да се направи път на запазване @@ -11326,39 +11187,39 @@ Please choose a different name and try again. 'сортиране' параметър е невалиден - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" не е валиден файлов индекс. - + Index %1 is out of bounds. Индекс %1 е извън граници. - - + + Cannot write to directory Не може да се запише в директория - + WebUI Set location: moving "%1", from "%2" to "%3" УебПИ Задаване на местоположение: преместване "%1", от "%2" в "%3" - + Incorrect torrent name Неправилно име на торент - - + + Incorrect category name Неправилно име на категория @@ -11507,73 +11368,73 @@ Please choose a different name and try again. Този торент е частен - + Tracker editing Редактиране на тракера - + Tracker URL: URL адрес на тракера: - - + + Tracker editing failed Редактирането на тракера е неуспешно - + The tracker URL entered is invalid. Въведеният URL адрес на тракер е невалиден. - + The tracker URL already exists. URL адреса на тракера вече съществува. - + Edit tracker URL... Редактирай URL на тракера... - + Remove tracker Премахни тракер - + Copy tracker URL Копиране на URL на тракер - + Force reannounce to selected trackers Принудително повторно анонсиране към избраните тракери - + Force reannounce to all trackers Принудително анонсиране към всички тракери - + Resize columns Преоразмери колони - + Resize all non-hidden columns to the size of their contents Преоразмери всички нескрити колони до размерът на техните съдържания - + Add trackers... Добави тракери... - + Column visibility Видимост на колона @@ -11663,14 +11524,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - Продължи торентите - - - Pause torrents - Пауза на торентите - Remove torrents @@ -11793,10 +11646,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Проверка на данните за продължаване - - Paused - В Пауза - Completed @@ -11837,21 +11686,16 @@ Please choose a different name and try again. % Done Напредък - - Status - Torrent status (e.g. downloading, seeding, paused) - Статус - Stopped - + Спрян Status Torrent status (e.g. downloading, seeding, stopped) - + Състояние @@ -11967,22 +11811,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Време активен + Време активен Yes - Да + Да No - Не - - - Time Active - Time (duration) the torrent is active (not paused) - Време активен + Не @@ -12084,358 +11923,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Видимост на колона - + Recheck confirmation Потвърждение за повторна проверка - + Are you sure you want to recheck the selected torrent(s)? Сигурни ли сте, че искате повторно да проверите избрания торент(и)? - + Rename Преименувай - + New name: Ново име: - + Choose save path Избери път за съхранение - Confirm pause - Потвърди пауза - - - Would you like to pause all torrents? - Бихте ли искали да поставите на пауза всички торенти? - - - Confirm resume - Потвърди продължение - - - Would you like to resume all torrents? - Бихте ли искали да продължите всички торенти? - - - + Unable to preview Не може да се визуализира - + The selected torrent "%1" does not contain previewable files Избраният торент "%1" не съдържа файлове за визуализация - + Resize columns Преоразмери колони - + Resize all non-hidden columns to the size of their contents Преоразмери всички нескрити колони до размерът на техните съдържания - + Enable automatic torrent management Разреши автоматично управление на торент - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Сигурни ли сте, че искате да разрешите автоматично управление на торент за избраният/те торент(и)? Те могат да бъдат преместени. - Add Tags - Добави Етикети - - - + Choose folder to save exported .torrent files Изберете папка за запазване на изнесени .torrent файлове - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Изнасяне на .torrent файл неуспешно. Торент "%1". Път на запазване: "%2". Причина: "%3" - + A file with the same name already exists Файл със същото име вече съществува - + Export .torrent file error Грешка при изнасяне на .torrent файл - + Remove All Tags Изтрий Всички Етикети - + Remove all tags from selected torrents? Изтриване на всички етикети от избраните торенти? - + Comma-separated tags: Етикети разделени чрез запетаи: - + Invalid tag Невалиден етикет - + Tag name: '%1' is invalid Името на етикета '%1' е невалидно - &Resume - Resume/start the torrent - &Продължи - - - &Pause - Pause the torrent - &Пауза - - - Force Resu&me - Force Resume/start the torrent - Насилствено продъл&жи - - - + Pre&view file... Пре&гледай файл... - + Torrent &options... Торент &опции... - + 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 loc&ation... Задаване на мес&тоположение... - + Force rec&heck Принудително пре&провери - + Force r&eannounce Принудително р&еанонсирай - + &Magnet link &Магнитна връзка - + Torrent &ID Торент &ИД - + &Comment - + &Name &Име - + Info &hash v1 Инфо &хеш в1 - + Info h&ash v2 Инфо &хеш в2 - + Re&name... Пре&именувай... - + Edit trac&kers... Редактирай тра&кери... - + E&xport .torrent... И&знеси .torrent... - + Categor&y Категори&я - + &New... New category... &Нов... - + &Reset Reset category &Нулирай - + Ta&gs Та&гове - + &Add... Add / assign multiple tags... &Добави... - + &Remove All Remove all tags &Премахни всички - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Опашка - + &Copy &Копирай - + Exported torrent is not necessarily the same as the imported Изнесен торент е необезателно същият като внесения торент - + Download in sequential order Сваляне по азбучен ред - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Грешки възникнаха при изнасяне на .torrent файлове. Проверете дневника на изпълняване за подробности. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &Премахни - + Download first and last pieces first Сваляне първо на първото и последното парче - + Automatic Torrent Management Автоматичен Торентов Режим на Управаление - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Автоматичен режим значи, че различни свойства на торент (н. пр. път на запазване) ще бъдат решени от асоциираната категория - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Не може да се принуди реанонсиране, ако торента е в пауза/опашка/грешка/проверка - - - + Super seeding mode Режим на супер-даване @@ -12567,32 +12367,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12684,52 +12484,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Неприемлив тип файл, разрешен е само обикновен файл. - + Symlinks inside alternative UI folder are forbidden. Символните връзки в алтернативната папка на потребителския интерфейс са забранени. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Липсва разделител ":" в WebUI потребителски HTTP заглавка: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12787,7 +12587,7 @@ Please choose a different name and try again. Unknown error - Непозната грешка + Непозната грешка diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index 0798cba82..2d7f3a423 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -170,10 +170,6 @@ Never show again No ho tornis a mostrar. - - Torrent settings - Configuració del torrent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Opcions del torrent @@ -235,25 +231,25 @@ Condició d'aturada: - - + + None Cap - - + + Metadata received Metadades rebudes - + Torrents that have metadata initially will be added as stopped. Els torrents que tinguin metadades inicialment s'afegiran com a aturats. - + Files checked Fitxers comprovats @@ -368,112 +364,112 @@ Desa com a fitxer .torrent... - + I/O Error Error d'entrada / sortida - + Not Available This comment is unavailable No disponible - + Not Available This date is unavailable No disponible - + Not available No disponible - + Magnet link Enllaç magnètic - + Retrieving metadata... Rebent les metadades... - - + + Choose save path Trieu el camí on desar-ho - + No stop condition is set. No s'ha establert cap condició d'aturada. - + Torrent will stop after metadata is received. El torrent s'aturarà després de rebre les metadades. - + Torrent will stop after files are initially checked. El torrent s'aturarà després de la comprovació inicial dels fitxers. - + This will also download metadata if it wasn't there initially. Això també baixarà metadades si no n'hi havia inicialment. - + N/A N / D - + %1 (Free space on disk: %2) %1 (Espai lliure al disc: %2) - + Not available This size is unavailable. No disponible - + Torrent file (*%1) Fitxer torrent (*%1) - + Save as torrent file Desa com a fitxer torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. No s'ha pogut exportar el fitxer de metadades del torrent %1. Raó: %2. - + Cannot create v2 torrent until its data is fully downloaded. No es pot crear el torrent v2 fins que les seves dades estiguin totalment baixades. - + Filter files... Filtra els fitxers... - + Parsing metadata... Analitzant les metadades... - + Metadata retrieval complete S'ha completat la recuperació de metadades @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Es baixa el torrent... Font: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" No s'ha pogut afegir el torrent. Font: "%1". Raó: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - S'ha detectat un intent d'afegir un torrent duplicat. Font: %1. Torrent existent: %2. Resultat: %3 + S'ha detectat un intent d'afegir un torrent duplicat. Font: %1. Torrent existent: %2. Resultat: %3 - + Merging of trackers is disabled La fusió de rastrejadors està desactivada. - + Trackers cannot be merged because it is a private torrent Els rastrejadors no es poden fusionar perquè és un torrent privat. - + Trackers are merged from new source Els rastrejadors es fusionen des de la font nova. + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torna a comprovar els torrents completats - - + + ms milliseconds ms - + Setting Configuració - + Value Value set for this setting Valor - + (disabled) (inhabilitat) - + (auto) (automàtic) - - + + min minutes min - + All addresses Totes les adreces - + qBittorrent Section Secció de qBittorrent - - + + Open documentation Obre la documentació - + All IPv4 addresses Totes les adreces d'IPv4 - + All IPv6 addresses Totes les adreces d'IPv6 - + libtorrent Section Secció de libtorrent - + Fastresume files Fitxers de represa ràpida - + SQLite database (experimental) Base de dades SQLite (experimental) - + Resume data storage type (requires restart) Tipus d'emmagatzematge de dades de represa (requereix reiniciar) - + Normal Normal - + Below normal Inferior a normal - + Medium Mitjà - + Low Baix - + Very low Molt baix - + Physical memory (RAM) usage limit Límit d'ús de la memòria física (RAM). - + Asynchronous I/O threads Fils d'E/S asincrònics - + Hashing threads Fils de resum - + File pool size Mida de l'agrupació de fitxers - + Outstanding memory when checking torrents Memòria excepcional en comprovar torrents - + Disk cache Cau del disc - - - - + + + + + s seconds s - + Disk cache expiry interval Interval de caducitat de la memòria cau del disc - + Disk queue size Mida de la cua del disc - - + + Enable OS cache Habilita la memòria cau del sistema operatiu - + Coalesce reads & writes Fusiona les lectures i escriptures - + Use piece extent affinity Usa l'afinitat d'extensió de tros. - + Send upload piece suggestions Envia suggeriments de càrrega de trossos - - - - - + + + + + 0 (disabled) 0 (desactivat) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Guardar l'interval de dades de continuació [0: desactivat] - + Outgoing ports (Min) [0: disabled] Ports de surtida (Min) [0: desactivat] - + Outgoing ports (Max) [0: disabled] Ports de sortida (Max) [0: desactivat] - + 0 (permanent lease) 0 (cessió permanent) - + UPnP lease duration [0: permanent lease] Duració de la cessió UPnP [0: cessió permanent] - + Stop tracker timeout [0: disabled] Aturar el comptador de tracker [0: desactivat] - + Notification timeout [0: infinite, -1: system default] Compte de notificació [0: infinit, -1: per defecte de sistema] - + Maximum outstanding requests to a single peer Màxim de sol·licituds pendents per a un sol client - - - - - + + + + + KiB KiB - + (infinite) (infinit) - + (system default) (per defecte de sistema) - + Delete files permanently - + Suprimeix fitxers permanentment - + Move files to trash (if possible) - + Mou els fitxers a la paperera (si és possible) - + Torrent content removing mode - + Mode de supressió de contingut del torrent - + This option is less effective on Linux Aquesta opció és menys efectiva a Linux. - + Process memory priority Prioritat de memòria del procés - + Bdecode depth limit Bdecode: límit de profunditat - + Bdecode token limit Bdecode: límit de testimonis - + Default Per defecte - + Memory mapped files Fitxers assignats a la memòria - + POSIX-compliant Compatible amb POSIX - + Simple pread/pwrite - + Pread/pwrite simple - + Disk IO type (requires restart) Tipus d'E / S del disc (requereix reinici) - - + + Disable OS cache Inhabilita la cau del SO - + Disk IO read mode Mode de lectura d'E/S del disc - + Write-through Escriu a través - + Disk IO write mode Mode d'escriptura d'E/S del disc - + Send buffer watermark Envia la marca d'aigua de la memòria intermèdia - + Send buffer low watermark Envia la marca d'aigua feble de la memòria intermèdia - + Send buffer watermark factor Envia el factor la marca d'aigua de la memòria intermèdia - + Outgoing connections per second Connexions sortints per segon - - + + 0 (system default) 0 (per defecte de sistema) - + Socket send buffer size [0: system default] Mida del buffer de socket d'enviament [0: per defecte de sistema] - + Socket receive buffer size [0: system default] Mida del buffer del socket de recepció [0: per defecte de sistema] - + Socket backlog size Mida del registre històric del sòcol - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Desa l'interval d'estadístiques [0: desactivat] - + .torrent file size limit Límit de mida del fitxer .torrent - + Type of service (ToS) for connections to peers Tipus de servei (ToS) per a connexions amb clients - + Prefer TCP Prefereix TCP - + Peer proportional (throttles TCP) Proporcional als clients (acceleració de TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Admet el nom de domini internacionalitzat (IDN) - + Allow multiple connections from the same IP address Permet connexions múltiples des de la mateixa adreça IP - + Validate HTTPS tracker certificates Valida els certificats del rastrejador d'HTTPS - + Server-side request forgery (SSRF) mitigation Mitigació de falsificació de sol·licituds del costat del servidor (SSRF) - + Disallow connection to peers on privileged ports No permetis la connexió a clients en ports privilegiats - + It appends the text to the window title to help distinguish qBittorent instances Afegeix el text al títol de la finestra per ajudar a distingir les instàncies del qBittorent. - + Customize application instance name Personalitza el nom de la instància de l'aplicació - + It controls the internal state update interval which in turn will affect UI updates Controla l'interval d'actualització de l'estat intern que, al seu torn, afectarà les actualitzacions de la interfície d'usuari. - + Refresh interval Interval d'actualització - + Resolve peer host names Resol els noms d'amfitrió dels clients - + IP address reported to trackers (requires restart) Adreça IP informada als rastrejadors (requereix reinici) - + Port reported to trackers (requires restart) [0: listening port] - + Port informat als rastrejadors (requereix reinici) [0: port d'escolta] - + Reannounce to all trackers when IP or port changed Torna a anunciar-ho a tots els rastrejadors quan es canviï d’IP o de port. - + Enable icons in menus Habilita icones als menús - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Habilita el reenviament de port per al rastrejador integrat. - + Enable quarantine for downloaded files Activa la quarantena per als fitxers baixats. - + Enable Mark-of-the-Web (MOTW) for downloaded files Habilita Mark-of-the-Web (MOTW) per als fitxers baixats. - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Afecta la validació de certificats i les activitats de protocol que no són de torrents (per exemple, fonts RSS, actualitzacions de programes, fitxers torrent, bases de dades geoip, etc.) - + Ignore SSL errors - + Ignora els errors d'SSL - + (Auto detect if empty) (Detecció automàtica si està buit) - + Python executable path (may require restart) Camí executable de Python (pot caldre reiniciar) - + Start BitTorrent session in paused state - + Inicia la sessió del BitTorrent en estat de pausa. - + sec seconds - s + s - + -1 (unlimited) - + -1 (sense límit) - + BitTorrent session shutdown timeout [-1: unlimited] - + Temps d'espera d'aturada de la sessió del BitTorrent [-1: sense límit] - + Confirm removal of tracker from all torrents Confirmeu l'eliminació del rastrejador de tots els torrents. - + Peer turnover disconnect percentage Percentatge de desconnexió de la rotació de clients - + Peer turnover threshold percentage Percentatge del límit de la rotació de clients - + Peer turnover disconnect interval Interval de desconnexió de la rotació de clients - + Resets to default if empty Restableix els valors predeterminats si està buit. - + DHT bootstrap nodes Nodes d'arrencada de DHT - + I2P inbound quantity Quantitat d'entrada I2P - + I2P outbound quantity Quantitat de sortida I2P - + I2P inbound length Longitud d'entrada I2P - + I2P outbound length Longitud de sortida I2P - + Display notifications Mostra notificacions - + Display notifications for added torrents Mostra notificacions per als torrents afegits - + Download tracker's favicon Baixa la icona de web del rastrejador - + Save path history length Llargada de l'historial de camins on desar-ho - + Enable speed graphs Habilita els gràfics de velocitat - + Fixed slots Ranures fixes - + Upload rate based Segons la velocitat de pujada - + Upload slots behavior Comportament de les ranures de pujada - + Round-robin Algoritme Round-robin - + Fastest upload La pujada més ràpida - + Anti-leech Antisangoneres - + Upload choking algorithm Algorisme d'ofec de pujada - + Confirm torrent recheck Confirma la verificació del torrent - + Confirm removal of all tags Confirmació de supressió de totes les etiquetes - + Always announce to all trackers in a tier Anuncia sempre a tots els rastrejadors en un nivell - + Always announce to all tiers Anuncia sempre a tots els nivells - + Any interface i.e. Any network interface Qualsevol interfície - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algorisme de mode mixt %1-TCP - + Resolve peer countries Resol els països dels clients. - + Network interface Interfície de xarxa - + Optional IP address to bind to Adreça IP opcional per vincular-s'hi - + Max concurrent HTTP announces Màxim d'anuncis d'HTTP concurrents - + Enable embedded tracker Habilita el rastrejador integrat - + Embedded tracker port Port d'integració del rastrejador @@ -1382,142 +1393,142 @@ Invalid directory path - + Camí de directori no vàlid Directory does not exist - + El directori ni existeix. Invalid mode, allowed values: %1 - + Mode no vàlid, valors permesos: %1 cookies must be array - + les galetes han de ser una matriu Application - + Running in portable mode. Auto detected profile folder at: %1 S'executa en mode portàtil. Carpeta de perfil detectada automàticament a %1. - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. S'ha detectat una bandera de línia d'ordres redundant: "%1". El mode portàtil implica una represa ràpida relativa. - + Using config directory: %1 S'usa el directori de configuració %1 - + Torrent name: %1 Nom del torrent: %1 - + Torrent size: %1 Mida del torrent: %1 - + Save path: %1 Camí on desar-ho: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds El torrent s'ha baixat: %1. - - + + Thank you for using qBittorrent. Gràcies per utilitzar el qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, enviant notificació per e-mail - + Add torrent failed S'ha produït un error en afegir el torrent. - + Couldn't add torrent '%1', reason: %2. No s'ha pogut afegir el torrent %1. Raó: %2. - + The WebUI administrator username is: %1 El nom d'usuari d'administrador de la interfície web és %1. - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 La contrasenya de l'administrador de la interfície web no s'ha establert. Es proporciona una contrasenya temporal per a aquesta sessió: %1 - + You should set your own password in program preferences. Hauríeu d'establir la vostra contrasenya a les preferències del programa. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. La interfície web està desactivada! Per habilitar-la, editeu el fitxer de configuració manualment. - + Running external program. Torrent: "%1". Command: `%2` Execució de programa extern. Torrent: "%1". Ordre: %2 - + Failed to run external program. Torrent: "%1". Command: `%2` Ha fallat executar el programa extern. Torrent: "%1". Ordre: %2 - + Torrent "%1" has finished downloading El torrent "%1" s'ha acabat de baixar. - + WebUI will be started shortly after internal preparations. Please wait... La Interfície d'usuari web s'iniciarà poc després dels preparatius interns. Si us plau, espereu... - - + + Loading torrents... Es carreguen els torrents... - + E&xit S&urt - + I/O Error i.e: Input/Output Error Error d'entrada / sortida - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Raó: %2 - + Torrent added Torrent afegit - + '%1' was added. e.g: xxx.avi was added. S'ha afegit "%1". - + Download completed Baixada completa - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started El qBittorrent %1 s'ha iniciat. ID de procés: %2 - + This is a test email. - + Aquest és un correu electrònic de prova. - + Test email - + Prova de correu electrònic - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. «%1» s'ha acabat de baixar. - + Information Informació - + To fix the error, you may need to edit the config file manually. Per corregir l'error, és possible que hàgiu d'editar el fitxer de configuració manualment. - + To control qBittorrent, access the WebUI at: %1 Per a controlar el qBittorrent, accediu a la interfície web a: %1 - + Exit Surt - + Recursive download confirmation Confirmació de baixades recursives - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? El torrent "%1" conté fitxers .torrent. En voleu continuar les baixades? - + Never Mai - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Baixada recursiva del fitxer .torrent dins del torrent. Torrent font: "%1". Fitxer: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" No s'ha pogut establir el límit d'ús de la memòria física (RAM). Codi d'error: %1. Missatge d'error: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" No s'ha pogut establir el límit dur d'ús de la memòria física (RAM). Mida sol·licitada: %1. Límit dur del sistema: %2. Codi d'error: %3. Missatge d'error: %4 - + qBittorrent termination initiated Terminació iniciada del qBittorrent - + qBittorrent is shutting down... El qBittorrent es tanca... - + Saving torrent progress... Desant el progrés del torrent... - + qBittorrent is now ready to exit El qBittorrent ja està a punt per sortir. @@ -1766,263 +1777,263 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb &Exportació... - + Matches articles based on episode filter. Articles coincidents amb el filtre d'episodis. - + Example: Exemple: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match emparellarà 2, 5 i 8 a través del 15 i 30 i els episodis següents de la primera temporada - + Episode filter rules: Regles del filtre d'episodis: - + Season number is a mandatory non-zero value El número de temporada ha de ser un valor diferent de zero. - + Filter must end with semicolon El filtre ha d'acabar en punt i coma. - + Three range types for episodes are supported: S'admeten tres tipus d'intervals per als episodis: - + Single number: <b>1x25;</b> matches episode 25 of season one Un únic número: <b>1x25;<b> coincideix amb l'episodi 25 de la temporada u. - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Interval normal: <b>1x25-40;<b> coincideix amb l'episodi 25 al 40 de la primera temporada. - + Episode number is a mandatory positive value El número d'episodi ha de ser un valor positiu. - + Rules Regles - + Rules (legacy) Regles (llegat) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Interval infinit: <b>1x25-;</b> coincideix amb 25 episodis i més enllà de la primera temporada, i tots els episodis de les darreres temporades. - + Last Match: %1 days ago Darrera coincidència: fa %1 dies - + Last Match: Unknown Darrera coincidència: desconeguda - + New rule name Nom de la nova regla - + Please type the name of the new download rule. Escriviu el nom de la nova regla de baixada. - - + + Rule name conflict Conflicte amb el nom de la regla - - + + A rule with this name already exists, please choose another name. Ja existeix una regla amb aquest nom. Trieu-ne un altre. - + Are you sure you want to remove the download rule named '%1'? Segur que voleu suprimir la regla de baixada anomenada «%1»? - + Are you sure you want to remove the selected download rules? Segur que voleu suprimir les regles de baixada seleccionades? - + Rule deletion confirmation Confirmació de supressió de la regla - + Invalid action Acció no vàlida - + The list is empty, there is nothing to export. La llista està buida, no hi ha res per exportar. - + Export RSS rules Exporta regles d'RSS - + I/O Error Error d'entrada / sortida - + Failed to create the destination file. Reason: %1 Ha fallat crear el fitxer de destinació. Raó: %1. - + Import RSS rules Importa regles d'RSS - + Failed to import the selected rules file. Reason: %1 Ha fallat importar el fitxer de regles seleccionat. Raó: %1. - + Add new rule... Afegeix una regla nova... - + Delete rule Suprimeix la regla - + Rename rule... Canvia el nom de la regla... - + Delete selected rules Suprimeix les regles seleccionades - + Clear downloaded episodes... Neteja els episodis baixats... - + Rule renaming Canvi de nom de la regla - + Please type the new rule name Escriviu el nou nom de la regla - + Clear downloaded episodes Neteja els episodis baixats - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Segur que voleu netejar la llista d'episodis baixats per a la regla seleccionada? - + Regex mode: use Perl-compatible regular expressions Mode d'expressió regular: usa expressions regulars compatibles amb Perl - - + + Position %1: %2 Posició: %1: %2 - + Wildcard mode: you can use Mode de comodí: podeu usar - - + + Import error Error d'importació - + Failed to read the file. %1 No s'ha pogut llegir el fitxer. %1 - + ? to match any single character ? per substituir qualsevol caràcter simple - + * to match zero or more of any characters * per substituir o bé res o bé qualsevol altre nombre de caràcters. - + Whitespaces count as AND operators (all words, any order) Els espais en blanc compten com a operadors I (totes les paraules, en qualsevol ordre) - + | is used as OR operator | s'usa com a operador OR - + If word order is important use * instead of whitespace. Si l'ordre de paraules és important, useu * en comptes de l'espai en blanc. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Una expressió amb una subordinada %1 buida (p. e. %2) - + will match all articles. coincidirà amb tots els articles. - + will exclude all articles. exclourà tots els articles. @@ -2074,28 +2085,38 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb No es poden analitzar les dades de la represa: format no vàlid. - - + + Cannot parse torrent info: %1 No es pot analitzar la informació del torrent: %1 - + Cannot parse torrent info: invalid format No es pot analitzar la informació del torrent: format no vàlid. - + Mismatching info-hash detected in resume data S'ha detectat un resum d'informació que no coincideix amb les dades de represa. - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. No s'han pogut desar les metadades del torrent a '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. No s'han pogut desar les dades del currículum de torrent a '% 1'. Error:% 2. @@ -2106,16 +2127,17 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb + Cannot parse resume data: %1 No es poden analitzar les dades de represa: %1 - + Resume data is invalid: neither metadata nor info-hash was found Les dades de la represa no són vàlides: no s'han trobat ni metadades ni resum d'informació. - + Couldn't save data to '%1'. Error: %2 No s'han pogut desar les dades a «%1». Error: %2 @@ -2123,38 +2145,60 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb BitTorrent::DBResumeDataStorage - + Not found. No s'ha trobat. - + Couldn't load resume data of torrent '%1'. Error: %2 No s'han pogut carregar les dades de represa del torrent «%1». Error: %2 - - + + Database is corrupted. La base de dades està malmesa. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. No s'ha pogut activar el mode de registre d'escriptura anticipada (WAL). Error: %1. - + Couldn't obtain query result. No s'ha pogut obtenir el resultat de la consulta. - + WAL mode is probably unsupported due to filesystem limitations. El mode WAL probablement no és compatible a causa de les limitacions del sistema de fitxers. - + + + Cannot parse resume data: %1 + No es poden analitzar les dades de represa: %1 + + + + + Cannot parse torrent info: %1 + No es pot analitzar la informació del torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 No s'ha pogut iniciar transació. Error: %1 @@ -2162,22 +2206,22 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. No s'han pogut desar les metadades del torrent. Error:% 1. - + Couldn't store resume data for torrent '%1'. Error: %2 No es poden emmagatzemar les dades de represa del torrent: «%1». Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 No s'han pogut suprimir les dades de represa del torrent «%1». Error: %2 - + Couldn't store torrents queue positions. Error: %1 No s'han pogut emmagatzemar les posicions de cua dels torrents. Error %1 @@ -2185,530 +2229,507 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Compatibilitat amb la taula de resum distribuïda (DHT): %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF NO - - + + Local Peer Discovery support: %1 Compatibilitat local per al descobriment de clients: %1 - + Restart is required to toggle Peer Exchange (PeX) support Cal reiniciar per canviar el suport de l'intercanvi de clients (PeX). - + Failed to resume torrent. Torrent: "%1". Reason: "%2" No s'ha pogut reprendre el torrent. Torrent: "%1". Raó: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" No s'ha pogut reprendre el torrent: s'ha detectat un ID de torrent inconsistent. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Dades incoherents detectades: falta una categoria al fitxer de configuració. Es recuperarà la categoria, però la configuració es restablirà al valor predeterminat. Torrent: "%1". Categoria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Dades incoherents detectades: categoria no vàlida. Torrent: "%1". Categoria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" S'ha detectat un manca de coincidència entre els camins de desament de la categoria recuperada i el camí on desar-ho actual del torrent. Ara el torrent ha canviat al mode manual. Torrent: "%1". Categoria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" S'han detectat dades incoherents: falta l'etiqueta al fitxer de configuració. Es recuperarà l'etiqueta. Torrent: "%1". Etiqueta: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Dades incoherents detectades: etiqueta no vàlida. Torrent: "%1". Etiqueta: "%2" - + System wake-up event detected. Re-announcing to all the trackers... S'ha detectat un esdeveniment d'activació del sistema. Es torna a anunciar a tots els rastrejadors... - + Peer ID: "%1" ID del client: "%1" - + HTTP User-Agent: "%1" Agent d'usuari d'HTTP: "%1" - + Peer Exchange (PeX) support: %1 Suport per a l'intercanvi de clients (PeX): %1 - - + + Anonymous mode: %1 Mode anònim: %1 - - + + Encryption support: %1 Suport d'encriptació: %1 - - + + FORCED FORÇAT - + Could not find GUID of network interface. Interface: "%1" No s'ha pogut trobar el GUID de la interfície de xarxa. Interfície: "%1" - + Trying to listen on the following list of IP addresses: "%1" S'intenta escoltar la llista següent d'adreces IP: "%1" - + Torrent reached the share ratio limit. El torrent ha arribat al límit de la compartició. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - S'ha suprimit el torrent. - - - Removed torrent and deleted its content. - S'ha suprimit el torrent i el seu contingut. - - - Torrent paused. - Torrent interromput - - - + Super seeding enabled. Supersembra habilitada. - + Torrent reached the seeding time limit. El torrent ha arribat al límit de temps de sembra. - + Torrent reached the inactive seeding time limit. El torrent ha arribat al límit de temps de sembra inactiu. - + Failed to load torrent. Reason: "%1" No s'ha pogut carregar el torrent. Raó: "%1" - + I2P error. Message: "%1". Error d'I2P. Missatge: %1. - + UPnP/NAT-PMP support: ON Suport d'UPnP/NAT-PMP: ACTIU - + Saving resume data completed. - + S'ha completat desar les dades de represa. - + BitTorrent session successfully finished. - + La sessió del BitTorrent ha acabat correctament. - + Session shutdown timed out. - + S'ha esgotat el temps d'aturada de la sessió. - + Removing torrent. - + Supressió del torrent - + Removing torrent and deleting its content. - + Supressió del torrent i del contingut. - + Torrent stopped. - + Torrent interromput - + Torrent content removed. Torrent: "%1" - + Contingut del torrent suprimit. Torrent: %1 - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + No s'ha pogut suprimir el contingut del torrent. Torrent: %1. Error: %2 - + Torrent removed. Torrent: "%1" - + Torrent suprimit. Torrent: %1 - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + S'ha detectat un intent d'afegir un torrent duplicat. Torrent existent: %1. Resultat: %2 - + Merging of trackers is disabled - La fusió de rastrejadors està desactivada. + La fusió de rastrejadors està desactivada. - + Trackers cannot be merged because it is a private torrent - Els rastrejadors no es poden fusionar perquè és un torrent privat. + Els rastrejadors no es poden fusionar perquè és un torrent privat. - + Trackers are merged from new source - Els rastrejadors es fusionen des de la font nova. + Els rastrejadors es fusionen des de la font nova. - + UPnP/NAT-PMP support: OFF Suport d'UPnP/NAT-PMP: DESACTIVAT - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" No s'ha pogut exportar el torrent. Torrent: "%1". Destinació: "%2". Raó: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 S'ha avortat l'emmagatzematge de les dades de represa. Nombre de torrents pendents: %1 - + The configured network address is invalid. Address: "%1" L'adreça de xarxa configurada no és vàlida. Adreça: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" No s'ha pogut trobar l'adreça de xarxa configurada per escoltar. Adreça: "%1" - + The configured network interface is invalid. Interface: "%1" La interfície de xarxa configurada no és vàlida. Interfície: "%1" - + Tracker list updated - + S'ha actualitzat la llista de rastrejadors. - + Failed to update tracker list. Reason: "%1" - + No s'ha pogut actualitzar la llista de rastrejadors. Raó: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" S'ha rebutjat l'adreça IP no vàlida mentre s'aplicava la llista d'adreces IP prohibides. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" S'ha afegit un rastrejador al torrent. Torrent: "%1". Rastrejador: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" S'ha suprimit el rastrejador del torrent. Torrent: "%1". Rastrejador: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" S'ha afegit una llavor d'URL al torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" S'ha suprimit la llavor d'URL del torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + No s'ha pogut suprimir la part del fitxer. Torrent: %1. Raó: %2. - Torrent paused. Torrent: "%1" - Torrent interromput. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent reprès. Torrent: "%1" - + Torrent download finished. Torrent: "%1" S'ha acabat la baixada del torrent. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" S'ha cancel·lat el moviment del torrent. Torrent: "%1". Font: "%2". Destinació: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent interromput. Torrent: %1 + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination No s'ha pogut posar a la cua el moviment del torrent. Torrent: "%1". Font: "%2". Destinació: "%3". Raó: el torrent es mou actualment a la destinació - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location No s'ha pogut posar a la cua el moviment del torrent. Torrent: "%1". Font: "%2" Destinació: "%3". Raó: tots dos camins apunten al mateix lloc. - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Moviment de torrent a la cua. Torrent: "%1". Font: "%2". Destinació: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Es comença a moure el torrent. Torrent: "%1". Destinació: "% 2" - + Failed to save Categories configuration. File: "%1". Error: "%2" No s'ha pogut desar la configuració de categories. Fitxer: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" No s'ha pogut analitzar la configuració de categories. Fitxer: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 S'ha analitzat correctament el fitxer de filtre d'IP. Nombre de regles aplicades: %1 - + Failed to parse the IP filter file No s'ha pogut analitzar el fitxer del filtre d'IP. - + Restored torrent. Torrent: "%1" Torrent restaurat. Torrent: "%1" - + Added new torrent. Torrent: "%1" S'ha afegit un torrent nou. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" S'ha produït un error al torrent. Torrent: "%1". Error: "%2" - Removed torrent. Torrent: "%1" - S'ha suprimit el torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - S'ha suprimit el torrent i el seu contingut. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Al torrent falten paràmetres d'SSL. Torrent: %1. Missatge: %2 - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Alerta d'error del fitxer. Torrent: "%1". Fitxer: "%2". Raó: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Ha fallat l'assignació de ports UPnP/NAT-PMP. Missatge: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" L'assignació de ports UPnP/NAT-PMP s'ha fet correctament. Missatge: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtre IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). port filtrat (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). port privilegiat (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + S'ha produït un error en la connexió de l'URL. Torrent: "%1". URL: "%2". Error: "% 3" - + BitTorrent session encountered a serious error. Reason: "%1" La sessió de BitTorrent ha trobat un error greu. Raó: %1 - + SOCKS5 proxy error. Address: %1. Message: "%2". Error d'intermediari SOCKS5. Adreça: %1. Missatge: %2. - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 restriccions de mode mixt - + Failed to load Categories. %1 No s'han pogut carregar les categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" No s'ha pogut carregar la configuració de les categories. Fitxer: %1. Error: format de dades no vàlid. - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent eliminat, però error al esborrar el contingut i/o fitxer de part. Torrent: "%1". Error: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 està inhabilitat - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 està inhabilitat - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - La cerca de DNS de llavors d'URL ha fallat. Torrent: "%1". URL: "%2". Error: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" S'ha rebut un missatge d'error de la llavor d'URL. Torrent: "%1". URL: "%2". Missatge: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" S'escolta correctament la IP. IP: "%1". Port: "%2 / %3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" No s'ha pogut escoltar la IP. IP: "%1". Port: "%2 / %3". Raó: "%4" - + Detected external IP. IP: "%1" S'ha detectat una IP externa. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Error: la cua d'alertes interna està plena i les alertes s'han suprimit. És possible que vegeu un rendiment degradat. S'ha suprimit el tipus d'alerta: "%1". Missatge: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" El torrent s'ha mogut correctament. Torrent: "%1". Destinació: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" No s'ha pogut moure el torrent. Torrent: "%1". Font: "%2". Destinació: "%3". Raó: "%4" @@ -2758,47 +2779,47 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb No s'ha pogut escriure al fitxer. Raó: "%1". El torrent està ara en mode "només per pujar". - + Download first and last piece first: %1, torrent: '%2' Baixa primer els trossos del principi i del final: %1, torrent: «%2» - + On Activat - + Off Desactivat - + Failed to reload torrent. Torrent: %1. Reason: %2 No s'ha pogut tornar a carregar el torrent. Torrent: %1. Raó: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Ha fallat generar les dades de represa. Torrent: "%1". Raó: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" No s'ha pogut restaurar el torrent. Probablement els fitxers s'han mogut o l'emmagatzematge no és accessible. Torrent: "%1". Raó: "% 2" - + Missing metadata Falten metadades - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" No s'ha pogut canviar el nom del fitxer. «%1», fitxer: «%2», raó: «%3» - + Performance alert: %1. More info: %2 Alerta de rendiment: %1. Més informació: %2 @@ -2835,11 +2856,6 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Expected integer number in environment variable '%1', but got '%2' S'esperava un número enter a la variable d'entorn "%1", però s'ha obtingut "%2". - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - El paràmetre "%1" ha de seguir la sintaxi "%1=%2" - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - El paràmetre "%1" ha de seguir la sintaxi "%1=%2" + El paràmetre "%1" ha de seguir la sintaxi "%1=%2" @@ -2968,11 +2984,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Add torrents as running or stopped - - - - Add torrents as started or paused - Afegeix els torrents com a iniciats o interromputs + Afegeix torrents com a iniciats o interromputs @@ -3063,20 +3075,12 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Start torrents - + Inicia els torrents Stop torrents - - - - Resume torrents - Reprèn els torrents - - - Pause torrents - Interromp els torrents + Interromp els torrents @@ -3099,7 +3103,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb System - + Sistema @@ -3174,11 +3178,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Also remove the content files - - - - Also permanently delete the files - També suprimeix permanentment els fitxers + Suprimeix també els fitxers de contingut @@ -3390,47 +3390,43 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Pattern Format - + Format del patró Plain text - + Test net Wildcards - + Comodins Regular expression - + Expressió regular GUIAddTorrentManager - + Downloading torrent... Source: "%1" Es baixa el torrent... Font: "%1" - Trackers cannot be merged because it is a private torrent - Els rastrejadors no es poden fusionar perquè és un torrent privat. - - - + Torrent is already present El torrent ja hi és - + Trackers cannot be merged because it is a private torrent. - + Els rastrejadors no es poden fusionar perquè és un torrent privat. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? El torrent "%1" ja és a la llista de transferència. Voleu fuisionar els rastrejadors des d'una font nova? @@ -3548,6 +3544,40 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Fitxers d'imatge suportats + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + La gestió d'energia ha trobat la interfície D-Bus adequada. Interfície: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Error de gestió d'energia. Acció: %1. Error: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Error inesperat de gestió d'energia. Estat: %1. Error: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb &Options... &Opcions... - - &Resume - &Reprèn - &Remove @@ -3762,7 +3788,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Sh&utdown System - + At&ura el sistema @@ -3774,10 +3800,6 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Close Window Tanca la finestra - - R&esume All - R&eprèn-ho tot - Manage Cookies... @@ -3816,22 +3838,22 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Sta&rt - + Inic&ia Sto&p - + Interrom&p R&esume Session - + R&eprèn la sessió Pau&se Session - + Interromp la &sessió @@ -3893,10 +3915,6 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb &Hibernate System &Hiberna el sistema - - S&hutdown System - A&paga el sistema - &Statistics @@ -3917,14 +3935,6 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb &About &Quant a - - &Pause - Interrom&p - - - P&ause All - Interromp-ho tot - &Add Torrent File... @@ -3958,12 +3968,12 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb - + Show Mostra - + Check for program updates Cerca actualitzacions del programa @@ -3978,388 +3988,383 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Si us agrada el qBittorrent, feu una donació! - + Execution Log Registre d'execució - + Clear the password Esborra la contrasenya - + &Set Password &Estableix una contrasenya - + Preferences Preferències - + &Clear Password &Esborra la contrasenya - + Transfers Transferint - - + + qBittorrent is minimized to tray El qBittorrent està minimitzat a la safata. - - - + + + This behavior can be changed in the settings. You won't be reminded again. Aquest comportament es pot canviar a la configuració. No se us tornarà a recordar. - + Icons Only Només icones - + Text Only Només text - + Text Alongside Icons Text al costat de les icones - + Text Under Icons Text sota les icones - + Follow System Style Segueix l'estil del sistema - - + + UI lock password Contrasenya de bloqueig - - + + Please type the UI lock password: Escriviu la contrasenya de bloqueig de la interfície: - + Are you sure you want to clear the password? Esteu segur que voleu esborrar la contrasenya? - + Use regular expressions Usa expressions regulars - - + + Search Engine - Motor de cerca + Motor de cerca - + Search has failed - La cerca ha fallat + La cerca ha fallat - + Search has finished - La cerca s'ha acabat. + La cerca s'ha acabat. - + Search Cerca - + Transfers (%1) Transferències (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. El qBittorrent s'ha actualitzat i s'ha de reiniciar perquè els canvis tinguin efecte. - + qBittorrent is closed to tray El qBittorrent està tancat a la safata. - + Some files are currently transferring. Ara es transfereixen alguns fitxers. - + Are you sure you want to quit qBittorrent? Segur que voleu sortir del qBittorrent? - + &No &No - + &Yes &Sí - + &Always Yes &Sempre sí - + Options saved. Opcions desades - + [PAUSED] %1 %1 is the rest of the window title - + [EN PAUSA] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + No s'ha pogut baixar l'instal·lador de Python. Error: %1. +Instal·leu-lo manualment. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Ha fallat el canvi de nom de l'instal·lador de Python. Font: "%1". Destinació: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + La instal·lació de Python és correcta. + Exit code: %1. + Codi de sortida: %1. + + + + Reason: installer crashed. + Raó: l'instal·lador ha fallat. + + + Python installation failed. - + La instal·lació de Python ha fallat. - + Launching Python installer. File: "%1". - + S'inicia l'instal·lador de Python. Fitxer: "%1". - - + + Missing Python Runtime Manca el temps d'execució de Python - + qBittorrent Update Available Actualització del qBittorrent disponible - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Es requereix Python per a fer servir el motor de cerca i sembla que no el teniu instal·lat. Voleu instal·lar-lo ara? - + Python is required to use the search engine but it does not seem to be installed. Es requereix Python per a fer servir el motor de cerca i sembla que no el teniu instal·lat. - - + + Old Python Runtime Temps d'execució antic de Python - + A new version is available. Hi ha disponible una nova versió. - + Do you want to download %1? Voleu baixar %1? - + Open changelog... Obre el registre de canvis... - + No updates available. You are already using the latest version. No hi ha actualitzacions disponibles. Esteu fent servir la darrera versió. - + &Check for Updates &Cerca actualitzacions - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? La vostra versió de Python (%1) està obsoleta. Requisit mínim: %2. Voleu instal·lar-ne una versió més nova ara? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. La versió de Python (%1) està obsoleta. Actualitzeu-la a la darrera versió perquè funcionin els motors de cerca. Requisit mínim: %2. - + Paused - Interromput + Interromput - + Checking for Updates... Cercant actualitzacions... - + Already checking for program updates in the background Ja se cerquen actualitzacions en segon terme. - + Python installation in progress... - + Instal·lació de Python en curs... - + Failed to open Python installer. File: "%1". - + No s'ha pogut obrir l'instal·lador de Python. Fitxer: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + La comprovació d'MD5 ha fallat per a l'instal·lador de Python. Fitxer: "%1". Resum del resultat: "%2". Resum esperat: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + La comprovació de SHA3-512 ha fallat per a l'instal·lador de Python. Fitxer: "%1". Resum del resultat: "%2". Resum esperat: "%3". - + Download error Error de baixada - Python setup could not be downloaded, reason: %1. -Please install it manually. - No ha estat possible baixar l'instal·lador de Python, raó: 51. -Instal·leu-lo manualment. - - - - + + Invalid password Contrasenya no vàlida - + Filter torrents... Filtrar torrents... - + Filter by: Filtrar per: - + The password must be at least 3 characters long La contrasenya ha de tenir almenys 3 caràcters. - - - + + + RSS (%1) RSS (%1) - + The password is invalid La contrasenya no és vàlida. - + DL speed: %1 e.g: Download speed: 10 KiB/s Velocitat de baixada: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Velocitat de pujada: %1 - + Hide Amaga - + Exiting qBittorrent Se surt del qBittorrent - + Open Torrent Files Obre fitxers torrent - + Torrent Files Fitxers torrent @@ -4556,7 +4561,7 @@ Instal·leu-lo manualment. SSL error, URL: "%1", errors: "%2" - + Error d'SSL, URL: %1, errors: %2 @@ -5853,47 +5858,47 @@ Instal·leu-lo manualment. Net::Smtp - + Connection failed, unrecognized reply: %1 La connexió ha fallat, resposta no reconeguda: %1 - + Authentication failed, msg: %1 L'autenticació ha fallat, missatge: %1 - + <mail from> was rejected by server, msg: %1 <mail from>: rebutjat pel servidor, missatge: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to>: rebutjat pel servidor, missatge: %1 - + <data> was rejected by server, msg: %1 <data>: rebutjat pel servidor, missatge: %1 - + Message was rejected by the server, error: %1 El missatge ha estat rebutjat pel servidor, error: %1 - + Both EHLO and HELO failed, msg: %1 Tant EHLO com HELO han fallat, missatge: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Sembla que el servidor SMTP no admet cap dels modes d'autenticació que admetem [CRAM-MD5|PLAIN|LOGIN]. S'omet l'autenticació, tot i que és probable que falli... Modes d'autenticació del servidor: %1 - + Email Notification Error: %1 Error de notificació per correu electrònic: %1 @@ -5935,10 +5940,6 @@ Instal·leu-lo manualment. RSS RSS - - Web UI - Interfície web - Advanced @@ -5959,14 +5960,6 @@ Instal·leu-lo manualment. Confirm when deleting torrents Demana confirmació per suprimir torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Mostra un diàleg de confirmació en interrompre / reprendre tots els torrents. - - - Confirm "Pause/Resume all" actions - Confirmeu les accions "Interromp / Reprèn-ho tot". - Use alternating row colors @@ -5983,10 +5976,6 @@ Instal·leu-lo manualment. Always Sempre - - Paused torrents only - Només els torrents interromputs - Action on double-click @@ -5997,10 +5986,6 @@ Instal·leu-lo manualment. Downloading torrents: Torrents de baixada: - - Start / Stop Torrent - Iniciar / Aturar Torrent - @@ -6059,179 +6044,179 @@ Instal·leu-lo manualment. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Disposició del contingut del torrent: - + Original Original - + Create subfolder Crea una subcarpeta - + Don't create subfolder No creïs una subcarpeta - + The torrent will be added to the top of the download queue El torrent s'afegirà al capdamunt de la cua de baixades. - + Add to top of queue The torrent will be added to the top of the download queue Afegeix al capdamunt de la cua - + When duplicate torrent is being added Quan s'afegeix un torrent duplicat - + Merge trackers to existing torrent Fusiona els rastrejadors amb el torrent existent - + Keep unselected files in ".unwanted" folder Conserva els fitxers no seleccionats a la carpeta ".unwanted". - + Add... Afegeix... - + Options.. Opcions... - + Remove Suprimeix - + Email notification &upon download completion Notificació per corre&u electrònic de l'acabament de les descàrregues - + Send test email - + Envia un correu electrònic de prova - + Run on torrent added: - + Executa en afegir un torrent: - + Run on torrent finished: - + Executa en acabar un torrent: - + Peer connection protocol: Protocol de connexió de clients: - + Any Qualsevol - + I2P (experimental) I2P (experimental) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>si &quot;mode mixte&quot; està actiu als torrents I2P se'ls permet també obtenir parells d'altres fonts que el tracker, i connectar a IPs normals sense oferir anonimització. Això pot ser útil si l'usuari no està interessat en l'anonimització de I2P, però encara vol conectar a parells I2P.</p></body></html> - - - + Mixed mode Mode mixte - Some options are incompatible with the chosen proxy type! - Algunes opcions són incompatibles amb el tipus d'intermediari triat! + Algunes opcions són incompatibles amb el tipus d'intermediari triat! - + If checked, hostname lookups are done via the proxy Si es marca, les cerques de nom d'amfitrió es fan a través de l'intermediari. - + Perform hostname lookup via proxy Realitzar cerca de nom de host via proxy - + Use proxy for BitTorrent purposes Usa l'intermediari per a finalitats de BitTorrent. - + RSS feeds will use proxy Els canals d'RSS usaran l'intermediari. - + Use proxy for RSS purposes Usa l'intermediari per a finalitats d'RSS. - + Search engine, software updates or anything else will use proxy El motor de cerca, les actualitzacions de programari o qualsevol altra cosa usaran l'intermediari. - + Use proxy for general purposes Usa l'intermediari per a finalitats generals. - + IP Fi&ltering Fi&ltratge d'IP - + Schedule &the use of alternative rate limits Programació de l'ús de lími&ts de velocitat alternatius - + From: From start time Des de: - + To: To end time A: - + Find peers on the DHT network Troba clients a la xarxa DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Requereix l'encriptació: connecta només amb clients amb protocol d'e Inhabiliata l'encriptació: només es connecta amb clients sense protocol d'encriptació. - + Allow encryption Permet l'encriptació - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Més informació</a>) - + Maximum active checking torrents: Màxim de torrents de comprovació actius: - + &Torrent Queueing Cua de &torrents - + When total seeding time reaches Quan s'arriba al temps total de sembra - + When inactive seeding time reaches Quan s'arriba al temps de sembra inactiva - A&utomatically add these trackers to new downloads: - Afegeix a&utomàticament aquests rastrejadors a les baixades noves: - - - + RSS Reader Lector d'RSS - + Enable fetching RSS feeds Habilita l'obtenció de canals d'RSS - + Feeds refresh interval: Interval d'actualització dels canals: - + Same host request delay: El mateix retard de sol·licitud d'amfitrió: - + Maximum number of articles per feed: Nombre màxim d'articles per canal: - - - + + + min minutes min. - + Seeding Limits Límits de sembra - Pause torrent - Interromp el torrent - - - + Remove torrent Suprimeix el torrent - + Remove torrent and its files Suprimeix el torrent i els fitxers - + Enable super seeding for torrent Habilita la supersembra per al torrent - + When ratio reaches Quan la ràtio assoleixi - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Interromp el torrent - + A&utomatically append these trackers to new downloads: - + Afegeix a&utomàticament aquests rastrejadors a les baixades noves: - + Automatically append trackers from URL to new downloads: - + Afegeix automàticament els rastrejadors d'URL a les baixades noves: - + URL: - URL: + URL: - + Fetched trackers - + Rastredors obtinguts - + Search UI - + Cerca d'IU - + Store opened tabs - + Desa les pestanyes obertes - + Also store search results - + També desa els resultats de la cerca - + History length - + Llargada de l'historial - + RSS Torrent Auto Downloader Descarregador automàtic de torrents d'RSS - + Enable auto downloading of RSS torrents Habilita la baixada automàtica de torrents d'RSS - + Edit auto downloading rules... Edita les regles de baixada automàtica... - + RSS Smart Episode Filter Filtre d'episodis intel·ligents d'RSS - + Download REPACK/PROPER episodes Baixa els episodis REPACK / PROPER - + Filters: Filtres: - + Web User Interface (Remote control) Interfície d'usuari web (control remot) - + IP address: Adreça IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Especifiqueu una adreça IPv4 o IPv6. Podeu especificar "0.0.0.0" per "::" per a qualsevol adreça IPv6 o bé "*" per a IPv4 i IPv6. - + Ban client after consecutive failures: Prohibeix el client després de fallades consecutives: - + Never Mai - + ban for: prohibeix per a: - + Session timeout: Temps d'espera de la sessió: - + Disabled Inhabilitat - Enable cookie Secure flag (requires HTTPS) - Habilita la galeta de bandera de seguretat (requereix HTTPS) - - - + Server domains: Dominis de servidor: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ d'introduir noms de domini usats pel servidor d'interfície d'usu Useu ";" per separar les entrades. Podeu usar el comodí "*". - + &Use HTTPS instead of HTTP &Usa HTTPS en lloc d'HTTP - + Bypass authentication for clients on localhost Evita l'autenticació per als clients en l'amfitrió local - + Bypass authentication for clients in whitelisted IP subnets Evita l'autenticació per als clients en subxarxes en la llista blanca - + IP subnet whitelist... Llista blanca de subxarxes IP... - + Use alternative WebUI - + Usa la interfície web alternativa - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Especifiqueu les adreces IP del servidor invers (o subxarxes, per exemple, 0.0.0.0/24) per usar l'adreça de client reenviada (capçalera X-Forwarded-For). Useu ";" per dividir diverses entrades. - + Upda&te my dynamic domain name Actuali&tza el meu nom de domini dinàmic @@ -6519,12 +6502,12 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" Search - Cerca + Cerca WebUI - + Interfície d'usuari web @@ -6539,29 +6522,29 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" Style: - + Estil: Color scheme: - + Esquema de color: Stopped torrents only - + Només els torrents interromputs Start / stop torrent - + Inicia / atura el torrent Open torrent options dialog - + Obre el diàleg d'opcions del torrent @@ -6602,7 +6585,7 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" &Log Files - + Fit&xers de registre @@ -6620,99 +6603,99 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" Suprimeix registres de còpia de seguretat més antics de... - + Show external IP in status bar - + Mostra l'adreça IP externa a la barra d'estat - + When adding a torrent En afegir un torrent - + Bring torrent dialog to the front Porta el diàleg del torrent al davant - + The torrent will be added to download list in a stopped state - + El torrent s’afegirà a la llista de baixades en estat interromput. - + Also delete .torrent files whose addition was cancelled Suprimeix també els fitxers .torrent dels quals n'hàgiu cancel·lat l'addició. - + Also when addition is cancelled També quan hagi estat cancel·lada l'addició. - + Warning! Data loss possible! Atenció! Es poden perdre dades! - + Saving Management Gestió de l'acció de desar - + Default Torrent Management Mode: Mode de Gestió dels torrents predeterminat: - + Manual Manual - + Automatic Automàtic - + When Torrent Category changed: En canviar la categoria del torrent: - + Relocate torrent Realltogeu el torrent - + Switch torrent to Manual Mode Canvieu el torrent a Mode Manual - - + + Relocate affected torrents Reallotgeu els torrents afectats. - - + + Switch affected torrents to Manual Mode Canvieu els torrents afectats a Mode Manual. - + Use Subcategories Usa subcategories - + Default Save Path: Camí on desar-ho per defecte: - + Copy .torrent files to: Copia els fitxers torrent a: @@ -6722,26 +6705,22 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" Mostra el &qBittorrent a l'àrea de notificació. - &Log file - Fit&xer de registre - - - + Display &torrent content and some options Mostra el contingut del &torrent i algunes opcions - + De&lete .torrent files afterwards Su&primeix els fitxers .torrent després. - + Copy .torrent files for finished downloads to: Copia els fitxers .torrent de les baixades acabades a: - + Pre-allocate disk space for all files Preassigna espai al disc per a tots els fitxers @@ -6771,10 +6750,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" Preview file, otherwise open destination folder Previsualitza el fitxer; si no, obre la carpeta de destinació. - - Show torrent options - Mostra les opcions del torrent - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*" anys - + Log performance warnings Registra els avisos de rendiment - The torrent will be added to download list in a paused state - El torrent s’afegirà a la llista de baixades en estat interromput. - - - + Do not start the download automatically The torrent will be added to download list in a stopped state No iniciïs la baixada automàticament. - + Whether the .torrent file should be deleted after adding it Si el fitxer .torrent s'ha de suprimir després d'afegir-lo. - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Assigna la mida completa del fitxer al disc abans d’iniciar la baixada, per minimitzar-ne la fragmentació. Únicament útil per a discs durs. - + Append .!qB extension to incomplete files Afegeix l'extensió .!qB a fitxers incomplets - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Quan es baixa un torrent, ofereix afegir torrents des de qualsevol fitxer .torrent que es trobi dins. - + Enable recursive download dialog Habilita el diàleg de baixada recursiva - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automàtic: la categoria associada decidirà diverses propietats del torrent (per exemple, el camí on desar-ho) Manual: s'han d'assignar manualment diverses propietats del torrent (per exemple, el camí on desar-ho) - + When Default Save/Incomplete Path changed: Quan s'ha canviat el camí on desar-ho / incomplet per defecte: - + When Category Save Path changed: En canviar la categoria del camí on desar-ho: - + Use Category paths in Manual Mode Usa els camins de la categoria en el mode manual - + Resolve relative Save Path against appropriate Category path instead of Default one Resol el camí on desar-ho relatiu segons el camí de categoria en comptes del predeterminat @@ -6922,50 +6893,50 @@ Manual: s'han d'assignar manualment diverses propietats del torrent (p Estat de la finestra del qBittorrent a l'inici - + Torrent stop condition: Condició d'aturada del torrent: - - + + None Cap - - + + Metadata received Metadades rebudes - - + + Files checked Fitxers comprovats - + Ask for merging trackers when torrent is being added manually Demana la fusió de rastrejadors quan s'afegeixi un torrent manualment. - + Use another path for incomplete torrents: Usa un altre camí per als torrents incomplets: - + Automatically add torrents from: Afegeix torrents automàticament des de: - + Excluded file names Noms de fitxers exclosos - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,511 @@ readme.txt: filtra el nom exacte del fitxer. readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però no "readme10.txt". - + Receiver Receptor - + To: To receiver A: - + SMTP server: Servidor SMTP: - + Sender Remitent - + From: From sender Des de: - + This server requires a secure connection (SSL) El servidor requereix una connexió segura (SSL) - - + + Authentication Autentificació - - - - + + + + Username: Nom d'usuari: - - - - + + + + Password: Contrasenya: - + Run external program Executa un programa extern - Run on torrent added - Executa en afegir un torrent. - - - Run on torrent finished - Executa en acabar un torrent. - - - + Show console window Mostra la finestra de la consola - + TCP and μTP TCP i μTP - + Listening Port Port d'escolta - + Port used for incoming connections: Port utilitzat per a connexions entrants: - + Set to 0 to let your system pick an unused port Establiu-lo a 0 per deixar que el sistema triï un port no usat. - + Random Aleatori - + Use UPnP / NAT-PMP port forwarding from my router Utilitza UPnP / NAT-PMP reenviament de ports del router - + Connections Limits Límits de connexió - + Maximum number of connections per torrent: Nombre màxim de connexions per torrent: - + Global maximum number of connections: Nombre global màxim de connexions: - + Maximum number of upload slots per torrent: Nombre màxim de ranures de pujada per torrent: - + Global maximum number of upload slots: Nombre global màxim de ranures de pujada: - + Proxy Server Servidor intermediari - + Type: Tipus: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Amfitrió: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Per contra, el servidor intermediari s'utilitzarà només per les connexions tracker - + Use proxy for peer connections Usa un servidor intermediari per a connexions d'igual a igual. - + A&uthentication A&utenticació - Info: The password is saved unencrypted - Informació: la contrasenya es desa sense encriptació. + Informació: la contrasenya es desa sense encriptació. - + Filter path (.dat, .p2p, .p2b): Camí del filtre (.dat, .p2p, .p2b): - + Reload the filter Actualitza el filtre - + Manually banned IP addresses... Adreces IP prohibides manualment... - + Apply to trackers Aplica als rastrejadors - + Global Rate Limits Límits de velocitat globals - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Pujada: - - + + Download: Baixada: - + Alternative Rate Limits Límits de velocitat alternatius - + Start time Hora d'inici - + End time Hora de final - + When: Quan: - + Every day Cada dia - + Weekdays De dilluns a divendres - + Weekends Caps de setmana - + Rate Limits Settings Paràmetres dels límits de velocitat - + Apply rate limit to peers on LAN Aplica el límit de velocitat als clients amb LAN - + Apply rate limit to transport overhead Aplica el límit de velocitat a la sobrecàrrega - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Si el mode mixt està habilitat, els torrents I2P també poden obtenir clients d'altres fonts que no siguin el rastrejador i connectar-se a IPs normals, sense proporcionar cap anonimat. Això pot ser útil si l'usuari no està interessat en l'anonimització d'I2P, però encara vol poder connectar-se amb iguals I2P. +</p></body></html> - + Apply rate limit to µTP protocol Aplica un límit de velocitat al protocol µTP - + Privacy Privacitat - + Enable DHT (decentralized network) to find more peers Habilita DHT (xarxa descentralitzada) per a trobar més clients - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Intercanvia clients amb gestors compatibles amb Bittorrent (µTorrent, Vuze...) - + Enable Peer Exchange (PeX) to find more peers Habilita l'intercanvi de clients (PeX) per a trobar-ne més. - + Look for peers on your local network Cerca clients a la xarxa local - + Enable Local Peer Discovery to find more peers Habilita el descobriment de clients locals per a trobar-ne més. - + Encryption mode: Mode d'encriptació: - + Require encryption Requereix l'encriptació - + Disable encryption Inhabilita l'encriptació - + Enable when using a proxy or a VPN connection Habilita quan utilitzi un servidor intermediari o una connexió VPN - + Enable anonymous mode Habilita el mode anònim - + Maximum active downloads: Màxim de baixades actives: - + Maximum active uploads: Màxim de pujades actives: - + Maximum active torrents: Màxim de torrent actius: - + Do not count slow torrents in these limits No comptis els torrents lents fora d'aquests límits - + Upload rate threshold: Llindar de la velocitat de pujada: - + Download rate threshold: Llindar de la velocitat de baixada: - - - - + + + + sec seconds s - + Torrent inactivity timer: Temporitzador d'inactivitat del torrent: - + then després - + Use UPnP / NAT-PMP to forward the port from my router Utilitza UPnP / NAT-PMP per reenviar el port des de l'encaminador - + Certificate: Certificat: - + Key: Clau: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informació sobre els certificats</a> - + Change current password Canvia la contrasenya actual - Use alternative Web UI - Usa una interfície web alternativa - - - + Files location: Ubicació dels fitxers: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Llista d'interfície gràfica d'usuari alternativa</a> - + Security Seguretat - + Enable clickjacking protection Habilita la protecció de segrest de clic. - + Enable Cross-Site Request Forgery (CSRF) protection Habilita protecció de la falsificació de peticions de llocs creuats (CSRF). - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Activa la marca de seguretat de la galeta (requereix una connexió HTTPS o d'amfitrió local) - + Enable Host header validation Habilita la validació de la capçalera de l'amfitrió - + Add custom HTTP headers Afegeix capçaleres d'HTTP personalitzades - + Header: value pairs, one per line Capçalera: clients de valor, un per línia - + Enable reverse proxy support Habilita la compatibilitat amb el servidor intermediari invers - + Trusted proxies list: Llista d'intermediaris de confiança: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Exemples de configuració d'intermediari invers</a> - + Service: Servei: - + Register Registre - + Domain name: Nom de domini: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Si s'habiliten aquestes opcions, podeu <strong>perdre irrevocablement</strong> els vostres fitxers .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Si habiliteu la segona opció (&ldquo;També quan l'addició es cancel·la&rdquo;) el fitxer .torrent <strong>se suprimirà</strong> fins i tot si premeu &ldquo;<strong>Cancel·la</strong>&rdquo; dins el diàleg &ldquo;Afegeix un torrent&rdquo; @@ -7520,12 +7479,12 @@ readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però n Seleccioneu el fitxer de tema de qBittorrent IU - + Choose Alternative UI files location Trieu una ubicació alternativa per als fitxers d'interfície d'usuari - + Supported parameters (case sensitive): Paràmetres admesos (sensible a majúscules): @@ -7545,183 +7504,183 @@ readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però n S'ha desactivat perquè no s'ha pogut detectar la presència de la safata del sistema. - + No stop condition is set. No s'ha establert cap condició d'aturada. - + Torrent will stop after metadata is received. El torrent s'aturarà després de rebre les metadades. - + Torrent will stop after files are initially checked. El torrent s'aturarà després de la comprovació inicial dels fitxers. - + This will also download metadata if it wasn't there initially. Això també baixarà metadades si no n'hi havia inicialment. - + %N: Torrent name %N: nom del torrent - + %L: Category %L: categoria - + %F: Content path (same as root path for multifile torrent) %F: Camí del contingut (igual que el camí d'arrel per a torrents de fitxers múltiples) - + %R: Root path (first torrent subdirectory path) %R: camí d'arrel (camí del subdirectori del primer torrent) - + %D: Save path %D: camí on desar-ho - + %C: Number of files %C: nombre de fitxers - + %Z: Torrent size (bytes) %Z mida del torrent (bytes) - + %T: Current tracker %T: rastrejador actual - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: emmarqueu el paràmetre amb cometes per evitar que el text es talli a l'espai en blanc (p.e., "%N") - + Test email - + Correu electrònic de prova - + Attempted to send email. Check your inbox to confirm success - + S'ha intentat enviar un correu electrònic. Comproveu la safata d'entrada per confirmar-ho. - + (None) (Cap) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Es considerarà que un torrent és lent si les taxes de baixada i pujada es mantenen per sota d'aquests valors durant els segons del «Temporitzador d'inactivitat del torrent». - + Certificate Certificat: - + Select certificate Seleccioneu el certificat - + Private key Clau privada - + Select private key Seleccioneu la clau privada - + WebUI configuration failed. Reason: %1 La configuració de la interfície web ha fallat. Raó: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + Es recomana %1 per la millor compatibilitat amb el mode fosc de Windows. - + System System default Qt style - + Sistema - + Let Qt decide the style for this system - + Permet que Qt decideixi l'estil d'aquest sistema. - + Dark Dark color scheme - + fosc - + Light Light color scheme - + clar - + System System color scheme - + Sistema - + Select folder to monitor Seleccioneu una carpeta per monitorar. - + Adding entry failed No s'ha pogut afegir l'entrada - + The WebUI username must be at least 3 characters long. El nom d'usuari de la interfície web ha de tenir almenys 3 caràcters. - + The WebUI password must be at least 6 characters long. La contrasenya de la interfície web ha de tenir almenys 6 caràcters. - + Location Error Error d'ubicació - - + + Choose export directory Trieu un directori d'exportació - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Quan aquestes opcions estan habilitades, el qBittorrent <strong>suprimirà</strong> fitxers .torrent després que s'hagin afegit correctament (la primera opció) o no (la segona) a la seva cua de baixada. Això s'aplicarà <strong>no només</strong> als fitxers oberts oberts a través de l'acció de menú &ldquo;Afegeix un torrent&rdquo; sinó també als oberts a través de l'<strong>associació de tipus de fitxer</strong>. @@ -7731,69 +7690,69 @@ readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però n Fitxer de tema de la IU de qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiquetes (separades per comes) - + %I: Info hash v1 (or '-' if unavailable) %I: informació de resum v1 (o '-' si no està disponible) - + %J: Info hash v2 (or '-' if unavailable) % J: hash d'informació v2 (o '-' si no està disponible) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Identificador del torrent (resum d'informació sha-1 per al torrent v1 o resum d'informació sha-256 truncat per al torrent v2 / híbrid) - - + + Choose a save directory Trieu un directori per desar - + Torrents that have metadata initially will be added as stopped. Els torrents que tinguin metadades inicialment s'afegiran com a aturats. - + Choose an IP filter file Trieu un fitxer de filtre IP - + All supported filters Tots els filtres suportats - + The alternative WebUI files location cannot be blank. La ubicació alternativa dels fitxers de la interfície web no pot estar en blanc. - + Parsing error Error d'anàlisi - + Failed to parse the provided IP filter No s'ha pogut analitzar el filtratge IP - + Successfully refreshed Actualitzat amb èxit - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number S'ha analitzat satisfactòriament el filtre IP proporcionat: s'han aplicat %1 regles. @@ -7804,18 +7763,18 @@ readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però n Preferències - + Time Error Error de temps - + The start time and the end time can't be the same. Els temps d'inici i d'acabament no poden ser els mateixos. - - + + Length Error Error de longitud @@ -7900,169 +7859,169 @@ readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però n Peer is using NAT hole punching - + El client usa la perforació de forats NAT. PeerListWidget - + Country/Region País / regió - + IP/Address Adreça IP - + Port Port - + Flags Marques - + Connection Connexió - + Client i.e.: Client application Client - + Peer ID Client i.e.: Client resolved from Peer ID ID del client - + Progress i.e: % downloaded Progrés - + Down Speed i.e: Download speed Velocitat de baixada - + Up Speed i.e: Upload speed Velocitat de pujada - + Downloaded i.e: total data downloaded Baixat - + Uploaded i.e: total data uploaded Pujat - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Rellevància - + Files i.e. files that are being downloaded right now Fitxers - + Column visibility Visibilitat de les columnes - + Resize columns Canvia l'amplada de les columnes - + Resize all non-hidden columns to the size of their contents Canvia l'amplada de totes les columnes visibles a la mida del contingut - + Add peers... Afegeix clients... - - + + Adding peers Addició de clients - + Some peers cannot be added. Check the Log for details. No s'han pogut afegir alguns clients. Consulteu el registre per a més detalls. - + Peers are added to this torrent. S'afegeixen clients a aquest torrent - - + + Ban peer permanently Prohibeix el client permanentment - + Cannot add peers to a private torrent No es poden afegir clients a un torrent privat. - + Cannot add peers when the torrent is checking No es poden afegir clients quan el torrent es comprova. - + Cannot add peers when the torrent is queued No es poden afegir clients quan el torrent és a la cua. - + No peer was selected No s'ha seleccionat cap client. - + Are you sure you want to permanently ban the selected peers? Segur que voleu prohibir permanentment els clients seleccionats? - + Peer "%1" is manually banned El client "%1" està prohibit manualment. - + N/A N / D - + Copy IP:port Copia IP:port @@ -8344,34 +8303,27 @@ Aquests connectors s'han inhabilitat. PowerManagement - qBittorrent is active - El qBittorrent està actiu. + El qBittorrent està actiu. PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - La gestió d'energia ha trobat la interfície D-Bus adequada. Interfície: %1 + La gestió d'energia ha trobat la interfície D-Bus adequada. Interfície: %1 - Power management error. Did not found suitable D-Bus interface. - Error de gestió d'energia. No s'ha trobat la interfície D-Bus adequada. + Error de gestió d'energia. No s'ha trobat la interfície D-Bus adequada. - - - Power management error. Action: %1. Error: %2 - Error de gestió d'energia. Acció: %1. Error: %2 + Error de gestió d'energia. Acció: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 - Error inesperat de gestió d'energia. Estat: %1. Error: %2 + Error inesperat de gestió d'energia. Estat: %1. Error: %2 @@ -8615,12 +8567,12 @@ Aquests connectors s'han inhabilitat. Ratio / Time Active (in months), indicates how popular the torrent is - + La ràtio / el temps d'activitat (en mesos), indica la popularitat del torrent. Popularity: - + Popularitat: @@ -8655,7 +8607,7 @@ Aquests connectors s'han inhabilitat. Private: - + Privat: @@ -8663,153 +8615,124 @@ Aquests connectors s'han inhabilitat. Camí on desar-ho: - + Never Mai - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (té %3) - - + + %1 (%2 this session) %1 (%2 en aquesta sessió) - - + + N/A N / D - + Yes - + - + No - No + No - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (sembrat durant %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 màxim) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 de mitjana) - + Add web seed Add HTTP source - + Afegeix una llavor web - + Add web seed: - + Afegeix una llavor web: - - + + This web seed is already in the list. - + Aquesta llavor web ja és a la llista. - New Web seed - Llavor web nova - - - Remove Web seed - Suprimeix la llavor web - - - Copy Web seed URL - Copia l'URL de la llavor web - - - Edit Web seed URL - Edita l'URL de la llavor web - - - + Filter files... Filtra els fitxers... - + Add web seed... - + Afegeix una llavor web... - + Remove web seed - + Suprimeix la llavor web - + Copy web seed URL - + Copia l'URL de llavor web - + Edit web seed URL... - + Edita l'URL de la llavor web... - + Speed graphs are disabled Els gràfics de velocitat estan desactivats. - + You can enable it in Advanced Options Podeu activar-lo a Opcions avançades. - New URL seed - New HTTP source - Llavor d'URL nova - - - New URL seed: - Llavor d'URL nova: - - - This URL seed is already in the list. - Aquesta llavor d'URL ja és a la llista. - - - + Web seed editing Edició de la llavor web - + Web seed URL: URL de la llavor web: @@ -8817,33 +8740,33 @@ Aquests connectors s'han inhabilitat. RSS::AutoDownloader - - + + Invalid data format. Format de dades no vàlid. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 No s'han pogut desar les dades del Descarregador automàtic d'RSS a %1: Error: %2 - + Invalid data format Format de dades no vàlid - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... L'article d'RSS %1 és acceptat per la regla %2. S'intenta afegir el torrent... - + Failed to read RSS AutoDownloader rules. %1 No s'han pogut llegir les regles de baixada automàtica d'RSS. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 No s'han pogut carregar les regles del Descarregador automàtic d'RSS. Raó: %1 @@ -8851,22 +8774,22 @@ Aquests connectors s'han inhabilitat. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Ha fallat baixar el contingut del canal d'RSS a %1. Raó: %2 - + RSS feed at '%1' updated. Added %2 new articles. S'ha actualitzat el canal d'RSS %1. S'han afegit %2 articles nous. - + Failed to parse RSS feed at '%1'. Reason: %2 Ha fallat analitzar el canal d'RSS a 1%. Raó: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. S'ha baixat correctament el contingut del canal d'RSS a %1. Es comença a analitzar. @@ -8915,12 +8838,12 @@ Aquests connectors s'han inhabilitat. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" No s'ha pogut desar la configuració de la sessió d'RSS. Fitxer: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" No s'han pogut desar les dades de la sessió d'RSS. Fitxer: "%1". Error: "%2" @@ -8942,76 +8865,121 @@ Aquests connectors s'han inhabilitat. - + Item doesn't exist: %1. No existeix l'element %1. - Couldn't move folder into itself. - No s'ha pogut moure la carpeta a si mateixa. + No s'ha pogut moure la carpeta a si mateixa. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. No es pot suprimir la carpeta d'arrel. - + Failed to read RSS session data. %1 No s'han pogut llegir les dades de la sessió d'RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" No s'han pogut analitzar les dades de la sessió d'RSS. Fitxer: %1. Error: %2 - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." No s'han pogut carregar les dades de la sessió d'RSS. Fitxer: %1. Error: format de dades no vàlid. - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. No s'ha pogut carregar el canal d'RSS. Canal: "%1". Raó: l'URL és obligatori. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. No s'ha pogut carregar el canal d'RSS. Canal: "%1". Raó: l'UID no és vàlid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. S'ha trobat un canal d'RSS duplicat. UID: "%1". Error: la configuració sembla malmesa. - + Couldn't load RSS item. Item: "%1". Invalid data format. No s'ha pogut carregar l'element d'RSS. Element: "%1". Format de dades no vàlid. - + Corrupted RSS list, not loading it. Llista d'RSS danyada. No es carrega. - + Incorrect RSS Item path: %1. Camí a l'element d'RSS incorrecte: %1. - + RSS item with given path already exists: %1. L'element d'RSS amb el camí proporcionat ja existeix: %1. - + Parent folder doesn't exist: %1. No existeix la carpeta mare %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed no existeix: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + s + + + + Default + Per defecte + + RSSWidget @@ -9111,78 +9079,77 @@ Aquests connectors s'han inhabilitat. + Feed options... + + + Edit feed URL... - Editar URL de feed... + Editar URL de feed... - Edit feed URL - Editar URL de feed + Editar URL de feed - + Please choose a folder name Trieu un nom de carpeta. - + Folder name: Nom de la carpeta: - + New folder Carpeta nova - - Please type a RSS feed URL - Escriviu l'URL d'un canal d'RSS + Escriviu l'URL d'un canal d'RSS - - Feed URL: - URL del canal: + URL del canal: - + Deletion confirmation Confirmació de supressió - + Are you sure you want to delete the selected RSS feeds? Segur que voleu suprimir els canals d'RSS seleccionats? - + Please choose a new name for this RSS feed Trieu un nou nom per a aquest canal d'RSS - + New feed name: Nom del canal nou: - + Rename failed El canvi de nom ha fallat. - + Date: Data: - + Feed: Canal: - + Author: Autor: @@ -9319,10 +9286,6 @@ Aquests connectors s'han inhabilitat. i.e: Number of partial sources Sangoneres - - Search engine - Motor de cerca - Filter search results... @@ -9412,17 +9375,17 @@ Aquests connectors s'han inhabilitat. Engine - + Motor Engine URL - + URL del motor Published On - + Publicat el @@ -9443,104 +9406,104 @@ Aquests connectors s'han inhabilitat. SearchPluginManager - + Unknown search engine plugin file format. El format de fitxer del connector de motor de cerca és desconegut. - + Plugin already at version %1, which is greater than %2 El connector ja té la versió %1, que és més avançada que %2. - + A more recent version of this plugin is already installed. Ja hi ha instal·lada una versió més recent d'aquest connector. - + Plugin %1 is not supported. El connector %1 no s'admet. - - + + Plugin is not supported. El connector no està suportat. - + Plugin %1 has been successfully updated. El connector %1 s'ha actualitzat correctament. - + All categories Totes les categories - + Movies Pel·lícules - + TV shows Programes de TV - + Music Música - + Games Jocs - + Anime Anime - + Software Programari - + Pictures Imatges - + Books Llibres - + Update server is temporarily unavailable. %1 El servidor d'actualitzacions és temporalment fora de servei. %1 - - + + Failed to download the plugin file. %1 No s'ha pogut baixar el fitxer del connector: %1 - + Plugin "%1" is outdated, updating to version %2 El connector "%1" és antic. S'actualitza a la versió %2. - + Incorrect update info received for %1 out of %2 plugins. S'ha rebut informació d'actualització incorrecta per a %1 de %2 connectors. - + Search plugin '%1' contains invalid version string ('%2') El connector de cerca «%1» conté una cadena de versió no vàlida («%2») @@ -9566,137 +9529,129 @@ Cliqueu al botó "Connectors de cerca..." del cantó de baix a la dret Cerca connectors... - + A phrase to search for. Una frase per cercar.. - + Spaces in a search term may be protected by double quotes. Els espais als termes de cerca es poden protegir amb cometes dobles. - + Example: Search phrase example Exemple: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: cerca <b>foo bar</b> - + All plugins Tots els connectors - + Only enabled Només habilitat - - + + Invalid data format. - Format de dades no vàlid. + Format de dades no vàlid. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: cerca <b>foo</b> i <b>bar</b> - + Refresh - + Refresca - + Close tab Tanca la pestanya - + Close all tabs Tanca totes les pestanyes - + Select... Selecció... - - + + Search Engine Motor de cerca - - + + Please install Python to use the Search Engine. Instal·leu Python per fer servir el motor de cerca. - + Empty search pattern Patró de recerca buit - + Please type a search pattern first Escriviu primer un patró de cerca - + Stop Atura't - - Search has finished - La cerca s'ha acabat. - - - Search has failed - La cerca ha fallat - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + No s'han pogut carregar les dades d'estat desades de la IU de cerca. Fitxer: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + No s'han pogut carregar els resultats de la cerca desats. Pestanya: "%1". Fitxer: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + No s'ha pogut desar l'estat de la IU de cerca. Fitxer: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + No s'han pogut desar els resultats de la cerca. Pestanya: "%1". Fitxer: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + No s'ha pogut carregar l'historial de la IU de cerca. Fitxer: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + No s'ha pogut desar l'historial de cerques. Fitxer: "%1". Error: "%2" @@ -10092,67 +10047,77 @@ Cliqueu al botó "Connectors de cerca..." del cantó de baix a la dret StatusBar - + Connection status: Estat de la connexió: - - + + No direct connections. This may indicate network configuration problems. No hi ha connexions directes. Això pot indicar problemes en la configuració de la xarxa. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + IP externa: N/A + + + + DHT: %1 nodes DHT: %1 nodes - + qBittorrent needs to be restarted! El qBittorrent s'ha de reiniciar! - - + + Connection Status: Estat de la connexió: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Fora de línia. Això normalment significa que el qBittorrent no pot contactar al port seleccionat per a les connexions entrants. - + Online En línea - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + IP externes: %1, %2 + + + + External IP: %1%2 + IP externa: %1%2 + + + Click to switch to alternative speed limits Cliqueu per canviar als límits de velocitat alternativa - + Click to switch to regular speed limits Cliqueu per canviar als límits de velocitat normal @@ -10180,23 +10145,15 @@ Cliqueu al botó "Connectors de cerca..." del cantó de baix a la dret Completed (0) Completats (0) - - Resumed (0) - Represos (0) - - - Paused (0) - Interromputs (0) - Running (0) - + Actius (0) Stopped (0) - + Interromputs (0) @@ -10261,49 +10218,33 @@ Cliqueu al botó "Connectors de cerca..." del cantó de baix a la dret Running (%1) - + Actius (%1) Stopped (%1) - + Interromputs (%1) Start torrents - + Inicia els torrents Stop torrents - - - - Paused (%1) - Interromputs (%1) + Interromp els torrents Moving (%1) Es mou (%1) - - Resume torrents - Reprèn els torrents - - - Pause torrents - Interromp els torrents - Remove torrents Suprimeix els torrents - - Resumed (%1) - Represos (%1) - Active (%1) @@ -10375,32 +10316,20 @@ Cliqueu al botó "Connectors de cerca..." del cantó de baix a la dret Remove unused tags Suprimeix les etiquetes no usades - - Resume torrents - Reprèn els torrents - - - Pause torrents - Interromp els torrents - Remove torrents Suprimeix els torrents - - New Tag - Etiqueta nova - Start torrents - + Inicia els torrents Stop torrents - + Interromp els torrents @@ -10410,7 +10339,7 @@ Cliqueu al botó "Connectors de cerca..." del cantó de baix a la dret Add tag - + Afegeix una etiqueta @@ -10727,17 +10656,17 @@ Trieu-ne un altre i torneu-ho a provar. TorrentCreatorController - + Too many active tasks Massa tasques actives - + Torrent creation is still unfinished. La creació del torrent encara està inacabada. - + Torrent creation failed. La creació del torrent ha fallat. @@ -10989,17 +10918,6 @@ Trieu-ne un altre i torneu-ho a provar. Supervisió de la carpeta: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - No s'ha pogut assignar memòria en llegir el fitxer. Fitxer: %1. Error: %2 - - - Invalid metadata - Metadades no vàlides - - TorrentOptionsDialog @@ -11035,11 +10953,7 @@ Trieu-ne un altre i torneu-ho a provar. Torrent Share Limits - - - - Torrent speed limits - Límits de velocitat del torrent + Límits de compartició del torrent @@ -11055,7 +10969,7 @@ Trieu-ne un altre i torneu-ho a provar. Torrent Speed Limits - + Límits de velocitat del torrent @@ -11073,34 +10987,6 @@ Trieu-ne un altre i torneu-ho a provar. Upload: Pujada: - - Torrent share limits - Límits de compartició del torrent - - - Use global share limit - Usa el límit de compartició global - - - Set no share limit - Sense cap límit de compartició - - - Set share limit to - Estableix el límit de compartició a - - - ratio - ràtio - - - total minutes - minuts totals - - - inactive minutes - minuts d'inacció - Disable DHT for this torrent @@ -11142,14 +11028,6 @@ Trieu-ne un altre i torneu-ho a provar. Not applicable to private torrents No s'aplica als torrents privats - - No share limit method selected - No s'ha seleccionat cap mètode de limitació de compartició - - - Please select a limit method first - Seleccioneu primer un mètode de limitació - TorrentShareLimitsWidget @@ -11199,27 +11077,27 @@ Trieu-ne un altre i torneu-ho a provar. Action when the limit is reached: - + Acció quan s'arriba al límit: Stop torrent - + Interromp el torrent Remove torrent - Suprimeix el torrent + Suprimeix el torrent Remove torrent and its content - + Suprimeix el torrent i el contingut Enable super seeding for torrent - Habilita la supersembra per al torrent + Habilita la supersembra per al torrent @@ -11234,14 +11112,10 @@ Trieu-ne un altre i torneu-ho a provar. Torrent Tags Etiquetes de Torrent - - New Tag - Etiqueta nova - Add tag - + Afegeix una etiqueta @@ -11272,90 +11146,90 @@ Trieu-ne un altre i torneu-ho a provar. TorrentsController - + Error: '%1' is not a valid torrent file. Error: «%1« no és un fitxer torrent vàlid. - + Priority must be an integer La prioritat ha de ser un nombre enter. - + Priority is not valid La prioritat no és vàlida. - + Torrent's metadata has not yet downloaded Encara no s'han baixat les metadades del torrent. - + File IDs must be integers Els indicadors del fitxer han de ser nombres enters. - + File ID is not valid L'identificador del fitxer no és vàlid. - - - - + + + + Torrent queueing must be enabled Cal que habiliteu la cua d'operacions dels torrent - - + + Save path cannot be empty El camí on desar-ho no pot estar en blanc. - - + + Cannot create target directory No es pot crear el directori de destinació. - - + + Category cannot be empty La categoria no pot estar en blanc. - + Unable to create category No s'ha pogut crear la categoria - + Unable to edit category No s'ha pogut editar la categoria - + Unable to export torrent file. Error: %1 No es pot exportar el fitxer de torrent. Error: %1 - + Cannot make save path No es pot fer el camí on desar-ho. "%1" is not a valid URL - + "%1" no és un URL vàlid URL scheme must be one of [%1] - + L'esquema d'URL ha de ser un de [%1] @@ -11363,39 +11237,39 @@ Trieu-ne un altre i torneu-ho a provar. El paràmetre d'ordenació no és vàlid - + "%1" is not an existing URL - + "%1" no és un URL existent - + "%1" is not a valid file index. «%1» no és un índex de fitxer vàlid. - + Index %1 is out of bounds. L'índex %1 és fora dels límits. - - + + Cannot write to directory No es pot escriure al directori. - + WebUI Set location: moving "%1", from "%2" to "%3" Ubicació de la interfície d'usuari de xarxa: es mou «%1», de «%2» a «%3» - + Incorrect torrent name Nom de torrent incorrecte - - + + Incorrect category name Nom de categoria incorrecte @@ -11478,45 +11352,33 @@ Trieu-ne un altre i torneu-ho a provar. Invalid state! - + Estat no vàlid! URL/Announce Endpoint - + URL / Anunci del punt final BT Protocol - + Protocol de BT Next Announce - + Anunci següent Min Announce - - - - Invalid status! - Estat no vàlid! - - - URL/Announce endpoint - URL / Anunci del punt final + Anunci min. Tier Nivell - - Protocol - Protocol - Status @@ -11547,18 +11409,6 @@ Trieu-ne un altre i torneu-ho a provar. Message Missatge - - Next announce - Anunci següent - - - Min announce - Anunciar mínim - - - v%1 - v%1 - TrackerListWidget @@ -11568,73 +11418,73 @@ Trieu-ne un altre i torneu-ho a provar. Aquest torrent és privat. - + Tracker editing Edició del rastrejador - + Tracker URL: URL del rastrejador: - - + + Tracker editing failed Ha fallat l'edició del rastrejador. - + The tracker URL entered is invalid. L'URL del rastrejador introduït no és vàlid. - + The tracker URL already exists. L'URL del rastrejador ja existeix. - + Edit tracker URL... Edita l'URL del rastrejador... - + Remove tracker Suprimeix el rastrejador - + Copy tracker URL Copia l'URL del rastrejador - + Force reannounce to selected trackers Força el reanunci als rastrejadors seleccionats - + Force reannounce to all trackers Forca el reanunci a tots els rastrejadors - + Resize columns Canvia l'amplada de les columnes - + Resize all non-hidden columns to the size of their contents Canvia l'amplada de totes les columnes visibles a la mida del contingut - + Add trackers... Afegeix rastrejadors... - + Column visibility Visibilitat de les columnes @@ -11717,20 +11567,12 @@ Trieu-ne un altre i torneu-ho a provar. Start torrents - + Inicia els torrents Stop torrents - - - - Resume torrents - Reprèn els torrents - - - Pause torrents - Interromp els torrents + Interromp els torrents @@ -11854,10 +11696,6 @@ Trieu-ne un altre i torneu-ho a provar. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Comprovant les dades de represa - - Paused - Interromput - Completed @@ -11898,21 +11736,16 @@ Trieu-ne un altre i torneu-ho a provar. % Done Progrés - - Status - Torrent status (e.g. downloading, seeding, paused) - Estat - Stopped - + Aturat Status Torrent status (e.g. downloading, seeding, stopped) - Estat + Estat @@ -11947,7 +11780,7 @@ Trieu-ne un altre i torneu-ho a provar. Popularity - + Popularitat @@ -12028,22 +11861,17 @@ Trieu-ne un altre i torneu-ho a provar. Time Active Time (duration) the torrent is active (not stopped) - Temps d'activitat + Temps actiu Yes - + No - No - - - Time Active - Time (duration) the torrent is active (not paused) - Temps d'activitat + No @@ -12115,12 +11943,12 @@ Trieu-ne un altre i torneu-ho a provar. Private Flags private torrents - + Privat Ratio / Time Active (in months), indicates how popular the torrent is - + La ràtio / el temps d'activitat (en mesos), indica la popularitat del torrent. @@ -12145,358 +11973,319 @@ Trieu-ne un altre i torneu-ho a provar. TransferListWidget - + Column visibility Visibilitat de columnes - + Recheck confirmation Confirmació de la verificació - + Are you sure you want to recheck the selected torrent(s)? Segur que voleu tornar a comprovar els torrents seleccionats? - + Rename Canvia'n el nom - + New name: Nou nom: - + Choose save path Trieu el camí on desar-ho - Confirm pause - Confirmeu la interrupció - - - Would you like to pause all torrents? - Voleu interrompre tots els torrents? - - - Confirm resume - Confirmeu la represa - - - Would you like to resume all torrents? - Voleu reprendre tots els torrents? - - - + Unable to preview No es pot previsualitzar. - + The selected torrent "%1" does not contain previewable files El torrent seleccionat "%1" no conté fitxers que es puguin previsualitzar. - + Resize columns Canvia l'amplada de les columnes - + Resize all non-hidden columns to the size of their contents Canvia l'amplada de totes les columnes visibles a la mida del contingut - + Enable automatic torrent management Permet la gestió automàtica dels torrents - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Esteu segur que voleu activar la gestió automàtica dels torrents per als torrents seleccionats? Potser es canvien d'ubicació. - Add Tags - Afegeix etiquetes - - - + Choose folder to save exported .torrent files Trieu la carpeta per desar els fitxers .torrent exportats. - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Ha fallat l'exportació del fitxer .torrent. Torrent: "%1". Desa el camí: "%2". Raó: "% 3" - + A file with the same name already exists Ja existeix un fitxer amb el mateix nom. - + Export .torrent file error Error d'exportació del fitxer .torrent - + Remove All Tags Suprimeix totes les etiquetes - + Remove all tags from selected torrents? Voleu suprimir totes les etiquetes dels torrents seleccionats? - + Comma-separated tags: Etiquetes separades per comes: - + Invalid tag Etiqueta no vàlida - + Tag name: '%1' is invalid El nom d'etiqueta "%1" no és vàlid. - &Resume - Resume/start the torrent - &Reprèn - - - &Pause - Pause the torrent - Interrom&p - - - Force Resu&me - Force Resume/start the torrent - Força'n la re&presa - - - + Pre&view file... Pre&visualitza el fitxer... - + Torrent &options... Opci&ons del torrent... - + Open destination &folder Obre la carpe&ta de destinació - + Move &up i.e. move up in the queue Mou am&unt - + Move &down i.e. Move down in the queue Mou a&vall - + Move to &top i.e. Move to top of the queue Mou al &principi - + Move to &bottom i.e. Move to bottom of the queue Mou al capdava&ll - + Set loc&ation... Estableix la ubic&ació... - + Force rec&heck Força'n la ve&rificació - + Force r&eannounce Força'n el r&eanunci - + &Magnet link Enllaç &magnètic - + Torrent &ID &ID del torrent - + &Comment &Comentari - + &Name &Nom - + Info &hash v1 Informació de la &funció resum v1 - + Info h&ash v2 Informació de la funció resu&m v2 - + Re&name... Canvia'n el &nom... - + Edit trac&kers... Edita els rastre&jadors... - + E&xport .torrent... E&xporta el .torrent... - + Categor&y Categor&ia - + &New... New category... &Nou... - + &Reset Reset category &Restableix - + Ta&gs Eti&quetes - + &Add... Add / assign multiple tags... &Afegeix... - + &Remove All Remove all tags Sup&rimeix-les totes - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + No es pot forçar el reanunci si el torrent està interromput / és a la cua / té errors / es comprova. - + &Queue &Posa a la cua - + &Copy &Copia - + Exported torrent is not necessarily the same as the imported El torrent exportat no és necessàriament el mateix que l'importat. - + Download in sequential order Baixa en ordre seqüencial - + Add tags - + Afegeix etiquetes - + Errors occurred when exporting .torrent files. Check execution log for details. S'han produït errors en exportar fitxers .torrent. Consulteu el registre d'execució per obtenir més informació. - + &Start Resume/start the torrent - + &Inicia - + Sto&p Stop the torrent - + Interrom&p - + Force Star&t Force Resume/start the torrent - + &Força'n l'inici - + &Remove Remove the torrent Sup&rimeix - + Download first and last pieces first Baixa primer els trossos del principi i del final - + Automatic Torrent Management Gestió automàtica del torrents - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category El mode automàtic significa que diverses propietats dels torrents (p. ex. el camí on desar-los) es decidiran segons la categoria associada. - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - No es pot forçar el reanunci si el torrent està interromput / a la cua / té error / es comprova. - - - + Super seeding mode Mode de supersembra @@ -12572,7 +12361,7 @@ Trieu-ne un altre i torneu-ho a provar. Set app style failed. Unknown style: "%1" - + Ha fallat establir l'estil de l'aplicació. Estil desconegut: %1 @@ -12628,32 +12417,32 @@ Trieu-ne un altre i torneu-ho a provar. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" S'ha trobat l'executable de Python. Nom: %1. Versió: %2 - + Failed to find Python executable. Path: "%1". No s'ha pogut trobar l'executable de Python. Camí: %1. - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" No s'ha pogut trobar l'executable de python3 a la variable d'entorn PATH. CAMÍ: %1 - + Failed to find `python` executable in PATH environment variable. PATH: "%1" No s'ha pogut trobar l'executable de python a la variable d'entorn PATH. CAMÍ: %1 - + Failed to find `python` executable in Windows Registry. No s'ha pogut trobar l'executable de python al registre de Windows. - + Failed to find Python executable No s'ha pogut trobar l'executable de Python. @@ -12745,52 +12534,52 @@ Trieu-ne un altre i torneu-ho a provar. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. S'ha especificat un nom de galeta de sessió inacceptable: %1. S'usa el valor predeterminat. - + Unacceptable file type, only regular file is allowed. El tipus de fitxer no és acceptable, només s'admeten fitxers normals. - + Symlinks inside alternative UI folder are forbidden. No es permeten els enllaços simbòlics a les carpetes d'interfície d'usuari alternativa. - + Using built-in WebUI. S'usa la interfície web integrada. - + Using custom WebUI. Location: "%1". S'usa la interfície d'usuari web personalitzada. Ubicació: %1. - + WebUI translation for selected locale (%1) has been successfully loaded. La traducció de la interfície web per a la configuració regional seleccionada (%1) s'ha carregat correctament. - + Couldn't load WebUI translation for selected locale (%1). No s'ha pogut carregar la traducció de la interfície web per a la configuració regional seleccionada (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Falta el separador ":" de la capçalera HTTP personalitzada de la interfície d'usuari de xarxa: "%1" - + Web server error. %1 Error del servidor web. %1 - + Web server error. Unknown error. Error del servidor web. Error desconegut. @@ -12848,7 +12637,7 @@ Trieu-ne un altre i torneu-ho a provar. Unknown error - Error desconegut + Error desconegut diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts index 3e8c7ba52..b6eb5a861 100644 --- a/src/lang/qbittorrent_cs.ts +++ b/src/lang/qbittorrent_cs.ts @@ -170,10 +170,6 @@ Never show again Už nikdy nezobrazovat - - Torrent settings - Nastavení torrentu - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Možnosti torrentu @@ -235,25 +231,25 @@ Podmínka zastavení: - - + + None Žádná - - + + Metadata received Metadata stažena - + Torrents that have metadata initially will be added as stopped. Torrenty s metadaty budou přidány jako zastavené. - + Files checked Soubory zkontrolovány @@ -368,112 +364,112 @@ Uložit jako .torrent soubor... - + I/O Error Chyba I/O - + Not Available This comment is unavailable Není k dispozici - + Not Available This date is unavailable Není k dispozici - + Not available Není k dispozici - + Magnet link Magnet link - + Retrieving metadata... Získávám metadata... - - + + Choose save path Vyberte cestu pro uložení - + No stop condition is set. Podmínka zastavení není vybrána. - + Torrent will stop after metadata is received. Torrent se zastaví po stažení metadat. - + Torrent will stop after files are initially checked. Torrent se zastaví po počáteční kontrole souborů. - + This will also download metadata if it wasn't there initially. Toto stáhne také metadata, pokud nebyla součástí. - + N/A N/A - + %1 (Free space on disk: %2) %1 (Volné místo na disku: %2) - + Not available This size is unavailable. Není k dispozici - + Torrent file (*%1) Torrent soubor (*%1) - + Save as torrent file Uložit jako torrent soubor - + Couldn't export torrent metadata file '%1'. Reason: %2. Nebylo možné exportovat soubor '%1' metadat torrentu. Důvod: %2. - + Cannot create v2 torrent until its data is fully downloaded. Nelze vytvořit v2 torrent, než jsou jeho data zcela stažena. - + Filter files... Filtrovat soubory... - + Parsing metadata... Parsování metadat... - + Metadata retrieval complete Načítání metadat dokončeno @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Stahování torrentu... Zdroj: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Selhalo přidání torrentu. Zdroj: "%1". Důvod: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Rozpoznán pokus o přidání duplicitního torrentu. Zdroj: %1. Stávající torrent: %2. Výsledek: %3 + Rozpoznán pokus o přidání duplicitního torrentu. Zdroj: %1. Stávající torrent: %2. Výsledek: %3 - + Merging of trackers is disabled Slučování trackerů je vypnuto - + Trackers cannot be merged because it is a private torrent Trackery nemohou být sloučeny, protože jde o soukromý torrent - + Trackers are merged from new source Trackery jsou sloučeny z nového zdroje + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Při dokončení překontrolovat torrenty - - + + ms milliseconds ms - + Setting Nastavení - + Value Value set for this setting Hodnota - + (disabled) (vypnuto) - + (auto) (auto) - - + + min minutes min - + All addresses Všechny adresy - + qBittorrent Section Sekce qBittorrentu - - + + Open documentation Otevřít dokumentaci - + All IPv4 addresses Všechny adresy IPv4 - + All IPv6 addresses Všechny adresy IPv6 - + libtorrent Section Sekce libtorrentu - + Fastresume files Soubory rychlého obnovení - + SQLite database (experimental) SQLite databáze (experimental) - + Resume data storage type (requires restart) Typ úložiště dat obnovení (vyžaduje restart) - + Normal Normální - + Below normal Pod normálem - + Medium Střední - + Low Malé - + Very low Velmi malé - + Physical memory (RAM) usage limit Limit využití fyzické paměti (RAM) - + Asynchronous I/O threads Asynchronní I/O vlákna - + Hashing threads Hashovací vlákna - + File pool size Velikost souborového zásobníku - + Outstanding memory when checking torrents Mimořádná paměť při kontrole torrentů - + Disk cache Disková cache - - - - + + + + + s seconds s - + Disk cache expiry interval Interval vypršení diskové cache - + Disk queue size Velikost diskové fronty - - + + Enable OS cache Zapnout vyrovnávací paměť systému - + Coalesce reads & writes Sloučení čtecích & zapisovacích operací - + Use piece extent affinity Rozšíření o příbuzné části - + Send upload piece suggestions Doporučení pro odeslání částí uploadu - - - - - + + + + + 0 (disabled) 0 (vypnuto) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Interval ukládání dat obnovení [0: vypnuto] - + Outgoing ports (Min) [0: disabled] Odchozí porty (Min) [0: vypnuto] - + Outgoing ports (Max) [0: disabled] Odchozí porty (Max) [0: vypnuto] - + 0 (permanent lease) 0 (trvalé propůjčení) - + UPnP lease duration [0: permanent lease] Doba UPnP propůjčení [0: trvalé propůjčení] - + Stop tracker timeout [0: disabled] Stop tracker timeout [0: vypnuto] - + Notification timeout [0: infinite, -1: system default] Timeout upozornění [0: nekonečně, -1: výchozí systému] - + Maximum outstanding requests to a single peer Maximum nezpracovaných požadavků na jeden peer - - - - - + + + + + KiB KiB - + (infinite) (nekonečně) - + (system default) (výchozí systému) - + Delete files permanently - + Smazat soubory trvale - + Move files to trash (if possible) - + Přesunout soubory do koše (pokud možno) - + Torrent content removing mode - + Režim odebrání obsahu torrentu - + This option is less effective on Linux Tato volba je na Linuxu méně efektivní - + Process memory priority Priorita paměti procesu - + Bdecode depth limit Bdecode omezení hloubky - + Bdecode token limit Bdecode omezení tokenu - + Default Výchozí - + Memory mapped files Soubory mapované v paměti - + POSIX-compliant POSIX-vyhovující - + Simple pread/pwrite - + Jednoduché pread/pwrite - + Disk IO type (requires restart) Disk IO typ (vyžaduje restart) - - + + Disable OS cache Vypnout vyrovnávací paměť systému: - + Disk IO read mode Režim IO čtení disku - + Write-through Write-through - + Disk IO write mode Režim IO zápisu na disk - + Send buffer watermark Send buffer watermark - + Send buffer low watermark Send buffer low watermark - + Send buffer watermark factor Send buffer watermark faktor - + Outgoing connections per second Odchozí spojení za sekundu - - + + 0 (system default) 0 (výchozí systému) - + Socket send buffer size [0: system default] Velikost socket send bufferu [0: výchozí systému] - + Socket receive buffer size [0: system default] Velikost socket receive bufferu [0: výchozí systému] - + Socket backlog size Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Interval uložení statistik [0: vypnuto] - + .torrent file size limit omezení velikosti .torrent souboru - + Type of service (ToS) for connections to peers Typ služby (ToS) pro připojování k peerům - + Prefer TCP Upřednostnit TCP - + Peer proportional (throttles TCP) Peer proportional (omezit TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Podporovat domény obsahující speciální znaky (IDN) - + Allow multiple connections from the same IP address Povolit více spojení ze stejné IP adresy - + Validate HTTPS tracker certificates Ověřovat HTTPS certifikáty trackerů - + Server-side request forgery (SSRF) mitigation Zamezení falšování požadavků na straně serveru (SSRF) - + Disallow connection to peers on privileged ports Nepovolit připojení k peerům na privilegovaných portech - + It appends the text to the window title to help distinguish qBittorent instances Přidává text na konec titulku okna pro odlišení od ostatních instancí qBittorrentu - + Customize application instance name Přizpůsobte název instance aplikace - + It controls the internal state update interval which in turn will affect UI updates Řídí interval aktualizace vnitřního stavu, který zase ovlivní aktualizace uživatelského rozhraní - + Refresh interval Interval obnovení - + Resolve peer host names Zjišťovat síťové názvy peerů - + IP address reported to trackers (requires restart) IP adresa hlášená trackerům (vyžaduje restart) - + Port reported to trackers (requires restart) [0: listening port] - + Port oznamovaný trackerům (vyžaduje restart) [0: port naslouchání] - + Reannounce to all trackers when IP or port changed Znovu oznámit všem trackerům při změne IP nebo portu - + Enable icons in menus Povolit ikony v menu - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Zapněte přesměrování portu pro vestavěný tracker - + Enable quarantine for downloaded files Zapnout karanténu pro stažené soubory - + Enable Mark-of-the-Web (MOTW) for downloaded files Zapnout Mark-of-the-Web (MOTW) pro stažené soubory - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Má vliv na ověření certifikátu a aktivity protokolů jiných než je bittorrent (např. RSS kanály, aktualizace programu, soubory torrentů, GEOIP databáze, atd.) - + Ignore SSL errors - + Ignorovat chyby SSL - + (Auto detect if empty) (Automaticky rozpoznat pokud je prázdné) - + Python executable path (may require restart) Cesta odkud se spouští Python (může vyžadovat restart) - + Start BitTorrent session in paused state - + Spustit relaci BitTorrentu v pozastavené stavu - + sec seconds - sec + sec - + -1 (unlimited) - + -1 (neomezeně) - + BitTorrent session shutdown timeout [-1: unlimited] - + Timeout vypnutí relace BitTorrent [-1: neomezeně] - + Confirm removal of tracker from all torrents Potvrďte odebrání trackeru ze všech torrentů - + Peer turnover disconnect percentage Procento odpojení při peer turnover - + Peer turnover threshold percentage Procento limitu pro peer turnover - + Peer turnover disconnect interval Interval odpojení při peer turnover - + Resets to default if empty Resetuje se na výchozí pokud je prázdné - + DHT bootstrap nodes DHT bootstrap uzly - + I2P inbound quantity I2P příchozí množství - + I2P outbound quantity I2P odchozí množství - + I2P inbound length I2P příchozí délka - + I2P outbound length I2P odchozí délka - + Display notifications Zobrazit notifikace - + Display notifications for added torrents Zobrazit oznámení o přidaných torrentech - + Download tracker's favicon Stáhnout logo trackeru - + Save path history length Uložit délku historie cesty - + Enable speed graphs Zapnout graf rychlosti - + Fixed slots Pevné sloty - + Upload rate based Dle rychlosti uploadu - + Upload slots behavior Chování upload slotů - + Round-robin Poměrné rozdělení - + Fastest upload Nejrychlejší upload - + Anti-leech Priorita pro začínající a končící leechery - + Upload choking algorithm Škrtící algoritmus pro upload - + Confirm torrent recheck Potvrdit překontrolování torrentu - + Confirm removal of all tags Potvrdit odebrání všech štítků - + Always announce to all trackers in a tier Vždy oznamovat všem trackerům ve třídě - + Always announce to all tiers Vždy oznamovat všem třídám - + Any interface i.e. Any network interface Jakékoli rozhraní - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP mixed mode algoritmus - + Resolve peer countries Zjišťovat zemi původu peerů - + Network interface Síťové rozhraní - + Optional IP address to bind to Volitelná přidružená IP adresa - + Max concurrent HTTP announces Maximum souběžných HTTP oznámení - + Enable embedded tracker Zapnout vestavěný tracker - + Embedded tracker port Port vestavěného trackeru @@ -1382,142 +1393,142 @@ Invalid directory path - + Neplatná cesta adresáře Directory does not exist - + Adresář neexistuje Invalid mode, allowed values: %1 - + Neplatný režim, povolené hodnoty: %1 cookies must be array - + cookies musí být sadou Application - + Running in portable mode. Auto detected profile folder at: %1 Spuštěno v portable režimu. Automaticky detekovan adresář s profilem: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Detekován nadbytečný parametr příkazového řádku: "%1". Portable režim již zahrnuje relativní fastresume. - + Using config directory: %1 Používá se adresář s konfigurací: %1 - + Torrent name: %1 Název torrentu: %1 - + Torrent size: %1 Velikost torrentu: %1 - + Save path: %1 Cesta pro uložení: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent byl stažen do %1. - - + + Thank you for using qBittorrent. Děkujeme, že používáte qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, odeslání emailového oznámení - + Add torrent failed Přidání torrentu selhalo - + Couldn't add torrent '%1', reason: %2. Nebylo možné přidat torrent '%1', důvod: %2. - + The WebUI administrator username is: %1 Uživatelské jméno správce WebUI je: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Heslo správce WebUI nebylo nastaveno. Dočasné heslo je přiřazeno této relaci: %1 - + You should set your own password in program preferences. Měli byste nastavit své vlastní heslo v nastavení programu. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI je vypnuto! Pro zapnutí WebUI ručně upravte soubor konfigurace. - + Running external program. Torrent: "%1". Command: `%2` Spuštění externího programu. Torrent: "%1". Příkaz: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Spuštění externího programu selhalo. Torrent: "%1". Příkaz: `%2` - + Torrent "%1" has finished downloading Torrent "%1" dokončil stahování - + WebUI will be started shortly after internal preparations. Please wait... WebUI bude spuštěno brzy po vnitřních přípravách. Prosím čekejte... - - + + Loading torrents... Načítání torrentů... - + E&xit &Ukončit - + I/O Error i.e: Input/Output Error Chyba I/O - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Důvod: %2 - + Torrent added Torrent přidán - + '%1' was added. e.g: xxx.avi was added. '%1' byl přidán. - + Download completed Stahování dokončeno. - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 spuštěn. ID procesu: %2 - + This is a test email. - + Toto je testovací e-mail. - + Test email - + Testovací e-mail - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Stahování '%1' bylo dokončeno. - + Information Informace - + To fix the error, you may need to edit the config file manually. Pro opravu chyby může být potřeba ručně upravit konfigurační soubor. - + To control qBittorrent, access the WebUI at: %1 Pro ovládání qBittorrentu otevřete webové rozhraní na: %1 - + Exit Ukončit - + Recursive download confirmation Potvrzení rekurzivního stahování - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' obsahuje soubory .torrent, chcete je také stáhnout? - + Never Nikdy - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekurzivní stažení .torrent souboru v rámci torrentu. Zdrojový torrent: "%1". Soubor: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Selhalo nastavení omezení fyzické paměti (RAM). Chybový kód: %1. Chybová zpráva: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Selhalo nastavení tvrdého limitu využití fyzické paměti (RAM). Velikost požadavku: %1. Tvrdý systémový limit: %2. Chybový kód: %3. Chybová zpráva: "%4" - + qBittorrent termination initiated zahájeno ukončení qBittorrentu - + qBittorrent is shutting down... qBittorrent se vypíná... - + Saving torrent progress... Průběh ukládání torrentu... - + qBittorrent is now ready to exit qBittorrent je připraven k ukončení @@ -1766,263 +1777,263 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod &Export... - + Matches articles based on episode filter. Články odpovídající filtru epizod. - + Example: Příklad: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match odpovídá 2, 5, 8 až 15, 30 a dalším epizodám první sezóny - + Episode filter rules: Pravidla filtru epizod: - + Season number is a mandatory non-zero value Číslo sezóny je povinná nenulová hodnota - + Filter must end with semicolon Filtr musí být ukončen středníkem - + Three range types for episodes are supported: Jsou podporovány tři typy rozsahu pro epizody: - + Single number: <b>1x25;</b> matches episode 25 of season one Jedno číslo: <b>1x25;</b> odpovídá epizodě 25 první sezóny - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Rozsah: <b>1x25-40;</b> odpovídá epizodám 25 až 40 první sezóny - + Episode number is a mandatory positive value Číslo epizody je povinná kladná hodnota - + Rules Pravidla - + Rules (legacy) Pravidla (původní) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Neukončený rozsah: <b>1x25-;</b> zahrnuje epizody 25 a výše z první sezóny a všechny epizody pozdějších sérií - + Last Match: %1 days ago Poslední shoda: %1 dny nazpět - + Last Match: Unknown Poslední shoda: Neznámá - + New rule name Nový název pravidla - + Please type the name of the new download rule. Napište název nového pravidla stahování. - - + + Rule name conflict Název pravidla koliduje - - + + A rule with this name already exists, please choose another name. Pravidlo s tímto názvem již existuje, vyberte jiný název, prosím. - + Are you sure you want to remove the download rule named '%1'? Opravdu chcete odstranit pravidlo s názvem '%1'? - + Are you sure you want to remove the selected download rules? Opravdu chcete odstranit označená pravidla? - + Rule deletion confirmation Potvrdit smazání pravidla - + Invalid action Neplatná akce - + The list is empty, there is nothing to export. Seznam je prázdný, nic není k exportu. - + Export RSS rules Export RSS pravidel - + I/O Error Chyba I/O - + Failed to create the destination file. Reason: %1 Nepodařilo se vytvořit cílový soubor. Důvod: % 1 - + Import RSS rules Import RSS pravidel - + Failed to import the selected rules file. Reason: %1 Nepodařilo se importovat vybraný soubor pravidel. Důvod: % 1 - + Add new rule... Přidat nové pravidlo... - + Delete rule Smazat pravidlo - + Rename rule... Přejmenovat pravidlo... - + Delete selected rules Smazat označená pravidla - + Clear downloaded episodes... Odstranit stažené epizody... - + Rule renaming Přejmenování pravidla - + Please type the new rule name Napište název nového pravidla, prosím - + Clear downloaded episodes Odstranit stažené epizody - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Opravdu chcete vymazat seznam stažených epizod pro vybrané pravidlo? - + Regex mode: use Perl-compatible regular expressions Regex mód: použijte regulární výraz komatibilní s Perlem - - + + Position %1: %2 Pozice %1: %2 - + Wildcard mode: you can use Mód zástupných znaků: můžete použít - - + + Import error Chyba importu - + Failed to read the file. %1 Selhalo čtení souboru. %1 - + ? to match any single character ? pro shodu s libovolným jediným znakem - + * to match zero or more of any characters * pro shodu se žádným nebo více jakýmikoliv znaky - + Whitespaces count as AND operators (all words, any order) Mezera slouží jako operátor AND (všechna slova v jakémkoliv pořadí) - + | is used as OR operator | slouží jako operátor OR - + If word order is important use * instead of whitespace. Je-li důležité pořadí slov, použijte * místo mezery. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Výraz s prázdným %1 obsahem (např. %2) - + will match all articles. zahrne všechny položky. - + will exclude all articles. vyloučí všechny položky. @@ -2074,28 +2085,38 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Data obnovení nelze analyzovat: neplatný formát - - + + Cannot parse torrent info: %1 Info torrentu nelze analyzovat: %1 - + Cannot parse torrent info: invalid format Info torrentu nelze analyzovat: neplatný formát - + Mismatching info-hash detected in resume data V datech obnovení byl rozpoznán nesprávný info-hash - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Nebylo možné uložit metadata torrentu do '%1'. Chyba: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Nepodařilo se uložit data obnovení torrentu do '%1'. Chyba: %2 @@ -2106,16 +2127,17 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod + Cannot parse resume data: %1 Data obnovení nelze analyzovat: %1 - + Resume data is invalid: neither metadata nor info-hash was found Data obnovení jsou neplatná: metadata nebo info-hash nebyly nalezeny - + Couldn't save data to '%1'. Error: %2 Nepodařilo se uložit data do '%1'. Chyba: %2 @@ -2123,38 +2145,60 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod BitTorrent::DBResumeDataStorage - + Not found. Nenalezeno. - + Couldn't load resume data of torrent '%1'. Error: %2 Nepodařilo se načíst data obnovení torrentu '%1'. Chyba: %2 - - + + Database is corrupted. Databáze je poškozena. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Nebylo možné zapnout Write-Ahead Logging (WAL) režim žurnálu. Chyba: %1. - + Couldn't obtain query result. Nebylo možné získat výsledek dotazu. - + WAL mode is probably unsupported due to filesystem limitations. WAL režim pravděpodobně není podporován kvůli omezením souborového systému. - + + + Cannot parse resume data: %1 + Data obnovení nelze analyzovat: %1 + + + + + Cannot parse torrent info: %1 + Info torrentu nelze analyzovat: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Nebylo možné začít transakci. Chyba: %1 @@ -2162,22 +2206,22 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Nepodařilo se uložit metadata torrentu. Chyba: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Nepodařilo se uložit data obnovení torrentu '%1'. Chyba: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Nepodařilo se smazat data obnovení torrentu '%1'. Chyba: %2 - + Couldn't store torrents queue positions. Error: %1 Nelze uložit pozice ve frontě torrentů. Chyba: %1 @@ -2185,530 +2229,507 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Podpora Distribuované hash tabulky (DHT): %1 - - - - - - - - - + + + + + + + + + ON ZAPNUTO - - - - - - - - - + + + + + + + + + OFF VYPNUTO - - + + Local Peer Discovery support: %1 Podpora hledání místních peerů: %1 - + Restart is required to toggle Peer Exchange (PeX) support Kvůli přepnutí podpory Výměny peerů (PEX) je nutný restart - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Selhalo obnovení torrentu. Torrent: "%1". Důvod: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Selhalo obnovení/spuštění torrentu: Rozpoznáno nekonzistentní ID torrentu. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Rozpoznána nekonzistentní data: chybí kategorie v konfiguračním souboru. Kategorie bude obnovena ale její nastavení budou resetována do výchozího stavu. Torrent: "%1". Kategorie: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Rozpoznána nekonzistentní data: neplatná kategorie. Torrent: "%1". Kategorie: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Rozpoznán nesoulad mezi cílovou cestou uložení obnovované kategorie a současnou cílovou cestou uložení torrentu. Torrent je nyní přepnut do Ručního módu. Torrent: "%1". Kategorie: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Rozpoznána nekonzistentní data: chybí štítek v konfiguračním souboru. Štítek bude obnoven. Torrent: "%1". Štítek: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Rozpoznána nekonzistentní data: neplatný štítek. Torrent: "%1". Štítek: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Rozpoznána událost probuzení systému. Oznamování všem trackerům... - + Peer ID: "%1" ID peera: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Podpora Výměny peerů (PeX): %1 - - + + Anonymous mode: %1 Anonymní režim: %1 - - + + Encryption support: %1 Podpora šifrování: %1 - - + + FORCED VYNUCENO - + Could not find GUID of network interface. Interface: "%1" Nebylo možné najít GUID síťového rozhraní. Rozhraní: "%1" - + Trying to listen on the following list of IP addresses: "%1" Zkouším naslouchat na těchto IP adresách: "%1" - + Torrent reached the share ratio limit. Torrent dosáhl stanoveného ratia. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Odebrán torrent. - - - Removed torrent and deleted its content. - Odebrán torrent a smazány stažené soubory. - - - Torrent paused. - Torrent pozastaven. - - - + Super seeding enabled. Super seeding zapnut. - + Torrent reached the seeding time limit. Torrent dosáhl maximální doby seedování. - + Torrent reached the inactive seeding time limit. Torrent dosáhl časového omezení doby neaktivního seedování. - + Failed to load torrent. Reason: "%1" Načtení torrentu selhalo. Důvod: "%1" - + I2P error. Message: "%1". I2P chyba. Zpráva: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP podpora: zapnuto - + Saving resume data completed. - + Ukládání dat obnovení dokončeno. - + BitTorrent session successfully finished. - + Relace BitTorrentu úspěšně dokončena. - + Session shutdown timed out. - + Vypnutí relace vypršel čas platnosti. - + Removing torrent. - + Odebírání torrentu. - + Removing torrent and deleting its content. - + Odebírání torrentu a mazání jeho obsahu. - + Torrent stopped. - + Torrent zastaven. - + Torrent content removed. Torrent: "%1" - + Obsah torrentu odebrán. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Selhalo odebrání obsahu torrentu. Torrent: "%1". Chyba: "%2" - + Torrent removed. Torrent: "%1" - + Torrent odebrán. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Rozpoznán pokus o přidání duplicitního torrentu. Stávající torrent: %1. Výsledek: %2 - + Merging of trackers is disabled - Slučování trackerů je vypnuto + Slučování trackerů je vypnuto - + Trackers cannot be merged because it is a private torrent - Trackery nemohou být sloučeny, protože jde o soukromý torrent + Trackery nemohou být sloučeny, protože jde o soukromý torrent - + Trackers are merged from new source - Trackery jsou sloučeny z nového zdroje + Trackery jsou sloučeny z nového zdroje - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP podpora: vypnuto - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Export torrentu selhal. Torrent: "%1". Cíl: "%2". Důvod: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Ukládání souborů rychlého obnovení bylo zrušeno. Počet zbývajících torrentů: %1 - + The configured network address is invalid. Address: "%1" Nastavená síťová adresa není platná. Adresa: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Nebylo možné najít nastavenou síťovou adresu pro naslouchání. Adresa: "%1" - + The configured network interface is invalid. Interface: "%1" Nastavené síťové rozhraní není platné. Rozhraní: "%1" - + Tracker list updated - + Seznam trackerů aktualizován - + Failed to update tracker list. Reason: "%1" - + Selhala aktualizace seznamu trackerů. Důvod: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Zamítnuta neplatná IP adresa při použití seznamu blokovaných IP adres. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Přidán tracker k torrentu. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Odebrán tracker z torrentu. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Přidán URL seeder k torrentu. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Odebrán URL seeder z torrentu. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Selhalo odebrání partfile. Torrent: "%1". Důvod: "%2". - Torrent paused. Torrent: "%1" - Torrent pozastaven. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent obnoven. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Stahování torrentu dokončeno. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Přesun Torrentu zrušen. Torrent: "%1". Zdroj: "%2". Cíl: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent zastaven. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Selhalo zařazení torrentu do fronty k přesunu. Torrent: "%1". Zdroj: "%2". Cíl: "%3". Důvod: torrent je právě přesouván do cíle - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Selhalo zařazení torrentu do fronty k přesunu. Torrent: "%1". Zdroj: "%2" Cíl: "%3". Důvod: obě cesty ukazují na stejné umístění - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Přesun torrentu zařazen do fronty. Torrent: "%1". Zdroj: "%2". Cíl: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Zahájení přesunu torrentu. Torrent: "%1". Cíl: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Selhalo uložení nastavení Kategorií. Soubor: "%1". Chyba: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Selhalo čtení nastavení Kategorií. Soubor: "%1". Chyba: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Úspěšně dokončeno načtení souboru IP filtru. Počet použitých pravidel: %1 - + Failed to parse the IP filter file Načítání pravidel IP filtru ze souboru se nezdařilo - + Restored torrent. Torrent: "%1" Obnoven torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Přidán nový torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent skončil chybou. Torrent: "%1". Chyba: "%2" - Removed torrent. Torrent: "%1" - Odebrán torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Odebrán torrent a smazána jeho data. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentu chybí parametry SSL. Torrent: "%1". Zpráva: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Chyba souboru. Torrent: "%1". Soubor: "%2". Důvod: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP port mapování selhalo. Zpráva: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP port mapování bylo úspěšné. Zpráva: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filtr - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrovaný port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). privilegovaný port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Selhalo připojení URL seed. Torrent: "%1". URL: "%2". Chyba: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" V BitTorrent relaci došlo k vážné chybě. Důvod: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxy chyba. Adresa: %1. Zpráva: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 omezení smíšeného módu - + Failed to load Categories. %1 Selhalo načítání kategorií. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Selhalo čtení nastavení kategorií. Soubor: "%1". Chyba: "Neplatný formát dat" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent odstraněn, ale nepodařilo se odstranit jeho obsah a/nebo jeho partfile. Torrent: "%1". Chyba: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 je vypnut - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 je vypnut - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL seed DNS hledání selhalo. Torrent: "%1". URL: "%2". Chyba: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Obdržena chybová zpráva od URL seedera. Torrent: "%1". URL: "%2". Zpráva: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Úspěšně naslouchám na IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Selhalo naslouchání na IP. IP: "%1". Port: "%2/%3". Důvod: "%4" - + Detected external IP. IP: "%1" Rozpoznána externí IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Chyba: Interní fronta varování je plná a varování nejsou dále zapisována, můžete pocítit snížení výkonu. Typ vynechaného varování: "%1". Zpráva: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Přesun torrentu byl úspěšný. Torrent: "%1". Cíl: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Přesun torrentu selhal. Torrent: "%1". Zdroj: "%2". Cíl: "%3". Důvod: "%4" @@ -2758,47 +2779,47 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Nebylo možné zapisovat do souboru. Důvod: "%1". Torrent je nyní v režimu "pouze upload". - + Download first and last piece first: %1, torrent: '%2' Stáhnout první a poslední část první: %1, torrent: '%2' - + On Zapnuto - + Off Vypnuto - + Failed to reload torrent. Torrent: %1. Reason: %2 Selhalo opětovné načtení torrentu. Torrent: %1. Důvod: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Generování dat pro obnovení selhalo. Torrent: "%1". Důvod: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Selhala obnova torrentu. Soubory byly pravděpodobně přesunuty a nebo úložiště není dostupné. Torrent: "%1". Důvod: "%2" - + Missing metadata Chybějící metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Přejmenování souboru selhalo. Torrent: "%1", soubor: "%2", příčina: "%3" - + Performance alert: %1. More info: %2 Varování výkonu: %1. Detaily: %2 @@ -2835,11 +2856,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Expected integer number in environment variable '%1', but got '%2' V proměnné předpokládáno celé číslo '%1', ale obdrženo '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parametr '%1' musí dodržovat syntaxi '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parametr '%1' musí dodržovat syntaxi '%1=%2' + Parametr '%1' musí dodržovat syntaxi '%1=%2' @@ -2968,11 +2984,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Add torrents as running or stopped - - - - Add torrents as started or paused - Přidat torrenty jako spuštěné nebo pozastavené + Přidat torrenty jako běžící nebo zastavené @@ -3063,20 +3075,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Start torrents - + Spustit torrenty Stop torrents - - - - Resume torrents - Obnovit torrenty - - - Pause torrents - Pozastavit torrenty + Zastavit torrenty @@ -3099,7 +3103,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod System - + Systém @@ -3174,11 +3178,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Also remove the content files - - - - Also permanently delete the files - Též trvale smazat soubory + Také odebrat soubory obsahu @@ -3390,47 +3390,43 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Pattern Format - + Formát řetězce Plain text - + Prostý text Wildcards - + Zástupné znaky Regular expression - + Regulární výraz GUIAddTorrentManager - + Downloading torrent... Source: "%1" Stahování torrentu... Zdroj: "%1" - Trackers cannot be merged because it is a private torrent - Trackery nemohou být sloučeny, protože jde o soukromý torrent - - - + Torrent is already present Torrent už je přidán - + Trackers cannot be merged because it is a private torrent. - + Trackery nelze sloučit, protože jde o soukromý torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' již existuje v seznamu pro stažení. Přejete si sloučit trackery z nového zdroje? @@ -3548,6 +3544,40 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Podporované soubory obrázků + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Správa napájení nalezla vyhovující rozhraní D-Bus. Rozhraní: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Chyba správy napájení. Akce: %1. Chyba: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Neočekávaný chyba správy napájení. Stav: %1. Chyba: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod &Options... &Možnosti... - - &Resume - &Obnovit - &Remove @@ -3762,7 +3788,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Sh&utdown System - + Vypno&ut systém @@ -3774,10 +3800,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Close Window Zavřít okno - - R&esume All - Obnovit vš&e - Manage Cookies... @@ -3816,22 +3838,22 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Sta&rt - + &Spustit Sto&p - + &Zastavit R&esume Session - + Obnovit r&elaci Pau&se Session - + &Pozastavit relaci @@ -3893,10 +3915,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod &Hibernate System &Režim spánku - - S&hutdown System - &Vypnout počítač - &Statistics @@ -3917,14 +3935,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod &About O &aplikaci - - &Pause - Po&zastavit - - - P&ause All - Zastavit vš&e - &Add Torrent File... @@ -3958,12 +3968,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod - + Show Ukázat - + Check for program updates Zkontrolovat aktualizace programu @@ -3978,388 +3988,383 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Pokud se Vám qBittorrent líbí, prosím přispějte! - + Execution Log Záznamy programu (Log) - + Clear the password Vymazat heslo - + &Set Password Na&stavit heslo - + Preferences Předvolby - + &Clear Password Vyma&zat heslo - + Transfers Přenosy - - + + qBittorrent is minimized to tray qBittorrent je minimalizován do lišty - - - + + + This behavior can be changed in the settings. You won't be reminded again. Toto chování může být změněno v nastavení. Nebudete znovu upozorněni. - + Icons Only Jen ikony - + Text Only Jen text - + Text Alongside Icons Text vedle ikon - + Text Under Icons Text pod ikonama - + Follow System Style Jako systémový styl - - + + UI lock password Heslo pro zamknutí UI - - + + Please type the UI lock password: Zadejte prosím heslo pro zamknutí UI: - + Are you sure you want to clear the password? Opravdu chcete vymazat heslo? - + Use regular expressions Používejte regulární výrazy - - + + Search Engine - Vyhledávač + Vyhledávač - + Search has failed - Hledání selhalo + Hledání selhalo - + Search has finished - + Hledání dokončeno - + Search Hledat - + Transfers (%1) Přenosy (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent byl právě aktualizován a vyžaduje restart, aby se změny provedly. - + qBittorrent is closed to tray qBittorrent je zavřen do lišty - + Some files are currently transferring. Některé soubory jsou právě přenášeny. - + Are you sure you want to quit qBittorrent? Určitě chcete ukončit qBittorrent? - + &No &Ne - + &Yes &Ano - + &Always Yes Vžd&y - + Options saved. Volby uloženy. - + [PAUSED] %1 %1 is the rest of the window title - + [POZASTAVENO] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [S: %1, O: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Instalátor Pythonu nemohl být stažen. Chyba: %1. +Prosím nainstalujte jej ručně. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Selhalo přejmenování instalátoru Python. Zdroj: "%1". Cíl: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Úspěšná instalace Python. + Exit code: %1. + Kód ukončení: %1. + + + + Reason: installer crashed. + Důvod: instalátor havaroval. + + + Python installation failed. - + Instalátor Python selhal. - + Launching Python installer. File: "%1". - + Spouštění instalátoru Python. Soubor: "%1". - - + + Missing Python Runtime Python Runtime není nainstalován - + qBittorrent Update Available qBittorrent aktualizace k dispozici - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Pro použití vyhledávačů je vyžadován Python, ten ale není nainstalován. Chcete jej nyní nainstalovat? - + Python is required to use the search engine but it does not seem to be installed. Pro použití vyhledávačů je vyžadován Python, ten ale není nainstalován. - - + + Old Python Runtime Zastaralý Python Runtime - + A new version is available. Je k dispozici nová verze. - + Do you want to download %1? Přejete si stáhnout %1? - + Open changelog... Otevřít seznam změn... - + No updates available. You are already using the latest version. Nejsou žádné aktualizace. Již používáte nejnovější verzi. - + &Check for Updates Zkontrolovat aktualiza&ce - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Vaše verze Pythonu (%1) je zastaralá. Minimální verze je: %2 Chcete teď nainstalovat novější verzi? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Vaše verze Pythonu (%1) je zastaralá. Pro zprovoznění vyhledávačů aktualizujte na nejnovější verzi. Minimální požadavky: %2 - + Paused - Pozastaveno + Pozastaveno - + Checking for Updates... Kontrolování aktualizací... - + Already checking for program updates in the background Kontrola aktualizací programu již probíha na pozadí - + Python installation in progress... - + Instalace Python probíhá... - + Failed to open Python installer. File: "%1". - + Selhalo otevření instalátoru Python. Soubor: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Selhala kontrola MD5 hashe instalátoru Python. Soubor: "%1". Výsledný hash: "%2". Očekávaný hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Selhala kontrola SHA3-512 hashe instalátoru Python. Soubor: "%1". Výsledný hash: "%2". Očekávaný hash: "%3". - + Download error Chyba stahování - Python setup could not be downloaded, reason: %1. -Please install it manually. - Instalační soubor Pythonu nelze stáhnout, důvod: %1. -Nainstalujte jej prosím ručně. - - - - + + Invalid password Neplatné heslo - + Filter torrents... Filtrovat torrenty... - + Filter by: Filtrovat podle: - + The password must be at least 3 characters long Heslo musí být nejméně 3 znaky dlouhé. - - - + + + RSS (%1) RSS (%1) - + The password is invalid Heslo je neplatné - + DL speed: %1 e.g: Download speed: 10 KiB/s Rychlost stahování: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Rychlost odesílání: %1 - + Hide Skrýt - + Exiting qBittorrent Ukončování qBittorrent - + Open Torrent Files Otevřít torrent soubory - + Torrent Files Torrent soubory @@ -4556,7 +4561,7 @@ Nainstalujte jej prosím ručně. SSL error, URL: "%1", errors: "%2" - + SSL chyba, URL: "%1", chyby: "%2" @@ -5853,47 +5858,47 @@ Nainstalujte jej prosím ručně. Net::Smtp - + Connection failed, unrecognized reply: %1 Připojení selhalo, neznámá odpověď: %1 - + Authentication failed, msg: %1 Ověření selhalo, zpráva: %1 - + <mail from> was rejected by server, msg: %1 <mail from> bylo zamítnuto serverem, zpráva: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> bylo zamítnuto serverem, zpráva: %1 - + <data> was rejected by server, msg: %1 <data> bylo zamítnuto serverem, zpráva: %1 - + Message was rejected by the server, error: %1 Zpráva byla zamítnuta serverem, chyba: %1 - + Both EHLO and HELO failed, msg: %1 EHLO a HELO selhalo, zpráva: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP server nepoužívá žádnou z podporovaných metod ověření [CRAM-MD5|PLAIN|LOGIN], přerušuji ověření, očekávám slehání... Server Auth režimy: %1 - + Email Notification Error: %1 Chyba e-mailového oznámení: %1 @@ -5935,10 +5940,6 @@ Nainstalujte jej prosím ručně. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5960,6 @@ Nainstalujte jej prosím ručně. Confirm when deleting torrents Potvrdit smazání torrentu - - Shows a confirmation dialog upon pausing/resuming all the torrents - Požadovat potvrzení při pozastavení/obnovení všech torrentů - - - Confirm "Pause/Resume all" actions - Potvrzovat akce "Pozastavit/Obnovit vše" - Use alternating row colors @@ -5983,10 +5976,6 @@ Nainstalujte jej prosím ručně. Always Vždy - - Paused torrents only - Pouze pozastavené torrenty - Action on double-click @@ -5997,10 +5986,6 @@ Nainstalujte jej prosím ručně. Downloading torrents: Stahování torrentů: - - Start / Stop Torrent - Spustit / Zastavit torrent - @@ -6059,179 +6044,179 @@ Nainstalujte jej prosím ručně. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Rozvržení obsahu torrentu: - + Original Originál - + Create subfolder Vytvořit podsložku - + Don't create subfolder Nevytvářet podsložku - + The torrent will be added to the top of the download queue Torrent bude přidán na začátek fronty stahování - + Add to top of queue The torrent will be added to the top of the download queue Přidat na začátek fronty - + When duplicate torrent is being added Když je přidáván duplicitní torrent - + Merge trackers to existing torrent Sloučit trackery do stávajícího torrentu - + Keep unselected files in ".unwanted" folder Zanechat nevybrané soubory ve složce ".unwanted" - + Add... Přidat... - + Options.. Možnosti.. - + Remove Odebrat - + Email notification &upon download completion Upozornění emailem při dokončení stahování - + Send test email - + Odeslat testovací e-mail - + Run on torrent added: - + Spustit po přidání torrentu: - + Run on torrent finished: - + Spustit po dokončení torrentu: - + Peer connection protocol: Protokol připojení k peerům: - + Any Libovolný - + I2P (experimental) I2P (experimentální) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Pokud je zapnut smíšený režim &quot;mixed mode&quot; , I2P torrenty mají dovoleno získávat peery z jiných zdrojů, než je tracker a připojovat se k běžným IP adresám, což NEzajišťuje anonymitu. Toto může být užitečné pokud uživatel nemá zájem o anonymizaci I2P, ale stále chce mít možnost připojení k I2P peerům.</p></body></html> - - - + Mixed mode Smíšený režim - Some options are incompatible with the chosen proxy type! - Některé volby se neslučují s vybraným typem proxy serveru! + Některé volby se neslučují s vybraným typem proxy serveru! - + If checked, hostname lookups are done via the proxy Pokud je zaškrtnuto, zjištění názvu hostitele probíhá přes proxy server - + Perform hostname lookup via proxy Zjišťovat název hostitele pomocí proxy - + Use proxy for BitTorrent purposes Použít proxy pro účely BitTorrent - + RSS feeds will use proxy RSS kanály použijí proxy - + Use proxy for RSS purposes Použít proxy pro účely RSS - + Search engine, software updates or anything else will use proxy Vyhledávání, aktualizace software a další, využijí proxy server - + Use proxy for general purposes Použít proxy pro obecné účely - + IP Fi&ltering Filtrování IP - + Schedule &the use of alternative rate limits Plánovat použití alternativních omezení rychlosti - + From: From start time Od: - + To: To end time Do: - + Find peers on the DHT network Hledat peery v síti DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Vyžadovat šifrování: Připojí se pouze k peerům pomocí šifrování proto Zakázat šifrování: Připojí se pouze k peerům bez šifrování protokolu - + Allow encryption Povolit šifrování - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Více informací</a>) - + Maximum active checking torrents: Maximum souběžně kontrolovaných torrentů: - + &Torrent Queueing Řazení torrentů do fronty - + When total seeding time reaches Když celkový čas seedování dosáhne - + When inactive seeding time reaches Když čas neaktivního seedování dosáhne - A&utomatically add these trackers to new downloads: - Automaticky přidat tyto trackery k novým stahováním: - - - + RSS Reader RSS čtečka - + Enable fetching RSS feeds Zapnout načítání RSS feedů - + Feeds refresh interval: Interval obnovení feedů: - + Same host request delay: Prodleva požadavku stejného hosta: - + Maximum number of articles per feed: Maximální počet článků na feed: - - - + + + min minutes min - + Seeding Limits Limity sdílení - Pause torrent - Pozastavit torrent - - - + Remove torrent Odstranit torrent - + Remove torrent and its files Odstranit torrent a jeho soubory - + Enable super seeding for torrent Zapnout super seeding pro torrent - + When ratio reaches Když je dosaženo ratio - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Zastavit torrent - + A&utomatically append these trackers to new downloads: - + A&utomaticky přidat tyto trackery k novým torrentům: - + Automatically append trackers from URL to new downloads: - + Automaticky přidat trackery z adresy URL do nových stahování: - + URL: - URL: + URL: - + Fetched trackers - + Získané trackery - + Search UI - + Vyhledávací rozhraní - + Store opened tabs - + Uchovávat otevřené karty - + Also store search results - + Také uchovávat výsledky hledání - + History length - + Délka historie - + RSS Torrent Auto Downloader Automatické RSS stahování torrentů - + Enable auto downloading of RSS torrents Zapnout automatické RSS stahování torrentů - + Edit auto downloading rules... Upravit pravidla automatického stahování... - + RSS Smart Episode Filter RSS inteligentní filtr epizod - + Download REPACK/PROPER episodes Stáhnout REPACK/PROPER epizody - + Filters: Filtry: - + Web User Interface (Remote control) Webové uživatelské rozhraní (vzdálená správa) - + IP address: IP adresa: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Zvolte IPv4 nebo IPv6 adresu. Můžete zadat "0.0.0.0" pro jakoukoliv "::" pro jakoukoliv IPv6 adresu, nebo "*" pro jakékoliv IPv4 nebo IPv6 adresy. - + Ban client after consecutive failures: Zakázat klienta po následných selháních: - + Never Nikdy - + ban for: ban pro: - + Session timeout: Časový limit relace: - + Disabled Zakázáno - Enable cookie Secure flag (requires HTTPS) - Povolit příznak zabezpečení souborů cookie (vyžaduje HTTPS) - - - + Server domains: Domény serveru: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ best měli vložit doménové názvy použité pro WebUI server. Použijte ';' pro oddělení více položek. Můžete použít masku '*'. - + &Use HTTPS instead of HTTP Použít HTTPS místo HTTP - + Bypass authentication for clients on localhost Přeskočit ověření klientů na místní síti - + Bypass authentication for clients in whitelisted IP subnets Přeskočit ověření klientů na seznamu povolených IP podsítí - + IP subnet whitelist... Seznam povolených IP podsítí... - + Use alternative WebUI - + Použít alternativní WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Uveďte IP adresy (nebo podsítě, např. 0.0.0.0/24) reverzních proxy pro přeposlání adresy klienta (atribut X-Forwarded-For), použijte ';' pro rozdělení více položek. - + Upda&te my dynamic domain name Aktualizovat můj dynamické doménový název (DDNS) @@ -6519,12 +6502,12 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & Search - Hledat + Hledat WebUI - + WebUI @@ -6539,29 +6522,29 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & Style: - + Styl: Color scheme: - + Schéma barev: Stopped torrents only - + Pouze zastavené torrenty Start / stop torrent - + Spustit / zastavit torrent Open torrent options dialog - + Otevřít dialog možností torrentu @@ -6602,7 +6585,7 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & &Log Files - + &Log soubory @@ -6620,99 +6603,99 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & Smazat log soubor starší než: - + Show external IP in status bar - + Zobrazit externí IP ve stavovém panelu - + When adding a torrent Při přidání torrentu - + Bring torrent dialog to the front Dialog torrentu do popředí - + The torrent will be added to download list in a stopped state - + Torrent bude přidán do seznamu ke stažení v zastaveném stavu - + Also delete .torrent files whose addition was cancelled Smazat i .torrent soubory, jejichž přidání bylo zrušeno - + Also when addition is cancelled Také pokud bylo přidání zrušeno - + Warning! Data loss possible! Varování! Možnost ztráty dat! - + Saving Management Správa ukládání - + Default Torrent Management Mode: Výchozí režim správy torrentu: - + Manual Manuální - + Automatic Automatický - + When Torrent Category changed: Když je kategorie torrentu změněna: - + Relocate torrent Přemístit torrent - + Switch torrent to Manual Mode Přepnout torrent do ručního módu - - + + Relocate affected torrents Přemístit dotčené torrenty - - + + Switch affected torrents to Manual Mode Přepnout dotčené torrenty do ručního módu - + Use Subcategories Použít podkategorie - + Default Save Path: Výchozí cesta pro uložení: - + Copy .torrent files to: Kopírovat .torrent soubory do: @@ -6722,26 +6705,22 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & Zobrazit qBittorrent v oznamovací oblasti - &Log file - Soubor logů - - - + Display &torrent content and some options Zobrazit obsah torrentu a některé volby - + De&lete .torrent files afterwards Později smazat .torrent soubory - + Copy .torrent files for finished downloads to: Kopírovat .torrent soubory dokončených stahování do: - + Pre-allocate disk space for all files Předem vyhradit místo na disku pro všechny soubory @@ -6771,10 +6750,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & Preview file, otherwise open destination folder Náhled souboru, jinak otevřít cílový adresář - - Show torrent options - Zobraz možnosti torrentu - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Použijte ';' pro oddělení více položek. Můžete použít masku & roky - + Log performance warnings Zaznamenávání událostí týkajících se výkonu - The torrent will be added to download list in a paused state - Torrent bude přidán do seznamu stahování v pozastaveném stavu - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Nespouštět stahování automaticky - + Whether the .torrent file should be deleted after adding it Má být .torrent soubor po přidání smazán - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Před zahájením stahování vyhradí veškeré potřebné místo na disku, aby se minimalizovala fragmentace. Užitečné pouze pro HDD. - + Append .!qB extension to incomplete files Přidat příponu .!qB k nedokončeným souborům - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Po stažení torrentu nabídněte přidání torrentů ze všech .torrent souborů, které se v něm nacházejí - + Enable recursive download dialog Zapnout dialog rekurzivního downloadu - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automaticky: O různých vlastnostech torrentu (např. cesta uložení) rozhodne příslušná kategorie Ručně: Různé vlastnosti torrentu (např. cesta uložení) musí být přiřazeny ručně - + When Default Save/Incomplete Path changed: Při změně cesty uložení cílové i nekompletní: - + When Category Save Path changed: Při změně cesty pro uložení u kategorie: - + Use Category paths in Manual Mode Použít Kategorie cesty v Ručním módu - + Resolve relative Save Path against appropriate Category path instead of Default one Použít relativní cestu pro uložení podle Cesty kategorie namísto Výchozí cesty @@ -6922,50 +6893,50 @@ Ručně: Různé vlastnosti torrentu (např. cesta uložení) musí být přiřa Stav qBittorrent okna při startu - + Torrent stop condition: Podmínka zastavení torrentu: - - + + None Žádná - - + + Metadata received Metadata stažena - - + + Files checked Soubory zkontrolovány - + Ask for merging trackers when torrent is being added manually Zeptat se na sloučení trackerů při manuálním přidávání torrentu - + Use another path for incomplete torrents: Použij jiné umístění pro nedokončené torrenty: - + Automatically add torrents from: Automaticky přidávat .torrent soubory z: - + Excluded file names Vyloučené názvy souborů - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: filtruje přesný název souboru. readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale ne 'readme10.txt'. - + Receiver Příjemce - + To: To receiver Do: - + SMTP server: SMTP server: - + Sender Odesílatel - + From: From sender Od: - + This server requires a secure connection (SSL) Tento server vyžaduje zabezpečené připojení (SSL) - - + + Authentication Ověření - - - - + + + + Username: Uživatelské jméno: - - - - + + + + Password: Heslo: - + Run external program Spustit externí program - Run on torrent added - Spustit při přidání torrentu - - - Run on torrent finished - Spustit při dokončení torrentu - - - + Show console window Zobrazit okno konzoly - + TCP and μTP TCP a μTP - + Listening Port Naslouchací port - + Port used for incoming connections: Port použitý pro příchozí spojení: - + Set to 0 to let your system pick an unused port Nastav na 0 a systém vybere nevyužitý port - + Random Náhodný - + Use UPnP / NAT-PMP port forwarding from my router Použít přesměrování portů UPnP / NAT-PMP z mého routeru - + Connections Limits Limit spojení - + Maximum number of connections per torrent: Maximální počet spojení na torrent: - + Global maximum number of connections: Celkový maximální počet spojení: - + Maximum number of upload slots per torrent: Maximální počet odesílacích slotů na torrent: - + Global maximum number of upload slots: Celkový maximální počet odesílacích slotů: - + Proxy Server Proxy server - + Type: Typ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections V opačném případě je proxy server použit pouze pro připojení k trackeru - + Use proxy for peer connections Použít proxy pro připojení k peerům - + A&uthentication Ověření - Info: The password is saved unencrypted - Info: Heslo je uloženo nešifrované + Info: Heslo je uloženo nešifrované - + Filter path (.dat, .p2p, .p2b): Cesta k filtru (.dat, .p2p, .p2b): - + Reload the filter Znovunačíst filtr - + Manually banned IP addresses... Seznam ručně zakázaných IP adres... - + Apply to trackers Použít pro trackery - + Global Rate Limits Celkové limity rychlosti - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Odesílání: - - + + Download: Stahování: - + Alternative Rate Limits Alternativní limity rychlosti - + Start time Doba spuštění - + End time Doba ukončení - + When: Kdy: - + Every day Každý den - + Weekdays Pracovní dny - + Weekends Víkendy - + Rate Limits Settings Nastavení poměru sdílení - + Apply rate limit to peers on LAN Omezit poměr sdílení peerům na LAN - + Apply rate limit to transport overhead Použít limity rychlosti pro režijní provoz - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Pokud je zapnut "smíšený režim", I2P torrenty mají dovoleno získávat peery také z jiných zdrojů než z trackeru, a připojovat se k běžným IP adresám, neposkytujícím žádnou anonymitu. Toto může být užitečné pokud uživatel nemá zájem o anonymizaci I2P, ale chce mít možnost připojení k I2P peerům.</p></body></html> - + Apply rate limit to µTP protocol Použít omezení rychlosti pro uTP připojení - + Privacy Soukromí - + Enable DHT (decentralized network) to find more peers Zapnout DHT síť (decentralizovaná síť) k nalezení většího počtu peerů - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Vyměňovat peery s kompatibilními klienty Bittorrent (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Zapnout Peer Exchange (PeX) k nalezení většího počtu peerů - + Look for peers on your local network Hledat peery na lokální síti - + Enable Local Peer Discovery to find more peers Zapnout místní vyhledávání k nalezení většího počtu peerů - + Encryption mode: Režim šifrování: - + Require encryption Vyžadovat šifrování - + Disable encryption Vypnout šifrování - + Enable when using a proxy or a VPN connection Zapnout při použití proxy nebo VPN připojení - + Enable anonymous mode Zapnout anonymní režim - + Maximum active downloads: Max. počet aktivních stahování: - + Maximum active uploads: Max. počet aktivních odesílání: - + Maximum active torrents: Maximální počet aktivních torrentů: - + Do not count slow torrents in these limits Nezapočítávat pomalé torrenty do těchto limitů - + Upload rate threshold: Limit rychlosti odesílání: - + Download rate threshold: Limit rychlosti stahování: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Časovač nečinnosti torrentu: - + then potom - + Use UPnP / NAT-PMP to forward the port from my router Použít UPnP / NAT-PMP k přesměrování portu z mého routeru - + Certificate: Certifikát: - + Key: Klíč: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informace o certifikátech</a> - + Change current password Změnit současné heslo - Use alternative Web UI - Použít alternativní Web UI - - - + Files location: Umístění souborů: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Seznam alternativních WebUI</a> - + Security Bezpečnost - + Enable clickjacking protection Zapnout ochranu clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Zapnout ochranu Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Zapnout příznak cookie Secure (vyžaduje HTTPS nebo localhost připojení) - + Enable Host header validation Zapnout ověřování hlavičky hostitele - + Add custom HTTP headers Přidat vlastní HTTP hlavičky - + Header: value pairs, one per line Hlavička: páry hodnot, jedna na řádek - + Enable reverse proxy support Zapnout podporu reverzní proxy - + Trusted proxies list: Seznam důvěryhodných proxy: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Příklady nastavení reverzní proxy</a> - + Service: Služba: - + Register Registrovat - + Domain name: Doména: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Zapnutím těchto voleb můžete <strong>nevratně ztratit</strong> vaše .torrent soubory! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Pokud zapnete druhou volbu (&ldquo;Také, když je přidán zrušeno&rdquo;) .torrent soubor <strong>bude smazán</strong> i když stisknete &ldquo;<strong>Zrušit</strong>&rdquo; v dialogu &ldquo;Přidat torrent&rdquo; @@ -7520,12 +7478,12 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Vyberte soubor motivu uživatelského rozhraní qBittorrent - + Choose Alternative UI files location Vybrat umístění souborů Alternativního UI - + Supported parameters (case sensitive): Podporované parametry (citlivé na velikost znaků): @@ -7545,183 +7503,183 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Deaktivováno, protože se nepodařilo detekovat přítomnost systémové lišty - + No stop condition is set. Podmínka zastavení není zvolena. - + Torrent will stop after metadata is received. Torrent se zastaví po stažení metadat. - + Torrent will stop after files are initially checked. Torrent se zastaví po počáteční kontrole souborů. - + This will also download metadata if it wasn't there initially. Toto stáhne také metadata, pokud nebyly součástí. - + %N: Torrent name %N: Název torrentu - + %L: Category %L: Kategorie - + %F: Content path (same as root path for multifile torrent) %F: Umístění obsahu (stejné jako zdrojová cesta u vícesouborového torrentu) - + %R: Root path (first torrent subdirectory path) %R: Zdrojová cesta (první podadresář torrentu) - + %D: Save path %D: Cesta pro uložení - + %C: Number of files %C: Počet souborů - + %Z: Torrent size (bytes) %Z: Velikost torrentu (v bytech) - + %T: Current tracker %T: Současný tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: Ohraničit parametr uvozovkami, aby nedošlo k odstřižení textu za mezerou (např. "%N") - + Test email - + Testovací e-mail - + Attempted to send email. Check your inbox to confirm success - + Proveden pokus o odeslání e-mailu. Zkontrolujte svou doručenou poštu - + (None) (žádný) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent bude uznán pomalým jestliže rychlosti stahování a odesílání zůstanou pod těmito hodnotami "Časovače nečinnosti torrentu" v sekundách - + Certificate Certifikát - + Select certificate Vybrat certifikát - + Private key Privátní klíč - + Select private key Vybrat privátní klíč - + WebUI configuration failed. Reason: %1 Nastavení WebUI selhalo. Důvod: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 je doporučen pro nejlepší kompatibilitu s tmavým režimem Windows - + System System default Qt style - + Systém - + Let Qt decide the style for this system - + Nechat Qt vybrat nejvhodnější styl tohoto systému - + Dark Dark color scheme - + Tmavé - + Light Light color scheme - + Světlé - + System System color scheme - + Systém - + Select folder to monitor Vyberte sledovaný adresář - + Adding entry failed Přidání položky selhalo - + The WebUI username must be at least 3 characters long. Uživatelské jméno WebUI musí mít délku nejméně 3 znaky. - + The WebUI password must be at least 6 characters long. Heslo WebUI musí mít délku nejméně 6 znaků. - + Location Error Chyba umístění - - + + Choose export directory Vyberte adresář pro export - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Pokud jsou tyto volby zapnuty, qBittorrent <strong>smaže</strong> .torrent soubory poté, co byly úspěšně (první možnost) nebo neúspěšně (druhá možnost) přidány do fronty pro stažení. Toto nastane <strong>nejen</strong> u souborů otevřených pomocí volby menu &ldquo;Přidat torrent&rdquo;, ale také u souborů otevřených pomocí <strong>Asociace souborů</strong> @@ -7731,69 +7689,69 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Soubor Motivu uživatelského rozhraní qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Štítky (oddělené čárkou) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (nebo '-' pokud není dostupný) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (nebo '-' pokud není dostupný) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (buď sha-1 info hash pro torrent v1 nebo zkrácený sha-256 info hash pro v2/hybridní torrent) - - + + Choose a save directory Vyberte adresář pro ukládání - + Torrents that have metadata initially will be added as stopped. Torrenty s metadaty budou přidány jako zastavené. - + Choose an IP filter file Vyberte soubor s IP filtry - + All supported filters Všechny podporované filtry - + The alternative WebUI files location cannot be blank. Alternativní cestu umístění souborů WebUI musíte vyplnit. - + Parsing error Chyba zpracování - + Failed to parse the provided IP filter Nepovedlo se zpracovat poskytnutý IP filtr - + Successfully refreshed Úspěšně obnoveno - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number IP filter byl úspěšně zpracován: bylo aplikováno %1 pravidel. @@ -7804,18 +7762,18 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Předvolby - + Time Error Chyba času - + The start time and the end time can't be the same. Časy zahájení a ukončení nemohou být stejné. - - + + Length Error Chyba délky @@ -7900,169 +7858,169 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Peer is using NAT hole punching - + Peer používá NAT hole punching PeerListWidget - + Country/Region Země/Oblast - + IP/Address IP/Adresa - + Port Port - + Flags Vlajky - + Connection Připojení - + Client i.e.: Client application Klient - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID klienta - + Progress i.e: % downloaded Průběh - + Down Speed i.e: Download speed Rychlost stahování - + Up Speed i.e: Upload speed Rychlost odesílání - + Downloaded i.e: total data downloaded Staženo - + Uploaded i.e: total data uploaded Odesláno - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Důležitost - + Files i.e. files that are being downloaded right now Soubory - + Column visibility Viditelnost sloupců - + Resize columns Změnit rozměry sloupců - + Resize all non-hidden columns to the size of their contents Změnit rozměry viditelných sloupců podle velikosti jejich obsahu - + Add peers... Přidání peerů... - - + + Adding peers Přidání peerů - + Some peers cannot be added. Check the Log for details. Některé peery nemohly být přidány. Více detailů najdete v logu. - + Peers are added to this torrent. Peery jsou přidány do tohoto torrentu. - - + + Ban peer permanently Natrvalo zakázat peer - + Cannot add peers to a private torrent Nelze přidat peery do privátního torrentu - + Cannot add peers when the torrent is checking Nelze přidat peery dokud se torrent kontroluje - + Cannot add peers when the torrent is queued Nelze přidat peery dokud je torrent ve frontě - + No peer was selected Nebyl vybrán žádný peer - + Are you sure you want to permanently ban the selected peers? Opravdu chcete natrvalo zakázat označené peery? - + Peer "%1" is manually banned Peer "%1" je ručně zablokován - + N/A Není k dispozici - + Copy IP:port Kopírovat IP:port @@ -8343,34 +8301,27 @@ Tyto pluginy byly vypnuty. PowerManagement - qBittorrent is active - qBittorrent je aktivní + qBittorrent je aktivní PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Správa napájení nalezla vyhovující rozhraní D-Bus. Rozhraní: %1 + Správa napájení nalezla vyhovující rozhraní D-Bus. Rozhraní: %1 - Power management error. Did not found suitable D-Bus interface. - Chyba správy napájení. Nebylo nalezeno vyhovující rozhraní D-Bus. + Chyba správy napájení. Nebylo nalezeno vyhovující rozhraní D-Bus. - - - Power management error. Action: %1. Error: %2 - Chyba správy napájení. Akce: %1. Chyba: %2 + Chyba správy napájení. Akce: %1. Chyba: %2 - Power management unexpected error. State: %1. Error: %2 - Neočekávaný chyba správy napájení. Stav: %1. Chyba: %2 + Neočekávaný chyba správy napájení. Stav: %1. Chyba: %2 @@ -8614,12 +8565,12 @@ Tyto pluginy byly vypnuty. Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Aktivní po dobu (v měsících), vyjadřuje úroveň popularity torrentu Popularity: - + Popularita: @@ -8654,7 +8605,7 @@ Tyto pluginy byly vypnuty. Private: - + Soukromý: @@ -8662,153 +8613,124 @@ Tyto pluginy byly vypnuty. Uložit do: - + Never Nikdy - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (má %3) - - + + %1 (%2 this session) %1 (%2 toto sezení) - - + + N/A N/A - + Yes - Ano + Ano - + No - Ne + Ne - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (sdíleno %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 celkem) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 prům.) - + Add web seed Add HTTP source - + Přidat web seed - + Add web seed: - + Přidat web seed: - - + + This web seed is already in the list. - + Tento webový seeder je již na seznamu. - New Web seed - Nový webový seed - - - Remove Web seed - Odstranit webový seed - - - Copy Web seed URL - Kopírovat URL webového zdroje - - - Edit Web seed URL - Upravit URL webového zdroje - - - + Filter files... Filtrovat soubory... - + Add web seed... - + Přidat web seed... - + Remove web seed - + Odebrat web seed - + Copy web seed URL - + Kopírovat web seed URL - + Edit web seed URL... - + Upravit web seed URL... - + Speed graphs are disabled Grafy rychlosti jsou vypnuty - + You can enable it in Advanced Options Můžete to zapnout v Rozšířených nastaveních - New URL seed - New HTTP source - Nový URL zdroj - - - New URL seed: - Nový URL zdroj: - - - This URL seed is already in the list. - Tento URL zdroj už v seznamu existuje. - - - + Web seed editing Úpravy webového zdroje - + Web seed URL: URL webového zdroje: @@ -8816,33 +8738,33 @@ Tyto pluginy byly vypnuty. RSS::AutoDownloader - - + + Invalid data format. Neplatný formát dat. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Nelze uložit data AutoDownloaderu RSS v %1. Chyba: %2 - + Invalid data format Neplatný formát dat - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS článek '%1' je přijat pravidlem '%2'. Pokus o přidání torrentu... - + Failed to read RSS AutoDownloader rules. %1 Selhalo čtení pravidel RSS AutoDownloaderu. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Nelze načíst pravidla RSS AutoDownloader. Příčina: % 1 @@ -8850,22 +8772,22 @@ Tyto pluginy byly vypnuty. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Selhalo stažení RSS feedu u '%1'. Příčina '%2' - + RSS feed at '%1' updated. Added %2 new articles. RSS feed u '%1' úspěšně aktualizován. Přidány %2 nové články. - + Failed to parse RSS feed at '%1'. Reason: %2 Selhalo zpracování RSS feedu u '%1'. Příčina '%2' - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS feed u '%1' byl úspěšně stažen. Začínám ho zpracovávat. @@ -8914,12 +8836,12 @@ Tyto pluginy byly vypnuty. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Nebylo možné uložit nastavení RSS relace. Soubor: "%1". Chyba: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Nebylo možné uložit data RSS relace. Soubor: "%1". Chyba: "%2" @@ -8941,76 +8863,121 @@ Tyto pluginy byly vypnuty. - + Item doesn't exist: %1. Položka neexistuje: %1. - Couldn't move folder into itself. - Nebylo možné přesunout adresář do sebe. + Nebylo možné přesunout adresář do sebe. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Nelze smazat kořenový adresář. - + Failed to read RSS session data. %1 Selhalo čtení dat RSS relace. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Selhal rozbor dat RSS relace. Soubor: "%1". Chyba: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Selhalo načtení dat RSS relace. Soubor: "%1". Chyba: "Neplatný formát dat." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Nebylo možné načíst RSS kanál. Kanál: "%1". Důvod: URL je požadována. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Nebylo možné načíst RSS kanál. Kanál: "%1". Důvod: UID není platné. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Duplicitní RSS kanál nalezen. UID: "%1". Chyba: Nastavení není v pořádku. - + Couldn't load RSS item. Item: "%1". Invalid data format. Nebylo možné načíst RSS položku. Položka: "%1". Neplatná podoba dat. - + Corrupted RSS list, not loading it. Chybný seznam RSS, ruším jeho načítání. - + Incorrect RSS Item path: %1. Nesprávná cesta položky RSS: %1. - + RSS item with given path already exists: %1. žka RSS se zadanou cestou neexistuje: %1. - + Parent folder doesn't exist: %1. Nadřazený adresář neexistuje: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed neexistuje: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Výchozí + + RSSWidget @@ -9110,78 +9077,77 @@ Tyto pluginy byly vypnuty. + Feed options... + + + Edit feed URL... - Upravit adresu feedu... + Upravit adresu feedu... - Edit feed URL - Upravit adresu feedu + Upravit adresu feedu - + Please choose a folder name Vyberte název složky - + Folder name: Název složky: - + New folder Nová složka - - Please type a RSS feed URL - Prosím vložte odkaz RSS feedu + Prosím vložte odkaz RSS feedu - - Feed URL: - Odkaz feedu + Odkaz feedu - + Deletion confirmation Smazat potvrzení - + Are you sure you want to delete the selected RSS feeds? Určitě chcete smazar označené RSS feedy? - + Please choose a new name for this RSS feed Zvolte název pro tento RSS feed, prosím - + New feed name: Nový název feedu: - + Rename failed Přejmenovaní neuspěšné - + Date: Datum: - + Feed: Feed: - + Author: Autor @@ -9318,10 +9284,6 @@ Tyto pluginy byly vypnuty. i.e: Number of partial sources Leecheři - - Search engine - Vyhledávač - Filter search results... @@ -9411,17 +9373,17 @@ Tyto pluginy byly vypnuty. Engine - + Vyhledávač Engine URL - + URL vyhledávače Published On - + Zveřejněno @@ -9442,104 +9404,104 @@ Tyto pluginy byly vypnuty. SearchPluginManager - + Unknown search engine plugin file format. Neznámý formát souboru pluginu vyhledávače. - + Plugin already at version %1, which is greater than %2 Verze nainstalovaného pluginu %1 je vyšší než %2 - + A more recent version of this plugin is already installed. V systému je již nainstalována novější verze tohoto pluginu. - + Plugin %1 is not supported. Plugin %1 není podporován - - + + Plugin is not supported. Plugin není podporován. - + Plugin %1 has been successfully updated. Plugin %1 byl úspěšně aktualizován - + All categories Všechny kategorie - + Movies Filmy - + TV shows TV seriály - + Music Hudba - + Games Hry - + Anime Anime - + Software Software - + Pictures Obrázky - + Books Knihy - + Update server is temporarily unavailable. %1 Server s aktualizacemi je dočasně nedostupný. %1 - - + + Failed to download the plugin file. %1 Selhalo stažení plugin souboru. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" je zastaralý, aktualizuji na verzi %2 - + Incorrect update info received for %1 out of %2 plugins. Obdrženy nesprávné informace o aktualizaci pro %1 z %2 pluginů. - + Search plugin '%1' contains invalid version string ('%2') Vyhledávací plugin '%1' obsahuje neplatný řetezec verze ('%2') @@ -9565,137 +9527,129 @@ Klikněte na tlačítko "Vyhledávácí pluginy..." dole vpravo v okn Pluginy pro vyhledávání - + A phrase to search for. Fráze k vyhledání - + Spaces in a search term may be protected by double quotes. Mezery v hledaném výrazu moho být chráněny uvozovkami. - + Example: Search phrase example Příklad: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: vyhledat <b>foo bar</b> - + All plugins Všechny pluginy - + Only enabled Pouze zapnuté - - + + Invalid data format. - Neplatný formát dat. + Neplatný formát dat. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: vyhledat <b>foo</b> a <b>bar</b> - + Refresh - + Obnovit - + Close tab Zavřít kartu - + Close all tabs Zavřít všechny karty - + Select... Vybrat... - - + + Search Engine Vyhledávač - - + + Please install Python to use the Search Engine. Pro použití vyhledávače nainstalujte Python. - + Empty search pattern Prázdný hledaný řetězec - + Please type a search pattern first Nejdříve napište hledaný řetězec - + Stop Zastavit - - Search has finished - Hledání ukončeno - - - Search has failed - Hledání selhalo - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Selhalo načtení uložených dat stavu vyhledávacího rozhraní. Soubor: "%1". Chyba: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Selhalo načtení uložených výsledků hledání. Karta: "%1". Soubor: "%2". Chyba: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Selhalo uložení stavu vyhledávacího rozhraní. Soubor: "%1". Chyba: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Selhalo uložení výsledků hledání. Karta: "%1". Soubor: "%2". Chyba: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Selhalo načtení historie vyhledávacího rozhraní. Soubor: "%1". Chyba: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Selhalo uložení historie vyhledávání. Soubor: "%1". Chyba: "%2" @@ -10091,67 +10045,77 @@ Klikněte na tlačítko "Vyhledávácí pluginy..." dole vpravo v okn StatusBar - + Connection status: Stav připojení: - - + + No direct connections. This may indicate network configuration problems. Žádná přímá spojení. To může značit problémy s nastavením sítě. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Externí IP: N/A + + + + DHT: %1 nodes DHT: %1 uzlů - + qBittorrent needs to be restarted! Je nutné restartovat qBittorrent! - - + + Connection Status: Stav připojení: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. To obvykle znamená, že qBittorrent nedokázal naslouchat na portu nastaveném pro příchozí spojení. - + Online Online - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Externí IPs: %1, %2 + + + + External IP: %1%2 + Externí IP: %1%2 + + + Click to switch to alternative speed limits Kliknutí přepne na alternativní limity rychlosti - + Click to switch to regular speed limits Kliknutím přepnete na normální limity rychlosti @@ -10179,23 +10143,15 @@ Klikněte na tlačítko "Vyhledávácí pluginy..." dole vpravo v okn Completed (0) Dokončeno (0) - - Resumed (0) - Obnoveno (0) - - - Paused (0) - Pozastaveno (0) - Running (0) - + Běží (0) Stopped (0) - + Zastaveno (0) @@ -10260,49 +10216,33 @@ Klikněte na tlačítko "Vyhledávácí pluginy..." dole vpravo v okn Running (%1) - + Běží (%1) Stopped (%1) - + Zastaveno (%1) Start torrents - + Spustit torrenty Stop torrents - - - - Paused (%1) - Pozastaveno (%1) + Zastavit torrenty Moving (%1) Přesouvání (%1) - - Resume torrents - Obnovit torrenty - - - Pause torrents - Pozastavit torrenty - Remove torrents Odstranit torrenty - - Resumed (%1) - Obnoveno (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Klikněte na tlačítko "Vyhledávácí pluginy..." dole vpravo v okn Remove unused tags Odebrat nepoužité štítky - - Resume torrents - Pokračování torrentů - - - Pause torrents - Pozastavení torrentů - Remove torrents Odstranit torrenty - - New Tag - Nový štítek - Start torrents - + Spustit torrenty Stop torrents - + Zastavit torrenty @@ -10409,7 +10337,7 @@ Klikněte na tlačítko "Vyhledávácí pluginy..." dole vpravo v okn Add tag - + Přidat štítek @@ -10726,17 +10654,17 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. TorrentCreatorController - + Too many active tasks Příliš mnoho aktivních úloh - + Torrent creation is still unfinished. Vytváření torrentu stále nebylo dokončeno. - + Torrent creation failed. Vytváření torrentu selhalo. @@ -10988,17 +10916,6 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Sledovaný adresář: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Selhalo přidělení paměti při čtení souboru. Soubor: "%1". Chyba: "%2" - - - Invalid metadata - Neplatná metadata - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Torrent Share Limits - - - - Torrent speed limits - Limity rychlosti torrentu + Limity sdílení torrentu @@ -11054,7 +10967,7 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Torrent Speed Limits - + Limity rychlosti torrentu @@ -11072,34 +10985,6 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Upload: Odesílání: - - Torrent share limits - Limity sdílení torrentu - - - Use global share limit - Používat globální limit sdílení - - - Set no share limit - Nastavit sdílení bez limitu - - - Set share limit to - Nastavit limit sdílení na - - - ratio - ratio - - - total minutes - minut celkem - - - inactive minutes - minut neaktivity - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Not applicable to private torrents Nelze použít u soukromých torrentů - - No share limit method selected - Nevybrána žádná metoda omezování sdílení - - - Please select a limit method first - Nejdříve, prosím, vyberte způsob omezování sdílení - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Action when the limit is reached: - + Akce při dosažení limitu: Stop torrent - + Zastavit torrent Remove torrent - Odstranit torrent + Odstranit torrent Remove torrent and its content - + Odebrat torrent a jeho obsah Enable super seeding for torrent - Zapnout super seeding pro torrent + Zapnout super seeding pro torrent @@ -11233,14 +11110,10 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Torrent Tags Štítky torrentu - - New Tag - Nový štítek - Add tag - + Přidat štítek @@ -11271,90 +11144,90 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. TorrentsController - + Error: '%1' is not a valid torrent file. Chyba: '%1' není platný torrent soubor. - + Priority must be an integer Priorita musí být celé číslo - + Priority is not valid Priorita není platná - + Torrent's metadata has not yet downloaded Metadata torrentu ještě nebyla stažena - + File IDs must be integers ID souboru musí být celá čísla - + File ID is not valid ID souboru není platné - - - - + + + + Torrent queueing must be enabled Řazení torrentů musí být zapnuto - - + + Save path cannot be empty Cesta pro uložení nesmí být prázdná - - + + Cannot create target directory Nelze vytvořit cílový adresář - - + + Category cannot be empty Kategorie nesmí být prázdná - + Unable to create category Nelze vytvořit kategorii - + Unable to edit category Nelze upravit kategorii - + Unable to export torrent file. Error: %1 Nebylo možné exportovat torrent soubor. Chyba: %1 - + Cannot make save path Nelze vytvořit cestu pro uložení "%1" is not a valid URL - + "%1" není platnou URL URL scheme must be one of [%1] - + URL schéma musí být jedním z [%1] @@ -11362,39 +11235,39 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. parametr 'sort' je neplatný - + "%1" is not an existing URL - + "%1" není existující URL - + "%1" is not a valid file index. "%1" není platný index souboru. - + Index %1 is out of bounds. Index %1 je mimo rozmezí. - - + + Cannot write to directory Nelze zapisovat do adresáře - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI Nastavit cestu: přesunout "%1", z "%2" do "%3" - + Incorrect torrent name Nesprávný název torrentu - - + + Incorrect category name Nesprávný název kategorie @@ -11477,45 +11350,33 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Invalid state! - + Neplatný stav! URL/Announce Endpoint - + Koncový bod URL/Announce BT Protocol - + BT protokol Next Announce - + Další oznámení Min Announce - - - - Invalid status! - Neplatný stav! - - - URL/Announce endpoint - Koncový bod URL/Announce + Min. oznámení Tier Tier - - Protocol - Protokol - Status @@ -11546,18 +11407,6 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Message Zpráva - - Next announce - Další oznámení - - - Min announce - Min. oznámení - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Tento torrent je soukromý - + Tracker editing Upravit tracker - + Tracker URL: URL trackeru: - - + + Tracker editing failed Úprava trackeru selhala - + The tracker URL entered is invalid. Zadaná URL trackeru není platná. - + The tracker URL already exists. Tato URL trackeru již existuje. - + Edit tracker URL... Upravit URL trackeru - + Remove tracker Odstranit tracker - + Copy tracker URL Kopírovat URL trackeru - + Force reannounce to selected trackers Vynutit oznámení vybraným trackerům - + Force reannounce to all trackers Vynutit oznámení všem trackerům - + Resize columns Změnit rozměry sloupců - + Resize all non-hidden columns to the size of their contents Změnit rozměry viditelných sloupců podle velikosti jejich obsahu - + Add trackers... Přidat trackery... - + Column visibility Zobrazení sloupců @@ -11716,20 +11565,12 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Start torrents - + Spustit torrenty Stop torrents - - - - Resume torrents - Obnovit torrenty - - - Pause torrents - Pozastavit torrenty + Zastavit torrenty @@ -11853,10 +11694,6 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Kontrola dat pro obnovení - - Paused - Pozastaveno - Completed @@ -11897,21 +11734,16 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. % Done Průběh - - Status - Torrent status (e.g. downloading, seeding, paused) - Stav - Stopped - + Zastaveno Status Torrent status (e.g. downloading, seeding, stopped) - Stav + Stav @@ -11946,7 +11778,7 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Popularity - + Popularita @@ -12027,22 +11859,17 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Time Active Time (duration) the torrent is active (not stopped) - Aktivní po dobu + Aktivní po dobu Yes - Ano + Ano No - Ne - - - Time Active - Time (duration) the torrent is active (not paused) - Aktivní po dobu + Ne @@ -12114,12 +11941,12 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Private Flags private torrents - + Soukromý Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Aktivní po dobu (v měsících), vyjadřuje úroveň popularity torrentu @@ -12144,358 +11971,319 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. TransferListWidget - + Column visibility Zobrazení sloupců - + Recheck confirmation Zkontrolovat potvrzení - + Are you sure you want to recheck the selected torrent(s)? Opravdu chcete znovu zkontrolovat označené torrenty? - + Rename Přejmenovat - + New name: Nový název: - + Choose save path Vybrat cestu uložení - Confirm pause - Potvrdit pozastavení - - - Would you like to pause all torrents? - Přejete si pozastavit všechny torrenty? - - - Confirm resume - Potvrdit obnovení - - - Would you like to resume all torrents? - Přejete si obnovit všechny torrenty? - - - + Unable to preview Nelze provést náhled souboru - + The selected torrent "%1" does not contain previewable files Vybraný torrent "%1" neobsahuje prohlédnutelné soubory - + Resize columns Změnit rozměry sloupců - + Resize all non-hidden columns to the size of their contents Změnit rozměry viditelných sloupců podle velikosti jejich obsahu - + Enable automatic torrent management Zapnout automatickou správu torrentů - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Jste si jistí že chcete zapnout Automatickou správu pro vybraný torrent(y)? Jejich data mohou být přemístěna. - Add Tags - Přidat Štítek - - - + Choose folder to save exported .torrent files Vyberte složku pro uložení exportovaných .torrent souborů - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Export .torrent souboru selhal. Torrent: "%1". Cesta pro uložení: "%2". Důvod: "%3" - + A file with the same name already exists Soubor s tímto názvem již existuje - + Export .torrent file error Chyba exportu .torrent souboru - + Remove All Tags Odstranit všechny Štítky - + Remove all tags from selected torrents? Smazat všechny štítky z označených torrentů? - + Comma-separated tags: Čárkou oddelěné štítky: - + Invalid tag Neplatný štítek - + Tag name: '%1' is invalid Název štítku: '%1' je neplatný - &Resume - Resume/start the torrent - &Obnovit - - - &Pause - Pause the torrent - &Pozastavit - - - Force Resu&me - Force Resume/start the torrent - Vynutit obno&vení - - - + Pre&view file... Náh&led souboru... - + Torrent &options... &Možnosti torrentu... - + Open destination &folder Otevřít cílovou &složku - + Move &up i.e. move up in the queue Přesunou &nahoru - + Move &down i.e. Move down in the queue Přesunout &dolů - + Move to &top i.e. Move to top of the queue Přesunout na &začátek - + Move to &bottom i.e. Move to bottom of the queue Přesunout na &konec - + Set loc&ation... Nastavit &umístění - + Force rec&heck Vynutit pře&kontrolování - + Force r&eannounce Vynutit &oznámení - + &Magnet link &Magnet odkaz - + Torrent &ID Torrent &ID - + &Comment &Komentář - + &Name &Název - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Přejme&novat... - + Edit trac&kers... Upravit trac&kery... - + E&xport .torrent... E&xportovat .torrent... - + Categor&y Kategorie - + &New... New category... &Nový... - + &Reset Reset category &Reset - + Ta&gs Štítky - + &Add... Add / assign multiple tags... Přidat... - + &Remove All Remove all tags Odstranit vše - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Nelze vynutit opětovné oznámení pokud je torrent ve stavu Zastaven/Ve frontě/S chybou/Kontroluji - + &Queue &Fronta - + &Copy &Kopírovat - + Exported torrent is not necessarily the same as the imported Exportovaný torrent nemusí být nezbytně stejný jako importovaný - + Download in sequential order Stahovat postupně - + Add tags - + Přidat štítky - + Errors occurred when exporting .torrent files. Check execution log for details. Objevily se chyby při exportu .torrent souborů. Zkontrolujte Záznamy programu - Log pro podrobnosti. - + &Start Resume/start the torrent - + &Spustit - + Sto&p Stop the torrent - + &Zastavit - + Force Star&t Force Resume/start the torrent - + Vynutit spuš&tění - + &Remove Remove the torrent &Odebrat - + Download first and last pieces first Stáhnout nejprve první a poslední část - + Automatic Torrent Management Automatická správa torrentu - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatický mód znamená, že různé vlastnosti torrentu (např. cesta pro uložení) se budou řídit podle příslušné kategorie - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Není možné vynutit oznámení trackeru u torrentu, který je pozastavený/ve frontě/chybný/kontrolovaný - - - + Super seeding mode Mód super sdílení @@ -12571,7 +12359,7 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Set app style failed. Unknown style: "%1" - + Selhalo nastavení stylu aplikace. Neznámý styl: "%1" @@ -12627,32 +12415,32 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Nalezen spustitelný Python. Název: "%1". Verze: "%2" - + Failed to find Python executable. Path: "%1". Selhal pokus o nalezení spustitelného Pythonu. Cesta: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Selhal pokus o nalezení spustitelného `python3` na cestě proměnné prostředí PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Selhal pokus o nalezení spustitelného `python` na cestě proměnné prostředí PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Selhal pokus o nalezení spustitelného `python` v registru Windows. - + Failed to find Python executable Selhal pokus o nalezení spustitelného Pythonu @@ -12744,52 +12532,52 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Byla specifikována nepřijatelná cookie relace: '%1'. Je použita výchozí. - + Unacceptable file type, only regular file is allowed. Nepřijatelný typ souboru, pouze správné soubory jsou povoleny. - + Symlinks inside alternative UI folder are forbidden. Symbolické linky jsou v alternativním UI zakázány. - + Using built-in WebUI. Použití vestavěného WebUI. - + Using custom WebUI. Location: "%1". Použití vlastního WebUI. Umístění: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. WebUI překlad vybraného prostředí locale (%1) byl úspěšně načten. - + Couldn't load WebUI translation for selected locale (%1). Nepodařilo se načíst překlad vybraného prostředí locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Chybějící ':' oddělovač ve vlastní HTTP hlavičce WebUI: "%1" - + Web server error. %1 Chyba webového serveru. %1 - + Web server error. Unknown error. Chyba webového serveru. Neznámá chyba. @@ -12847,7 +12635,7 @@ Prosím zvolte jiný název kategorie a zkuste to znovu. Unknown error - Neznámá chyba + Neznámá chyba diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index ea08630cc..1058abd81 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -170,10 +170,6 @@ Never show again Vis aldrig igen - - Torrent settings - Torrent-indstillinger - Set as default category @@ -235,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -368,112 +364,112 @@ Gem som .torrent-fil... - + I/O Error I/O-fejl - + Not Available This comment is unavailable Ikke tilgængelig - + Not Available This date is unavailable Ikke tilgængelig - + Not available Ikke tilgængelig - + Magnet link Magnet-link - + Retrieving metadata... Modtager metadata... - - + + Choose save path Vælg gemmesti - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A Ugyldig - + %1 (Free space on disk: %2) %1 (ledig plads på disk: %2) - + Not available This size is unavailable. Ikke tilgængelig - + Torrent file (*%1) Torrent-fil (*%1) - + Save as torrent file Gem som torrentfil - + Couldn't export torrent metadata file '%1'. Reason: %2. Kunne ikke eksportere torrent-metadata-fil '%1'. Begrundelse: %2. - + Cannot create v2 torrent until its data is fully downloaded. Kan ikke oprette v2-torrent, før dens er fuldt ud hentet. - + Filter files... Filtrere filer... - + Parsing metadata... Fortolker metadata... - + Metadata retrieval complete Modtagelse af metadata er færdig @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Gentjek torrents når de er færdige - - + + ms milliseconds ms - + Setting Indstilling - + Value Value set for this setting Værdi - + (disabled) (deaktiveret) - + (auto) (automatisk) - - + + min minutes min - + All addresses Alle adresser - + qBittorrent Section qBittorrent-sektion - - + + Open documentation Åbn dokumentation - + All IPv4 addresses Alle IPv4-adresser - + All IPv6 addresses Alle IPv6-adresser - + libtorrent Section libtorrent-sektion - + Fastresume files - + SQLite database (experimental) SQLite database (eksperimental) - + Resume data storage type (requires restart) - + Normal Normal - + Below normal Under normal - + Medium Medium - + Low Lav - + Very low Meget lav - + Physical memory (RAM) usage limit Fysisk hukommelse (RAM) begrænsning - + Asynchronous I/O threads Asynkrone I/O-tråde - + Hashing threads Hashing tråde - + File pool size Filsamlingsstørrelse - + Outstanding memory when checking torrents Udestående hukommelse ved tjek af torrents - + Disk cache Diskmellemlager - - - - + + + + + s seconds s - + Disk cache expiry interval Udløbsinterval for diskmellemlager - + Disk queue size Disk kø størrelse - - + + Enable OS cache Aktivér OS-mellemlager - + Coalesce reads & writes Coalesce-læsninger og -skrivninger - + Use piece extent affinity Brug piece extent affinity - + Send upload piece suggestions Send forslag for upload-styk - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux Denne funktion er mindre effektiv på Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Standard - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) Disk IO type (kræver genstart) - - + + Disable OS cache Deaktivere OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark Send vandmærke for buffer - + Send buffer low watermark Send vandmærke for lav buffer - + Send buffer watermark factor Send vandmærkefaktor for buffer - + Outgoing connections per second Udgående forbindelser per sekund - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Størrelse for sokkel baglog - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP Foretræk TCP - + Peer proportional (throttles TCP) Modpartsproportionel (drosler TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Supporter internationaliseret domæne navn (IDN) - + Allow multiple connections from the same IP address Tillad flere forbindelser fra den samme IP-adresse - + Validate HTTPS tracker certificates Valider HTTPS tracker certifikater - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Oversæt modparters værtsnavne - + IP address reported to trackers (requires restart) IP-adresse der reporteres til tracker (kræver genstart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus Aktiver ikoner i menuerne - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - sek. + sek. - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Vis underretninger - + Display notifications for added torrents Vis underretninger for tilføjede torrents - + Download tracker's favicon Download trackerens favicon - + Save path history length Historiklængde for gemmesti - + Enable speed graphs Aktivér hastighedsgrafer - + Fixed slots Fastgjorte pladser - + Upload rate based Baseret på uploadhastighed - + Upload slots behavior Opførsel for uploadpladser - + Round-robin Round-robin - + Fastest upload Hurtigste upload - + Anti-leech Anti-leech - + Upload choking algorithm Upload choking-algoritme - + Confirm torrent recheck Bekræft gentjek af torrent - + Confirm removal of all tags Bekræft fjernelse af alle mærkater - + Always announce to all trackers in a tier Annoncér altid til alle trackere i en tier - + Always announce to all tiers Annoncér altid til alle tiers - + Any interface i.e. Any network interface Vilkårlig grænseflade - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP blandet-tilstand-algoritme - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker Aktivér indlejret tracker - + Embedded tracker port Indlejret tracker-port @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Kører i transportabel tilstand. Automatisk registrering af profilmappe: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Overflødigt kommandolinjeflag registreret: "%1". Transportabel tilstand indebærer relativ hurtig genoptagelse. - + Using config directory: %1 Bruger konfigurationsmappe: %1 - + Torrent name: %1 Torrentnavn: %1 - + Torrent size: %1 Torrentstørrelse: %1 - + Save path: %1 Gemmesti: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrenten blev downloadet på %1. - - + + Thank you for using qBittorrent. Tak fordi du bruger qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, sender underretning via e-mail - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit A&fslut - + I/O Error i.e: Input/Output Error I/O-fejl - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ Årsag: %2 - + Torrent added Torrent tilføjet - + '%1' was added. e.g: xxx.avi was added. '%1' blev tilføjet. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' er færdig med at downloade. - + Information Information - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit Afslut - + Recursive download confirmation Bekræftelse for rekursiv download - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Aldrig - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Gemmer torrentforløb... - + qBittorrent is now ready to exit @@ -1765,263 +1772,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Eksportér... - + Matches articles based on episode filter. Matcher artikler baseret på episodefilter. - + Example: Eksempel: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match matcher episode 2, 5, 8 op til 15, 30 og videre for sæson 1 - + Episode filter rules: Regler for episodefilter: - + Season number is a mandatory non-zero value Sæsonnummer er en obligatorisk ikke-nul-værdi - + Filter must end with semicolon Filter skal slutte med semikolon - + Three range types for episodes are supported: Der understøttes tre områdetyper for episoder: - + Single number: <b>1x25;</b> matches episode 25 of season one Ét nummer: <b>1x25;</b> matcher episode 25 for sæson 1 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normalt område: <b>1x25-40;</b> matcher episode 25 til 40 for sæson 1 - + Episode number is a mandatory positive value Episodenummer er en obligatorisk positiv værdi - + Rules Regler - + Rules (legacy) Regler (udgået) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Uendeligt område: <b>1x25-;</b> matcher episode 25 og op for sæson 1 og alle episoder for senere sæsoner - + Last Match: %1 days ago Sidste match: %1 dage siden - + Last Match: Unknown Sidste match: Ukendt - + New rule name Nyt regelnavn - + Please type the name of the new download rule. Skriv venligst navnet på den nye downloadregel. - - + + Rule name conflict Konflikt for regelnavn - - + + A rule with this name already exists, please choose another name. Der findes allerede en regel med dette navn, vælg venligst et andet navn. - + Are you sure you want to remove the download rule named '%1'? Er du sikker på, at du vil fjerne downloadreglen med navnet '%1'? - + Are you sure you want to remove the selected download rules? Er du sikker på, at du vil fjerne de valgte downloadregler? - + Rule deletion confirmation Bekræftelse for sletning af regel - + Invalid action Ugyldig handling - + The list is empty, there is nothing to export. Listen er tom. Der er intet at eksportere. - + Export RSS rules Eksportér RSS-regler - + I/O Error I/O-fejl - + Failed to create the destination file. Reason: %1 Kunne ikke oprette destinationsfilen. Årsag: %1 - + Import RSS rules Importér RSS-regler - + Failed to import the selected rules file. Reason: %1 Kunne ikke importere den valgte regelfil. Årsag: %1 - + Add new rule... Tilføj ny regel... - + Delete rule Slet regel - + Rename rule... Omdøb regel... - + Delete selected rules Slet valgte regler - + Clear downloaded episodes... Ryd downloadede episoder... - + Rule renaming Omdøbning af regel - + Please type the new rule name Skriv venligst det nye regelnavn - + Clear downloaded episodes Ryd downloadede episoder - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Er du sikker på, at du vil rydde listen over downloadede episoder for den valgte regel? - + Regex mode: use Perl-compatible regular expressions Regulært udtryk-tilstand: brug Perl-kompatible regulære udtryk - - + + Position %1: %2 Placering %1: %2 - + Wildcard mode: you can use Jokertegnstilstand: du kan bruge - - + + Import error - + Failed to read the file. %1 - + ? to match any single character ? for at matche ét tegn - + * to match zero or more of any characters * for at matche nul eller flere tegn - + Whitespaces count as AND operators (all words, any order) Blanktegn tæller som OG-operatører (alle ord, vilkårlig rækkefølge) - + | is used as OR operator | bruges som en ELLER-operatør - + If word order is important use * instead of whitespace. Hvis rækkefølgen på ord er vigtig, så brug * i stedet for blanktegn. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Et udtryk med et tomt %1-klausul (f.eks. %2) - + will match all articles. vil matche alle artikler. - + will exclude all articles. vil ekskludere alle artikler. @@ -2073,28 +2080,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2105,16 +2122,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2122,38 +2140,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2161,22 +2201,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2184,498 +2224,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON TIL - - - - - - - - - + + + + + + + + + OFF FRA - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED TVUNGET - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2725,47 +2770,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' Download første og sidste stykker først: %1, torrent: '%2' - + On Tændt - + Off Slukket - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Filomdøbning mislykkedes. Torrent: "%1", fil: "%2", årsag: "%3" - + Performance alert: %1. More info: %2 @@ -2802,11 +2847,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Ventede heltalsnummer i miljøvariablen '%1', men fik '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameteren '%1' skal følge syntaksen '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2847,7 +2887,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameteren '%1' skal følge syntaksen '%1=%2' + Parameteren '%1' skal følge syntaksen '%1=%2' @@ -2937,10 +2977,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - Tilføj torrents som startet eller sat på pause - Skip hash check @@ -3037,14 +3073,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Genoptag torrents - - - Pause torrents - Sæt torrents på pause - Remove torrents @@ -3374,22 +3402,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present Torrent findes allerede - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrenten '%1' er allerede i overførselslisten. Vil du lægge trackere sammen fra den nye kilde? @@ -3507,6 +3535,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3648,10 +3710,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Indstillinger... - - &Resume - &Genoptag - &Remove @@ -3733,10 +3791,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Luk vindue - - R&esume All - G&enoptag alle - Manage Cookies... @@ -3852,10 +3906,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Dvaletilstand - - S&hutdown System - &Luk ned - &Statistics @@ -3876,14 +3926,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &Om - - &Pause - Sæt på &pause - - - P&ause All - Sæt alle på p&ause - &Add Torrent File... @@ -3917,12 +3959,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Vis - + Check for program updates Søg efter programopdateringer @@ -3937,386 +3979,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Hvis du kan lide qBittorrent, så donér venligst! - + Execution Log Eksekveringslog - + Clear the password Ryd adgangskoden - + &Set Password &Sæt adgangskode - + Preferences Præferencer - + &Clear Password &Ryd adgangskode - + Transfers Overførsler - - + + qBittorrent is minimized to tray qBittorrent er minimeret til bakke - - - + + + This behavior can be changed in the settings. You won't be reminded again. Opførslen kan ændres i indstillingerne. Du bliver ikke mindet om det igen. - + Icons Only Kun ikoner - + Text Only Kun tekst - + Text Alongside Icons Tekst ved siden af ikoner - + Text Under Icons Tekst under ikoner - + Follow System Style Følg systemets stil - - + + UI lock password Adgangskode til at låse brugerfladen - - + + Please type the UI lock password: Skriv venligst adgangskoden til at låse brugerfladen: - + Are you sure you want to clear the password? Er du sikker på, at du vil rydde adgangskoden? - + Use regular expressions Brug regulære udtryk - - + + Search Engine - Søgemotor + Søgemotor - + Search has failed - Søgningen mislykkedes + Søgningen mislykkedes - + Search has finished - Søgningen er færdig + Søgningen er færdig - + Search Søg - + Transfers (%1) Overførsler (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent er lige blevet opdateret og skal genstartes før ændringerne træder i kraft. - + qBittorrent is closed to tray qBittorrent er lukket til bakke - + Some files are currently transferring. Nogle filer er ved at blive overført. - + Are you sure you want to quit qBittorrent? Er du sikker på, at du vil afslutte qBittorrent? - + &No &Nej - + &Yes &Ja - + &Always Yes &Altid ja - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Manglende Python-runtime - + qBittorrent Update Available Der findes en opdatering til qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python kræves for at bruge søgemotoren, men lader ikke til at være installeret. Vil du installere den nu? - + Python is required to use the search engine but it does not seem to be installed. Python kræves for at bruge søgemotoren, men lader ikke til at være installeret. - - + + Old Python Runtime Gammel Python-runtime - + A new version is available. Der findes en ny version. - + Do you want to download %1? Vil du downloade %1? - + Open changelog... Åbn ændringslog... - + No updates available. You are already using the latest version. Der findes ingen opdateringer. Du bruger allerede den seneste version. - + &Check for Updates &Søg efter opdateringer - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Sat på pause + Sat på pause - + Checking for Updates... Søger efter opdateringer... - + Already checking for program updates in the background Søger allerede efter programopdateringer i baggrunden - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Fejl ved download - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python-opsætning kunne ikke downloades, årsag: %1. -Installer den venligst manuelt. - - - - + + Invalid password Ugyldig adgangskode - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid Adgangskoden er ugyldig - + DL speed: %1 e.g: Download speed: 10 KiB/s Downloadhastighed: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Uploadhastighed: %1 - + Hide Skjul - + Exiting qBittorrent Afslutter qBittorrent - + Open Torrent Files Åbn torrent-filer - + Torrent Files Torrent-filer @@ -5810,47 +5846,47 @@ Installer den venligst manuelt. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5892,10 +5928,6 @@ Installer den venligst manuelt. RSS RSS - - Web UI - Webgrænseflade - Advanced @@ -5932,10 +5964,6 @@ Installer den venligst manuelt. Always Altid - - Paused torrents only - Kun torrents som er sat på pause - Action on double-click @@ -5946,10 +5974,6 @@ Installer den venligst manuelt. Downloading torrents: Downloader torrents: - - Start / Stop Torrent - Start/stop torrent - @@ -6008,363 +6032,365 @@ Installer den venligst manuelt. KiB - + + Show free disk space in status bar + + + + Torrent content layout: - + Original Original - + Create subfolder Opret undermappe - + Don't create subfolder Opret ikke undermappe - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Tilføj... - + Options.. - + Remove Fjern - + Email notification &upon download completion &Underretning via e-mail når download er færdig - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering IP-fi&ltrering - + Schedule &the use of alternative rate limits Planlæg brugen af &alternative grænser for hastighed - + From: From start time Fra: - + To: To end time Til: - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption Tillad kryptering - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Mere information</a>) - + Maximum active checking torrents: - + &Torrent Queueing &Torrent sat i kø - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - Tilføj &automatisk disse trackere til nye downloads: - - - + RSS Reader RSS-læser - + Enable fetching RSS feeds Aktivér hentning af RSS-feeds - + Feeds refresh interval: Interval for genopfriskning af feeds: - + Same host request delay: - + Maximum number of articles per feed: Maksimum antal artikler pr. feed: - - - + + + min minutes min - + Seeding Limits Grænser for seeding - Pause torrent - Sæt torrent på pause - - - + Remove torrent Fjern torrent - + Remove torrent and its files Fjern torrenten og dens filer - + Enable super seeding for torrent Aktivér superseeding for torrent - + When ratio reaches Når deleforhold når - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader Automatisk download af RSS-torrent - + Enable auto downloading of RSS torrents Aktivér automatisk download af RSS-torrents - + Edit auto downloading rules... Rediger regler for automatisk download... - + RSS Smart Episode Filter RSS smart episodefilter - + Download REPACK/PROPER episodes Download REPACK/PROPER episoder - + Filters: Filtre: - + Web User Interface (Remote control) Webgrænseflade (fjernstyring) - + IP address: IP-adresse: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6373,37 +6399,37 @@ Angiv en IPv4- eller IPv6-adresse. Du kan angive "0.0.0.0" til enhver "::" til enhver IPv6-adresse eller "*" til både IPv4 og IPv6. - + Ban client after consecutive failures: - + Never Aldrig - + ban for: - + Session timeout: Sessiontimeout: - + Disabled Deaktiveret - + Server domains: Serverdomæner: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6416,37 +6442,37 @@ bør du putte domænenavne i som bruges af webgrænsefladens server. Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. - + &Use HTTPS instead of HTTP &Brug HTTPS i stedet for HTTP - + Bypass authentication for clients on localhost Tilsidesæt godkendelse for klienter på localhost - + Bypass authentication for clients in whitelisted IP subnets Tilsidesæt godkendelse for klienter i hvidlistede IP-undernet - + IP subnet whitelist... IP-undernet-hvidliste... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Opdater mit &dynamiske domænenavn @@ -6458,7 +6484,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*&apos Search - Søg + Søg @@ -6559,99 +6585,99 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*&apos Slet sikkerhedskopieret logge som er ældre end: - + Show external IP in status bar - + When adding a torrent Når en torrent tilføjes - + Bring torrent dialog to the front Bring torrent-dialogen forrest - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Slet også .torrent-filer som fik deres tilføjelse annulleret - + Also when addition is cancelled Også når tilføjelse annulleres - + Warning! Data loss possible! Advarsel! Data kan gå tabt! - + Saving Management Gemmehåndtering - + Default Torrent Management Mode: Standardtilstand for håndtering af torrent: - + Manual Manuelt - + Automatic Automatisk - + When Torrent Category changed: Når torrentkategori ændres: - + Relocate torrent Flyt torrent til en anden placering - + Switch torrent to Manual Mode Skift torrent til manuel tilstand - - + + Relocate affected torrents Flyt påvirkede torrents til en anden placering - - + + Switch affected torrents to Manual Mode Skift påvirkede torrents til manuel tilstand - + Use Subcategories Brug underkategorier - + Default Save Path: Standardgemmesti: - + Copy .torrent files to: Kopiér .torrent-filer til: @@ -6661,26 +6687,22 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*&apos Vis &qBittorrent i underretningsområdet - &Log file - &Logfil - - - + Display &torrent content and some options Vis &torrent-indhold og nogle valgmuligheder - + De&lete .torrent files afterwards &Slet .torrent-filer bagefter - + Copy .torrent files for finished downloads to: Kopiér færdige .torrent downloads til: - + Pre-allocate disk space for all files Præ-allokér alle filer @@ -6775,64 +6797,64 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*&apos år - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state Start ikke download automatisk - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Tilføj .!qB-endelse til slutningen af ufærdige filer - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog Aktivér rekursiv download-dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: Når kategoriens gemmesti ændres: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6852,50 +6874,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: Tilføj automatisk torrents fra: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6912,515 +6934,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Modtager - + To: To receiver Til: - + SMTP server: SMTP-server: - + Sender Afsender - + From: From sender Fra: - + This server requires a secure connection (SSL) Denne server kræver en sikker forbindelse (SSL) - - + + Authentication Godkendelse - - - - + + + + Username: Brugernavn: - - - - + + + + Password: Adgangskode: - + Run external program - + Show console window Vis konsolvindue - + TCP and μTP TCP og μTP - + Listening Port Lyttende port - + Port used for incoming connections: Port der bruges til indgående forbindelser: - + Set to 0 to let your system pick an unused port - + Random Tilfældig - + Use UPnP / NAT-PMP port forwarding from my router Brug UPnP/NAT-PMP port-viderestilling fra min router - + Connections Limits Grænser for forbindelser - + Maximum number of connections per torrent: Maksimum antal forbindelser pr. torrent: - + Global maximum number of connections: Global maksimum antal forbindelser: - + Maximum number of upload slots per torrent: Maksimum antal uploadpladser pr. torrent: - + Global maximum number of upload slots: Global maksimum antal uploadpladser: - + Proxy Server Proxyserver - + Type: Type: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Vært: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Ellers bruges proxyserveren kun til tracker-forbindelser - + Use proxy for peer connections Brug proxy til modpartsforbindelser - + A&uthentication &Godkendelse - Info: The password is saved unencrypted - Info: Adgangskoden gemmes ukrypteret + Info: Adgangskoden gemmes ukrypteret - + Filter path (.dat, .p2p, .p2b): Filtrer sti (.dat, .p2p, .p2b): - + Reload the filter Genindlæs filteret - + Manually banned IP addresses... Manuelt udelukkede IP-adresser... - + Apply to trackers Anvend på trackere - + Global Rate Limits Globale grænser for hastighed - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Upload: - - + + Download: Download: - + Alternative Rate Limits Alternative grænser for hastighed - + Start time - + End time - + When: Når: - + Every day Hver dag - + Weekdays Hverdage - + Weekends Weekender - + Rate Limits Settings Indstillinger for grænser for hastighed - + Apply rate limit to peers on LAN Anvend grænse for hastighed til modparter på LAN - + Apply rate limit to transport overhead Anvend grænse for hastighed til transport-overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Anvend grænse for hastighed til µTP-protokol - + Privacy Privatliv - + Enable DHT (decentralized network) to find more peers Aktivér DHT (decentraliseret netværk) for at finde flere modparter - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Udveksel modparter med kompatible Bittorrent-klienter (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Aktivér modpartsudveksling (PeX) for at finde flere modparter - + Look for peers on your local network Søg efter modparter på dit lokale netværk - + Enable Local Peer Discovery to find more peers Aktivér lokal modpartsopdagelse for at finde flere modparter - + Encryption mode: Krypteringstilstand: - + Require encryption Kræv kryptering - + Disable encryption Deaktivér kryptering - + Enable when using a proxy or a VPN connection Aktivér når der bruges en proxy eller en VPN-forbindelse - + Enable anonymous mode Aktivér anonym tilstand - + Maximum active downloads: Maksimum aktive downloads: - + Maximum active uploads: Maksimum aktive uploads: - + Maximum active torrents: Maksimum aktive torrents: - + Do not count slow torrents in these limits Tæl ikke langsomme torrents med i disse grænser - + Upload rate threshold: Grænse for uploadhastighed: - + Download rate threshold: Grænse for downloadhastighed: - - - - + + + + sec seconds sek. - + Torrent inactivity timer: Timer for torrent inaktivitet: - + then og så - + Use UPnP / NAT-PMP to forward the port from my router Brug UPnP/NAT-PMP til at viderestille porten fra min router - + Certificate: Certifikat: - + Key: Nøgle: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information om certifikater</a> - + Change current password Skift nuværende adgangskode - Use alternative Web UI - Brug alternativ webgrænseflade - - - + Files location: Filplacering: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Sikkerhed - + Enable clickjacking protection Aktivér beskyttelse mod klikkidnapning - + Enable Cross-Site Request Forgery (CSRF) protection Aktivér beskyttelse mod Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Aktivér validering af værtsheader - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Tjeneste: - + Register Registrer - + Domain name: Domænenavn: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Ved at aktivere disse valgmuligheder kan du <strong>uigenkaldeligt miste</strong> dine .torrent-filer! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Hvis du aktiverer den anden valgmulighed (&ldquo;Også når tilføjelse annulleres&rdquo;), <strong>så slettes .torrent-filen</strong>, selv hvis du trykker på &ldquo;<strong>Annuller</strong>&rdquo; i &ldquo;Tilføj torrent&rdquo;-dialogen @@ -7430,12 +7447,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location Vælg alternativ placering til brugefladefiler - + Supported parameters (case sensitive): Understøttede parametre (forskel på store og små bogstaver): @@ -7455,183 +7472,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: Torrentnavn - + %L: Category %L: Kategori - + %F: Content path (same as root path for multifile torrent) %F: Indholdssti (samme som rodsti til torrent med flere filer) - + %R: Root path (first torrent subdirectory path) %R: Rodsti (første torrent-undermappesti) - + %D: Save path %D: Gemmesti - + %C: Number of files %C: Antal filer - + %Z: Torrent size (bytes) %Z: Torrentstørrelse (bytes) - + %T: Current tracker %T: Nuværende tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: Omslut parameter med citationstegn så teksten ikke bliver afkortet af blanktegn (f.eks. "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Ingen) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds En torrent betrages som værende langsom hvis dens download- og uploadhastighed forbliver under disse værdier for "Timer for torrent inaktivitet" sekunder - + Certificate Certifikat - + Select certificate Vælg certifikat - + Private key Privat nøgle - + Select private key Vælg privat nøgle - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Vælg mappe som skal overvåges - + Adding entry failed Tilføjelse af element mislykkedes - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Fejl ved placering - - + + Choose export directory Vælg eksportmappe - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7641,69 +7658,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: Mærkatet (separeret af komma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Vælg en gemmemappe - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Vælg en IP-filterfil - + All supported filters Alle understøttede filtre - + The alternative WebUI files location cannot be blank. - + Parsing error Fejl ved fortolkning - + Failed to parse the provided IP filter Kunne ikke behandle det angivne IP-filter - + Successfully refreshed Genopfrisket - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Behandling af det angivne IP-filter lykkedes: %1 regler blev anvendt. @@ -7714,18 +7731,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Præferencer - + Time Error Fejl ved tid - + The start time and the end time can't be the same. Start- og slut-tiden må ikke være det samme. - - + + Length Error Fejl ved længde @@ -7816,163 +7833,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region - + IP/Address - + Port Port - + Flags Flag - + Connection Forbindelse - + Client i.e.: Client application Klient - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Forløb - + Down Speed i.e: Download speed Downloadhastighed - + Up Speed i.e: Upload speed Uploadhastighed - + Downloaded i.e: total data downloaded Downloadet - + Uploaded i.e: total data uploaded Uploadet - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevans - + Files i.e. files that are being downloaded right now Filer - + Column visibility Synlighed for kolonne - + Resize columns Ændr kolonners størrelse - + Resize all non-hidden columns to the size of their contents Ændr alle ikke-skjulte kolonner til deres indholds størrelse - + Add peers... - - + + Adding peers Tilføjer modparter - + Some peers cannot be added. Check the Log for details. Nogle modparter kan ikke tilføjes. Tjek loggen for detaljer. - + Peers are added to this torrent. Der er tilføjet modparter til torrenten. - - + + Ban peer permanently Udeluk modpart permanent - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? Er du sikker på, at du vil udelukke de valgte modparter permanent? - + Peer "%1" is manually banned Modparten "%1" er blevet udelukket manuelt - + N/A - - + Copy IP:port Kopiér IP:port @@ -8253,34 +8270,8 @@ Pluginsne blev deaktiveret. PowerManagement - qBittorrent is active - qBittorrent er aktiv - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent er aktiv @@ -8572,153 +8563,124 @@ Pluginsne blev deaktiveret. Gemmesti: - + Never Aldrig - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (har %3) - - + + %1 (%2 this session) %1 (%2 denne session) - - + + N/A - - + Yes - Ja + Ja - + No - Nej + Nej - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (seedet i %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 i alt) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 gns.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Nyt webseed - - - Remove Web seed - Fjern webseed - - - Copy Web seed URL - Kopiér webseed-URL - - - Edit Web seed URL - Rediger webseed-URL - - - + Filter files... Filterfiler... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - Nyt URL-seed - - - New URL seed: - Nyt URL-seed: - - - This URL seed is already in the list. - Dette URL-seed er allerede i listen. - - - + Web seed editing Redigering af webseed - + Web seed URL: Webseed-URL: @@ -8726,33 +8688,33 @@ Pluginsne blev deaktiveret. RSS::AutoDownloader - - + + Invalid data format. Ugyldigt dataformat. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Kunne ikke gemme RSS AutoDownloader-data i %1. Fejl: %2 - + Invalid data format Ugyldigt dataformat - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Kunne ikke læse RSS AutoDownloader-regler. Årsag: %1 @@ -8760,22 +8722,22 @@ Pluginsne blev deaktiveret. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Kunne ikke downloade RSS-feed på '%1'. Årsag: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-feed på '%1' opdateret. Tilføjede %2 nye artikler. - + Failed to parse RSS feed at '%1'. Reason: %2 Kunne ikke behandle RSS-feed på '%1'. Årsag: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-feed hos '%1' blev downloadet. Begynder på at fortolke den. @@ -8824,12 +8786,12 @@ Pluginsne blev deaktiveret. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8851,76 +8813,117 @@ Pluginsne blev deaktiveret. - + Item doesn't exist: %1. Element findes ikke: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Kan ikke slette rodmappe. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Ukorrekt RSS-elementsti: %1. - + RSS item with given path already exists: %1. RSS-element med angivne sti findes allerede: %1. - + Parent folder doesn't exist: %1. Forældermappe findes ikke: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sek. + + + + Default + Standard + + RSSWidget @@ -9020,78 +9023,69 @@ Pluginsne blev deaktiveret. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Vælg venligst et mappenavn - + Folder name: Mappenavn: - + New folder Ny mappe - - Please type a RSS feed URL - Skriv venligst en URL for RSS-feed + Skriv venligst en URL for RSS-feed - - Feed URL: - URL for feed: + URL for feed: - + Deletion confirmation Bekræftelse for sletning - + Are you sure you want to delete the selected RSS feeds? Er du sikker på, at du vil slette de valgte RSS-feeds? - + Please choose a new name for this RSS feed Vælg venligst et nyt navn til dette RSS-feed - + New feed name: Nyt feednavn: - + Rename failed Omdøbning mislykkedes - + Date: Dato: - + Feed: - + Author: Forfatter: @@ -9228,10 +9222,6 @@ Pluginsne blev deaktiveret. i.e: Number of partial sources Leechere - - Search engine - Søgemotor - Filter search results... @@ -9352,104 +9342,104 @@ Pluginsne blev deaktiveret. SearchPluginManager - + Unknown search engine plugin file format. Ukendt filformat for søgemotor-plugin. - + Plugin already at version %1, which is greater than %2 Pluginet er allerede version %1, hvilket er større end %2 - + A more recent version of this plugin is already installed. En nyere version af dette plugin er allerede installeret. - + Plugin %1 is not supported. Pluginet %1 understøttes ikke. - - + + Plugin is not supported. Plugin understøttes ikke. - + Plugin %1 has been successfully updated. Pluginet %1 blev opdateret. - + All categories Alle kategorier - + Movies Film - + TV shows TV-shows - + Music Musik - + Games Spil - + Anime Anime - + Software Software - + Pictures Billeder - + Books Bøger - + Update server is temporarily unavailable. %1 Opdateringsserveren er midlertidig utilgængelig. %1 - - + + Failed to download the plugin file. %1 Kunne ikke download plugin-filen. %1 - + Plugin "%1" is outdated, updating to version %2 Pluginet "%1" er forældet, opdaterer til version %2 - + Incorrect update info received for %1 out of %2 plugins. Ukorrekt opdateringsinformation modtaget til %1 ud af %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') Søge-pluginet '%1' indeholder ugyldig versionsstreng ('%2') @@ -9475,135 +9465,127 @@ Klik på "Søg efter plugins..."-knappen nederst til højre i vinduet, Søge-plugins... - + A phrase to search for. Søg efter en frase. - + Spaces in a search term may be protected by double quotes. Mellemrum i søgetermner kan beskyttes med dobbelte anførselstegn. - + Example: Search phrase example Eksempel: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: søg efter <b>foo bar</b> - + All plugins Alle plugins - + Only enabled Kun aktiverede - - + + Invalid data format. - Ugyldigt dataformat. + Ugyldigt dataformat. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab Luk faneblad - + Close all tabs Luk alle faneblade - + Select... Vælg... - - + + Search Engine Søgemotor - - + + Please install Python to use the Search Engine. Installer venligst Python for at bruge søgemotoren. - + Empty search pattern Tomt søgemønster - + Please type a search pattern first Skriv venligst først et søgemønster - + Stop Stop - - Search has finished - Søgningen er færdig - - - Search has failed - Søgningen mislykkedes - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10001,67 +9983,77 @@ Klik på "Søg efter plugins..."-knappen nederst til højre i vinduet, StatusBar - + Connection status: Forbindelsesstatus: - - + + No direct connections. This may indicate network configuration problems. Ingen direkte forbindelser. Dette kan indikere problemer med at konfigurere netværket. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 knudepunkter - + qBittorrent needs to be restarted! qBittorrent skal genstartes! - - + + Connection Status: Forbindelsesstatus: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. Dette betyder typisk at qBittorrent ikke kunne lytte efter indgående forbindelser på den valgte port. - + Online Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Klik for at skifte til alternative grænser for hastighed - + Click to switch to regular speed limits Klik for at skifte til normale grænser for hastighed @@ -10089,14 +10081,6 @@ Klik på "Søg efter plugins..."-knappen nederst til højre i vinduet, Completed (0) Færdige (0) - - Resumed (0) - Genoptaget (0) - - - Paused (0) - Sat på pause (0) - Running (0) @@ -10187,32 +10171,16 @@ Klik på "Søg efter plugins..."-knappen nederst til højre i vinduet, Stop torrents - - Paused (%1) - Sat på pause (%1) - Moving (%1) - - Resume torrents - Genoptag torrents - - - Pause torrents - Sæt torrents på pause - Remove torrents - - Resumed (%1) - Genoptaget (%1) - Active (%1) @@ -10284,23 +10252,11 @@ Klik på "Søg efter plugins..."-knappen nederst til højre i vinduet, Remove unused tags Fjern ubrugte mærkater - - Resume torrents - Genoptag torrents - - - Pause torrents - Sæt torrents på pause - Remove torrents - - New Tag - Nyt mærkat - Start torrents @@ -10636,17 +10592,17 @@ Vælg venligst et andet navn og prøv igen. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10898,13 +10854,6 @@ Vælg venligst et andet navn og prøv igen. - - TorrentInfo - - Invalid metadata - Ugyldig metadata - - TorrentOptionsDialog @@ -10974,22 +10923,6 @@ Vælg venligst et andet navn og prøv igen. Upload: Upload: - - Use global share limit - Brug global delegrænse - - - Set no share limit - Sæt ingen delegrænse - - - Set share limit to - Sæt delegrænse til - - - ratio - forhold - Disable DHT for this torrent @@ -11031,14 +10964,6 @@ Vælg venligst et andet navn og prøv igen. Not applicable to private torrents - - No share limit method selected - Ingen delegrænsemetode valgt - - - Please select a limit method first - Vælg venligst først en grænsemetode - TorrentShareLimitsWidget @@ -11098,7 +11023,7 @@ Vælg venligst et andet navn og prøv igen. Remove torrent - Fjern torrent + Fjern torrent @@ -11108,7 +11033,7 @@ Vælg venligst et andet navn og prøv igen. Enable super seeding for torrent - Aktivér superseeding for torrent + Aktivér superseeding for torrent @@ -11123,10 +11048,6 @@ Vælg venligst et andet navn og prøv igen. Torrent Tags - - New Tag - Nyt mærkat - Add tag @@ -11161,78 +11082,78 @@ Vælg venligst et andet navn og prøv igen. TorrentsController - + Error: '%1' is not a valid torrent file. Fejl: '%1' er ikke en gyldig torrent-fil. - + Priority must be an integer Prioritet skal være et heltal - + Priority is not valid Prioritet er ikke gyldig - + Torrent's metadata has not yet downloaded Torrentens metadata er endnu ikke downloadet - + File IDs must be integers Fil-id'er skal være heltal - + File ID is not valid Fil-id er ikke gyldig - - - - + + + + Torrent queueing must be enabled Torrent-forespørgsel må ikke være aktiveret - - + + Save path cannot be empty Gemmesti må ikke være tom - - + + Cannot create target directory - - + + Category cannot be empty Kategori må ikke være tom - + Unable to create category Kan ikke oprette kategori - + Unable to edit category Kan ikke redigere kategori - + Unable to export torrent file. Error: %1 - + Cannot make save path Kan ikke oprette gemmesti @@ -11252,39 +11173,39 @@ Vælg venligst et andet navn og prøv igen. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Kan ikke skrive til mappe - + WebUI Set location: moving "%1", from "%2" to "%3" Webgrænseflade sæt placering: flytter "%1", fra "%2" til "%3" - + Incorrect torrent name Ukorrekt torrentnavn - - + + Incorrect category name Ukorrekt kategorinavn @@ -11433,73 +11354,73 @@ Vælg venligst et andet navn og prøv igen. Denne torrent er privat - + Tracker editing Redigering af tracker - + Tracker URL: Tracker-URL: - - + + Tracker editing failed Redigering af tracker mislykkedes - + The tracker URL entered is invalid. Den indtastede tracker-URL er ugyldig. - + The tracker URL already exists. Tracker-URL'en findes allerede. - + Edit tracker URL... Rediger tracker-URL... - + Remove tracker Fjern tracker - + Copy tracker URL Kopiér tracker-URL - + Force reannounce to selected trackers Tving genannoncering til valgte trackere - + Force reannounce to all trackers Tving genannoncering til alle trackere - + Resize columns Ændr kolonners størrelse - + Resize all non-hidden columns to the size of their contents Ændr alle ikke-skjulte kolonner til deres indholds størrelse - + Add trackers... - + Column visibility Synlighed for kolonne @@ -11589,14 +11510,6 @@ Vælg venligst et andet navn og prøv igen. Stop torrents - - Resume torrents - Genoptag torrents - - - Pause torrents - Sæt torrents på pause - Remove torrents @@ -11719,10 +11632,6 @@ Vælg venligst et andet navn og prøv igen. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Tjekker genoptagelsesdata - - Paused - Sat på pause - Completed @@ -11763,21 +11672,16 @@ Vælg venligst et andet navn og prøv igen. % Done Forløb - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Stoppet Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11893,22 +11797,17 @@ Vælg venligst et andet navn og prøv igen. Time Active Time (duration) the torrent is active (not stopped) - Tid aktiv + Tid aktiv Yes - Ja + Ja No - Nej - - - Time Active - Time (duration) the torrent is active (not paused) - Tid aktiv + Nej @@ -12010,333 +11909,319 @@ Vælg venligst et andet navn og prøv igen. TransferListWidget - + Column visibility Synlighed for kolonne - + Recheck confirmation Bekræftelse for gentjek - + Are you sure you want to recheck the selected torrent(s)? Er du sikker på, at du vil gentjekke den valgte torrent(s)? - + Rename Omdøb - + New name: Nyt navn: - + Choose save path Vælg gemmesti - + Unable to preview Kan ikke forhåndsvise - + The selected torrent "%1" does not contain previewable files Den valgte torrent "%1" indeholder ikke filer som kan forhåndsvises - + Resize columns Ændr kolonners størrelse - + Resize all non-hidden columns to the size of their contents Ændr alle ikke-skjulte kolonner til deres indholds størrelse - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Tilføj mærkater - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags Fjern alle mærkater - + Remove all tags from selected torrents? Fjern alle mærkater fra valgte torrents? - + Comma-separated tags: Kommasepareret mærkater: - + Invalid tag Ugyldigt mærkat - + Tag name: '%1' is invalid Mærkatnavnet '%1' er ugyldigt - &Resume - Resume/start the torrent - &Genoptag - - - &Pause - Pause the torrent - Sæt på &pause - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Download i fortløbende rækkefølge - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first Download første og sidste stykker først - + Automatic Torrent Management Automatisk håndtering af torrent - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatisk tilstand betyder at diverse torrent-egenskaber (f.eks. gemmesti) vil blive besluttet af den tilknyttede kategori - + Super seeding mode Super seeding-tilstand @@ -12468,32 +12353,32 @@ Vælg venligst et andet navn og prøv igen. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12585,52 +12470,52 @@ Vælg venligst et andet navn og prøv igen. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Uacceptabel filtype. Kun almindelig fil er tilladt. - + Symlinks inside alternative UI folder are forbidden. Symlinks i alternativ brugerflademappe er forbudt. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12688,7 +12573,7 @@ Vælg venligst et andet navn og prøv igen. Unknown error - Ukendt fejl + Ukendt fejl diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index b9c2916fb..e9db21fb8 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -170,10 +170,6 @@ Never show again Nie wieder anzeigen - - Torrent settings - Torrent-Einstellungen - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrent-Optionen @@ -217,7 +213,7 @@ Click [...] button to add/remove tags. - Wähle den [...] Knopf um Label hinzuzufügen/zu entfernen. + Wähle den [...] Knopf, um Label hinzuzufügen/zu entfernen. @@ -235,25 +231,25 @@ Bedingung für das Anhalten: - - + + None Kein - - + + Metadata received Metadaten erhalten - + Torrents that have metadata initially will be added as stopped. Torrents, die anfänglich Metadaten haben, werden als gestoppt hinzugefügt. - + Files checked Dateien überprüft @@ -368,112 +364,112 @@ Speichere als .torrent-Datei ... - + I/O Error I/O-Fehler - + Not Available This comment is unavailable Nicht verfügbar - + Not Available This date is unavailable Nicht verfügbar - + Not available Nicht verfügbar - + Magnet link Magnet-Link - + Retrieving metadata... Frage Metadaten ab ... - - + + Choose save path Speicherpfad wählen - + No stop condition is set. Keine Bedingungen für das Anhalten eingestellt. - - - Torrent will stop after metadata is received. - Der Torrent wird angehalten wenn Metadaten erhalten wurden. - - - - Torrent will stop after files are initially checked. - Der Torrent wird angehalten sobald die Dateien überprüft wurden. - + Torrent will stop after metadata is received. + Der Torrent wird angehalten, wenn Metadaten erhalten wurden. + + + + Torrent will stop after files are initially checked. + Der Torrent wird angehalten, sobald die Dateien überprüft wurden. + + + This will also download metadata if it wasn't there initially. Dadurch werden auch Metadaten heruntergeladen, wenn sie ursprünglich nicht vorhanden waren. - + N/A N/V - + %1 (Free space on disk: %2) %1 (Freier Speicher auf Platte: %2) - + Not available This size is unavailable. Nicht verfügbar - + Torrent file (*%1) Torrent-Datei (*%1) - + Save as torrent file Speichere als Torrent-Datei - + Couldn't export torrent metadata file '%1'. Reason: %2. Die Torrent-Metadaten Datei '%1' konnte nicht exportiert werden. Grund: %2. - + Cannot create v2 torrent until its data is fully downloaded. - Konnte v2-Torrent nicht erstellen solange die Daten nicht vollständig heruntergeladen sind. + Konnte v2-Torrent nicht erstellen, solange die Daten nicht vollständig heruntergeladen sind. - + Filter files... Dateien filtern ... - + Parsing metadata... Analysiere Metadaten ... - + Metadata retrieval complete Abfrage der Metadaten komplett @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Lade Torrent herunter ... Quelle: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Konnte Torrent nicht hinzufügen. Quelle: "%1". Grund: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Das Hinzufügen eines doppelten Torrents wurde erkannt. Quelle: %1. Bestehender Torrent: %2. Ergebnis: %3 + Das Hinzufügen eines doppelten Torrents wurde erkannt. Quelle: %1. Bestehender Torrent: %2. Ergebnis: %3 - + Merging of trackers is disabled Zusammenführen der Tracker ist deaktiviert. - + Trackers cannot be merged because it is a private torrent Tracker können wegen privatem Torrent nicht zusammengeführt werden. - + Trackers are merged from new source Tracker wurden von der neuen Quelle zusammengeführt. + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -526,7 +526,7 @@ Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - Automatischer Modus bedeutet, daß diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. + Automatischer Modus bedeutet, dass diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. @@ -556,7 +556,7 @@ Click [...] button to add/remove tags. - Wähle den [...] Knopf um Label hinzuzufügen/zu entfernen. + Wähle den [...] Knopf, um Label hinzuzufügen/zu entfernen. @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrents nach Abschluss der Übertragung erneut prüfen - - + + ms milliseconds ms - + Setting Einstellung - + Value Value set for this setting Wert - + (disabled) (deaktiviert) - + (auto) (automatisch) - - + + min minutes Min. - + All addresses Alle Adressen - + qBittorrent Section qBittorrent-Abschnitt - - + + Open documentation Dokumentation öffnen - + All IPv4 addresses Alle IPv4-Adressen - + All IPv6 addresses Alle IPv6-Adressen - + libtorrent Section libtorrent-Abschnitt - + Fastresume files Fastresume Dateien - + SQLite database (experimental) SQLite-Datenbank (experimentell) - + Resume data storage type (requires restart) Speichertyp der Fortsetzungsdaten (Programmneustart erforderlich) - + Normal Normal - + Below normal Niedriger als normal - + Medium Medium - + Low Niedrig - + Very low Sehr niedrig - + Physical memory (RAM) usage limit Begrenzung der Nutzung des physischen Speichers (RAM) - + Asynchronous I/O threads Asynchrone E/A-Threads - + Hashing threads Hash-Threads - + File pool size Größe des Datei-Pools - + Outstanding memory when checking torrents Speicher zum Prüfen von Torrents - + Disk cache Festplatten-Cache: - - - - + + + + + s seconds s - + Disk cache expiry interval Ablauf-Intervall für Festplatten-Cache - + Disk queue size Größe der Festplatten-Warteschlange - - + + Enable OS cache Systemcache aktivieren - + Coalesce reads & writes Verbundene Schreib- u. Lesezugriffe - + Use piece extent affinity Aufeinanderfolgende Teile bevorzugen - + Send upload piece suggestions Sende Empfehlungen für Upload-Teil - - - - - + + + + + 0 (disabled) 0 (deaktiviert) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Speicherintervall für Fortsetzungsdaten [0: deaktiviert] - + Outgoing ports (Min) [0: disabled] Ausgehende Ports (Min) [0: deaktiviert] - + Outgoing ports (Max) [0: disabled] Ausgehende Ports (Max) [0: deaktiviert] - + 0 (permanent lease) 0 (permanente Miete) - + UPnP lease duration [0: permanent lease] UPnP-Mietdauer [0: permanent] - + Stop tracker timeout [0: disabled] Halte die Tracker-Auszeit an [0: deaktiviert] - + Notification timeout [0: infinite, -1: system default] Benachrichtigungs-Timeout [0: unendlich; -1: Systemstandard] - + Maximum outstanding requests to a single peer Max. ausstehende Anfragen an einen einzelnen Peer - - - - - + + + + + KiB KiB - + (infinite) (unendlich) - + (system default) (Systemstandard) - + Delete files permanently - + Dateien dauerhaft löschen - + Move files to trash (if possible) - + (Wenn möglich) Dateien in den Papierkorb löschen - + Torrent content removing mode - + Lösch-Modus für Torrent-Inhalte - + This option is less effective on Linux Diese Option ist unter Linux weniger effektiv - + Process memory priority Priorität des Arbeitsspeichers - + Bdecode depth limit Bdecode-Tiefenbegrenzung - + Bdecode token limit Bdecode-Token-Limit - + Default Standard - + Memory mapped files Im Speicher abgebildete Dateien - + POSIX-compliant POSIX-konform - + Simple pread/pwrite - + Einfaches pread/pwrite - + Disk IO type (requires restart) Festplatten-IO-Typ (Neustart benötigt) - - + + Disable OS cache Systemcache deaktivieren - + Disk IO read mode Festplatten IO-Lesemodus - + Write-through Durchschrift - + Disk IO write mode Festplatten IO-Schreibmodus - + Send buffer watermark Schwellenwert für Sendepuffer - + Send buffer low watermark Schwellenwert für niedrigen Sendepuffer - + Send buffer watermark factor Faktor für Schwellenwert bei Sendepuffer - + Outgoing connections per second Ausgehende Verbindungen pro Sekunde - - + + 0 (system default) 0 (Systemstandard) - + Socket send buffer size [0: system default] Socket-Sendepuffergröße [0: Systemvorgabe] - + Socket receive buffer size [0: system default] Socket-Empfangspuffergröße [0: Systemvorgabe] - + Socket backlog size Socket-Backlog-Größe - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Speicherintervall für Statistiken [0: deaktiviert] - + .torrent file size limit .torrent Dateigrößenbegrenzung - + Type of service (ToS) for connections to peers Servicetyp (ToS) für die Verbindung zu Peers - + Prefer TCP TCP bevorzugen - + Peer proportional (throttles TCP) Gleichmäßig f. Peers (drosselt TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Internationalisierten Domain-Namen (IDN) verwenden - + Allow multiple connections from the same IP address Erlaube mehrere Verbindungen von derselben IP-Adresse - + Validate HTTPS tracker certificates HTTPS-Tracker-Zertifikate überprüfen - + Server-side request forgery (SSRF) mitigation Schutz vor serverseitiger Anforderungsfälschung (SSRF) - + Disallow connection to peers on privileged ports Verbindung zu privilegierten Ports nicht zulassen - + It appends the text to the window title to help distinguish qBittorent instances Der Text wird an den Fenstertitel angehängt, um qBittorent-Instanzen zu unterscheiden - + Customize application instance name Name der Anwendungsinstanz anpassen - + It controls the internal state update interval which in turn will affect UI updates Es steuert das Intervall für die interne Statusaktualisierung, was sich auch auf die Aktualisierungen der Benutzeroberfläche auswirkt. - + Refresh interval Aktualisierungsintervall - + Resolve peer host names Hostnamen der Peers auflösen - + IP address reported to trackers (requires restart) Angegebene IP-Adresse bei Trackern (Neustart benötigt) - + Port reported to trackers (requires restart) [0: listening port] - + Port, der an die Tracker gemeldet wird (Neustart erforderlich) [0: Port, auf dem gelauscht wird] - + Reannounce to all trackers when IP or port changed Erneute Benachrichtigung an alle Tracker, wenn IP oder Port geändert wurden - + Enable icons in menus Icons in Menüs anzeigen - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Portweiterleitung für eingebetteten Tracker aktivieren - + Enable quarantine for downloaded files Aktiviere Quarantäne-Option für heruntergeladene Dateien - + Enable Mark-of-the-Web (MOTW) for downloaded files Aktiviere 'Mark-of-the-Web' (MOTW) für heruntergeladene Dateien - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Beeinflusst die Zertifikatsvalidierung und Aktivitäten außerhalb des Torrent-Protokolls (z. B. RSS-Feeds, Programmaktualisierungen, Torrent-Dateien, GeoIP-DB usw.) - + Ignore SSL errors - + SSL-Fehler ignorieren - + (Auto detect if empty) - (Automatische Erkennung wenn leer) + (Automatische Erkennung, wenn leer) - + Python executable path (may require restart) Pfad für die Python Ausführungsdatei (ev. Neustart erforderlich) - + Start BitTorrent session in paused state - + Starte die BitTorrent-Sitzung mit angehaltenen Torrents - + sec seconds - Sek. + Sek. - + -1 (unlimited) - + -1 (unbegrenzt) - + BitTorrent session shutdown timeout [-1: unlimited] - + Zeitüberschreitung beim Herunterfahren der BitTorrent-Sitzung [-1: unbegrenzt] - + Confirm removal of tracker from all torrents Entfernen des Tracker von allen Torrents bestätigen - + Peer turnover disconnect percentage Peer-Verbindungsabbruch-Prozentsatz - + Peer turnover threshold percentage Peer-Verbindungsabbruch-Schwelle - + Peer turnover disconnect interval Peer-Umsatz-Trennungsintervall - + Resets to default if empty - Standardeinstellung wenn leer + Standardeinstellung, wenn leer - + DHT bootstrap nodes DHT-Bootstrap-Knotenpunkte - + I2P inbound quantity i2p eingehende Tunnelanzahl - + I2P outbound quantity i2p ausgehende Tunnelanzahl - + I2P inbound length I2P-EIngangslänge - + I2P outbound length I2P-Ausgangslänge - + Display notifications Benachrichtigungen anzeigen - + Display notifications for added torrents Benachrichtigungen für hinzugefügte Torrents anzeigen - + Download tracker's favicon Tracker-Favicons herunterladen - + Save path history length Länge der Speicherpfad-Historie - + Enable speed graphs Geschwindigkeits-Grafiken einschalten - + Fixed slots Feste Slots - + Upload rate based Basierend auf Uploadrate - + Upload slots behavior Verhalten für Upload-Slots - + Round-robin Ringverteilung - + Fastest upload Schnellster Upload - + Anti-leech Gegen Sauger - + Upload choking algorithm Regel für Upload-Drosselung - + Confirm torrent recheck Überprüfung des Torrents bestätigen - + Confirm removal of all tags Entfernen aller Labels bestätigen - + Always announce to all trackers in a tier Immer bei allen Trackern einer Ebene anmelden - + Always announce to all tiers Immer bei allen Ebenen anmelden - + Any interface i.e. Any network interface Beliebiges Interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP Algorithmus für gemischten Modus - + Resolve peer countries Herkunftsländer der Peers auflösen - + Network interface Netzwerk Interface - + Optional IP address to bind to Optionale IP-Adresse binden an - + Max concurrent HTTP announces Max. gleichzeitige HTTP-Ansagen - + Enable embedded tracker Eingebetteten Tracker aktivieren - + Embedded tracker port Port des eingebetteten Trackers @@ -1382,142 +1393,142 @@ Invalid directory path - + Ungültiger Verzeichnis-Pfad Directory does not exist - + Verzeichnis existiert nicht Invalid mode, allowed values: %1 - + Ungültiger Modus; erlaubte Werte: %1 cookies must be array - + Cookies müssen eine Anordnung sein Application - + Running in portable mode. Auto detected profile folder at: %1 Laufe im portablen Modus. Automatisch erkannter Profilordner: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Redundantes Befehlszeilen-Flag erkannt: "%1". Der portable Modus erfordert ein relativ schnelles Wiederaufnehmen. - + Using config directory: %1 Verwende Konfigurations-Verzeichnis: %1 - + Torrent name: %1 Name des Torrent: %1 - + Torrent size: %1 Größe des Torrent: %1 - + Save path: %1 Speicherpfad: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Der Torrent wurde in %1 heruntergeladen. - - + + Thank you for using qBittorrent. Danke für die Benutzung von qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, Mailnachricht wird versendet - + Add torrent failed Hinzufügen vom Torrent fehlgeschlagen - + Couldn't add torrent '%1', reason: %2. Konnte Torrent '%1' nicht hinzufügen. Grund: %2. - + The WebUI administrator username is: %1 Der Administrator-Name für das Webinterface lautet: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Es ist kein Administrator-Name für das Webinterface vergeben. Ein temporäres Passwort für diese Sitzung wird erstellt: %1 - + You should set your own password in program preferences. Es sollte ein eigenes Passwort in den Programmeinstellungen vergeben werden. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Das Webinterface ist deaktiviert! Die Konfigurationsdatei manuell editieren um es zu aktivieren. - + Running external program. Torrent: "%1". Command: `%2` Externes Programm läuft. Torrent: "%1". Befehl: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Konnte externes Programm nicht starten. Torrent: "%1". Befehl: `%2` - + Torrent "%1" has finished downloading Torrent '%1' wurde vollständig heruntergeladen - + WebUI will be started shortly after internal preparations. Please wait... Das Webinterface startet gleich nach ein paar internen Vorbereitungen. Bitte warten ... - - + + Loading torrents... Lade Torrents ... - + E&xit &Beenden - + I/O Error i.e: Input/Output Error I/O-Fehler - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Grund: '%2' - + Torrent added Torrent hinzugefügt - + '%1' was added. e.g: xxx.avi was added. '%1' wurde hinzugefügt. - + Download completed Download abgeschlossen - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 gestartet. Prozess-ID: %2 - + This is a test email. - + Das ist eine Test-Email. - + Test email - + Test-Email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' wurde vollständig heruntergeladen. - + Information Informationen - + To fix the error, you may need to edit the config file manually. - Um den Fehler zu beheben ist es erforderlich die Konfigurationsdatei händisch zu bearbeiten. + Um den Fehler zu beheben, ist es erforderlich die Konfigurationsdatei händisch zu bearbeiten. - + To control qBittorrent, access the WebUI at: %1 - Um qBittorrent zu steuern benutze das Webinterface mit: %1 + Um qBittorrent zu steuern, benutze das Webinterface mit: %1 - + Exit Beenden - + Recursive download confirmation Rekursiven Download bestätigen - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Der Torrent '%1' enthält weitere .torrent-Dateien. Sollen diese auch heruntergeladen werden? - + Never Niemals - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekursives Herunterladen einer .torrent-Datei innerhalb eines Torrents. Quell-Torrent: "%1". Datei: "%2". - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Das Limit für die Nutzung des physischen Speichers (RAM) konnte nicht gesetzt werden. Fehlercode: %1. Fehlermeldung: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Konnte die harte Grenze für die Nutzung des physischen Speichers (RAM) nicht setzen. Angeforderte Größe: %1. Harte Systemgrenze: %2. Fehlercode: %3. Fehlermeldung: "%4" - + qBittorrent termination initiated Abbruch von qBittorrent eingeleitet - + qBittorrent is shutting down... qBittorrent wird beendet ... - + Saving torrent progress... Torrent-Fortschritt wird gespeichert - + qBittorrent is now ready to exit qBittorrent kann nun beendet werden @@ -1721,7 +1732,7 @@ Grund: '%2' Smart Episode Filter will check the episode number to prevent downloading of duplicates. Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also support - as a separator) - Der Smart-Folgenfilter überprüft die Folgennummer um das doppelte Herunterladen zu vermeiden. + Der Smart-Folgenfilter überprüft die Folgennummer, um das doppelte Herunterladen zu vermeiden. Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Formate werden auch unterstützt, allerdings als Trennung) @@ -1758,271 +1769,271 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form &Import... - &Importieren... + &Importieren ... &Export... - &Exportieren... + &Exportieren ... - + Matches articles based on episode filter. Wählt Artikel gemäß Folgenfilter aus. - + Example: Beispiel: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match passt zu Folge 2, 5, 8 bis 15, 30 und weiteren Folgen von Staffel eins - + Episode filter rules: Folgenfilterregeln: - + Season number is a mandatory non-zero value Staffel-Nummer ist zwingend ein Wert ungleich Null - + Filter must end with semicolon Filter müssen mit einem Strichpunkt enden - + Three range types for episodes are supported: Drei Bereichstypen für Folgen werden unterstützt: - + Single number: <b>1x25;</b> matches episode 25 of season one Einzeln: <b>1x25;</b> passt zur Folge 25 von Staffel eins - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Bereich: <b>1x25-40;</b> passt zu den Folgen 25 bis 40 von Staffel eins - + Episode number is a mandatory positive value Folgen-Nummer ist zwingend ein positiver Wert - + Rules Regeln - + Rules (legacy) Regeln (Historie) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Endloser Bereich: <b>1x25-;</b> passt zu Folge 25 und allen folgenden Folgen von Staffel eins sowie aller Folgen weiterer Staffeln - + Last Match: %1 days ago Letzte Übereinstimmung: vor %1 Tagen - + Last Match: Unknown Letzte Übereinstimmung: Unbekannt - + New rule name Name der neuen Regel - + Please type the name of the new download rule. Bitte einen Namen für die neue Downloadregel eingeben. - - + + Rule name conflict Konflikt mit Regelnamen - - + + A rule with this name already exists, please choose another name. - Eine Regel mit diesem Namen existiert bereits bitte einen anderen Namen wählen. + Eine Regel mit diesem Namen existiert bereits. Bitte einen anderen Namen wählen. - + Are you sure you want to remove the download rule named '%1'? Soll die Downloadregel '%1' wirklich entfernt werden? - + Are you sure you want to remove the selected download rules? Sollen die gewählten Downloadregeln wirklich entfernt werden? - + Rule deletion confirmation Regellöschung bestätigen - + Invalid action Ungültige Aktion - + The list is empty, there is nothing to export. Die Liste ist leer, es gibt nichts zu exportieren. - + Export RSS rules RSS-Regeln exportieren - + I/O Error I/O Fehler - + Failed to create the destination file. Reason: %1 Fehler beim Erstellen der Zieldatei. Grund: %1 - + Import RSS rules RSS-Regeln importieren - + Failed to import the selected rules file. Reason: %1 Import der ausgewählten Regeldatei fehlgeschlagen. Grund: %1 - + Add new rule... Neue Regel hinzufügen ... - + Delete rule Regel löschen - + Rename rule... Regel umbenennen ... - + Delete selected rules Gewählte Regeln löschen - + Clear downloaded episodes... - Entferne bereits heruntergeladene Folgen... + Entferne bereits heruntergeladene Folgen ... - + Rule renaming Regelumbenennung - + Please type the new rule name Bitte einen Namen für die neue Regel eingeben - + Clear downloaded episodes Entferne bereits heruntergeladene Folgen - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Soll wirklich die Liste mit heruntergeladenen Folgen für die gewählte Regel entfernt werden? - + Regex mode: use Perl-compatible regular expressions Regex-Modus: Perl-kompatible reguläre Ausdrücke verwenden - - + + Position %1: %2 Position %1: %2 - + Wildcard mode: you can use Platzhaltermodus: Sie können Folgendes verwenden - - + + Import error Fehler beim Import - + Failed to read the file. %1 Konnte die Datei nicht lesen. %1 - + ? to match any single character ? um mit irgendeinem Zeichen übereinzustimmen - + * to match zero or more of any characters * um mit keinem oder irgendwelchen Zeichen übereinzustimmen - + Whitespaces count as AND operators (all words, any order) Leerzeichen zählen als UND-Operatoren (alle Wörter, beliebige Reihenfolge) - + | is used as OR operator | wird als ODER-Operator verwendet - + If word order is important use * instead of whitespace. - Wenn die Wortreihenfolge wichtig ist * anstelle von Leerzeichen verwenden + Wenn die Wortreihenfolge wichtig ist, * anstelle von Leerzeichen verwenden - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Ein Ausdruck mit einer leeren Klausel %1 (z.B. %2) - + will match all articles. wird mit allen Artikeln übereinstimmen. - + will exclude all articles. wird alle Artikel ausschließen. @@ -2074,28 +2085,38 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Fortsetzungsdaten können nicht analysiert werden: Ungültiges Format - - + + Cannot parse torrent info: %1 Torrent-Infos können nicht analysiert werden: %1 - + Cannot parse torrent info: invalid format Torrent-Infos können nicht analysiert werden: Ungültiges Format - + Mismatching info-hash detected in resume data Nicht übereinstimmender Info-Hash in den Resume-Daten entdeckt - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Die Torrent-Metadaten konnte nicht nach '%1' gespeichert werden. Fehler: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Speichern der Fortsetzungsdaten nach '%1' fehlgeschlagen. Fehler: %2. @@ -2106,16 +2127,17 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form + Cannot parse resume data: %1 Fortsetzungsdaten können nicht analysiert werden: %1 - + Resume data is invalid: neither metadata nor info-hash was found Fortsetzungsdaten sind ungültig: weder Metadaten noch Info-Hash wurden gefunden - + Couldn't save data to '%1'. Error: %2 Speichern der Daten nach '%1' fehlgeschlagen. Fehler: %2 @@ -2123,38 +2145,60 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form BitTorrent::DBResumeDataStorage - + Not found. Nicht gefunden. - + Couldn't load resume data of torrent '%1'. Error: %2 Laden der Fortsetzungsdaten von Torrent '%1' fehlgeschlagen. Fehler: %2 - - + + Database is corrupted. Datenbank ist fehlerhaft. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Der Write-Ahead Logging (WAL) Protokollmodus konnte nicht aktiviert werden. Fehler: %1. - + Couldn't obtain query result. Das Abfrageergebnis konnte nicht abgerufen werden. - + WAL mode is probably unsupported due to filesystem limitations. Der WAL Modus ist wahrscheinlich aufgrund von Dateisystem Limitierungen nicht unterstützt. - + + + Cannot parse resume data: %1 + Fortsetzungsdaten können nicht analysiert werden: %1 + + + + + Cannot parse torrent info: %1 + Torrent-Infos können nicht analysiert werden: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Konnte Vorgang nicht starten. Fehler: %1 @@ -2162,22 +2206,22 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Konnte Torrent-Metadaten nicht speichern. Fehler: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Starten der Fortsetzungsdaten von Torrent '%1' fehlgeschlagen. Fehler: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Löschen der Fortsetzungsdaten von Torrent '%1' fehlgeschlagen. Fehler: %2 - + Couldn't store torrents queue positions. Error: %1 Konnte Position der Torrent-Warteschlange nicht speichern. Fehler: %1 @@ -2185,530 +2229,507 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Unterstützung der verteilten Hash-Tabelle (DHT): %1 - - - - - - - - - + + + + + + + + + ON EIN - - - - - - - - - + + + + + + + + + OFF AUS - - + + Local Peer Discovery support: %1 Unterstützung von Lokalen Peers (LPD): %1 - + Restart is required to toggle Peer Exchange (PeX) support Neustart erforderlich, um Peer-Exchange-Unterstützung (PeX) zu aktivieren - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrent konnte nicht fortgesetzt werden. Torrent: "%1". Grund: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Konnte Torrent nicht fortsetzen: ungültige Torrent-ID entdeckt. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Ungültige Daten entdeckt: Kategorie fehlt in der Konfigurationsdatei. Die Kategorie wird wiederhergestellt, aber ihre Einstellungen werden auf die Standardwerte zurückgesetzt. Torrent: "%1". Kategorie: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Ungültige Daten entdeckt: ungültige Kategorie. Torrent: "%1". Kategorie: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Es wurde eine Unstimmigkeit zwischen den Speicherpfaden der wiederhergestellten Kategorie und dem aktuellen Speicherpfad des Torrent festgestellt. Der Torrent wird jetzt in den manuellen Modus umgeschaltet. Torrent: "%1". Kategorie: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Ungültige Daten entdeckt: Label fehlt in der Konfigurationsdatei. Das Label wird wiederhergestellt. Torrent: "%1". Label: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Ungültige Daten entdeckt: ungültiges Label. Torrent: "%1". Label: "%2" - + System wake-up event detected. Re-announcing to all the trackers... System aus dem Ruhezustand erwacht. Erneute Ankündigung an alle Tracker ... - + Peer ID: "%1" Peer-ID: "%1" - + HTTP User-Agent: "%1" HTTP Benutzer-Agent: "%1" - + Peer Exchange (PeX) support: %1 Peer-Exchange (PeX) Unterstützung %1 - - + + Anonymous mode: %1 Anonymer Modus: %1 - - + + Encryption support: %1 Verschlüsselungsunterstützung: %1 - - + + FORCED ERZWUNGEN - + Could not find GUID of network interface. Interface: "%1" Die GUID der Netzwerkadresse wurde nicht gefunden. Schnittstelle: "%1" - + Trying to listen on the following list of IP addresses: "%1" Es wird versucht auf folgender Liste von IP-Adressen zu lauschen: "%1" - + Torrent reached the share ratio limit. Der Torrent hat das Limit für das Shareverhältnis erreicht. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent gelöscht. - - - Removed torrent and deleted its content. - Torrent und seine Inhalte gelöscht. - - - Torrent paused. - Torrent pausiert. - - - + Super seeding enabled. Super-Seeding aktiviert. - + Torrent reached the seeding time limit. Torrent hat das Zeitlimit für das Seeding erreicht. - + Torrent reached the inactive seeding time limit. Der Torrent hat die Grenze der inaktiven Seed-Zeit erreicht. - + Failed to load torrent. Reason: "%1" Der Torrent konnte nicht geladen werden. Grund: "%1" - + I2P error. Message: "%1". I2P-Fehler. Nachricht: "%1". - + UPnP/NAT-PMP support: ON UPnP / NAT-PMP Unterstützung: EIN - + Saving resume data completed. - + Speicherung der Fortsetzungsdaten abgeschlossen. - + BitTorrent session successfully finished. - + BitTorrent-Sitzung erfolgreich beendet. - + Session shutdown timed out. - + Das Herunterfahren der Sitzung wurde abgebrochen. - + Removing torrent. - + Entferne Torrent. - + Removing torrent and deleting its content. - + Torrent und seine Inhalte werden gelöscht. - + Torrent stopped. - + Torrent angehalten. - + Torrent content removed. Torrent: "%1" - + Inhalt des Torrent entfernt. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Inhalt des Torrent konnte nicht gelöscht werden. Torrent: "%1". Fehler: "%2" - + Torrent removed. Torrent: "%1" - + Torrent entfernt. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Das Hinzufügen eines doppelten Torrents wurde erkannt. Bestehender Torrent: %1. Ergebnis: %2 - + Merging of trackers is disabled - Zusammenführen der Tracker ist deaktiviert. + Zusammenführen der Tracker ist deaktiviert. - + Trackers cannot be merged because it is a private torrent - Tracker können wegen privatem Torrent nicht zusammengeführt werden. + Tracker können wegen privatem Torrent nicht zusammengeführt werden. - + Trackers are merged from new source - Tracker wurden von der neuen Quelle zusammengeführt. + Tracker wurden von der neuen Quelle zusammengeführt. - + UPnP/NAT-PMP support: OFF UPnP / NAT-PMP Unterstützung: AUS - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Torrent konnte nicht exportiert werden. Torrent: "%1". Ziel: "%2". Grund: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Speicherung der Fortsetzungsdaten abgebrochen. Anzahl der ausstehenden Torrents: %1 - + The configured network address is invalid. Address: "%1" Die konfigurierte Netzwerkadresse ist ungültig. Adresse: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Die konfigurierte Netzwerkadresse zum Lauschen konnte nicht gefunden werden. Adresse: "%1" - + The configured network interface is invalid. Interface: "%1" Die konfigurierte Netzwerkadresse ist ungültig. Schnittstelle: "%1" - + Tracker list updated - + Tracker-Liste aktualisiert - + Failed to update tracker list. Reason: "%1" - + Konnte Tracker-Liste nicht aktualisieren. Grund: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Ungültige IP-Adresse beim Anwenden der Liste der gebannten IP-Adressen zurückgewiesen. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Tracker wurde dem Torrent hinzugefügt. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Tracker wurde vom Torrent entfernt. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL-Seed wurde dem Torrent hinzugefügt. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL-Seed aus dem Torrent entfernt. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Teildatei konnte nicht entfernt werden. Torrent: "%1". Grund: "%2". - Torrent paused. Torrent: "%1" - Torrent pausiert. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent fortgesetzt. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent erfolgreich heruntergeladen. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Verschieben des Torrent abgebrochen. Torrent: "%1". Quelle: "%2". Ziel: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent angehalten. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Torrent-Verschiebung konnte nicht in die Warteschlange gestellt werden. Torrent: "%1". Quelle: "%2". Ziel: "%3". Grund: Der Torrent wird gerade zum Zielort verschoben. - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Torrent-Verschiebung konnte nicht in die Warteschlange gestellt werden. Torrent: "%1". Quelle: "%2". Ziel: "%3". Grund: Beide Pfade zeigen auf den gleichen Ort - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrent-Verschiebung in der Warteschlange. Torrent: "%1". Quelle: "%2". Ziel: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Starte Torrent-Verschiebung. Torrent: "%1". Ziel: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Konnte die Konfiguration der Kategorien nicht speichern. Datei: "%1". Fehler: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Die Konfiguration der Kategorien konnte nicht analysiert werden. Datei: "%1". Fehler: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Die IP-Filterdatei wurde erfolgreich analysiert. Anzahl der angewandten Regeln: %1 - + Failed to parse the IP filter file Konnte die IP-Filterdatei nicht analysieren - + Restored torrent. Torrent: "%1" Torrent wiederhergestellt. Torrent: "%1" - + Added new torrent. Torrent: "%1" Neuer Torrent hinzugefügt. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent mit Fehler. Torrent: "%1". Fehler: "%2" - Removed torrent. Torrent: "%1" - Torrent entfernt. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent und seine Inhalte gelöscht. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent fehlen SSL-Parameter. Torrent: "%1". Nachricht: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Dateifehlerwarnung. Torrent: "%1". Datei: "%2". Grund: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP: Fehler beim Portmapping. Meldung: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Erfolgreiches UPnP/NAT-PMP Portmapping. Meldung: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP-Filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). Gefilterter Port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). Bevorzugter Port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL-Seed-Verbindung gescheitert. Torrent: "%1". URL: "%2". Fehler: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" Bei der BitTorrent-Sitzung ist ein schwerwiegender Fehler aufgetreten. Grund: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 Proxy Fehler. Adresse: %1. Nachricht: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 Beschränkungen für gemischten Modus - + Failed to load Categories. %1 Konnte die Kategorien nicht laden. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Konnte die Kategorie-Konfiguration nicht laden. Datei: "%1". Fehler: "Ungültiges Datenformat" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent entfernt aber seine Inhalte und/oder Teildateien konnten nicht gelöscht werden. Torrent: "%1". Fehler: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 ist deaktiviert - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 ist deaktiviert - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - DNS-Lookup vom URL-Seed fehlgeschlagen. Torrent: "%1". URL: "%2". Fehler: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Fehlermeldung vom URL-Seed erhalten. Torrent: "%1". URL: "%2". Nachricht: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Lausche erfolgreich auf dieser IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Konnte auf der IP nicht lauschen. IP: "%1". Port: "%2/%3". Grund: "%4" - + Detected external IP. IP: "%1" Externe IP erkannt. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Fehler: Interne Warnungswarteschlange voll und Warnungen wurden gelöscht. Möglicherweise ist die Leistung beeinträchtigt. Abgebrochener Alarmtyp: "%1". Nachricht: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent erfolgreich verschoben. Torrent: "%1". Ziel: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrent konnte nicht verschoben werden. Torrent: "%1". Quelle: "%2". Ziel: "%3". Grund: "%4" @@ -2758,47 +2779,47 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Konnte nicht in Datei schreiben. Grund: "%1". Der Torrent ist jetzt im Modus "nur seeden". - + Download first and last piece first: %1, torrent: '%2' Erste und letzte Teile zuerst laden: %1, Torrent: '%2' - + On Ein - + Off Aus - + Failed to reload torrent. Torrent: %1. Reason: %2 Torrent konnte nicht wieder geladen werden. Torrent: %1. Grund: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Erstellen der Fortsetzungsdatei fehlgeschlagen. Torrent: "%1". Grund: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrent konnte nicht wiederhergestellt werden. Entweder wurden Dateien verschoben oder auf den Speicher kann nicht zugegriffen werden. Torrent: "%1". Grund: "%2" - + Missing metadata Fehlende Metadaten - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Umbenennen der Datei fehlgeschlagen. Torrent: "%1", Datei: "%2", Grund: "%3" - + Performance alert: %1. More info: %2 Leistungsalarm: %1. Mehr Info: %2 @@ -2835,11 +2856,6 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Expected integer number in environment variable '%1', but got '%2' Erwarte Ganzzahl in Umgebungsvariable '%1', bekam jedoch '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' benötigt folgende Syntax: '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' benötigt folgende Syntax: '%1=%2' + Parameter '%1' benötigt folgende Syntax: '%1=%2' @@ -2968,11 +2984,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Add torrents as running or stopped - - - - Add torrents as started or paused - Neue Torrents starten oder pausieren + Torrents als gestartet oder angehalten hinzufügen @@ -2982,7 +2994,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Assign torrents to category. If the category doesn't exist, it will be created. - Weise Torrents Kategorien zu. Wenn die Kategorie nicht existiert wird sie erstellt. + Weise Torrents Kategorien zu. Wenn die Kategorie nicht existiert, wird sie erstellt. @@ -3002,7 +3014,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Option values may be supplied via environment variables. For option named 'parameter-name', environment variable name is 'QBT_PARAMETER_NAME' (in upper case, '-' replaced with '_'). To pass flag values, set the variable to '1' or 'TRUE'. For example, to disable the splash screen: - Optionswerte können von Umgebungsvariablen geliefert werden. Für eine Option mit dem Namen 'parameter-name' lautet der Name "QBT_PARAMETER_NAME' (in Großbuchstaben, '-' ersetzt durch '_'). Um die Werte zu akzeptieren, die Variable auf '1' oder 'WAHR' setzen. Z.B. um den Startbildschirm zu deaktivieren: + Optionswerte können von Umgebungsvariablen geliefert werden. Für eine Option mit dem Namen 'parameter-name' lautet der Name "QBT_PARAMETER_NAME' (in Großbuchstaben, '-' ersetzt durch '_'). Um die Werte zu akzeptieren, die Variable auf '1' oder 'WAHR' setzen. Z.B., um den Startbildschirm zu deaktivieren: @@ -3063,20 +3075,12 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Start torrents - + Torrents starten Stop torrents - - - - Resume torrents - Torrents fortsetzen - - - Pause torrents - Torrents pausieren + Torrents anhalten @@ -3099,7 +3103,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form System - + System @@ -3174,11 +3178,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Also remove the content files - - - - Also permanently delete the files - Die Dateien auch dauerhaft löschen + Auch die Inhaltsdateien dauerhaft löschen @@ -3390,47 +3390,43 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Pattern Format - + Vorlagenformat Plain text - + Nur Text Wildcards - + Wildcards Regular expression - + Regulärer Ausdruck GUIAddTorrentManager - + Downloading torrent... Source: "%1" Lade Torrent herunter ... Quelle: "%1" - Trackers cannot be merged because it is a private torrent - Tracker können wegen privatem Torrent nicht zusammengeführt werden. - - - + Torrent is already present Dieser Torrent ist bereits vorhanden - + Trackers cannot be merged because it is a private torrent. - + Tracker können wegen privatem Torrent nicht zusammengeführt werden. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' befindet sich bereits in der Liste der Downloads. Sollen die Tracker von der neuen Quelle zusammengeführt werden? @@ -3548,6 +3544,40 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Unterstützte Bilddateien + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Das Power Management hat eine geeignete D-Bus-Schnittstelle gefunden. Schnittstelle: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Fehler im Power Management. Aktion: %1. Fehler: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Unerwarteter Fehler im Power Management. Status: %1. Fehler: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3558,7 +3588,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form qBittorrent is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. - qBittorrent ist ein Filesharing Programm. Sobald ein Torrent im Programm läuft wird der Inhalt auch anderen durch Upload zur Verfügung gestellt. Das Teilen jeglicher Inhalte geschieht auf eigene Verantwortung. + qBittorrent ist ein Filesharing Programm. Sobald ein Torrent im Programm läuft, wird der Inhalt auch anderen durch Upload zur Verfügung gestellt. Das Teilen jeglicher Inhalte geschieht auf eigene Verantwortung. @@ -3608,7 +3638,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Run application with -h option to read about command line parameters. - Programm mit -h starten um Info über Kommandozeilen-Parameter zu erhalten. + Programm mit -h starten, um Info über Kommandozeilen-Parameter zu erhalten. @@ -3629,7 +3659,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form qBittorrent has encountered an unrecoverable error. - qBittorrent ist auf einen nicht behebbarer Fehler gestoßen. + qBittorrent ist auf einen nicht behebbaren Fehler gestoßen. @@ -3689,10 +3719,6 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form &Options... &Optionen ... - - &Resume - Fo&rtsetzen - &Remove @@ -3762,7 +3788,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Sh&utdown System - + System her&unterfahren @@ -3774,10 +3800,6 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Close Window Fenster schließen - - R&esume All - Alle forts&etzen - Manage Cookies... @@ -3816,27 +3838,27 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Sta&rt - + Sta&rt Sto&p - + An&halten R&esume Session - + Sitzung forts&etzen Pau&se Session - + &Sitzung anhalten Set Global Speed Limits... - Globale Geschwindigkeitsbegrenzungen einstellen... + Globale Geschwindigkeitsbegrenzungen einstellen ... @@ -3893,10 +3915,6 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form &Hibernate System &Ruhezustand - - S&hutdown System - System &herunterfahren - &Statistics @@ -3917,18 +3935,10 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form &About &Über - - &Pause - &Pausieren - - - P&ause All - A&lle anhalten - &Add Torrent File... - Torrent-D&atei hinzufügen... + Torrent-D&atei hinzufügen ... @@ -3958,408 +3968,403 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form - + Show Anzeigen - + Check for program updates Auf Programm-Updates prüfen Add Torrent &Link... - Torrent-&Link hinzufügen... + Torrent-&Link hinzufügen ... If you like qBittorrent, please donate! - Bitte unterstützen Sie qBittorrent wenn es Ihnen gefällt! + Bitte unterstützen Sie qBittorrent, wenn es Ihnen gefällt! - + Execution Log Ausführungs-Log - + Clear the password Passwort löschen - + &Set Password Passwort fe&stlegen - + Preferences Einstellungen - + &Clear Password Passwort lös&chen - + Transfers Übertragungen - - + + qBittorrent is minimized to tray qBittorrent wurde in die Statusleiste minimiert - - - + + + This behavior can be changed in the settings. You won't be reminded again. Dieses Verhalten kann in den Einstellungen geändert werden. Es folgt kein weiterer Hinweis. - + Icons Only Nur Icons - + Text Only Nur Text - + Text Alongside Icons Text neben Symbolen - + Text Under Icons Text unter Symbolen - + Follow System Style Dem Systemstil folgen - - + + UI lock password Passwort zum Entsperren - - + + Please type the UI lock password: Bitte das Passwort für den gesperrten qBittorrent-Bildschirm eingeben: - + Are you sure you want to clear the password? Soll das Passwort wirklich gelöscht werden? - + Use regular expressions Reguläre Ausdrücke verwenden - - + + Search Engine - Suchmaschine + Suchmaschine - + Search has failed - Suche fehlgeschlagen + Suche fehlgeschlagen - + Search has finished - Suche abgeschlossen + Suche abgeschlossen - + Search Suche - + Transfers (%1) Übertragungen (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent wurde soeben aktualisiert. Änderungen werden erst nach einem Neustart aktiv. - + qBittorrent is closed to tray qBittorrent wurde in die Statusleiste geschlossen - + Some files are currently transferring. Momentan werden Dateien übertragen. - + Are you sure you want to quit qBittorrent? Sind Sie sicher, dass sie qBittorrent beenden möchten? - + &No &Nein - + &Yes &Ja - + &Always Yes &Immer ja - + Options saved. Optionen gespeichert. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSIERT] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Die Python-Installation konnte nicht heruntergeladen werden. Fehler: %1. +Bitte manuell installieren. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Umbennen der Python-Installationsdatei fehlgeschlagen. Quelle: "%1". Ziel: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Erfolgreiche Installation von Python. + Exit code: %1. + Exit-Code: %1. + + + + Reason: installer crashed. + Grund: Installation abgestürzt. + + + Python installation failed. - + Installation von Python fehlgeschlagen. - + Launching Python installer. File: "%1". - + Führe die Python-Installation aus. Datei: "%1". - - + + Missing Python Runtime Fehlende Python-Laufzeitumgebung - + qBittorrent Update Available Aktualisierung von qBittorrent verfügbar - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - Python wird benötigt um die Suchmaschine benutzen zu können, scheint aber nicht installiert zu sein. + Python wird benötigt, um die Suchmaschine benutzen zu können, scheint aber nicht installiert zu sein. Soll Python jetzt installiert werden? - + Python is required to use the search engine but it does not seem to be installed. - Python wird benötigt um die Suchmaschine benutzen zu können, scheint aber nicht installiert zu sein. + Python wird benötigt, um die Suchmaschine benutzen zu können, scheint aber nicht installiert zu sein. - - + + Old Python Runtime Veraltete Python-Laufzeitumgebung - + A new version is available. Eine neue Version ist verfügbar. - + Do you want to download %1? Soll %1 heruntergeladen werden? - + Open changelog... Öffne Änderungsindex ... - + No updates available. You are already using the latest version. Keine Aktualisierung verfügbar, die neueste Version ist bereits installiert. - + &Check for Updates Auf Aktualisierungen prüfen - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Die Python-Version (%1) ist nicht mehr aktuell da mindestens Version %2 benötigt wird. Soll jetzt eine aktuellere Version installiert werden? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Die installierte Version von Python (%1) ist veraltet und sollte für die Funktion der Suchmaschine auf die aktuellste Version aktualisiert werden. Mindestens erforderlich ist: %2. - + Paused - Angehalten + Angehalten - + Checking for Updates... Prüfe auf Aktualisierungen ... - + Already checking for program updates in the background Überprüfung auf Programm-Aktualisierungen läuft bereits im Hintergrund - + Python installation in progress... - + Python wird gerade installiert ... - + Failed to open Python installer. File: "%1". - + Konnte die Python-Installation nicht öffnen. Datei: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Fehlgeschlagener Prüfsummencheck MD5 für die Python Installation. Datei: "%1". Aktuelle Prüfsumme: "%2". Erwartete Prüfsumme: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Fehlgeschlagener Prüfsummencheck SHA3-512 für die Python Installation. Datei: "%1". Aktuelle Prüfsumme: "%2". Erwartete Prüfsumme: "%3". - + Download error Downloadfehler - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python konnte nicht heruntergeladen werden; Grund: %1. -Bitte manuell installieren. - - - - + + Invalid password Ungültiges Passwort - + Filter torrents... Torrents filtern ... - + Filter by: Filtern nach: - + The password must be at least 3 characters long Das Passwort muss mindestens 3 Zeichen lang sein - - - + + + RSS (%1) RSS (%1) - + The password is invalid Das Passwort ist ungültig - + DL speed: %1 e.g: Download speed: 10 KiB/s DL-Geschw.: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s UL-Geschw.: %1 - + Hide Ausblenden - + Exiting qBittorrent Beende qBittorrent - + Open Torrent Files Öffne Torrent-Dateien - + Torrent Files Torrent-Dateien @@ -4556,7 +4561,7 @@ Bitte manuell installieren. SSL error, URL: "%1", errors: "%2" - + SSL-Fehler, URL: "%1", Fehler: "%2" @@ -5853,47 +5858,47 @@ Bitte manuell installieren. Net::Smtp - + Connection failed, unrecognized reply: %1 Verbindung fehlgeschlagen, nicht erkannte Antwort: %1 - + Authentication failed, msg: %1 Authentifizierung fehlgeschlagen, Nachricht: %1 - + <mail from> was rejected by server, msg: %1 <mail from> wurde vom Server zurückgewiesen, Nachricht: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> wurde vom Server zurückgewiesen, Nachricht: %1 - + <data> was rejected by server, msg: %1 <data> wurde vom Server zurückgewiesen, Nachricht: %1 - + Message was rejected by the server, error: %1 Nachricht wurde vom Server zurückgewiesen, Fehler: %1 - + Both EHLO and HELO failed, msg: %1 Sowohl EHLO als auch HELO fehlgeschlagen, Nachricht: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - Der SMTP-Server scheint keinen unserer Authentifizierungsmodi [CRAM-MD5|PLAIN|LOGIN] zu unterstützen und überspringt die Authentifizierung, da er weiß, dass sie wahrscheinlich fehlschlagen wird... Server-Authentifizierungsmodi: %1 + Der SMTP-Server scheint keinen unserer Authentifizierungsmodi [CRAM-MD5|PLAIN|LOGIN] zu unterstützen und überspringt die Authentifizierung, da er weiß, dass sie wahrscheinlich fehlschlagen wird ... Server-Authentifizierungsmodi: %1 - + Email Notification Error: %1 Fehler bei der E-Mail Benachrichtigung: %1 @@ -5935,10 +5940,6 @@ Bitte manuell installieren. RSS RSS - - Web UI - Webinterface - Advanced @@ -5959,14 +5960,6 @@ Bitte manuell installieren. Confirm when deleting torrents Löschen von Torrents bestätigen - - Shows a confirmation dialog upon pausing/resuming all the torrents - Zeigt einen Bestätigungsdialog für "Pause/Alles fortsetzen" für die Torrents - - - Confirm "Pause/Resume all" actions - Bestätige "Pause/Alles fortsetzen" Aktionen - Use alternating row colors @@ -5983,10 +5976,6 @@ Bitte manuell installieren. Always Immer - - Paused torrents only - Nur pausierte Torrents - Action on double-click @@ -5997,10 +5986,6 @@ Bitte manuell installieren. Downloading torrents: Herunterladende Torrents: - - Start / Stop Torrent - Torrent starten / stoppen - @@ -6051,7 +6036,7 @@ Bitte manuell installieren. <html><head/><body><p>To set qBittorrent as default program for .torrent files and/or Magnet links<br/>you can use <span style=" font-weight:600;">Default Programs</span> dialog from <span style=" font-weight:600;">Control Panel</span>.</p></body></html> - <html><head/><body><p>Um qBittorrent als Standardprogramm für .torrent-Dateien und/oder Magnet-Links festzulegen <br/>verwendet man den<span style=" font-weight:600;">'Standardprogramme'</span> Dialog der <span style=" font-weight:600;">'Systemsteuerung'</span>.</p></body></html> + <html><head/><body><p>Um qBittorrent als Standardprogramm für .torrent-Dateien und/oder Magnet-Links festzulegen, <br/>verwendet man den<span style=" font-weight:600;">'Standardprogramme'</span> Dialog der <span style=" font-weight:600;">'Systemsteuerung'</span>.</p></body></html> @@ -6059,179 +6044,179 @@ Bitte manuell installieren. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Layout für Torrent-Inhalt: - + Original Original - + Create subfolder Erstelle Unterordner - + Don't create subfolder Erstelle keinen Unterordner - + The torrent will be added to the top of the download queue Der Torrent wird in der Warteschlange an erster Stelle hinzugefügt - + Add to top of queue The torrent will be added to the top of the download queue In der Warteschlange an erster Stelle hinzufügen - + When duplicate torrent is being added Wenn ein doppelter Torrent hinzugefügt wird - + Merge trackers to existing torrent Tracker zu bestehendem Torrent zusammenführen - + Keep unselected files in ".unwanted" folder Behalte abgewählte Dateien im Verzeichnis ".unwanted" - + Add... Hinzufügen ... - + Options.. Optionen ... - + Remove Entfernen - + Email notification &upon download completion Benachrichtigen, wenn der Download &fertig ist - + Send test email - + Test-Email senden - + Run on torrent added: - + Ausführen, wenn Torrent hinzugefügt: - + Run on torrent finished: - + Ausführen, wenn Torrent fertiggestellt: - + Peer connection protocol: Verbindungsprotokoll Peers: - + Any Zufällig - + I2P (experimental) I2P (experimentell) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Wenn der &quot;gemischte Modus&quot; aktiviert ist, können I2P Torrents auch Peers aus anderen Quellen als dem Tracker erhalten und sich mit regulären IPs verbinden, ohne dass eine Anonymisierung erfolgt. Dies kann nützlich sein, wenn der Benutzer nicht an der Anonymisierung von I2P interessiert ist, aber trotzdem in der Lage sein möchte, sich mit I2P-Peers zu verbinden.</p></body></html> - - - + Mixed mode Gemischter Modus - Some options are incompatible with the chosen proxy type! - Einige Optionen sind mit dem gewählten Proxy-Typ nicht kompatibel! + Einige Optionen sind mit dem gewählten Proxy-Typ nicht kompatibel! - + If checked, hostname lookups are done via the proxy Wenn diese Option aktiviert ist, erfolgt die Suche nach Hostnamen über den Proxy - + Perform hostname lookup via proxy Hostnamen-Suche über Proxy durchführen - + Use proxy for BitTorrent purposes Proxy für BitTorrent verwenden - + RSS feeds will use proxy RSS-Feeds werden nun Proxy verwenden - + Use proxy for RSS purposes Proxy für RSS-Zwecke verwenden - + Search engine, software updates or anything else will use proxy Suchmaschinen, Software-Updates oder andere Dinge verwenden Proxy - + Use proxy for general purposes Proxy für allgemeine Zwecke verwenden - + IP Fi&ltering IP-&Filterung - + Schedule &the use of alternative rate limits Benutzung von al&ternativen Verhältnisbegrenzungen verwenden - + From: From start time Von: - + To: To end time Bis: - + Find peers on the DHT network Finde Peers im DHT-Netzwerk - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Verschlüsselung verlangen: Nur mit Peers verbinden mit Protokoll-Verschlüsselu Verschlüsselung deaktivieren: Nur mit Peers ohne Prokokoll-Verschlüsselung verbinden - + Allow encryption Verschlüsselung erlauben - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Mehr Information</a>) - + Maximum active checking torrents: Max. Anzahl aktiver Prüfungen v. Torrents: - + &Torrent Queueing Warteschlange für &Torrents - + When total seeding time reaches Wenn die gesamte Seed-Zeit erreicht hat: - + When inactive seeding time reaches Wenn die inaktive Seed-Zeit erreicht hat: - A&utomatically add these trackers to new downloads: - Diese Tracker a&utomatisch zu neuen Downloads hinzufügen: - - - + RSS Reader RSS-Reader - + Enable fetching RSS feeds Aktiviere RSS-Feeds - + Feeds refresh interval: Aktualisierungsintervall für RSS-Feeds: - + Same host request delay: Gleiche Host-Anforderungsverzögerung: - + Maximum number of articles per feed: Maximale Anzahl der Artikel pro Feed: - - - + + + min minutes Min. - + Seeding Limits Seed-Grenzen - Pause torrent - Torrent pausieren - - - + Remove torrent Torrent entfernen - + Remove torrent and its files Entferne Torrent und seine Dateien - + Enable super seeding for torrent Super-Seeding für Torrent aktivieren - + When ratio reaches Wenn das Verhältnis erreicht ist - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Torrent anhalten - + A&utomatically append these trackers to new downloads: - + Diese Tracker a&utomatisch zu neuen Downloads hinzufügen: - + Automatically append trackers from URL to new downloads: - + Tracker dieser URL automatisch zu neuen Downloads hinzufügen: - + URL: - URL: + URL: - + Fetched trackers - + Abgerufene Tracker - + Search UI - + Suchoberfläche - + Store opened tabs - + Geöffnete Tabs speichern - + Also store search results - + Auch Suchergebnisse speichern - + History length - + Länge der Historie - + RSS Torrent Auto Downloader RSS-Torrent Automatik-Downloader - + Enable auto downloading of RSS torrents Aktiviere automatisches Herunterladen von RSS-Torrents - + Edit auto downloading rules... Regeln für automatisches Herunterladen ändern ... - + RSS Smart Episode Filter RSS Smart-Folgenfilter - + Download REPACK/PROPER episodes Lade REPACK/PROPER Episoden herunter - + Filters: Filter: - + Web User Interface (Remote control) Webuser-Interface (Fernbedienung) - + IP address: IP-Adresse: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Eingabe einer IPv4 oder IPv6-Adresse. Es kann "0.0.0.0" für jede IPv4 "::" für jede IPv6-Adresse, oder "*" für IPv4 und IPv6 eingegeben werden. - + Ban client after consecutive failures: Programm nach aufeinanderfolgenden Fehlern sperren: - + Never Nie - + ban for: Bannen für: - + Session timeout: Sitzungs-Auszeit: - + Disabled Deaktiviert - Enable cookie Secure flag (requires HTTPS) - Aktiviere Cookie Sicheres Flag (erfordert HTTPS) - - - + Server domains: Server Domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6475,41 +6458,41 @@ Um sich vor DNS-Rebinding-Attacken zu schützen, sollten hier Domain-Namen eingetragen weden, die vom Webinterface-Server verwendet werden. -Verwende ';' um mehrere Einträge zu trennen. +Verwende ';', um mehrere Einträge zu trennen. Platzhalter '*' kann verwendet werden. - + &Use HTTPS instead of HTTP HTTPS anstatt von HTTP ben&utzen - + Bypass authentication for clients on localhost Authentifizierung für Clients auf dem Localhost umgehen - + Bypass authentication for clients in whitelisted IP subnets Authentifizierung für Clients auf der Liste der erlaubten IP-Subnets umgehen - + IP subnet whitelist... Erlaubte IP-Subnets ... - + Use alternative WebUI - + Verwende alternatives Webinterface - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - Geben Sie Reverse-Proxy-IPs an (oder Subnetze, z.B. 0.0.0.0/24), um weitergeleitete Client-Adressen zu verwenden (Attribut X-Forwarded-For), verwenden Sie ';' um mehrere Einträge aufzuteilen. + Geben Sie Reverse-Proxy-IPs an (oder Subnetze, z.B. 0.0.0.0/24), um weitergeleitete Client-Adressen zu verwenden (Attribut X-Forwarded-For), verwenden Sie ';', um mehrere Einträge aufzuteilen. - + Upda&te my dynamic domain name Dynamischen Domainnamen akt&ualisieren @@ -6521,12 +6504,12 @@ Platzhalter '*' kann verwendet werden. Search - Suche + Suche WebUI - + Webinterface @@ -6541,29 +6524,29 @@ Platzhalter '*' kann verwendet werden. Style: - + Stil: Color scheme: - + Farbschema: Stopped torrents only - + Nur angehaltene Torrents Start / stop torrent - + Torrent starten / anhalten Open torrent options dialog - + Öffne Dialogfenster der Torrent-Optionen @@ -6604,7 +6587,7 @@ Platzhalter '*' kann verwendet werden. &Log Files - + Protoko&lldateien @@ -6622,99 +6605,99 @@ Platzhalter '*' kann verwendet werden. Lösche Sicherungen älter als: - + Show external IP in status bar - + Externe IP in der Titelleiste anzeigen - + When adding a torrent Sobald ein Torrent hinzugefügt wird - + Bring torrent dialog to the front Aktiviere das Dialogfenster - + The torrent will be added to download list in a stopped state - + Der Torrent wird der Liste im angehaltenen Zustand hinzugefügt - + Also delete .torrent files whose addition was cancelled - .torrent-Dateien auch löschen wenn das Hinzufügen abgebrochen wurde + .torrent-Dateien auch löschen, wenn das Hinzufügen abgebrochen wurde - + Also when addition is cancelled Auch wenn das Hinzufügen abgebrochen wurde - + Warning! Data loss possible! Achtung! Datenverlust ist möglich! - + Saving Management Speicherverwaltung - + Default Torrent Management Mode: Vorgabe-Modus für das Torrent-Management: - + Manual Manuell - + Automatic Automatisch - + When Torrent Category changed: Wenn die Torrent-Kategorie geändert wird: - + Relocate torrent Torrent verschieben - + Switch torrent to Manual Mode Wechsle den Torrent in den manuellen Modus - - + + Relocate affected torrents Betroffene Torrents verschieben - - + + Switch affected torrents to Manual Mode Wechsle betroffene Torrents in den manuellen Modus - + Use Subcategories Unterkategorien verwenden - + Default Save Path: Standardspeicherpfad: - + Copy .torrent files to: .torrent Dateien kopieren nach: @@ -6724,26 +6707,22 @@ Platzhalter '*' kann verwendet werden. &qBittorrent im Benachrichtigungsbereich anzeigen - &Log file - &Logdatei - - - + Display &torrent content and some options Zeige Inhalt des &Torrent und einige Optionen - + De&lete .torrent files afterwards .torrent-Dateien ansch&ließend löschen - + Copy .torrent files for finished downloads to: Kopiere die .torrent Dateien von beendeten Downloads nach: - + Pre-allocate disk space for all files Allen Dateien Speicherplatz im Vorhinein zuweisen @@ -6773,14 +6752,10 @@ Platzhalter '*' kann verwendet werden. Preview file, otherwise open destination folder Dateivorschau, sonst den Zielordner öffnen - - Show torrent options - Zeige die Torrent-Optionen - Shows a confirmation dialog when exiting with active torrents - Zeigt ein Bestätigungsfenster wenn mit aktiven Torrents beendet wird + Zeigt ein Bestätigungsfenster, wenn mit aktiven Torrents beendet wird @@ -6790,7 +6765,7 @@ Platzhalter '*' kann verwendet werden. The systray icon will still be visible when closing the main window - Das Symbol in der Taskleiste bleibt sichtbar auch wenn das Hauptfenster geschlossen wird + Das Symbol in der Taskleiste bleibt sichtbar, auch wenn das Hauptfenster geschlossen wird @@ -6811,12 +6786,12 @@ Platzhalter '*' kann verwendet werden. Inhibit system sleep when torrents are downloading - Schlafmodus verhindern solange Torrents noch herunterladen + Schlafmodus verhindern, solange Torrents noch herunterladen Inhibit system sleep when torrents are seeding - Schlafmodus verhindern solange Torrents noch uploaden + Schlafmodus verhindern, solange Torrents noch uploaden @@ -6842,69 +6817,65 @@ Platzhalter '*' kann verwendet werden. Jahre - + Log performance warnings Leistungswarnungen protokollieren - The torrent will be added to download list in a paused state - Der Torrent wird der Download-Liste als pausiert hinzugefügt - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Download nicht automatisch starten - + Whether the .torrent file should be deleted after adding it Ob die .torrent-Datei nach dem Hinzufügen gelöscht werden soll - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Vor dem Starten des Downloads die volle Dateigröße auf der Festplatte zuweisen, um die Fragmentierung zu minimieren. Nur nützlich für Festplatten (nicht bei SSD). - + Append .!qB extension to incomplete files .!qB Erweiterung für unvollständige Dateien verwenden - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Wenn ein Torrent heruntergeladen wird, biete jede darin enthaltene .torrent-Datei zum Hinzufügen an - + Enable recursive download dialog Rekursiven Download-Dialog erlauben - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatik: diverse Torrent-Eigenschaften (z.B. der Speicherpfad) werden durch die gewählte Kategorie vorgegeben Manuell: diverse Torrent-Eigenschaften (z.B. der Speicherpfad) müssen händisch eingegeben werden - + When Default Save/Incomplete Path changed: Wenn sich der Standardspeicherpfad/unvollständiger Pfad ändert: - + When Category Save Path changed: Wenn sich der Speicherpfad der Kategorie ändert: - + Use Category paths in Manual Mode Kategoriepfade im manuellen Modus verwenden - + Resolve relative Save Path against appropriate Category path instead of Default one Auflösen des relativen Speicherpfads gegen den entsprechenden Kategoriepfad anstelle des Standardpfads. @@ -6924,50 +6895,50 @@ Manuell: diverse Torrent-Eigenschaften (z.B. der Speicherpfad) müssen händisch Zustand des qBittorrent Fensters nach dem Start - + Torrent stop condition: Bedingung für das Anhalten des Torrents: - - + + None Kein - - + + Metadata received Metadaten erhalten - - + + Files checked Dateien überprüft - + Ask for merging trackers when torrent is being added manually Bei manuell hinzugefügtem Torrent um das Zusammenführen der Tracker fragen. - + Use another path for incomplete torrents: Einen anderen Pfad für unvollständige Torrents verwenden: - + Automatically add torrents from: .torrent-Dateien aus diesem Verzeichnis automatisch hinzufügen: - + Excluded file names Ausgeschlossene Dateinamen - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6996,525 +6967,512 @@ readme.txt: filtert den genauen Dateinamen. readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber nicht 'readme10.txt'. - + Receiver Empfänger - + To: To receiver Bis: - + SMTP server: SMTP-Server: - + Sender Sender - + From: From sender Von: - + This server requires a secure connection (SSL) Dieser Server benötigt eine sichere Verbindung (SSL) - - + + Authentication Authentifizierung - - - - + + + + Username: Benutzername: - - - - + + + + Password: Passwort: - + Run external program Externes Programm ausführen - Run on torrent added - Ausführen wenn Torrent hinzugefügt - - - Run on torrent finished - Ausführen wenn Torrent fertiggestellt - - - + Show console window Konsolenfenster anzeigen - + TCP and μTP TCP und μTP - + Listening Port Port auf dem gelauscht wird - + Port used for incoming connections: Port für eingehende Verbindungen: - + Set to 0 to let your system pick an unused port Wert auf 0 setzen, damit das System einen unbenutzten Port wählen kann. - + Random Zufällig - + Use UPnP / NAT-PMP port forwarding from my router UPnP / NAT-PMP Portweiterleitung des Routers verwenden - + Connections Limits Verbindungsbeschränkungen - + Maximum number of connections per torrent: Maximale Anzahl der Verbindungen pro Torrent: - + Global maximum number of connections: Maximale globale Anzahl der Verbindungen: - + Maximum number of upload slots per torrent: Maximale Anzahl Upload-Slots pro Torrent: - + Global maximum number of upload slots: Maximale globale Anzahl von Upload-Slots: - + Proxy Server Proxy-Server - + Type: Typ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Andererseits wird der Proxyserver nur für Tracker-Verbindungen verwendet - + Use proxy for peer connections Proxy für Peer-Verbindungen verwenden - + A&uthentication A&uthentifizierung - Info: The password is saved unencrypted - Info: Das Passwort wird unverschlüsselt gespeichert! + Info: Das Passwort wird unverschlüsselt gespeichert! - + Filter path (.dat, .p2p, .p2b): Filterpfad (.dat, .p2p, .p2b): - + Reload the filter Filter neu laden - + Manually banned IP addresses... - Manuell gebannte IP-Adressen... + Manuell gebannte IP-Adressen ... - + Apply to trackers Zu Trackern hinzufügen - + Global Rate Limits Globale Verhältnisbegrenzung - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Hochladen: - - + + Download: Herunterladen: - + Alternative Rate Limits Alternative Verhältnisbegrenzungen - + Start time Startzeit - + End time Endzeit - + When: Wann: - + Every day Jeden Tag - + Weekdays Wochentage - + Weekends Wochenenden - + Rate Limits Settings Einstellungen für Verhältnisbegrenzungen - + Apply rate limit to peers on LAN Verhältnisbegrenzung auch für Peers im LAN verwenden - + Apply rate limit to transport overhead Verhältnisbegrenzung auf Transport Overhead anwenden - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Wenn der "gemischte Modus" aktiviert ist, können I2P Torrents auch Peers aus anderen Quellen als dem Tracker erhalten und sich mit regulären IPs verbinden, ohne dass eine Anonymisierung erfolgt. Dies kann nützlich sein, wenn der Benutzer nicht an der Anonymisierung von I2P interessiert ist, aber trotzdem in der Lage sein möchte, sich mit I2P-Peers zu verbinden.</p></body></html> - + Apply rate limit to µTP protocol Verhältnisbegrenzung für das µTP-Protokoll verwenden - + Privacy Privatsphäre - + Enable DHT (decentralized network) to find more peers DHT (dezentralisiertes Netzwerk) aktivieren, um mehr Peers zu finden - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Peers mit kompatiblen Bittorrent-Programmen austauschen (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Peer Exchange (PeX) aktivieren, um mehr Peers zu finden - + Look for peers on your local network Nach Peers im lokalen Netzwerk suchen - + Enable Local Peer Discovery to find more peers - Lokale Peer Auffindung (LPD) aktivieren um mehr Peers zu finden + Lokale Peer Auffindung (LPD) aktivieren, um mehr Peers zu finden - + Encryption mode: Verschlüsselungsmodus: - + Require encryption Verschlüsselung verlangen - + Disable encryption Verschlüsselung deaktivieren - + Enable when using a proxy or a VPN connection - Aktiviere wenn ein Proxy oder ein VPN in Benutzung ist + Aktiviere, wenn ein Proxy oder ein VPN in Benutzung ist - + Enable anonymous mode Anonymen Modus aktivieren - + Maximum active downloads: Maximal aktive Downloads: - + Maximum active uploads: Maximal aktive Uploads: - + Maximum active torrents: Maximal aktive Torrents: - + Do not count slow torrents in these limits Bei diesen Begrenzungen langsame Torrents nicht mit einbeziehen - + Upload rate threshold: UL-Schwellenwert: - + Download rate threshold: DL-Schwellenwert: - - - - + + + + sec seconds - Sek. + Sek. - + Torrent inactivity timer: Timer für Torrent-Inaktivität: - + then dann - + Use UPnP / NAT-PMP to forward the port from my router - UPnP / NAT-PMP um den Port des Routers weiterzuleiten + UPnP / NAT-PMP, um den Port des Routers weiterzuleiten - + Certificate: Zertifikat: - + Key: Schlüssel: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informationen über Zertifikate</a> - + Change current password Aktuelles Passwort ändern - Use alternative Web UI - Verwende alternatives Webinterface - - - + Files location: Speicherort der Dateien: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Liste alternativer Webinterfaces</a> - + Security Sicherheit - + Enable clickjacking protection Clickjacking-Schutz aktivieren - + Enable Cross-Site Request Forgery (CSRF) protection CSRF-Schutz aktivieren (Cross-Site Request Forgery) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Cookie Sicheres Flag aktivieren (erfordert HTTPS oder Localhost-Verbindung) - + Enable Host header validation Host-Header Überprüfung einschalten - + Add custom HTTP headers Benutzerdefinierte HTTP-Header hinzufügen - + Header: value pairs, one per line Header: Wertepaare, eines pro Zeile - + Enable reverse proxy support Aktivieren der Reverse-Proxy-Unterstützung - + Trusted proxies list: Liste der vertrauenswürdigen Proxys: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Beispiele für die Einrichtung eines Reverse-Proxys</a> - + Service: Dienst: - + Register Registrieren - + Domain name: Domainname: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Mit dem Aktivieren dieser Optionen können die .torrent-Dateien <strong>unwiederbringlich verloren gehen!</strong> - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog - Wenn die 2. Möglichkeit aktiviert wird (&ldquo;Auch wenn das Hinzufügen abgebrochen wurde&rdquo;) wird die .torrent-Datei <strong>unwiederbringlich gelöscht</strong> selbst wenn &ldquo;<strong>Abbrechen</strong>&rdquo; im &ldquo;Torrent hinzufügen&rdquo;-Menü gedrückt wird. + Wenn die 2. Möglichkeit aktiviert wird (&ldquo;Auch wenn das Hinzufügen abgebrochen wurde&rdquo;), wird die .torrent-Datei <strong>unwiederbringlich gelöscht</strong>, selbst wenn &ldquo;<strong>Abbrechen</strong>&rdquo; im &ldquo;Torrent hinzufügen&rdquo;-Menü gedrückt wird. @@ -7522,12 +7480,12 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber Wähle qBittorrent UI-Thema-Datei - + Choose Alternative UI files location Wähle Dateispeicherort für alternatives UI - + Supported parameters (case sensitive): Unterstützte Parameter (Groß-/Kleinschreibung beachten): @@ -7547,183 +7505,183 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber Deaktiviert weil keine Taskleiste erkannt werden kann - + No stop condition is set. Keine Bedingungen für das Anhalten eingestellt. - - - Torrent will stop after metadata is received. - Der Torrent wird angehalten wenn Metadaten erhalten wurden. - - - - Torrent will stop after files are initially checked. - Der Torrent wird angehalten sobald die Dateien überprüft wurden. - + Torrent will stop after metadata is received. + Der Torrent wird angehalten, wenn Metadaten erhalten wurden. + + + + Torrent will stop after files are initially checked. + Der Torrent wird angehalten, sobald die Dateien überprüft wurden. + + + This will also download metadata if it wasn't there initially. Dadurch werden auch Metadaten heruntergeladen, wenn sie ursprünglich nicht vorhanden waren. - + %N: Torrent name %N: Torrentname - + %L: Category %L: Kategorie - + %F: Content path (same as root path for multifile torrent) %F: Inhaltspfad (gleich wie der Hauptpfad für Mehrdateien-Torrent) - + %R: Root path (first torrent subdirectory path) %R: Hauptpfad (erster Pfad für das Torrent-Unterverzeichnis) - + %D: Save path %D: Speicherpfad - + %C: Number of files %C: Anzahl der Dateien - + %Z: Torrent size (bytes) %Z: Torrentgröße (Byte) - + %T: Current tracker %T: aktueller Tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tipp: Setze Parameter zwischen Anführungszeichen damit Text bei Leerzeichen nicht abgeschnitten wird (z.B. "%N"). - + Test email - + Test-Email - + Attempted to send email. Check your inbox to confirm success - + Es wurde versucht, eine E-Mail zu senden. Prüfen Sie Ihren Posteingang, um den Erfolg zu bestätigen - + (None) (Keiner) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Ein Torrent wird als langsam eingestuft, wenn die DL- und UL-Rate unterhalb der Zeitgrenze des "Timer für Torrent-Inaktivität" bleiben - + Certificate Zertifikat - + Select certificate Zertifikat wählen - + Private key Privater Schlüssel - + Select private key Privaten Schlüssel wählen - + WebUI configuration failed. Reason: %1 Die Konfiguration für das Webinterface ist fehlgeschlagen. Grund: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 wird für beste Kompatibilität mit dem 'Dark Mode' von Windows empfohlen - + System System default Qt style - + System - + Let Qt decide the style for this system - + Qt soll den Stil für dieses System wählen - + Dark Dark color scheme - + Dunkel - + Light Light color scheme - + Hell - + System System color scheme - + System - + Select folder to monitor Ein Verzeichnis zum Beobachten auswählen - + Adding entry failed Hinzufügen des Eintrags fehlgeschlagen - + The WebUI username must be at least 3 characters long. Das Passwort für das Webinterface muss mindestens 3 Zeichen lang sein. - + The WebUI password must be at least 6 characters long. Das Passwort für das Webinterface muss mindestens 6 Zeichen lang sein. - + Location Error Speicherort-Fehler - - + + Choose export directory Export-Verzeichnis wählen - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Wenn diese Optionen aktiviert werden, wird qBittorrent .torrent-Dateien <strong>löschen</strong> nachdem sie (1. Möglichkeit) erfolgreich oder (2. Möglichkeit) nicht in die Download-Warteschlange hinzugefügt wurden. Dies betrifft <strong>nicht nur</strong> Dateien die über das &ldquo;Torrent hinzufügen&rdquo;-Menü sondern auch jene die über die <strong>Dateityp-Zuordnung</strong> geöffnet werden. @@ -7733,69 +7691,69 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber qBittorrent UI-Thema-Datei (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Label (getrennt durch Komma) - + %I: Info hash v1 (or '-' if unavailable) %I: Info-Hash v1 (oder '-' wenn nicht verfügbar) - + %J: Info hash v2 (or '-' if unavailable) %J: Info-Hash v2 (oder '-' wenn nicht verfügbar) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent-ID (entweder sha-1 Info-Hash für v1-Torrent oder abgeschnittener sha-256 Info-Hash für v2/Hybrid-Torrent) - - + + Choose a save directory Verzeichnis zum Speichern wählen - + Torrents that have metadata initially will be added as stopped. Torrents, die anfänglich Metadaten haben, werden als gestoppt hinzugefügt. - + Choose an IP filter file IP-Filter-Datei wählen - + All supported filters Alle unterstützten Filter - + The alternative WebUI files location cannot be blank. Der Speicherort des alternativen Webinterface darf nicht leer sein. - + Parsing error Fehler beim Analysieren - + Failed to parse the provided IP filter Fehler beim Analysieren der IP-Filter - + Successfully refreshed Erfolgreich aktualisiert - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Der IP-Filter wurde erfolgreich analysiert. Es wurden %1 Regeln angewendet. @@ -7806,18 +7764,18 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber Einstellungen - + Time Error Zeitfehler - + The start time and the end time can't be the same. Die Startzeit und die Endzeit können nicht gleich sein. - - + + Length Error Längenfehler @@ -7902,169 +7860,169 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber Peer is using NAT hole punching - + Peer verwendet NAT Hole Punching PeerListWidget - + Country/Region Land/Region - + IP/Address IP/Adresse - + Port Port - + Flags Flags - + Connection Verbindung - + Client i.e.: Client application Programm - + Peer ID Client i.e.: Client resolved from Peer ID Peer-ID-Client - + Progress i.e: % downloaded Fortschritt - + Down Speed i.e: Download speed DL-Rate - + Up Speed i.e: Upload speed UL-Rate - + Downloaded i.e: total data downloaded Runtergeladen - + Uploaded i.e: total data uploaded Hochgeladen - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevanz - + Files i.e. files that are being downloaded right now Dateien - + Column visibility Sichtbarkeit der Spalten - + Resize columns Spaltenbreite ändern - + Resize all non-hidden columns to the size of their contents Ändere alle sichtbaren Spalten in der Breite nach Inhalt - + Add peers... Peers hinzufügen ... - - + + Adding peers Peers hinzugefügt - + Some peers cannot be added. Check the Log for details. Einige Peers können nicht hinzugefügt werden. Bitte das Log für weitere Details überprüfen. - + Peers are added to this torrent. Peers wurden diesem Torrent hinzugefügt. - - + + Ban peer permanently Peer dauerhaft bannen - + Cannot add peers to a private torrent Peers können nicht zu einem privaten Torrent hinzugefügt werden. - + Cannot add peers when the torrent is checking Peers können während der Torrent-Überprüfung nicht hinzugefügt werden. - + Cannot add peers when the torrent is queued Peers können bei einem pausierten Torrent nicht hinzugefügt werden. - + No peer was selected Es wurde kein Peer gewählt - + Are you sure you want to permanently ban the selected peers? Sollen die gewählten Peers wirklich dauerhaft gebannt werden? - + Peer "%1" is manually banned Peer "%1" wurde manuell gebannt - + N/A N/V - + Copy IP:port IP:port kopieren @@ -8346,34 +8304,27 @@ Diese Plugins wurden jetzt aber deaktiviert. PowerManagement - qBittorrent is active - qBittorrent ist aktiv + qBittorrent ist aktiv PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Das Power Management hat eine geeignete D-Bus-Schnittstelle gefunden. Schnittstelle: %1 + Das Power Management hat eine geeignete D-Bus-Schnittstelle gefunden. Schnittstelle: %1 - Power management error. Did not found suitable D-Bus interface. - Fehler im Power Management. Es wurde keine geeignete D-Bus-Schnittstelle gefunden. + Fehler im Power Management. Es wurde keine geeignete D-Bus-Schnittstelle gefunden. - - - Power management error. Action: %1. Error: %2 - Fehler im Power Management. Aktion: %1. Fehler: %2 + Fehler im Power Management. Aktion: %1. Fehler: %2 - Power management unexpected error. State: %1. Error: %2 - Unerwarteter Fehler im Power Management. Status: %1. Fehler: %2 + Unerwarteter Fehler im Power Management. Status: %1. Fehler: %2 @@ -8617,12 +8568,12 @@ Diese Plugins wurden jetzt aber deaktiviert. Ratio / Time Active (in months), indicates how popular the torrent is - + Rate / aktive Zeit (in Monaten) - zeigt, wie populär der Torrent ist Popularity: - + Popularität @@ -8657,7 +8608,7 @@ Diese Plugins wurden jetzt aber deaktiviert. Private: - + Privat: @@ -8665,153 +8616,124 @@ Diese Plugins wurden jetzt aber deaktiviert. Speicherpfad: - + Never Niemals - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (%3 fertig) - - + + %1 (%2 this session) %1 (%2 diese Sitzung) - - + + N/A N/V - + Yes - Ja + Ja - + No - Nein + Nein - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) '%1' (geseedet seit '%2') - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 gesamt) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 durchschn.) - + Add web seed Add HTTP source - + Webseed hinzufügen - + Add web seed: - + Webseed hinzufügen: - - + + This web seed is already in the list. - + Dieser Webseed befindet sich bereits in der Liste. - New Web seed - Neuer Webseed - - - Remove Web seed - Webseed entfernen - - - Copy Web seed URL - Webseed-URL kopieren - - - Edit Web seed URL - Webseed-URL editieren - - - + Filter files... Dateien filtern ... - + Add web seed... - + Webseed hinzufügen ... - + Remove web seed - + Webseed entfernen - + Copy web seed URL - + Webseed-URL kopieren - + Edit web seed URL... - + Webseed-URL editieren ... - + Speed graphs are disabled Geschwindigkeits-Grafiken sind deaktiviert - + You can enable it in Advanced Options Das kann in den erweiterten Optionen aktiviert werden - New URL seed - New HTTP source - Neuer URL Seed - - - New URL seed: - Neuer URL Seed: - - - This URL seed is already in the list. - Dieser URL Seed befindet sich bereits in der Liste. - - - + Web seed editing Webseed editieren - + Web seed URL: Webseed-URL: @@ -8819,33 +8741,33 @@ Diese Plugins wurden jetzt aber deaktiviert. RSS::AutoDownloader - - + + Invalid data format. Ungültiges Datenformat. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Konnte Daten des RSS-AutoDownloader nicht in %1 speichern. Fehler: %2 - + Invalid data format Ungültiges Datenformat - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS '%1' wurde durch die Regel '%2' akzeptiert. Versuche den Torrent hinzuzufügen ... - + Failed to read RSS AutoDownloader rules. %1 Konnte die RSS-AutoDownloader Regeln nicht laden. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Konnte Regeln des RSS-AutoDownloader nicht laden. Grund: %1 @@ -8853,22 +8775,22 @@ Diese Plugins wurden jetzt aber deaktiviert. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Konnte RSS-Feed von '%1' nicht herunterladen. Grund: '%2' - + RSS feed at '%1' updated. Added %2 new articles. RSS-Feed von '%1' wurde aktualisiert. %2 neue Einträge wurden hinzugefügt. - + Failed to parse RSS feed at '%1'. Reason: %2 Konnte RSS-Feed von '%1' nicht analysieren. Grund: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Der RSS-Feed von '%1' wurde erfolgreich heruntergeladen und wird nun aufgelöst. @@ -8917,12 +8839,12 @@ Diese Plugins wurden jetzt aber deaktiviert. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Konnte die RSS-Sitzungskonfiguration nicht speichern. Datei: "%1". Fehler: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Konnte Daten der RSS-Sitzung nicht speichern. Datei: "%1". Fehler: "%2" @@ -8944,76 +8866,121 @@ Diese Plugins wurden jetzt aber deaktiviert. - + Item doesn't exist: %1. Das existiert nicht: %1. - Couldn't move folder into itself. - Verzeichnis kann nicht in sich selbst verschoben werden. + Verzeichnis kann nicht in sich selbst verschoben werden. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Wurzelverzeichnis kann nicht gelöscht werden. - + Failed to read RSS session data. %1 Konnte die RSS Sitzungsdaten nicht lesen. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Konnte die RSS Sitzungsdaten nicht parsen. Datei: "%1". Fehler: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Konnte die RSS Sitzungsdaten nicht laden. Datei: "%1". Fehler: "Ungültiges Datenformat". - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Konnte RSS-Feed nicht laden. Feed: "%1". Grund: URL ist erforderlich. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Konnte RSS-Feed nicht laden. Feed: "%1". Grund: UID ist ungültig. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Doppelter RSS-Feed gefunden. UID: "%1". Fehler: Die Konfiguration scheint beschädigt zu sein. - + Couldn't load RSS item. Item: "%1". Invalid data format. RSS-Eintrag konnte nicht geladen werden. Eintrag: "%1". Ungültiges Datenformat. - + Corrupted RSS list, not loading it. Fehlerhafte RSS-Liste. Wird daher nicht geladen. - + Incorrect RSS Item path: %1. Falscher RSS-Item-Pfad: %1. - + RSS item with given path already exists: %1. Der RSS-Feed besteht schon: %1. - + Parent folder doesn't exist: %1. Verzeichnis existiert nicht: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed existiert nicht: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + Sek. + + + + Default + Standard + + RSSWidget @@ -9113,78 +9080,77 @@ Diese Plugins wurden jetzt aber deaktiviert. + Feed options... + + + Edit feed URL... - Feed-URL editieren ... + Feed-URL editieren ... - Edit feed URL - Feed-URL editieren + Feed-URL editieren - + Please choose a folder name Bitte einen Verzeichnisnamen wählen - + Folder name: Verzeichnisname: - + New folder Neues Verzeichnis - - Please type a RSS feed URL - Bitte eine RSS-Feed Adresse eingeben + Bitte eine RSS-Feed Adresse eingeben - - Feed URL: - Feed-URL: + Feed-URL: - + Deletion confirmation Löschbestätigung - + Are you sure you want to delete the selected RSS feeds? Sind Sie sicher, dass Sie die gewählten RSS-Feeds löschen möchten? - + Please choose a new name for this RSS feed Bitte einen neuen Namen für diesen RSS-Feed wählen - + New feed name: Neuer Feed-Name: - + Rename failed Umbenennen fehlgeschlagen - + Date: Datum: - + Feed: Feed: - + Author: Autor: @@ -9194,7 +9160,7 @@ Diese Plugins wurden jetzt aber deaktiviert. Python must be installed to use the Search Engine. - Python muss installiert sein um die Suchmaschine benützen zu können. + Python muss installiert sein, um die Suchmaschine benützen zu können. @@ -9321,10 +9287,6 @@ Diese Plugins wurden jetzt aber deaktiviert. i.e: Number of partial sources Leecher - - Search engine - Suchmaschine - Filter search results... @@ -9414,17 +9376,17 @@ Diese Plugins wurden jetzt aber deaktiviert. Engine - + Engine Engine URL - + Engine-URL Published On - + Veröffentlicht am @@ -9445,104 +9407,104 @@ Diese Plugins wurden jetzt aber deaktiviert. SearchPluginManager - + Unknown search engine plugin file format. Unbekanntes Dateiformat des Suchmaschinen-Plugins. - + Plugin already at version %1, which is greater than %2 Plugin ist bereits Version %1 und damit höher als %2 - + A more recent version of this plugin is already installed. Eine neuere Version dieses Plugins ist bereits installiert. - + Plugin %1 is not supported. Plugin %1 wird nicht unterstützt. - - + + Plugin is not supported. Plugin wird nicht unterstützt. - + Plugin %1 has been successfully updated. Das Plugin %1 wurde erfolgreich aktualisiert. - + All categories Alle Kategorien - + Movies Filme - + TV shows TV-Sendungen - + Music Musik - + Games Spiele - + Anime Anime - + Software Software - + Pictures Bilder - + Books Bücher - + Update server is temporarily unavailable. %1 Update-Server vorübergehend nicht erreichbar. %1 - - + + Failed to download the plugin file. %1 Fehler beim Herunterladen der Plugin-Datei. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" ist nicht mehr aktuell - wird aktualisiert auf Version %2 - + Incorrect update info received for %1 out of %2 plugins. Falsche Update-Information für %1 von %2 Plugins erhalten. - + Search plugin '%1' contains invalid version string ('%2') Das Such-Plugin '%1' enthält ungültige Versions-Zeichenkette ('%2') @@ -9560,7 +9522,7 @@ Diese Plugins wurden jetzt aber deaktiviert. There aren't any search plugins installed. Click the "Search plugins..." button at the bottom right of the window to install some. Es sind keine Such-Plugins installiert. -Wähle den "Such-Plugins ..."-Knopf unten rechts aus um welche zu installieren. +Wähle den "Such-Plugins ..."-Knopf unten rechts aus, um welche zu installieren. @@ -9568,137 +9530,129 @@ Wähle den "Such-Plugins ..."-Knopf unten rechts aus um welche zu inst Such-Plugins ... - + A phrase to search for. Suchphrase. - + Spaces in a search term may be protected by double quotes. Leerzeichen innerhalb von Suchausdrücken in Anführungszeichen setzen. - + Example: Search phrase example Beispiel: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;schnur los&quot;</b>: suche nach <b>schnur los</b> - + All plugins Alle Plugins - + Only enabled Nur aktivierte - - + + Invalid data format. - Ungültiges Datenformat. + Ungültiges Datenformat. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>schnur los</b>: suche nach <b>schnur</b> und <b>los</b> - + Refresh - + Aktualisieren - + Close tab Registerkarte schließen - + Close all tabs Alle Registerkarten schließen - + Select... Wählen ... - - + + Search Engine Suchmaschine - - + + Please install Python to use the Search Engine. - Python bitte installieren um die Suchmaschine benützen zu können. + Python bitte installieren, um die Suchmaschine benützen zu können. - + Empty search pattern Leere Suchanfrage - + Please type a search pattern first Bitte zuerst eine Suchanfrage eingeben - + Stop Stopp - - Search has finished - Suche abgeschlossen - - - Search has failed - Suche fehlgeschlagen - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Konnte gespeicherte Suchfenster-Statusdaten nicht laden. Datei: "%1“. Fehler: "%2“ - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Konnte gespeicherte Suchergebnisse nicht laden. Tab: "%1". Datei: "%2“. Fehler: "%3“ - + Failed to save Search UI state. File: "%1". Error: "%2" - + Konnte Suchfenster-Historie nicht speichern. Datei: "%1“. Fehler: "%2“ - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Konnte Suchergebnisse nicht speichern. Tab: "%1". Datei: "%2“. Fehler: "%3“ - + Failed to load Search UI history. File: "%1". Error: "%2" - + Konnte Suchfenster-Historie nicht laden. Datei: "%1“. Fehler: "%2“ - + Failed to save search history. File: "%1". Error: "%2" - + Konnte Such-Historie nicht speichern. Datei: "%1“. Fehler: "%2“ @@ -10095,69 +10049,79 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende StatusBar - + Connection status: Verbindungs-Status: - - + + No direct connections. This may indicate network configuration problems. Keine direkten Verbindungen. Möglicherweise gibt es Probleme mit der Netzwerkkonfiguration. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Externe IP: nicht verfügbar + + + + DHT: %1 nodes DHT: %1 Knoten - + qBittorrent needs to be restarted! qBittorrent benötigt einen Neustart! - - + + Connection Status: Verbindungs-Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. In den meisten Fällen bedeutet das, dass qBittorrent nicht auf dem angegebenen Port für eingehende Verbindungen lauschen kann. - + Online Online - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - - Click to switch to alternative speed limits - Klicken um zu den alternativen Geschwindigkeitsbegrenzungen zu wechseln + + External IPs: %1, %2 + Externe IPs: %1, %2 - + + External IP: %1%2 + Externe IP: %1%2 + + + + Click to switch to alternative speed limits + Klicken, um zu den alternativen Geschwindigkeitsbegrenzungen zu wechseln + + + Click to switch to regular speed limits - Klick um zu den regulären Geschwindigkeitsbegrenzungen zu wechseln + Klick, um zu den regulären Geschwindigkeitsbegrenzungen zu wechseln @@ -10183,23 +10147,15 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Completed (0) Abgeschlossen (0) - - Resumed (0) - Fortgesetzt (0) - - - Paused (0) - Pausiert (0) - Running (0) - + Läuft (0) Stopped (0) - + Angehalten (0) @@ -10264,49 +10220,33 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Running (%1) - + Läuft (%1) Stopped (%1) - + Angehalten (%1) Start torrents - + Torrents starten Stop torrents - - - - Paused (%1) - Pausiert (%1) + Torrents anhalten Moving (%1) Verschiebe (%1) - - Resume torrents - Torrents fortsetzen - - - Pause torrents - Torrents pausieren - Remove torrents Torrents entfernen - - Resumed (%1) - Fortgesetzt (%1) - Active (%1) @@ -10378,32 +10318,20 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Remove unused tags Unbenutzte Label entfernen - - Resume torrents - Torrents fortsetzen - - - Pause torrents - Torrents pausieren - Remove torrents Torrents entfernen - - New Tag - Neues Label - Start torrents - + Torrents starten Stop torrents - + Torrents anhalten @@ -10413,7 +10341,7 @@ Daher wird eine Sicherungsdatei zur Wiederherstellung der Einstellungen verwende Add tag - + Label hinzufügen @@ -10729,17 +10657,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Zu viele aktive Aufgaben - + Torrent creation is still unfinished. Torrent-Erstellung ist noch nicht abgeschlossen. - + Torrent creation failed. Torrent-Erstellung gescheitert @@ -10897,7 +10825,7 @@ Please choose a different name and try again. Select where to save the new torrent - Auswählen wohin der neue Torrent gespeichert werden soll + Auswählen, wohin der neue Torrent gespeichert werden soll @@ -10912,7 +10840,7 @@ Please choose a different name and try again. Reason: "%1" - Grund: „%1“ + Grund: "%1“ @@ -10991,17 +10919,6 @@ Please choose a different name and try again. Überwachtes Verzeichnis: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Beim Lesen der Datei konnte kein Speicher zugewiesen werden. Datei: "%1". Fehler: "%2" - - - Invalid metadata - Ungültige Metadaten - - TorrentOptionsDialog @@ -11012,7 +10929,7 @@ Please choose a different name and try again. Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - Automatischer Modus bedeutet, daß diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. + Automatischer Modus bedeutet, dass diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. @@ -11037,11 +10954,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Geschwindigkeitsbegrenzungen für Torrent + Verhältnis-Begrenzungen für Torrent @@ -11057,7 +10970,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Geschwindigkeitsbegrenzungen für Torrent @@ -11075,34 +10988,6 @@ Please choose a different name and try again. Upload: Hochladen: - - Torrent share limits - Verhältnis-Begrenzungen für Torrent - - - Use global share limit - Globale Begrenzung für das Verhältnis verwenden - - - Set no share limit - Keine Begrenzung für das Verhältnis verwenden - - - Set share limit to - Begrenzung für das Verhältnis setzen - - - ratio - Verhältnis - - - total minutes - gesamt Minuten - - - inactive minutes - inaktive Minuten - Disable DHT for this torrent @@ -11144,14 +11029,6 @@ Please choose a different name and try again. Not applicable to private torrents Das ist für private Torrents nicht anwendbar - - No share limit method selected - Keine Methode für die Verhältnis-Begrenzung gewählt - - - Please select a limit method first - Bitte zuerst eine Begrenzungsmethode auswählen - TorrentShareLimitsWidget @@ -11201,27 +11078,27 @@ Please choose a different name and try again. Action when the limit is reached: - + Aktion, wenn das Limit erreicht ist: Stop torrent - + Torrent anhalten Remove torrent - Torrent entfernen + Torrent entfernen Remove torrent and its content - + Entferne Torrent und seine Inhalte Enable super seeding for torrent - Super-Seeding für Torrent aktivieren + Super-Seeding für Torrent aktivieren @@ -11236,14 +11113,10 @@ Please choose a different name and try again. Torrent Tags Torrent-Label - - New Tag - Neues Label - Add tag - + Label hinzufügen @@ -11274,90 +11147,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Fehler: '%1' ist keine gültige Torrent-Datei. - + Priority must be an integer Die Priorität muss ganzzahlig sein. - + Priority is not valid Priorität ist nicht gültig - + Torrent's metadata has not yet downloaded Die Metadaten des Torrent sind noch nicht heruntergeladen - + File IDs must be integers Die Datei-ID muss ganzahlig sein - + File ID is not valid Die Datei-ID ist nicht gültig - - - - + + + + Torrent queueing must be enabled Warteschlange für Torrents muss aktiviert sein - - + + Save path cannot be empty Speicherpfad kann nicht leer sein - - + + Cannot create target directory Kann das Zielverzeichnis nicht erstellen - - + + Category cannot be empty Kategorie kann nicht leer sein - + Unable to create category Kategorie konnte nicht erstellt werden - + Unable to edit category Kategorie kann nicht geändert werden - + Unable to export torrent file. Error: %1 Konnte Torrentdatei nicht exportieren. Fehler: '%1' - + Cannot make save path Kann Speicherpfad nicht erstellen "%1" is not a valid URL - + "%1" ist keine gültige URL URL scheme must be one of [%1] - + Das URL-Schema muss eines von [%1] sein @@ -11365,39 +11238,39 @@ Please choose a different name and try again. Ungültiger 'sortieren'-Parameter - + "%1" is not an existing URL - + "%1" ist keine existierende URL - + "%1" is not a valid file index. '%1' ist kein gültiger Dateiindex. - + Index %1 is out of bounds. Index %1 ist ausserhalb der Grenzen. - - + + Cannot write to directory Kann nicht in Verzeichnis schreiben - + WebUI Set location: moving "%1", from "%2" to "%3" Webinterface-Speicherort festlegen: "%1" wird von "%2" nach "%3" verschoben - + Incorrect torrent name Ungültiger Torrent-Name - - + + Incorrect category name Ungültiger Kategoriename @@ -11465,7 +11338,7 @@ Please choose a different name and try again. Tracker error - Tracker Fehler + Tracker-Fehler @@ -11480,45 +11353,33 @@ Please choose a different name and try again. Invalid state! - + Ungültiger Status! URL/Announce Endpoint - + URL/Ankündigungsendpunkt BT Protocol - + BT Protokoll Next Announce - + Nächste Anmeldung Min Announce - - - - Invalid status! - Ungültiger Status! - - - URL/Announce endpoint - URL/Anmeldung Endpunkt + Min. Anmeldung Tier Ebene - - Protocol - Protokoll - Status @@ -11549,18 +11410,6 @@ Please choose a different name and try again. Message Meldung - - Next announce - Nächste Anmeldung - - - Min announce - Min. Anmeldung - - - v%1 - v%1 - TrackerListWidget @@ -11570,73 +11419,73 @@ Please choose a different name and try again. Dieser Torrent ist privat - + Tracker editing Tracker editieren - + Tracker URL: Tracker-URL: - - + + Tracker editing failed Tracker editieren fehlgeschlagen - + The tracker URL entered is invalid. Die eingegebene Tracker-URL ist ungültig. - + The tracker URL already exists. Die Tracker-URL existiert bereits. - + Edit tracker URL... Tracker-URL editieren - + Remove tracker Tracker entfernen - + Copy tracker URL Tracker-URL kopieren - + Force reannounce to selected trackers Erzwinge erneute Anmeldung bei den gewählten Trackern - + Force reannounce to all trackers Erzwinge erneute Anmeldung bei allen Trackern - + Resize columns Spaltenbreite ändern - + Resize all non-hidden columns to the size of their contents Ändere alle sichtbaren Spalten in der Breite nach Inhalt - + Add trackers... Tracker hinzufügen ... - + Column visibility Spaltensichtbarkeit @@ -11704,7 +11553,7 @@ Please choose a different name and try again. Tracker error (%1) - Tracker Fehler (%1) + Tracker-Fehler (%1) @@ -11719,20 +11568,12 @@ Please choose a different name and try again. Start torrents - + Torrents starten Stop torrents - - - - Resume torrents - Torrents fortsetzen - - - Pause torrents - Torrents pausieren + Torrents anhalten @@ -11856,10 +11697,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Überprüfe Fortsetzungsdaten - - Paused - Angehalten - Completed @@ -11900,21 +11737,16 @@ Please choose a different name and try again. % Done Fortschritt - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Angehalten Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11949,7 +11781,7 @@ Please choose a different name and try again. Popularity - + Popularität @@ -12030,22 +11862,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Aktiv seit + Aktiv seit Yes - Ja + Ja No - Nein - - - Time Active - Time (duration) the torrent is active (not paused) - Aktiv seit + Nein @@ -12117,12 +11944,12 @@ Please choose a different name and try again. Private Flags private torrents - + Privat Ratio / Time Active (in months), indicates how popular the torrent is - + Rate / aktive Zeit (in Monaten) - zeigt, wie populär der Torrent ist @@ -12147,358 +11974,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Sichtbarkeit der Spalten - + Recheck confirmation Überprüfe Bestätigung - + Are you sure you want to recheck the selected torrent(s)? Sollen die gewählten Torrents wirklich nochmals überprüft werden? - + Rename Umbenennen - + New name: Neuer Name: - + Choose save path Speicherpfad wählen - Confirm pause - Anhalten bestätigen - - - Would you like to pause all torrents? - Sollen alle Torrents angehalten werden? - - - Confirm resume - Fortsetzen bestätigen - - - Would you like to resume all torrents? - Sollen alle Torrents fortgesetzt werden? - - - + Unable to preview Vorschau nicht möglich - + The selected torrent "%1" does not contain previewable files Der gewählte Torrent '%1' enthält keine Dateien mit Vorschau. - + Resize columns Spaltenbreite ändern - + Resize all non-hidden columns to the size of their contents Ändere alle sichtbaren Spalten in der Breite nach Inhalt - + Enable automatic torrent management Automatisches Torrent-Management aktivieren - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Soll wirklich das automatische Torrent-Managment für die gewählten Torrents aktiviert werden? Diese könnten verschoben werden. - Add Tags - Label hinzufügen - - - + Choose folder to save exported .torrent files Verzeichnis auswählen zum Speichern exportierter .torrent-Dateien - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Exportieren der .torrent-Datei fehlgeschlagen. Torrent: "%1". Speicherpfad: "%2". Grund: "%3" - + A file with the same name already exists Eine Datei mit gleichem Namen existiert bereits. - + Export .torrent file error Exportieren der .torrent-Datei fehlgeschlagen - + Remove All Tags Alle Label entfernen - + Remove all tags from selected torrents? Wirklich alle Labels von den ausgewählten Torrents entfernen? - + Comma-separated tags: Labels, mit Komma getrennt: - + Invalid tag Ungültiger Labelname - + Tag name: '%1' is invalid Labelname '%1' ist ungültig - &Resume - Resume/start the torrent - Fo&rtsetzen - - - &Pause - Pause the torrent - &Pausieren - - - Force Resu&me - Force Resume/start the torrent - Fortsetzen &manuell erzwingen - - - + Pre&view file... Datei&vorschau ... - + Torrent &options... Torrent-&Optionen ... - + Open destination &folder Zielverzeichnis ö&ffnen - + Move &up i.e. move up in the queue Hina&uf bewegen - + Move &down i.e. Move down in the queue Nach un&ten bewegen - + Move to &top i.e. Move to top of the queue An den Anfan&g - + Move to &bottom i.e. Move to bottom of the queue An das &Ende - + Set loc&ation... Speicher&ort setzen ... - + Force rec&heck Erzwinge neuerlic&he Überprüfung - + Force r&eannounce &Erzwinge erneute Anmeldung - + &Magnet link &Magnet-Link - + Torrent &ID Torrent-&ID - + &Comment &Kommentar - + &Name &Name - + Info &hash v1 Info-&Hash v1 - + Info h&ash v2 Info-H&ash v2 - + Re&name... Umbe&nennen ... - + Edit trac&kers... Trac&ker editieren ... - + E&xport .torrent... .torrent e&xportieren ... - + Categor&y Kate&gorie - + &New... New category... &Neu ... - + &Reset Reset category Zu&rücksetzen - + Ta&gs Ta&gs - + &Add... Add / assign multiple tags... &Hinzufügen ... - + &Remove All Remove all tags Alle entfe&rnen - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Erzwungene erneute Anmeldung ist nicht möglich, wenn der Torrent gestoppet/in der Warteschlange/fehlerhaft/beim Überprüfen ist - + &Queue &Warteschlange - + &Copy &Kopieren - + Exported torrent is not necessarily the same as the imported Der exportierte Torrent ist nicht unbedingt derselbe wie der importierte - + Download in sequential order Der Reihe nach downloaden - + Add tags - + Label hinzufügen - + Errors occurred when exporting .torrent files. Check execution log for details. Fehler sind beim Exportieren der .torrent-Dateien aufgetreten. Bitte Ausführungs-Log für Details überprüfen. - + &Start Resume/start the torrent - + &Start - + Sto&p Stop the torrent - + Anhalten - + Force Star&t Force Resume/start the torrent - + Erzwinge Star&t - + &Remove Remove the torrent Entfe&rnen - + Download first and last pieces first Erste und letzte Teile zuerst laden - + Automatic Torrent Management Automatisches Torrent-Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - Automatischer Modus bedeutet, daß diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. + Automatischer Modus bedeutet, dass diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Neuankündigung kann nicht erzwungen werden, wenn der Torrent pausiert/angehalten/abgeschlossen ist oder geprüft wird - - - + Super seeding mode Super-Seeding-Modus @@ -12574,7 +12362,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + Einstellen des Stils fehlgeschlagen. Unbekannter Stil: "%1" @@ -12630,32 +12418,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Ausführungdatei für Python gefunden. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". Ausführungdatei für Python nicht gefunden. Pfad: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Konnte Ausführungdatei für `python3` in der Pfad-Umgebungsvariable PATH nicht finden. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Konnte Ausführungdatei für `python` in der Pfad-Umgebungsvariable PATH nicht finden. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Konnte Ausführungdatei für `python` in der Windows-Registry nicht finden. - + Failed to find Python executable Konnte Ausführungdatei für Python nicht finden. @@ -12747,52 +12535,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Unzulässiger Name für den Sitzungscookies wurde angegeben: '%1'. Die Standardeinstellung wird verwendet. - + Unacceptable file type, only regular file is allowed. Dateityp wird nicht akzeptiert - es sind nur gültige Dateitypen erlaubt. - + Symlinks inside alternative UI folder are forbidden. Symbolische Verknüpfungen (Symlinks) innerhalb von Verzeichnissen für alternative UI sind nicht erlaubt. - + Using built-in WebUI. Verwende eingebautes Webinterface. - + Using custom WebUI. Location: "%1". Verwende benutzerdefiniertes Webinterface. Ort: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Die Übersetzung des Webinterface für die gewählte Region (%1) wurde erfolgreich geladen. - + Couldn't load WebUI translation for selected locale (%1). Konnte die Übersetzung des Webinterface für die gewählte Region nicht laden (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Fehlendes ':' Trennzeichen in benutzerdefiniertem Webinterface HTTP-Header: "%1" - + Web server error. %1 Fehler beim Web-Server. %1 - + Web server error. Unknown error. Fehler beim Web-Server. Unbekannter Fehler. @@ -12850,7 +12638,7 @@ Please choose a different name and try again. Unknown error - Unbekannter Fehler + Unbekannter Fehler diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index 13260aa2c..be8d663c8 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -170,10 +170,6 @@ Never show again Να μην εμφανιστεί ξανά - - Torrent settings - Ρυθμίσεις torrent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Επιλογές Torrent @@ -235,25 +231,25 @@ Συνθήκη διακοπής: - - + + None Κανένα - - + + Metadata received Ληφθέντα μεταδεδομένα - + Torrents that have metadata initially will be added as stopped. Τα torrents που έχουν μεταδεδομένα εξαρχής θα προστεθούν ως σταματημένα. - + Files checked Ελεγμένα αρχεία @@ -368,112 +364,112 @@ Αποθήκευση ως αρχείο .torrent... - + I/O Error Σφάλμα I/O - + Not Available This comment is unavailable Μη Διαθέσιμο - + Not Available This date is unavailable Μη Διαθέσιμο - + Not available Μη διαθέσιμο - + Magnet link Σύνδεσμος magnet - + Retrieving metadata... Ανάκτηση μεταδεδομένων… - - + + Choose save path Επιλέξτε διαδρομή αποθήκευσης - + No stop condition is set. Δεν έχει οριστεί συνθήκη διακοπής. - + Torrent will stop after metadata is received. Το torrent θα σταματήσει μετά τη λήψη των μεταδεδομένων. - + Torrent will stop after files are initially checked. Το torrent θα σταματήσει αφού πρώτα ελεγχθούν τα αρχεία. - + This will also download metadata if it wasn't there initially. Αυτό θα πραγματοποιήσει και λήψη μεταδεδομένων εάν δεν υπήρχαν αρχικά. - + N/A Δ/Υ - + %1 (Free space on disk: %2) %1 (Ελεύθερος χώρος στον δίσκο: %2) - + Not available This size is unavailable. Μη διαθέσιμο - + Torrent file (*%1) Αρχείο torrent (*%1) - + Save as torrent file Αποθήκευση ως αρχείο torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Αδυναμία εξαγωγής του αρχείου μεταδεδομένων του torrent '%1'. Αιτία: %2. - + Cannot create v2 torrent until its data is fully downloaded. Δεν είναι δυνατή η δημιουργία v2 torrent μέχρι τα δεδομένα του να έχουν ληφθεί πλήρως. - + Filter files... Φίλτρο αρχείων... - + Parsing metadata... Ανάλυση μεταδεδομένων… - + Metadata retrieval complete Η ανάκτηση μεταδεδομένων ολοκληρώθηκε @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Λήψη torrent... Πηγή: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Αποτυχία προσθήκης torrent. Πηγή: "%1". Αιτία: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Εντοπίστηκε μια προσπάθεια προσθήκης διπλού torrent. Πηγή: %1. Υπάρχον torrent: %2. Αποτέλεσμα: %3 + Εντοπίστηκε μια προσπάθεια προσθήκης διπλού torrent. Πηγή: %1. Υπάρχον torrent: %2. Αποτέλεσμα: %3 - + Merging of trackers is disabled Η συγχώνευση trackers είναι απενεργοποιημένη - + Trackers cannot be merged because it is a private torrent Δεν είναι δυνατή η συγχώνευση των Trackers επειδή είναι ιδιωτικός torrent - + Trackers are merged from new source Οι trackers συγχωνεύονται από νέα πηγή + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Επανέλεγχος των torrents μετά την ολοκλήρωση - - + + ms milliseconds ms - + Setting Ρύθμιση - + Value Value set for this setting Τιμή - + (disabled) (απενεργοποιημένο) - + (auto) (αυτόματο) - - + + min minutes λεπτά - + All addresses Όλες οι διευθύνσεις - + qBittorrent Section Ενότητα qBittorrent - - + + Open documentation Άνοιγμα τεκμηρίωσης - + All IPv4 addresses Όλες οι διευθύνσεις IPv4 - + All IPv6 addresses Όλες οι διευθύνσεις IPv6 - + libtorrent Section Ενότητα libtorrent - + Fastresume files Αρχεία fastresume - + SQLite database (experimental) Βάση δεδομένων SQLite (πειραματικό) - + Resume data storage type (requires restart) Τύπος αποθήκευσης δεδομένων συνέχισης (απαιτεί επανεκκίνηση) - + Normal Κανονική - + Below normal Κάτω από κανονική - + Medium Μέτρια - + Low Χαμηλή - + Very low Πολύ χαμηλή - + Physical memory (RAM) usage limit Όριο χρήσης φυσικής μνήμης (RAM). - + Asynchronous I/O threads Ασύγχρονα νήματα I/O - + Hashing threads Hashing νημάτων - + File pool size Μέγεθος pool αρχείου - + Outstanding memory when checking torrents Outstanding μνήμης κατά τον έλεγχο των torrents - + Disk cache Cache δίσκου - - - - + + + + + s seconds s - + Disk cache expiry interval Μεσοδιάστημα λήξης cache δίσκου - + Disk queue size Μέγεθος ουράς δίσκου: - - + + Enable OS cache Ενεργοποίηση cache ΛΣ - + Coalesce reads & writes Συνένωση αναγνώσεων & εγγραφών - + Use piece extent affinity Χρήση συγγένειας έκτασης κομματιού - + Send upload piece suggestions Στείλτε προτάσεις ανεβάσματος κομματιών - - - - - + + + + + 0 (disabled) 0 (απενεργοποιημένο) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Αποθήκευση διαστήματος ανάκτησης δεδομένων [0: απενεργοποιημένο] - + Outgoing ports (Min) [0: disabled] Εξερχόμενες θύρες (ελάχ.) [0: απενεργοποιημένο] - + Outgoing ports (Max) [0: disabled] Εξερχόμενες θύρες (μέγ.) [0: απενεργοποιημένο] - + 0 (permanent lease) 0: (Μόνιμη μίσθωση) - + UPnP lease duration [0: permanent lease] Διάρκεια μίσθωσης UPnP [0: Μόνιμη μίσθωση] - + Stop tracker timeout [0: disabled] Χρονικό όριο διακοπής tracker: [0: ανενεργό] - + Notification timeout [0: infinite, -1: system default] Λήξη χρονικού ορίου ειδοποίησης [0: άπειρο, -1: προεπιλογή συστήματος] - + Maximum outstanding requests to a single peer Μέγιστα εκκρεμή αιτήματα σε μοναδικό peer: - - - - - + + + + + KiB KiB - + (infinite) (άπειρο) - + (system default) (προεπιλογή συστήματος) - + Delete files permanently - + Μόνιμη διαγραφή αρχείων - + Move files to trash (if possible) - + Μετακίνηση αρχείων στον κάδο (αν είναι δυνατό) - + Torrent content removing mode - + Λειτουργία αφαίρεσης περιεχομένου του torrent - + This option is less effective on Linux Αυτή η επιλογή είναι λιγότερο αποτελεσματική σε Linux - + Process memory priority Προτεραιότητα μνήμης διεργασιών - + Bdecode depth limit Όριο βάθους Bdecode - + Bdecode token limit Όριο token Bdecode - + Default Προεπιλογή - + Memory mapped files Αρχεία αντιστοιχισμένα στη μνήμη - + POSIX-compliant Συμβατό με POSIX - + Simple pread/pwrite - + Απλό pread/pwrite - + Disk IO type (requires restart) Τύπος IO δίσκου (απαιτείται επανεκκίνηση) - - + + Disable OS cache Απενεργοποίηση cache ΛΣ - + Disk IO read mode Λειτουργία ανάγνωσης IO δίσκου - + Write-through Write-through - + Disk IO write mode Λειτουργία εγγραφής IO δίσκου - + Send buffer watermark Send buffer watermark - + Send buffer low watermark Send buffer low watermark - + Send buffer watermark factor Παράγοντας Send buffer watermark - + Outgoing connections per second Εξερχόμενες συνδέσεις ανά δευτερόλεπτο - - + + 0 (system default) 0 (προεπιλογή συστήματος) - + Socket send buffer size [0: system default] Μέγεθος buffer αποστολής υποδοχής [0: προεπιλογή συστήματος] - + Socket receive buffer size [0: system default] Μέγεθος buffer λήψης υποδοχής [0: προεπιλογή συστήματος] - + Socket backlog size Μέγεθος backlog του socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit όριο μεγέθους αρχείου .torrent - + Type of service (ToS) for connections to peers Τύπος υπηρεσίας (ToS) για συνδέσεις με peers - + Prefer TCP Προτίμηση TCP - + Peer proportional (throttles TCP) Ανάλογα με τα peers (ρυθμίζει το TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Υποστήριξη διεθνοποιημένου ονόματος τομέα (IDN) - + Allow multiple connections from the same IP address Να επιτρέπονται πολλαπλές συνδέσεις από την ίδια διεύθυνση IP - + Validate HTTPS tracker certificates Επικύρωση των HTTPS πιστοποιητικών του tracker - + Server-side request forgery (SSRF) mitigation Μείωση Server-Side Request Forgery (SSRF) - + Disallow connection to peers on privileged ports Να απαγορεύεται η σύνδεση των peers σε προνομιακές θύρες - + It appends the text to the window title to help distinguish qBittorent instances Προσαρτά το κείμενο στον τίτλο του παραθύρου ώστε να μπορείτε να ξεχωρίσετε τις υποστάσεις του qBittorent - + Customize application instance name Προσαρμογή ονόματος υπόστασης εφαρμογής - + It controls the internal state update interval which in turn will affect UI updates Ελέγχει το χρονικό διάστημα ενημέρωσης της εσωτερικής κατάστασης το οποίο με τη σειρά του θα επηρεάσει τις ενημερώσεις της διεπαφής χρήστη - + Refresh interval Χρονικό διάστημα ανανέωσης - + Resolve peer host names Επίλυση ονομάτων των host του peer - + IP address reported to trackers (requires restart) Η διεύθυνση IP που εκτίθεται στους trackers (απαιτεί επανεκκίνηση) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Reannounce σε όλους τους trackers όταν αλλάξει η IP ή η θύρα - + Enable icons in menus Ενεργοποίηση εικονιδίων στα μενού - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Ενεργοποίηση port forwarding για ενσωματωμένο tracker - + Enable quarantine for downloaded files Ενεργοποίηση καραντίνας για ληφθέντα αρχεία - + Enable Mark-of-the-Web (MOTW) for downloaded files Ενεργοποίηση του Mark-of-the-Web (MOTW) για τα ληφθέντα αρχεία - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Επηρεάζει την επικύρωση πιστοποιητικών και και δραστηριότητες πρωτοκόλλων που δεν αφορούν στα torrent (π.χ. ροές RSS, ενημερώσεις πριγράμματος, αρχεία torrent, geoip db, κλπ) - + Ignore SSL errors - + Αγνόηση σφαλμάτων SSL - + (Auto detect if empty) (Αυτόματος εντοπισμός εάν είναι κενό) - + Python executable path (may require restart) Εκτελέσσιμη διαδρομή Python (ενδέχεται να απαιτείται επανεκκίνηση) - + Start BitTorrent session in paused state - + Εκκίνηση του BitTorrent σε κατάσταση παύσης - + sec seconds - sec + sec - + -1 (unlimited) - + -1 (απεριόριστο) - + BitTorrent session shutdown timeout [-1: unlimited] - + Χρονικό όριο τερματισμού περιόδου λειτουργίας BitTorrent [-1: απεριόριστο] - + Confirm removal of tracker from all torrents Επιβεβαιώστε την αφαίρεση του tracker από όλα τα torrent - + Peer turnover disconnect percentage Ποσοστό αποσύνδεσης των κύκλων εργασιών του peer - + Peer turnover threshold percentage Ποσοστό ορίου των κύκλων εργασιών του peer - + Peer turnover disconnect interval Μεσοδιάστημα αποσύνδεσης του κύκλου εργασιών του peer - + Resets to default if empty Επαναφέρεται στην προεπιλογή εάν είναι κενό - + DHT bootstrap nodes Κόμβοι εκκίνησης DHT - + I2P inbound quantity Εισερχόμενη ποσότητα I2P - + I2P outbound quantity Εξερχόμενη ποσότητα I2P - + I2P inbound length Μήκος εισερχόμενου I2P - + I2P outbound length Μήκος εξερχόμενου I2P - + Display notifications Εμφάνιση ειδοποιήσεων - + Display notifications for added torrents Εμφάνισε ειδοποιήσεις για τα προστιθέμενα torrents - + Download tracker's favicon Λήψη favicon του tracker - + Save path history length Μήκος ιστορικού διαδρομής αποθήκευσης - + Enable speed graphs Ενεργοποίηση γραφημάτων ταχύτητας - + Fixed slots Σταθερά slots - + Upload rate based Βάσει ταχύτητας αποστολής - + Upload slots behavior Συμπεριφορά slots αποστολής - + Round-robin Round-robin - + Fastest upload Γρηγορότερη αποστολή - + Anti-leech Αντι-leech - + Upload choking algorithm Αλγόριθμος choking αποστολής - + Confirm torrent recheck Επιβεβαίωση επανελέγχου torrent - + Confirm removal of all tags Επιβεβαίωση αφαίρεσης όλων των ετικετών - + Always announce to all trackers in a tier Πάντα announce προς όλους τους trackers του tier - + Always announce to all tiers Πάντα ανακοίνωση σε όλα τα tiers - + Any interface i.e. Any network interface Οποιαδήποτε διεπαφή - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP αλγόριθμος μεικτής λειτουργίας - + Resolve peer countries Επίλυση χωρών των peer - + Network interface Διεπαφή δικτύου - + Optional IP address to bind to Προαιρετική διεύθυνση IP για δέσμευση - + Max concurrent HTTP announces Μέγιστες ταυτόχρονες HTTP announces - + Enable embedded tracker Ενεργοποίηση ενσωματωμένου tracker - + Embedded tracker port Θύρα ενσωματωμένου tracker @@ -1382,17 +1393,17 @@ Invalid directory path - + Μη έγκυρη διαδρομή καταλόγου Directory does not exist - + Ο κατάλογος δεν υπάρχει Invalid mode, allowed values: %1 - + Μη έγκυρη λειτουργία, επιτρεπόμενες τιμές: %1 @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Εκτέλεση σε φορητή λειτουργία. Εντοπίστηκε αυτόματα φάκελος προφίλ σε: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Εντοπίστηκε περιττή σήμανση γραμμής εντολών: "%1". Η φορητή λειτουργία υποδηλώνει σχετικό fastresume. - + Using config directory: %1 Γίνεται χρήση του καταλόγου διαμόρφωσης: %1 - + Torrent name: %1 Όνομα torrent: %1 - + Torrent size: %1 Μέγεθος torrent: %1 - + Save path: %1 Διαδρομή αποθήκευσης: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Το torrent λήφθηκε σε %1. - - + + Thank you for using qBittorrent. Σας ευχαριστούμε που χρησιμοποιείτε το qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, αποστολή ειδοποίησης μέσω email - + Add torrent failed Η προσθήκη torrent απέτυχε - + Couldn't add torrent '%1', reason: %2. Δεν ήταν δυνατή η προσθήκη torrent '%1', λόγος: %2. - + The WebUI administrator username is: %1 Το όνομα χρήστη του διαχειριστή WebUI είναι: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Ο κωδικός πρόσβασης διαχειριστή WebUI δεν ορίστηκε. Παρέχεται ένας προσωρινός κωδικός πρόσβασης για αυτήν την περίοδο λειτουργίας: %1 - + You should set your own password in program preferences. Θα πρέπει να ορίσετε τον δικό σας κωδικό πρόσβασης στις ρυθμίσεις. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Το WebUI είναι απενεργοποιημένο! Για να ενεργοποιήσετε το WebUI, επεξεργαστείτε χειροκίνητα το αρχείο ρυθμίσεων. - + Running external program. Torrent: "%1". Command: `%2` Εκτέλεση εξωτερικού προγράμματος. Torrent: "%1". Εντολή: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Απέτυχε η εκτέλεση εξωτερικού προγράμματος. Torrent: "%1". Εντολή: `%2` - + Torrent "%1" has finished downloading Η λήψη του torrent "%1" ολοκληρώθηκε - + WebUI will be started shortly after internal preparations. Please wait... Το WebUI θα ξεκινήσει λίγο μετά τις εσωτερικές προετοιμασίες. Παρακαλώ περιμένετε... - - + + Loading torrents... Φόρτωση torrents... - + E&xit Ε&ξοδος - + I/O Error i.e: Input/Output Error Σφάλμα I/O - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Αιτία: %2 - + Torrent added Το torrent προστέθηκε - + '%1' was added. e.g: xxx.avi was added. Το '%1' προστέθηκε. - + Download completed Η λήψη ολοκληρώθηκε - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started Το qBittorrent %1 ξεκίνησε. ID διεργασίας: %2 - + This is a test email. - + Αυτό είναι ένα δοκιμαστικό email. - + Test email - + Δοκιμαστικό email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Η λήψη του '%1' ολοκληρώθηκε. - + Information Πληροφορίες - + To fix the error, you may need to edit the config file manually. Για να διορθώσετε το σφάλμα, ίσως χρειαστεί να επεξεργαστείτε το αρχείο ρυθμίσεων με μη αυτόματο τρόπο. - + To control qBittorrent, access the WebUI at: %1 Για τον έλεγχο του qBittorrent, αποκτήστε πρόσβαση στο WebUI στη : %1 - + Exit Έξοδος - + Recursive download confirmation Επιβεβαίωση αναδρομικής λήψης - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Το torrent '%1' περιέχει αρχεία .torrent, θέλετε να συνεχίσετε με την λήψη τους; - + Never Ποτέ - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Αναδρομική λήψη αρχείου .torrent στο torrent. Torrent-πηγή: "%1". Αρχείο: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Αποτυχία ορισμού ορίου χρήσης φυσικής μνήμης (RAM). Κωδικός σφάλματος: %1. Μήνυμα σφάλματος: "% 2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Απέτυχε να οριστεί ανώτατο όριο χρήσης φυσικής μνήμης (RAM). Ζητούμενο μέγεθος: %1. Ανώτατο όριο συστήματος: %2. Κωδικός σφάλματος: %3. Μήνυμα σφάλματος: "%4" - + qBittorrent termination initiated Ξεκίνησε ο τερματισμός του qBittorrent - + qBittorrent is shutting down... Το qBittorrent τερματίζεται... - + Saving torrent progress... Αποθήκευση προόδου torrent… - + qBittorrent is now ready to exit Το qBittorrent είναι έτοιμο να πραγματοποιήσει έξοδο @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Εξαγωγή… - + Matches articles based on episode filter. Αντιστοιχεί άρθρα βασισμένα στο φίλτρο επεισοδίου. - + Example: Παράδειγμα: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match θα αντιστοιχίσει τα 2, 5, 8 έως 15, 30 και μετέπειτα επεισόδια της πρώτης σεζόν. - + Episode filter rules: Κανόνες φίλτρου επεισοδίου: - + Season number is a mandatory non-zero value Ο αριθμός της σεζόν είναι υποχρεωτική μή μηδενική τιμή - + Filter must end with semicolon Το φίλτρο πρέπει να τελειώνει με άνω τελεία - + Three range types for episodes are supported: Υποστηρίζονται τρεις τύποι εύρους για επεισόδια: - + Single number: <b>1x25;</b> matches episode 25 of season one Μονός αριθμός: <b>1x25;</b> αντιστοιχεί το επεισόδιο 25 της πρώτης σεζόν - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Κανονικό εύρος: <b>1x25-40;</b> αντιστοιχεί τα επεισόδια 25 έως 40 της πρώτης σεζόν - + Episode number is a mandatory positive value Ο αριθμός επεισοδίου είναι μια υποχρεωτική θετική τιμή. - + Rules Κανόνες - + Rules (legacy) Κανόνες (παλιοί) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Άπειρο εύρος: <b>1x25-;</b> ταιριάζει σε επεισόδια 25 και πάνω της πρώτης σεζόν, και όλα τα επεισόδια από μετέπειτα σεζόν - + Last Match: %1 days ago Τελευταία Αντιστοιχία: πριν από %1 ημέρες - + Last Match: Unknown Τελευταία Αντιστοιχία: Άγνωστο - + New rule name Όνομα νέου κανόνα - + Please type the name of the new download rule. Παρακαλώ πληκτρολογήστε το όνομα του νέου κανόνα λήψης. - - + + Rule name conflict Διένεξη ονόματος κανόνα - - + + A rule with this name already exists, please choose another name. Ένας κανόνας με αυτό το όνομα υπάρχει ήδη, παρακαλώ επιλέξτε ένα άλλο όνομα. - + Are you sure you want to remove the download rule named '%1'? Είστε σίγουροι πως θέλετε να αφαιρέσετε τον κανόνα λήψης με όνομα '%1'; - + Are you sure you want to remove the selected download rules? Είστε βέβαιοι ότι θέλετε να αφαιρέσετε τους επιλεγμένους κανόνες λήψης; - + Rule deletion confirmation Επιβεβαίωση διαγραφής κανόνα - + Invalid action Μη έγκυρη ενέργεια - + The list is empty, there is nothing to export. Η λίστα είναι άδεια, δεν υπάρχει τίποτα για εξαγωγή. - + Export RSS rules Εξαγωγή κανόνων RSS - + I/O Error Σφάλμα I/O - + Failed to create the destination file. Reason: %1 Η δημιουργία του αρχείου προορισμού απέτυχε. Αιτία: %1 - + Import RSS rules Εισαγωγή κανόνων RSS - + Failed to import the selected rules file. Reason: %1 Η εισαγωγή του επιλεγμένου αρχείου κανόνων απέτυχε. Αιτία: %1 - + Add new rule... Προσθήκη νέου κανόνα… - + Delete rule Διαγραφή κανόνα - + Rename rule... Μετονομασία κανόνα… - + Delete selected rules Διαγραφή επιλεγμένων κανόνων - + Clear downloaded episodes... Εκκαθάριση επεισοδίων που έχουν ληφθεί... - + Rule renaming Μετονομασία κανόνα - + Please type the new rule name Παρακαλώ πληκτρολογήστε το νέο όνομα κανόνα - + Clear downloaded episodes Εκκαθάριση επεισοδίων που έχουν ληφθεί - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Είστε βέβαιοι ότι θέλετε να διαγράψετε τη λίστα των επεισοδίων που έχετε κάνει λήψη για τον επιλεγμένο κανόνα; - + Regex mode: use Perl-compatible regular expressions Λειτουργία regex: χρησιμοποιήστε συμβατές-με-Perl κανονικές εκφράσεις - - + + Position %1: %2 Θέση %1: %2 - + Wildcard mode: you can use Λειτουργία wildcard: μπορείτε να χρησιμοποιήσετε - - + + Import error Σφάλμα εισαγωγής - + Failed to read the file. %1 Αποτυχία ανάγνωσης αρχείου. %1 - + ? to match any single character ? για να αντιστοιχηθεί με οποιονδήποτε μονό χαρακτήρα - + * to match zero or more of any characters * για να αντιστοιχηθεί με κανέναν ή περισσότερους από τυχόν χαρακτήρες - + Whitespaces count as AND operators (all words, any order) Τα κενά μετράνε ως τελεστές AND (όλες οι λέξεις, οποιαδήποτε σειρά) - + | is used as OR operator Το | χρησιμοποιείται ως τελεστής OR - + If word order is important use * instead of whitespace. Αν η σειρά των λέξεων παίζει ρόλο χρησιμοποιείστε * αντί για κενό. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Μια έκφραση με ένα κενό %1 όρο (e.g. %2) - + will match all articles. θα αντιστοιχηθεί με όλα τα άρθρα. - + will exclude all articles. θα εξαιρέσει όλα τα άρθρα. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Δεν είναι δυνατή η ανάλυση των δεδομένων συνέχισης: μη έγκυρη μορφή - - + + Cannot parse torrent info: %1 Δεν είναι δυνατή η ανάλυση των πληροφοριών torrent: %1 - + Cannot parse torrent info: invalid format Δεν είναι δυνατή η ανάλυση πληροφοριών torrent: μη έγκυρη μορφή - + Mismatching info-hash detected in resume data Εντοπίστηκε αναντιστοιχία hash πληροφοριών στα δεδομένα συνέχισης - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Δεν ήταν δυνατή η αποθήκευση των μεταδεδομένων του torrent στο '%1'. Σφάλμα: %2 - + Couldn't save torrent resume data to '%1'. Error: %2. Δεν ήταν δυνατή η αποθήκευση των δεδομένων συνέχισης του torrent στο '%1'. Σφάλμα: %2 @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Δεν είναι δυνατή η ανάλυση των δεδομένων συνέχισης: %1 - + Resume data is invalid: neither metadata nor info-hash was found Τα δεδομένα συνέχισης δεν είναι έγκυρα: δεν βρέθηκαν μεταδεδομένα ούτε info-hash - + Couldn't save data to '%1'. Error: %2 Δεν ήταν δυνατή η αποθήκευση των δεδομένων στο '%1'. Σφάλμα: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Δεν βρέθηκε. - + Couldn't load resume data of torrent '%1'. Error: %2 Δεν ήταν δυνατή η φόρτωση των δεδομένων συνέχισης του torrent '%1'. Σφάλμα: %2 - - + + Database is corrupted. Η βάση δεδομένων έχει καταστραφεί. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Δεν ήταν δυνατή η ενεργοποίηση της λειτουργίας καταγραφής εγγραφής πριν από την εγγραφή (WAL). Σφάλμα: %1. - + Couldn't obtain query result. Δεν ήταν δυνατή η λήψη του αποτελέσματος του ερωτήματος. - + WAL mode is probably unsupported due to filesystem limitations. Η λειτουργία WAL πιθανώς δεν υποστηρίζεται λόγω περιορισμών του συστήματος αρχείων. - + + + Cannot parse resume data: %1 + Δεν είναι δυνατή η ανάλυση των δεδομένων συνέχισης: %1 + + + + + Cannot parse torrent info: %1 + Δεν είναι δυνατή η ανάλυση των πληροφοριών torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Δεν ήταν δυνατή η έναρξη της συναλλαγής. Σφάλμα: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Δεν ήταν δυνατή η αποθήκευση των μεταδεδομένων του torrent Σφάλμα: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Δεν ήταν δυνατή η αποθήκευση των δεδομένων συνέχισης για το torrent '%1'. Σφάλμα: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Δεν ήταν δυνατή η διαγραφή των δεδομένων συνέχισης του torrent '%1'. Σφάλμα: %2 - + Couldn't store torrents queue positions. Error: %1 Δεν ήταν δυνατή η αποθήκευση των θέσεων των torrents στην ουρά. Σφάλμα: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Υποστήριξη Distributed Hash Table (DHT): %1 - - - - - - - - - + + + + + + + + + ON ΕΝΕΡΓΟ - - - - - - - - - + + + + + + + + + OFF ΑΝΕΝΕΡΓΟ - - + + Local Peer Discovery support: %1 Υποστήριξη Ανακάλυψης Τοπικών Peer: %1 - + Restart is required to toggle Peer Exchange (PeX) support Απαιτείται επανεκκίνηση για εναλλαγή υποστήριξης Peer Exchange (PeX). - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Απέτυχε η συνέχιση του torrent. Torrent: "%1". Αιτία: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Απέτυχε η συνέχιση του torrent: ανιχνεύτηκε ασυνεπές ID torrent. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Εντοπίστηκαν ασυνεπή δεδομένα: λείπει η κατηγορία από το αρχείο διαμόρφωσης. Η κατηγορία θα ανακτηθεί, αλλά οι ρυθμίσεις της θα επανέλθουν στις προεπιλογές. Torrent: "%1". Κατηγορία: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Εντοπίστηκαν ασυνεπή δεδομένα: μη έγκυρη κατηγορία. Torrent: "%1". Κατηγορία: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Εντοπίστηκε αναντιστοιχία μεταξύ των διαδρομών αποθήκευσης της ανακτημένης κατηγορίας και της τρέχουσας διαδρομής αποθήκευσης του torrent. Το Torrent έχει πλέον αλλάξει σε Χειροκίνητη λειτουργία. Torrent: "%1". Κατηγορία: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Εντοπίστηκαν ασυνεπή δεδομένα: Η ετικέτα λείπει από το αρχείο διαμόρφωσης. Η ετικέτα θα ανακτηθεί. Torrent: "%1". Ετικέτα: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Εντοπίστηκαν ασυνεπή δεδομένα: μη έγκυρη ετικέτα. Torrent: "%1". Ετικέτα: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Εντοπίστηκε συμβάν αφύπνισης του συστήματος. Επανάληψη της αναγγελίας σε όλους τους trackers... - + Peer ID: "%1" ID Peer: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Υποστήριξη Ανταλλαγής Peer (PeX): %1 - - + + Anonymous mode: %1 Ανώνυμη λειτουργία: %1 - - + + Encryption support: %1 Υποστήριξη κρυπτογράφησης: %1 - - + + FORCED ΕΞΑΝΑΓΚΑΣΜΕΝΟ - + Could not find GUID of network interface. Interface: "%1" Δεν ήταν δυνατή η εύρεση του GUID της διεπαφής δικτύου. Διεπαφή: "%1" - + Trying to listen on the following list of IP addresses: "%1" Προσπάθεια ακρόασης στην ακόλουθη λίστα διευθύνσεων IP: "%1" - + Torrent reached the share ratio limit. Το torrent έφτασε το όριο αναλογίας διαμοιρασμού. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Το torrent αφαιρέθηκε. - - - Removed torrent and deleted its content. - Αφαιρέθηκε το torrent και διαγράφηκε το περιεχόμενό του. - - - Torrent paused. - Έγινε παύση του torrent. - - - + Super seeding enabled. Η λειτουργία super seeding ενεργοποιήθηκε. - + Torrent reached the seeding time limit. Το torrent έφτασε το όριο χρόνου seeding. - + Torrent reached the inactive seeding time limit. Το torrent έφτασε το χρονικό όριο του ανενεργού seeding. - + Failed to load torrent. Reason: "%1" Αποτυχία φόρτωσης torrent. Αιτία: "%1." - + I2P error. Message: "%1". Σφάλμα I2P. Μήνυμα: "%1". - + UPnP/NAT-PMP support: ON Υποστήριξη UPnP/NAT-PMP: ΕΝΕΡΓΗ - + Saving resume data completed. - + Η αποθήκευση δεδομένων συνέχισης ολοκληρώθηκε. - + BitTorrent session successfully finished. - + Η συνεδρία του BitTorrent ολοκληρώθηκε επιτυχώς. - + Session shutdown timed out. - + Ο τερματισμός της συνεδρίας έληξε. - + Removing torrent. - + Αφαίρεση torrent. - + Removing torrent and deleting its content. - + Αφαίρεση torrent και διαγραφή του περιεχομένου του. - + Torrent stopped. - + Το torrent σταμάτησε. - + Torrent content removed. Torrent: "%1" - + Το περιεχόμενο του torrent διαγράφηκε. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Απέτυχε η αφαίρεση του περιεχομένου του torrent. Torrent: "%1". Σφάλμα: "%2" - + Torrent removed. Torrent: "%1" - + Το torrent αφαιρέθηκε. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Εντοπίστηκε μια προσπάθεια προσθήκης διπλότυπου torrent. Υπάρχον torrent: %1. Αποτέλεσμα: %2 - + Merging of trackers is disabled - Η συγχώνευση trackers είναι απενεργοποιημένη + Η συγχώνευση trackers είναι απενεργοποιημένη - + Trackers cannot be merged because it is a private torrent - Δεν είναι δυνατή η συγχώνευση των Trackers επειδή είναι ιδιωτικός torrent + Δεν είναι δυνατή η συγχώνευση των Trackers επειδή είναι ιδιωτικός torrent - + Trackers are merged from new source - Οι trackers συγχωνεύονται από νέα πηγή + Οι trackers συγχωνεύονται από νέα πηγή - + UPnP/NAT-PMP support: OFF Υποστήριξη UPnP/NAT-PMP: ΑΝΕΝΕΡΓΗ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Αποτυχία εξαγωγής torrent. Torrent: "%1". Προορισμός: "%2". Αιτία: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Ματαίωση αποθήκευσης των δεδομένων συνέχισης. Αριθμός torrent σε εκκρεμότητα: %1 - + The configured network address is invalid. Address: "%1" Η διαμορφωμένη διεύθυνση δικτύου δεν είναι έγκυρη. Διεύθυνση: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Αποτυχία εύρεσης της διαμορφωμένης διεύθυνσης δικτύου για ακρόαση. Διεύθυνση: "%1" - + The configured network interface is invalid. Interface: "%1" Η διαμορφωμένη διεπαφή δικτύου δεν είναι έγκυρη. Διεπαφή: "%1" - + Tracker list updated - + Ενημερώθηκε η λίστα tracker - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Απορρίφθηκε μη έγκυρη διεύθυνση IP κατά την εφαρμογή της λίστας των αποκλεισμένων IP διευθύνσεων. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Προστέθηκε tracker στο torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Καταργήθηκε ο tracker από το torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Προστέθηκε το URL seed στο torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Καταργήθηκε το URL seed από το torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Αποτυχία αφαίρεσης partfile. Torrent: "%1". Αιτία: "%2". - Torrent paused. Torrent: "%1" - Το torrent τέθηκε σε παύση. Ονομα torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Το torrent τέθηκε σε συνέχιση. Ονομα torrent: "%1" - + Torrent download finished. Torrent: "%1" Η λήψη του torrent ολοκληρώθηκε. Ονομα torrrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Η μετακίνηση του torrent ακυρώθηκε. Ονομα torrent: "%1". Προέλευση: "%2". Προορισμός: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Το torrent τέθηκε σε διακοπή. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Απέτυχε η προσθήκη του torrent στην ουρά μετακίνησης torrent. Ονομα Torrent: "%1". Προέλευση: "%2". Προορισμός: "%3". Αιτία: το torrent μετακινείται αυτήν τη στιγμή στον προορισμό - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Απέτυχε η προσθήκη του torrent στην ουρά μετακίνησης torrent. Ονομα Torrent: "%1". Προέλευση: "%2". Προορισμός: "%3". Αιτία: και οι δύο διαδρομές είναι ίδιες - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Μετακίνηση torrent σε ουρά. Torrent: "%1". Προέλευση: "%2". Προορισμός: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Εναρξη μετακίνησης torrent. Ονομα Torrent: "%1". Προορισμός: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Αποτυχία αποθήκευσης της διαμόρφωσης Κατηγοριών. Αρχείο: "%1". Σφάλμα: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Αποτυχία ανάλυσης της διαμόρφωσης Κατηγοριών. Αρχείο: "%1". Σφάλμα: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Επιτυχής ανάλυση του αρχείου φίλτρου IP. Αριθμός κανόνων που εφαρμόστηκαν: %1 - + Failed to parse the IP filter file Αποτυχία ανάλυσης του αρχείου φίλτρου IP - + Restored torrent. Torrent: "%1" Εγινε επαναφορά του torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Προστέθηκε νέο torrrent. Torrrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Το torrent παρουσίασε σφάλμα. Torrent: "%1". Σφάλμα: %2. - Removed torrent. Torrent: "%1" - Το torrent αφαιρέθηκε. Torrrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Το torrent αφαιρέθηκε και τα αρχεία του διαγράφτηκαν. Torrrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Λείπουν οι παράμετροι SSL του Torrent. Torrent: "%1". Μήνυμα: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Ειδοποίηση σφάλματος αρχείου. Torrent: "%1". Αρχείο: "%2". Αιτία: %3 - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP: Αποτυχία αντιστοίχισης θυρών. Μήνυμα: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP: Επιτυχία αντιστοίχισης θυρών. Μήνυμα: "%1" - + IP filter this peer was blocked. Reason: IP filter. Φίλτρο IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). φιλτραρισμένη θύρα (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). προνομιακή θύρα (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" Η σύνοδος BitTorrent αντιμετώπισε ένα σοβαρό σφάλμα. Λόγος: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Σφάλμα SOCKS5 proxy. Διεύθυνση: %1. Μήνυμα: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 περιορισμοί μικτής λειτουργίας - + Failed to load Categories. %1 Αποτυχία φόρτωσης Κατηγοριών. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Αποτυχία φόρτωσης της διαμόρφωση κατηγοριών. Αρχείο: "%1". Σφάλμα: "Μη έγκυρη μορφή δεδομένων" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Καταργήθηκε το torrent αλλά απέτυχε η διαγραφή του περιεχόμενού του ή/και του partfile του. Torrent: "% 1". Σφάλμα: "% 2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. Το %1 είναι απενεργοποιημένο - + %1 is disabled this peer was blocked. Reason: TCP is disabled. Το %1 είναι απενεργοποιημένο - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Η αναζήτηση DNS για το URL seed απέτυχε. Torrent: "%1". URL: "%2". Σφάλμα: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Ελήφθη μήνυμα σφάλματος από URL seed. Torrent: "%1". URL: "%2". Μήνυμα: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Επιτυχής ακρόαση της IP. IP: "%1". Θύρα: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Αποτυχία ακρόασης της IP. IP: "%1". Θύρα: "%2/%3". Αιτία: "%4" - + Detected external IP. IP: "%1" Εντοπίστηκε εξωτερική IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Σφάλμα: Η εσωτερική ουρά ειδοποιήσεων είναι πλήρης και ακυρώθηκαν ειδοποιήσεις, μπορεί να διαπιστώσετε μειωμένες επιδόσεις. Τύπος ακυρωμένων ειδοποιήσεων: "%1". Μήνυμα: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Το torrent μετακινήθηκε με επιτυχία. Torrent: "%1". Προορισμός: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Αποτυχία μετακίνησης torrent. Torrent: "%1". Προέλευση: "%2". Προορισμός: "%3". Αιτία: "%4" @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Δεν ήταν δυνατή η εγγραφή στο αρχείο. Αιτία: "%1". Το Torrent είναι πλέον σε λειτουργία "μόνο μεταφόρτωση". - + Download first and last piece first: %1, torrent: '%2' Λήψη πρώτου και τελευταίου κομματιού πρώτα: %1, torrent: '%2' - + On Ενεργό - + Off Ανενεργό - + Failed to reload torrent. Torrent: %1. Reason: %2 Απέτυχε η επαναφόρτωση του torrent. Torrent: %1. Αιτία: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Αποτυχία δημιουργίας δεδομένων συνέχισης. Torrent: "%1". Αιτία: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Αποτυχία επαναφοράς torrent. Τα αρχεία πιθανότατα μετακινήθηκαν ή ο χώρος αποθήκευσης δεν είναι προσβάσιμος. Torrent: "%1". Αιτία: "%2" - + Missing metadata Τα μεταδεδομένα λείπουν - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Αποτυχία μετονομασίας αρχείου. Torrent: "%1", αρχείο: "%2", αιτία: "%3" - + Performance alert: %1. More info: %2 Προειδοποίηση απόδοσης: %1. Περισσότερες πληροφορίες: %2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Αναμενόταν ακέραιος αριθμός στη μεταβλητή περιβάλλοντος '%1', αλλά ελήφθη '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Η παράμετρος '%1' πρέπει να ακολουθεί τη σύνταξη '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Η παράμετρος '%1' πρέπει να ακολουθεί τη σύνταξη '%1=%2' + Η παράμετρος '%1' πρέπει να ακολουθεί τη σύνταξη '%1=%2' @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - Προσθήκη torrents ως εκκινημένα ή σε παύση + Προσθήκη torrents ως εκκινημένα ή σε διακοπή @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Έναρξη torrents Stop torrents - - - - Resume torrents - Συνέχιση torrents - - - Pause torrents - Παύση torrents + Παύση torrents @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + Σύστημα @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - Διαγραφή και των αρχείων + Αφαίρεση επίσης και τα αρχεία περιεχομένου @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + Μορφή Μοτίβου Plain text - + Απλό κείμενο Wildcards - + Wildcards Regular expression - + Κανονική έκφραση GUIAddTorrentManager - + Downloading torrent... Source: "%1" Λήψη torrent... Πηγή: "%1" - Trackers cannot be merged because it is a private torrent - Δεν είναι δυνατή η συγχώνευση των Trackers επειδή είναι ιδιωτικός torrent - - - + Torrent is already present Το torrent υπάρχει ήδη - + Trackers cannot be merged because it is a private torrent. - + Οι trackers δεν μπορούν να ενωθούν γιατί αυτό είναι ένα private torrent - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Το torrent '%1' υπάρχει ήδη στη λίστα λήψεων. Θέλετε να γίνει συγχώνευση των tracker από τη νέα πηγή; @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Υποστηριζόμενα αρχεία εικόνας + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Η διαχείριση ενέργειας βρήκε κατάλληλη διεπαφή D-Bus. Διασύνδεση: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Σφάλμα διαχείρισης ενέργειας. Δράση: %1. Σφάλμα: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Μη αναμενόμενο σφάλμα διαχείρισης ενέργειας. Πολιτεία: %1. Σφάλμα: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Επιλογές… - - &Resume - &Συνέχιση - &Remove @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Κλείσιμο Παραθύρου - - R&esume All - Σ&υνέχιση Όλων - Manage Cookies... @@ -3816,12 +3838,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + Εκκίνη&ση Sto&p - + &Διακοπή @@ -3831,7 +3853,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pau&se Session - + &Παύση Συνεδρίας @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System Α&δρανοποίηση Συστήματος - - S&hutdown System - &Τερματισμός Συστήματος - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &Σχετικά - - &Pause - &Παύση - - - P&ause All - Π&αύση Όλων - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Εμφάνιση - + Check for program updates Έλεγχος για ενημερώσεις προγράμματος @@ -3978,388 +3988,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Αν σας αρέσει το qBittorrent, παρακαλώ κάντε μια δωρεά! - + Execution Log Καταγραφή Εκτέλεσης - + Clear the password Καθαρισμός του κωδικού πρόσβασης - + &Set Password &Ορίστε κωδικό πρόσβασης - + Preferences Προτιμήσεις - + &Clear Password &Καθαρισμός του κωδικού πρόσβασης - + Transfers Μεταφορές - - + + qBittorrent is minimized to tray Το qBittorrent ελαχιστοποιήθηκε στη γραμμή εργασιών - - - + + + This behavior can be changed in the settings. You won't be reminded again. Αυτή η συμπεριφορά μπορεί να αλλάξει στις ρυθμίσεις. Δεν θα σας γίνει υπενθύμιση ξανά. - + Icons Only Μόνο Εικονίδια - + Text Only Μόνο Κείμενο - + Text Alongside Icons Κείμενο Δίπλα στα Εικονίδια - + Text Under Icons Κείμενο Κάτω από τα Εικονίδια - + Follow System Style Ακολούθηση Στυλ Συστήματος - - + + UI lock password Κωδικός κλειδώματος UI - - + + Please type the UI lock password: Παρακαλώ εισάγετε τον κωδικό κλειδώματος του UI: - + Are you sure you want to clear the password? Είστε σίγουροι πως θέλετε να εκκαθαρίσετε τον κωδικό; - + Use regular expressions Χρήση κανονικών εκφράσεων - - + + Search Engine - Μηχανή Αναζήτησης + Μηχανή Αναζήτησης - + Search has failed - Η αναζήτηση απέτυχε + Η αναζήτηση απέτυχε - + Search has finished - Η αναζήτηση ολοκληρώθηκε + Η αναζήτηση ολοκληρώθηκε - + Search Αναζήτηση - + Transfers (%1) Μεταφορές (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. Το qBittorrent μόλις ενημερώθηκε και χρειάζεται επανεκκίνηση για να ισχύσουν οι αλλαγές. - + qBittorrent is closed to tray Το qBittorrent έκλεισε στη γραμμή εργασιών - + Some files are currently transferring. Μερικά αρχεία μεταφέρονται αυτή τη στιγμή. - + Are you sure you want to quit qBittorrent? Είστε σίγουροι ότι θέλετε να κλείσετε το qBittorrent? - + &No &Όχι - + &Yes &Ναι - + &Always Yes &Πάντα Ναι - + Options saved. Οι επιλογές αποθηκεύτηκαν. - + [PAUSED] %1 %1 is the rest of the window title - + [ΣΕ ΠΑΥΣΗ] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Λείπει το Python Runtime - + qBittorrent Update Available Διαθέσιμη Ενημέρωση του qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Το Python απαιτείται για τη χρήση της μηχανής αναζήτησης αλλά δεν φαίνεται να είναι εγκατεστημένο. Θέλετε να το εγκαταστήσετε τώρα; - + Python is required to use the search engine but it does not seem to be installed. Το Python απαιτείται για τη χρήση της μηχανής αναζήτησης αλλά δεν φαίνεται να είναι εγκατεστημένο. - - + + Old Python Runtime Παλιό Python Runtime - + A new version is available. Μια νέα έκδοση είναι διαθέσιμη - + Do you want to download %1? Θέλετε να κάνετε λήψη του %1; - + Open changelog... Άνοιγμα changelog... - + No updates available. You are already using the latest version. Δεν υπάρχουν διαθέσιμες ενημερώσεις. Χρησιμοποιείτε ήδη την πιο πρόσφατη έκδοση. - + &Check for Updates &Έλεγχος για ενημερώσεις - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Η Python έκδοσή σας (%1) είναι απαρχαιωμένη. Ελάχιστη απαίτηση: %2. Θέλετε να εγκαταστήσετε τώρα μια νεότερη έκδοση; - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Η Python έκδοσή σας (%1) είναι απαρχαιωμένη. Παρακαλώ αναβαθμίστε στην τελευταία έκδοση για να λειτουργήσουν οι μηχανές αναζήτησης. Ελάχιστη απαίτηση: %2. - + Paused - Σε παύση + Σε Παύση - + Checking for Updates... Αναζήτηση για ενημερώσεις… - + Already checking for program updates in the background Γίνεται ήδη έλεγχος για ενημερώσεις προγράμματος στο παρασκήνιο - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Σφάλμα λήψης - Python setup could not be downloaded, reason: %1. -Please install it manually. - Η εγκατάσταση του Python δε μπορεί να ληφθεί, αιτία: %1. -Παρακαλούμε εγκαταστήστε το χειροκίνητα. - - - - + + Invalid password Μη έγκυρος κωδικός πρόσβασης - + Filter torrents... Φίλτρο torrent... - + Filter by: Φίλτρο κατά: - + The password must be at least 3 characters long Ο κωδικός πρόσβασης θα πρέπει να αποτελείται από τουλάχιστον 3 χαρακτήρες - - - + + + RSS (%1) RSS (%1) - + The password is invalid Ο κωδικός πρόσβασης δεν είναι έγκυρος - + DL speed: %1 e.g: Download speed: 10 KiB/s Ταχύτητα ΛΨ: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Ταχύτητα ΑΠ: %1 - + Hide Απόκρυψη - + Exiting qBittorrent Γίνεται έξοδος του qBittorrent - + Open Torrent Files Άνοιγμα Αρχείων torrent - + Torrent Files Αρχεία Torrent @@ -4556,7 +4560,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + Σφάλμα SSL, URL: "%1", σφάλματα: "%2" @@ -5853,47 +5857,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 Η σύνδεση απέτυχε, μη αναγνωρισμένη απάντηση: %1 - + Authentication failed, msg: %1 Ο έλεγχος ταυτότητας απέτυχε, μήνυμα: %1 - + <mail from> was rejected by server, msg: %1 <mail from>απορρίφθηκε από τον διακομιστή, μήνυμα: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to>απορρίφθηκε από τον διακομιστή, μήνυμα: %1 - + <data> was rejected by server, msg: %1 <data>απορρίφθηκε από τον διακομιστή, μήνυμα: %1 - + Message was rejected by the server, error: %1 Το μήνυμα απορρίφθηκε από τον διακομιστή, σφάλμα: %1 - + Both EHLO and HELO failed, msg: %1 Τόσο το EHLO όσο και το HELO απέτυχαν, μήνυμα: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Ο διακομιστής SMTP δεν φαίνεται να υποστηρίζει καμία από τις λειτουργίες ελέγχου ταυτότητας που υποστηρίζουμε [CRAM-MD5|PLAIN|LOGIN], παράλειψη ελέγχου ταυτότητας, γνωρίζοντας ότι είναι πιθανό να αποτύχει... Λειτουργίες ελέγχου ταυτότητας διακομιστή: %1 - + Email Notification Error: %1 Σφάλμα ειδοποίησης email: %1 @@ -5935,10 +5939,6 @@ Please install it manually. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5959,6 @@ Please install it manually. Confirm when deleting torrents Επιβεβαίωση κατά την διαγραφή των torrent - - Shows a confirmation dialog upon pausing/resuming all the torrents - Εμφανίζει ένα παράθυρο επιβεβαίωσης κατά την παύση/επαναφορά όλων των torrents - - - Confirm "Pause/Resume all" actions - Επιβεβαίωση των ενεργειών "Παύση/Επαναφορά όλων" - Use alternating row colors @@ -5983,10 +5975,6 @@ Please install it manually. Always Πάντα - - Paused torrents only - Μόνο torrents σε παύση - Action on double-click @@ -5997,10 +5985,6 @@ Please install it manually. Downloading torrents: Λήψη torrents: - - Start / Stop Torrent - Εκκίνηση / Παύση Torrent - @@ -6059,179 +6043,179 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Διάταξη περιεχομένου του torrent: - + Original Πρωτότυπο - + Create subfolder Δημιουργία υποφακέλου - + Don't create subfolder Να μη δημιουργηθεί υποφάκελος - + The torrent will be added to the top of the download queue Το torrent θα προστεθεί στην αρχή της ουράς λήψεων - + Add to top of queue The torrent will be added to the top of the download queue Προσθήκη στην αρχή της ουράς - + When duplicate torrent is being added Όταν προστίθεται διπλό torrent - + Merge trackers to existing torrent Συγχώνευση trackers στο υπάρχον torrent - + Keep unselected files in ".unwanted" folder Διατήρηση των μη επιλεγμένων αρχείων στον φάκελο «.unwanted». - + Add... Προσθήκη... - + Options.. Επιλογές… - + Remove Αφαίρεση - + Email notification &upon download completion Ειδοποίηση μέσω emai&l μετά την ολοκλήρωση της λήψης - + Send test email - + Αποστολή δοκιμαστικού email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Πρωτόκολλο σύνδεσης peer: - + Any Οποιοδήποτε - + I2P (experimental) I2P (πειραματικό) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Αν η &quot;μικτή λειτουργία&quot; είναι ενεργοποιημένη τα I2P torrents επιτρέπονται να λάβουν peers και από άλλες πηγές εκτός του tracker, και να συνδεθούν σε κανονικές IP, παρέχοντας καμία ανωνυμία. Αυτό μπορεί να είναι χρήσιμο όταν ο χρήστης δεν ενδιαφέρεται για την ανωνυμοποίηση του I2P, αλλά εξακολουθεί να θέλει να μπορεί να συνδεθεί σε I2P peers.</p></body></html> - - - + Mixed mode Μικτή λειτουργία - Some options are incompatible with the chosen proxy type! - Ορισμένες επιλογές δεν είναι συμβατές με τον επιλεγμένο τύπο proxy! + Ορισμένες επιλογές δεν είναι συμβατές με τον επιλεγμένο τύπο proxy! - + If checked, hostname lookups are done via the proxy Εάν είναι επιλεγμένο, οι αναζητήσεις hostname γίνονται μέσω του proxy - + Perform hostname lookup via proxy Εκτέλεση αναζήτησης hostname μέσω proxy - + Use proxy for BitTorrent purposes Χρήση διακομιστή μεσολάβησης για σκοπούς BitTorrent - + RSS feeds will use proxy Οι ροές RSS θα χρησιμοποιούν proxy - + Use proxy for RSS purposes Χρήση διακομιστή μεσολάβησης για σκοπούς RSS - + Search engine, software updates or anything else will use proxy Η μηχανή αναζήτησης, οι ενημερώσεις λογισμικού ή οτιδήποτε άλλο θα χρησιμοποιούν proxy - + Use proxy for general purposes Χρήση διακομιστή μεσολάβησης για γενικούς σκοπούς - + IP Fi&ltering Φι&λτράρισμα IP - + Schedule &the use of alternative rate limits Προ&γραμματισμός χρήσης εναλλακτικών ορίων ρυθμού - + From: From start time Από: - + To: To end time Προς: - + Find peers on the DHT network Εύρεση peers στο δίκτυο DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6224,190 @@ Disable encryption: Only connect to peers without protocol encryption Να απενεργοποιηθεί η κρυπτογράφηση: Σύνδεση σε peers χωρίς πρωτόκολλο κρυπτογράφησης - + Allow encryption Να επιτρέπεται η κρυπτογράφηση - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Περισσότερες πληροφορίες</a>) - + Maximum active checking torrents: Μέγιστος έλεγχος ενεργών torrents: - + &Torrent Queueing Torrent σε &Ουρά - + When total seeding time reaches Όταν ο συνολικός χρόνος seeding ολοκληρωθεί - + When inactive seeding time reaches Όταν ο χρόνος ανενεργού seeding ολοκληρωθεί - A&utomatically add these trackers to new downloads: - Αυτόμα&τη προσθήκη αυτών των trackers σε νέες λήψεις: - - - + RSS Reader Αναγνώστης RSS - + Enable fetching RSS feeds Ενεργοποίηση ανάκτησης ροών RSS - + Feeds refresh interval: Μεσοδιάστημα ανανέωσης ροών: - + Same host request delay: Καθυστέρηση αιτήματος ίδιου host: - + Maximum number of articles per feed: Μέγιστος αριθμός άρθρων ανά ροή: - - - + + + min minutes λεπτά - + Seeding Limits Όρια Seeding - Pause torrent - Παύση torrent - - - + Remove torrent Αφαίρεση torrent - + Remove torrent and its files Αφαίρεση torrent και των αρχείων του - + Enable super seeding for torrent Ενεργοποίηση super seeding για το torrent - + When ratio reaches Όταν η αναλογία φτάσει - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Διακοπή torrent - + A&utomatically append these trackers to new downloads: - + Αυτόματη προσάρτηση αυτών των &trackers σε νέες λήψεις: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + Μήκος ιστορικού - + RSS Torrent Auto Downloader Αυτόματος Λήπτης Torrent μέσω RSS - + Enable auto downloading of RSS torrents Ενεργοποίηση αυτόματης λήψης των torrents μέσω RSS - + Edit auto downloading rules... Επεξεργασία των κανόνων αυτόματης λήψης... - + RSS Smart Episode Filter Έξυπνο Φίλτρο Επεισοδίων RSS - + Download REPACK/PROPER episodes Λήψη REPACK/PROPER επεισοδίων - + Filters: Φίλτρα: - + Web User Interface (Remote control) Web UI (Απομακρυσμένος έλεγχος) - + IP address: Διεύθυνση IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6416,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv «::» για οποιαδήποτε διεύθυνση IPv6, ή «*» τόσο για IPv4 όσο και για IPv6. - + Ban client after consecutive failures: Αποκλεισμός client μετά από συνεχόμενες αποτυχίες: - + Never Ποτέ - + ban for: αποκλεισμός για: - + Session timeout: Χρονικό όριο λήξης συνεδρίας: - + Disabled Απενεργοποιημένο - Enable cookie Secure flag (requires HTTPS) - Ενεργοποίηση σήμανσης Secure cookie (απαιτεί HTTPS) - - - + Server domains: Τομείς διακομιστή: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6459,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP Χρήση HTTP&S αντί για HTTP - + Bypass authentication for clients on localhost Παράκαμψη ελέγχου ταυτότητας για clients σε localhost - + Bypass authentication for clients in whitelisted IP subnets Παράκαμψη ελέγχου ταυτότητας για clients σε IP subnets της allowlist - + IP subnet whitelist... Allowlist των IP subnet - + Use alternative WebUI - + Χρήση εναλλακτικού Web UI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Καθορίστε αντίστροφες proxy IPs (ή subnets, π.χ. 0.0.0.0/24) για να χρησιμοποιήσετε τη προωθημένη διεύθυνση του client (X-Forwarded-For header). Χρησιμοποιήστε το ';' για να διαχωρίσετε πολλές εγγραφές. - + Upda&te my dynamic domain name &Ενημέρωση του δυναμικού ονόματος τομέα μου @@ -6519,12 +6501,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Αναζήτηση + Αναζήτηση WebUI - + WebUI @@ -6539,17 +6521,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + Στυλ: Color scheme: - + Σχέδιο χρωμάτων: Stopped torrents only - + Σταματημένα torrents μόνο @@ -6620,99 +6602,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Διαγραφή αντιγράφων ασφαλείας αρχείου καταγραφής παλαιότερα από: - + Show external IP in status bar - + When adding a torrent Όταν προστίθεται ένα torrent - + Bring torrent dialog to the front Μεταφορά διαλόγου torrent στο προσκήνιο - + The torrent will be added to download list in a stopped state - + Το torrent θα προστεθεί στη λίστα λήψεων σε κατάσταση διακοπής - + Also delete .torrent files whose addition was cancelled Επίσης διαγραφή αρχείων .torrent των οποίων η προσθήκη ακυρώθηκε - + Also when addition is cancelled Επίσης όταν ακυρώνεται η προσθήκη - + Warning! Data loss possible! Προειδοποίηση! Πιθανή απώλεια δεδομένων! - + Saving Management Διαχείριση Αποθήκευσης - + Default Torrent Management Mode: Προεπιλεγμένη Λειτουργία Διαχείρισης Torrent: - + Manual Χειροκίνητα - + Automatic Αυτόματα - + When Torrent Category changed: Όταν αλλάξει η Κατηγορία του torrent: - + Relocate torrent Μετεγκατάσταση torrent - + Switch torrent to Manual Mode Εναλλαγή του torrent σε Χειροκίνητη Λειτουργία - - + + Relocate affected torrents Μετεγκατάσταση επηρεασμένων torrents - - + + Switch affected torrents to Manual Mode Εναλλαγή επηρεασμένων torrents σε Χειροκίνητη Λειτουργία - + Use Subcategories Χρήση Υποκατηγοριών - + Default Save Path: Προεπιλεγμένη Διαδρομή Αποθήκευσης: - + Copy .torrent files to: Αντιγραφή αρχείων .torrent στο: @@ -6722,26 +6704,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Εμφάνιση του &qBittorrent στην περιοχή ειδοποιήσεων - &Log file - Αρχείο Κ&αταγραφής - - - + Display &torrent content and some options Εμφάνιση περιεχομένων torrent και επιλογών - + De&lete .torrent files afterwards Διαγραφή αρχείων .torrent μετά - + Copy .torrent files for finished downloads to: Αντιγραφή αρχείων .torrent για ολοκληρωμένες λήψεις στο: - + Pre-allocate disk space for all files Προ-εντοπισμός χώρου στο δίσκο για όλα τα αρχεία @@ -6771,10 +6749,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Προεπισκόπηση αρχείου, διαφορετικά άνοιγμα φακέλου προορισμού - - Show torrent options - Εμφάνιση επιλογών torrent - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6814,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.χρόνια - + Log performance warnings Προειδοποιήσεις απόδοσης καταγραφής - The torrent will be added to download list in a paused state - Το torrent θα προστεθεί στη λίστα λήψεων σε κατάσταση παύσης - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Να μην ξεκινά η λήψη αυτόματα - + Whether the .torrent file should be deleted after adding it Εάν το αρχείο .torrent θα πρέπει να διαγραφεί μετά την προσθήκη του - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Προ-εκχώρηση πλήρους μεγέθους αρχείων στο δίσκο πριν την εκκίνηση των λήψεων, για ελαχιστοποίηση του κατακερματισμού. Χρήσιμο μόνο για HDDs. - + Append .!qB extension to incomplete files Προσάρτηση επέκτασης .!qB σε μη ολοκληρωμένα αρχεία - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Όταν ολοκληρωθεί η λήψη ενός torrent, να γίνεται ερώτηση για προσθήκη torrents από τυχόν αρχεία .torrent που βρίσκονται μέσα σε αυτό - + Enable recursive download dialog Ενεργοποίηση διαλόγου αναδρομικής λήψης - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Αυτόματη: Διάφορες ιδιότητες του torrent (π.χ. διαδρομή αποθήκευσης) θα αποφασιστούν από την συσχετισμένη κατηγορία Χειροκίνητη: Διάφορες ιδιότητες του torrent (π.χ. διαδρομή αποθήκευσης) θα πρέπει να οριστούν χειροκίνητα - + When Default Save/Incomplete Path changed: Οταν αλλάξει η Προεπιλεγμένη Αποθήκευση/Ημιτελής διαδρομή: - + When Category Save Path changed: Όταν αλλάξει η Διαδρομή Αποθήκευσης Κατηγορίας: - + Use Category paths in Manual Mode Χρήση διαδρομών Κατηγορίας κατά τη Χειροκίνητη Λειτουργία - + Resolve relative Save Path against appropriate Category path instead of Default one Επιλύστε τη σχετική Διαδρομή Αποθήκευσης έναντι της κατάλληλης διαδρομής Κατηγορίας, αντί για την Προεπιλεγμένη @@ -6922,50 +6892,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyΚατάσταση παραθύρου qBittorrent κατά την εκκίνηση - + Torrent stop condition: Κατάσταση διακοπής torrent: - - + + None Κανένα - - + + Metadata received Ελήφθησαν μεταδεδομένα - - + + Files checked Τα αρχεία ελέγχθηκαν - + Ask for merging trackers when torrent is being added manually Αίτημα συγχώνευσης trackers όταν το torrent προστίθεται χειροκίνητα - + Use another path for incomplete torrents: Χρήση άλλης διαδρομής για ημιτελή torrents: - + Automatically add torrents from: Αυτόματη προσθήκη torrent από: - + Excluded file names Ονόματα αρχείων σε εξαίρεση - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6964,510 @@ readme.txt: φίλτρο για αρχείο με ακριβές όνομα. readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά όχι «readme10.txt». - + Receiver Παραλήπτης - + To: To receiver Προς: - + SMTP server: Διακομιστής SMTP: - + Sender Αποστολέας - + From: From sender Από: - + This server requires a secure connection (SSL) Αυτός ο διακομιστής απαιτεί ασφαλή σύνδεση (SSL) - - + + Authentication Έλεγχος Ταυτότητας - - - - + + + + Username: Όνομα χρήστη: - - - - + + + + Password: Κωδικός: - + Run external program Εκτέλεση εξωτερικού προγράμμματος - Run on torrent added - Εκτέλεση κατά την προσθήκη torrent - - - Run on torrent finished - Εκτέλεση κατά την ολοκλήρωση torrent - - - + Show console window Εμφάνιση παραθύρου κονσόλας - + TCP and μTP TCP και μTP - + Listening Port Θύρα ακρόασης - + Port used for incoming connections: Θύρα που χρησιμοποιείται για εισερχόμενες συνδέσεις: - + Set to 0 to let your system pick an unused port Ορίστε το σε 0 για να επιτρέψετε στο σύστημά σας να επιλέξει μια αχρησιμοποίητη θύρα - + Random Τυχαία - + Use UPnP / NAT-PMP port forwarding from my router Χρήση προώθησης UPnP / NAT - PMP θυρών από τον δρομολογητή μου - + Connections Limits Όρια Συνδέσεων - + Maximum number of connections per torrent: Μέγιστος αριθμός συνδέσεων ανά torrent: - + Global maximum number of connections: Μέγιστος συνολικός αριθμός συνδέσεων: - + Maximum number of upload slots per torrent: Μέγιστος αριθμός slots αποστολής ανά torrent: - + Global maximum number of upload slots: Γενικός μέγιστος αριθμός slots αποστολής: - + Proxy Server Διακομιστής Proxy - + Type: Τύπος: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Θύρα: - + Otherwise, the proxy server is only used for tracker connections Διαφορετικά, ο proxy διακομιστής χρησιμοποιείται μόνο για συνδέσεις tracker - + Use proxy for peer connections Χρήση proxy για συνδέσεις peer - + A&uthentication Έλεγχος &Ταυτότητας - Info: The password is saved unencrypted - Πληροφορία: Ο κωδικός πρόσβασης έχει αποθηκευθεί μη κρυπτογραφημένος + Πληροφορία: Ο κωδικός πρόσβασης έχει αποθηκευθεί μη κρυπτογραφημένος - + Filter path (.dat, .p2p, .p2b): Διαδρομή φίλτρου (.dat, .p2p, .p2b): - + Reload the filter Επαναφόρτωση του φίλτρου - + Manually banned IP addresses... Χειροκίνητα αποκλεισμένες IP διευθύνσεις... - + Apply to trackers Εφαρμογή στους trackers - + Global Rate Limits Γενικά Όρια Ρυθμού - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Αποστολή: - - + + Download: Λήψη - + Alternative Rate Limits Εναλλακτικά Όρια Ρυθμού - + Start time Ώρα εκκίνησης - + End time Ώρα λήξης - + When: Πότε: - + Every day Κάθε μέρα - + Weekdays Καθημερινές - + Weekends Σαββατοκύριακα - + Rate Limits Settings Ρυθμίσεις Ορίων Ρυθμού - + Apply rate limit to peers on LAN Εφαρμογή ορίου ρυθμού σε peers στο LAN - + Apply rate limit to transport overhead Εφαρμογή ορίων ρυθμού στο κόστος μεταφοράς - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Εφαρμογή ορίων ρυθμού στο uTP πρωτόκολλο - + Privacy Ιδιωτικότητα - + Enable DHT (decentralized network) to find more peers Ενεργοποίηση DHT (αποκεντρωμένο δίκτυο) για εύρεση περισσοτέρων peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Ανταλλαγή peers με συμβατούς Bittorrent clients (μTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Ενεργοποίηση Ανταλλαγής Peer (PeX) για εύρεση περισσότερων peers - + Look for peers on your local network Αναζήτηση για peers στο τοπικό σας δίκτυο - + Enable Local Peer Discovery to find more peers Ενεργοποίηση Ανακάλυψης Τοπικών Peer για εύρεση περισσότερων peers - + Encryption mode: Λειτουργία κρυπτογράφησης: - + Require encryption Απαίτηση κρυπτογράφησης - + Disable encryption Απενεργοποίηση κρυπτογράφησης - + Enable when using a proxy or a VPN connection Ενεργοποίηση όταν γίνεται χρήση ενός proxy ή μιας σύνδεσης VPN - + Enable anonymous mode Ενεργοποίηση ανώνυμης λειτουργίας - + Maximum active downloads: Μέγιστες ενεργές λήψεις: - + Maximum active uploads: Μέγιστες ενεργές αποστολές: - + Maximum active torrents: Μέγιστα ενεργά torrents: - + Do not count slow torrents in these limits Μη υπολογισμός αργών torrent σε αυτά τα όρια - + Upload rate threshold: Όριο ρυθμού αποστολής: - + Download rate threshold: Όριο ρυθμού λήψης: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Χρόνος αδράνειας torrent: - + then τότε - + Use UPnP / NAT-PMP to forward the port from my router Χρήση UPnP / NAT - PMP για προώθηση της θύρας από τον δρομολογητή μου - + Certificate: Πιστοποιητικό: - + Key: Κλειδί: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Πληροφορίες σχετικά με τα πιστοποιητικά</a> - + Change current password Αλλαγή τρέχοντος κωδικού πρόσβασης - Use alternative Web UI - Χρήση εναλλακτικού Web UI - - - + Files location: Τοποθεσία αρχείων: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Ασφάλεια - + Enable clickjacking protection Ενεργοποίηση προστασίας clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Ενεργοποίηση προστασίας Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Ενεργοποίηση ελέγχου ταυτότητας της κεφαλίδας του Host - + Add custom HTTP headers Προσθήκη προσαρμοσμένων κεφαλίδων HTTP - + Header: value pairs, one per line Κεφαλίδα: ζευγάρια τιμών, ένα ανά γραμμή - + Enable reverse proxy support Ενεργοποίηση υποστήριξης αντίστροφου proxy - + Trusted proxies list: Λίστα έμπιστων proxies: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Υπηρεσία: - + Register Εγγραφή - + Domain name: Όνομα τομέα: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Με την ενεργοποίηση αυτών των επιλογών, μπορεί να <strong>χάσετε αμετάκλητα</strong> τα .torrent αρχεία σας! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Αν ενεργοποιήσετε την δεύτερη επιλογή (&ldquo;Επίσης όταν η προσθήκη ακυρωθεί&rdquo;) το .torrent αρχείο <strong>θα διαγραφεί</strong> ακόμη και αν πατήσετε &ldquo;<strong>Ακύρωση</strong>&rdquo; στον διάλογο &ldquo;Προσθήκη αρχείου torrent&rdquo; @@ -7520,12 +7477,12 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά Επιλέξτε αρχείο Θέματος του qBittorrent UI - + Choose Alternative UI files location Επιλέξτε εναλλακτική τοποθεσία αρχείων του UI - + Supported parameters (case sensitive): Υποστηριζόμενοι παράμετροι (διάκριση πεζών): @@ -7545,183 +7502,183 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά Απενεργοποιήθηκε λόγω αποτυχίας ανίχνευσης παρουσίας εικονιδίου περιοχής ειδοποιήσεων - + No stop condition is set. Δεν έχει οριστεί συνθήκη διακοπής. - + Torrent will stop after metadata is received. Το torrent θα σταματήσει μετά τη λήψη των μεταδεδομένων. - + Torrent will stop after files are initially checked. Το torrent θα σταματήσει αφού πρώτα ελεγχθούν τα αρχεία. - + This will also download metadata if it wasn't there initially. Αυτό θα πραγματοποιήσει και λήψη μεταδεδομένων εάν δεν υπήρχαν εξαρχής. - + %N: Torrent name %N: Όνομα Torrent - + %L: Category %L: Κατηγορία - + %F: Content path (same as root path for multifile torrent) %F: Διαδρομή περιεχομένου (ίδια με την ριζική διαδρομή για torrent πολλαπλών αρχείων) - + %R: Root path (first torrent subdirectory path) %R: Ριζική διαδρομή (διαδρομή υποκαταλόγου του πρώτου torrent) - + %D: Save path %D: Διαδρομή αποθήκευσης - + %C: Number of files %C: Αριθμός των αρχείων - + %Z: Torrent size (bytes) %Z: Μέγεθος torrent (bytes) - + %T: Current tracker %T: Τρέχων tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Συμβουλή: Περικλείστε την παράμετρο με αγγλικά εισαγωγικά για να αποφύγετε την αποκοπή του κειμένου στα κενά (π.χ. "%Ν") - + Test email - + Δοκιμαστικό email - + Attempted to send email. Check your inbox to confirm success - + Προσπάθεια αποστολής email. Ελέγξτε τα εισερχόμενά σας για να επιβεβαιώσετε την επιτυχία - + (None) (Κανένα) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Ένα torrent θα θεωρηθεί αργό εάν οι ρυθμοί λήψης και αποστολής παραμείνουν κάτω από αυτές τις τιμές όσο ο «Χρόνος αδράνειας torrent» σε δευτερόλεπτα - + Certificate Πιστοποιητικό - + Select certificate Επιλογή πιστοποιητικού - + Private key Ιδιωτικό κλειδί - + Select private key Επιλογή ιδιωτικού κλειδιού - + WebUI configuration failed. Reason: %1 Η διαμόρφωση WebUI απέτυχε. Αιτία: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 συνιστάται για μέγιστη συμβατότητα με τη σκούρο θέμα των Windows - + System System default Qt style - + Σύστημα - + Let Qt decide the style for this system - + Αφήστε το Qt να αποφασίσει το θέμα για αυτό το σύστημα - + Dark Dark color scheme - + Σκοτεινό - + Light Light color scheme - + Φωτεινό - + System System color scheme - + Σύστημα - + Select folder to monitor Επιλέξτε ένα φάκελο προς παρακολούθηση - + Adding entry failed Η προσθήκη καταχώρησης απέτυχε - + The WebUI username must be at least 3 characters long. Το όνομα χρήστη WebUI πρέπει να αποτελείται από τουλάχιστον 3 χαρακτήρες. - + The WebUI password must be at least 6 characters long. Ο κωδικός πρόσβασης WebUI πρέπει να αποτελείται από τουλάχιστον 6 χαρακτήρες. - + Location Error Σφάλμα Τοποθεσίας - - + + Choose export directory Επιλέξτε κατάλογο εξαγωγής - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Όταν αυτές οι επιλογές είναι ενεργοποιημένες, το qBittorent θα <strong>διαγράψει</strong> τα αρχεία .torrent μετά την επιτυχή προσθήκη τους (η πρώτη επιλογή) ή όχι (η δεύτερη επιλογή) στην ουρά λήψεών του. Αυτό θα εφαρμοστεί <strong>όχι μόνο</strong> σε αρχεία που ανοίχτηκαν μέσω της ενέργειας του μενού «Προσθήκη αρχείου torrent» αλλά και σε αυτά που ανοίχτηκαν μέσω <strong>συσχέτισης τύπου αρχείων</strong> @@ -7731,69 +7688,69 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά Αρχείο Θέματος qBittorrent UI (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Ετικέτες (διαχωρισμένες με κόμμα) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (ή «-» αν δεν είναι διαθέσιμο) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (ή «-» αν δεν είναι διαθέσιμο) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (είτε sha-1 info hash για v1 torrent ή truncated sha-256 info hash για v2/hybrid torrent) - - + + Choose a save directory Επιλέξτε κατάλογο αποθήκευσης - + Torrents that have metadata initially will be added as stopped. Τα torrents που έχουν μεταδεδομένα εξαρχής θα προστεθούν ως σταματημένα. - + Choose an IP filter file Επιλέξτε ένα αρχείο φίλτρου IP - + All supported filters Όλα τα υποστηριζόμενα φίλτρα - + The alternative WebUI files location cannot be blank. Η εναλλακτική τοποθεσία των αρχείων WebUI δεν μπορεί να είναι κενή. - + Parsing error Σφάλμα ανάλυσης - + Failed to parse the provided IP filter Αποτυχία ανάλυσης του παρεχόμενου φίλτρου IP - + Successfully refreshed Επιτυχής ανανέωση - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Επιτυχής ανάλυση του παρεχόμενου φίλτρου IP: Εφαρμόστηκαν %1 κανόνες. @@ -7804,18 +7761,18 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά Προτιμήσεις - + Time Error Σφάλμα Ώρας - + The start time and the end time can't be the same. Η ώρα έναρξης και η ώρα λήξης δεν μπορούν να είναι ίδιες. - - + + Length Error Σφάλμα Μήκους @@ -7900,169 +7857,169 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά Peer is using NAT hole punching - + Ο Peer χρησιμοποιεί διάτρηση οπών NAT PeerListWidget - + Country/Region Χώρα/Περιοχή - + IP/Address IP/Διεύθυνση - + Port Θύρα - + Flags Σημάνσεις - + Connection Σύνδεση - + Client i.e.: Client application Client - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID Client - + Progress i.e: % downloaded Πρόοδος - + Down Speed i.e: Download speed Ταχύτητα Λήψης - + Up Speed i.e: Upload speed Ταχύτητα Αποστολής - + Downloaded i.e: total data downloaded Ληφθέντα - + Uploaded i.e: total data uploaded Απεσταλμένα - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Συνάφεια - + Files i.e. files that are being downloaded right now Αρχεία - + Column visibility Ορατότητα στήλης - + Resize columns Αλλαγή μεγέθους στηλών - + Resize all non-hidden columns to the size of their contents Αλλαγή του μεγέθους όλων των μη κρυφών στηλών στο μέγεθος του περιεχομένου τους - + Add peers... Προσθήκη peers... - - + + Adding peers Προσθήκη peers - + Some peers cannot be added. Check the Log for details. Μερικά peers δε μπορούν να προστεθούν. Ελέγξτε την Καταγραφή για λεπτομέρειες. - + Peers are added to this torrent. Τα peers προστέθηκαν σε αυτό το torrent. - - + + Ban peer permanently Μόνιμος αποκλεισμός peer - + Cannot add peers to a private torrent Δεν είναι δυνατή η προσθήκη peers σε ένα ιδιωτικό torrent - + Cannot add peers when the torrent is checking Δεν είναι δυνατή η προσθήκη peers όταν το torrent ελέγχεται - + Cannot add peers when the torrent is queued Δεν είναι δυνατή η προσθήκη peers όταν το torrent είναι στην ουρά - + No peer was selected Δεν επιλέχθηκε peer - + Are you sure you want to permanently ban the selected peers? Είστε βέβαιοι ότι θέλετε να αποκλείσετε οριστικά τα επιλεγμένα peers; - + Peer "%1" is manually banned Το peer "%1" έχει αποκλειστεί χειροκίνητα - + N/A Δ/Υ - + Copy IP:port Αντιγραφή IP:θύρα @@ -8343,34 +8300,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - Το qBittorrent είναι ενεργό + Το qBittorrent είναι ενεργό PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Η διαχείριση ενέργειας βρήκε κατάλληλη διεπαφή D-Bus. Διασύνδεση: %1 + Η διαχείριση ενέργειας βρήκε κατάλληλη διεπαφή D-Bus. Διασύνδεση: %1 - Power management error. Did not found suitable D-Bus interface. - Σφάλμα διαχείρισης ενέργειας. Δεν βρέθηκε κατάλληλη διασύνδεση D-Bus. + Σφάλμα διαχείρισης ενέργειας. Δεν βρέθηκε κατάλληλη διασύνδεση D-Bus. - - - Power management error. Action: %1. Error: %2 - Σφάλμα διαχείρισης ενέργειας. Δράση: %1. Σφάλμα: %2 + Σφάλμα διαχείρισης ενέργειας. Δράση: %1. Σφάλμα: %2 - Power management unexpected error. State: %1. Error: %2 - Μη αναμενόμενο σφάλμα διαχείρισης ενέργειας. Πολιτεία: %1. Σφάλμα: %2 + Μη αναμενόμενο σφάλμα διαχείρισης ενέργειας. Πολιτεία: %1. Σφάλμα: %2 @@ -8614,12 +8564,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Αναλογία / Ενεργός Χρόνος (σε μήνες), δείχνει πόσο δημοφιλές είναι το torrent Popularity: - + Δημοτικότητα: @@ -8654,7 +8604,7 @@ Those plugins were disabled. Private: - + Ιδιωτικά: @@ -8662,153 +8612,124 @@ Those plugins were disabled. Διαδρομή Αποθήκευσης: - + Never Ποτέ - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (έχω %3) - - + + %1 (%2 this session) %1 (%2 αυτή τη συνεδρία) - - + + N/A Δ/Υ - + Yes - Ναι + Ναι - + No - Όχι + Όχι - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (διαμοιράστηκε για %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 μέγιστο) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 σύνολο) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 μ.ο.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Νέο Web seed - - - Remove Web seed - Αφαίρεση Web seed - - - Copy Web seed URL - Αντιγραφή URL του Web seed - - - Edit Web seed URL - Επεξεργασία URL του Web seed - - - + Filter files... Φίλτρο αρχείων… - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Τα γραφήματα ταχύτητας είναι απενεργοποιημένα - + You can enable it in Advanced Options Μπορείτε να το ενεργοποιήσετε στις Επιλογές Για προχωρημένους - New URL seed - New HTTP source - Νέο URL seed - - - New URL seed: - Νέο URL seed: - - - This URL seed is already in the list. - Αυτό το URL seed είναι ήδη στη λίστα. - - - + Web seed editing Επεξεργασία Web seed - + Web seed URL: URL του Web seed: @@ -8816,33 +8737,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Μη έγκυρη μορφή δεδομένων. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Δεν ήταν δυνατή η αποθήκευση των δεδομένων του Αυτόματου Λήπτη μέσω RSS στο %1. Σφάλμα: %2 - + Invalid data format Μη έγκυρη μορφή δεδομένων - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... Το άρθρο RSS '%1' είναι αποδεκτό από τον κανόνα '%2'. Προσπάθεια προσθήκης torrent... - + Failed to read RSS AutoDownloader rules. %1 Αποτυχία ανάγνωσης των κανόνων του RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Δεν ήταν δυνατή η φόρτωση των κανόνων του Αυτόματου Λήπτη μέσω RSS. Αιτία: %1 @@ -8850,22 +8771,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Αποτυχία λήψης ροής RSS στο '%1'. Αιτία: %2 - + RSS feed at '%1' updated. Added %2 new articles. Η ροή RSS στο '%1' ενημερώθηκε. Προστέθηκαν %2 νέα άρθρα. - + Failed to parse RSS feed at '%1'. Reason: %2 Αποτυχία ανάλυσης ροής RSS στο '%1'. Αιτία: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Έχει γίνει επιτυχής λήψη της ροής RSS από το '%1'. Εκκίνηση ανάλυσης. @@ -8914,12 +8835,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Δεν ήταν δυνατή η αποθήκευση της διαμόρφωσης της συνεδρίας RSS. Αρχείο: "%1". Σφάλμα: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Δεν ήταν δυνατή η αποθήκευση των δεδομένων της συνεδρίας RSS. Αρχείο: "%1". Σφάλμα: "%2" @@ -8941,76 +8862,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. Το στοιχείο δεν υπάρχει: %1. - Couldn't move folder into itself. - Δεν ήταν δυνατή η μετακίνηση του φακέλου στον εαυτό του. + Δεν ήταν δυνατή η μετακίνηση του φακέλου στον εαυτό του. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Δεν είναι δυνατή η διαγραφή του ριζικού φακέλου. - + Failed to read RSS session data. %1 Αποτυχία ανάγνωσης των δεδομένων συνεδρίας RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Αποτυχία ανάλυσης των δεδομένων συνεδρίας RSS. Αρχείο: "%1". Σφάλμα: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Αποτυχία φόρτωσης δεδομένων συνεδρίας RSS. Αρχείο: "%1". Σφάλμα: "Μη έγκυρη μορφή δεδομένων." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Δεν ήταν δυνατή η φόρτωση της ροής RSS "%1". Αιτία: Απαιτείται URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Δεν ήταν δυνατή η φόρτωση της ροής RSS "%1". Αιτία: Το UID δεν είναι έγκυρο. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Βρέθηκε διπλότυπη ροή RSS. UID: "%1". Σφάλμα: Η διαμόρφωση φαίνεται να είναι κατεστραμμένη. - + Couldn't load RSS item. Item: "%1". Invalid data format. Δεν ήταν δυνατή η φόρτωση του στοιχείου RSS. Στοιχείο: "%1". Μη έγκυρη μορφή δεδομένων. - + Corrupted RSS list, not loading it. Κατεστραμμένη λίστα RSS, η φόρτωση δεν θα γίνει. - + Incorrect RSS Item path: %1. Λανθασμένη διαδρομή RSS Στοιχείου: %1. - + RSS item with given path already exists: %1. Το RSS στοιχείο με τη δεδομένη διαδρομή υπάρχει ήδη: %1. - + Parent folder doesn't exist: %1. Ο γονικός φάκελος δεν υπάρχει: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Η ροή δεν υπάρχει: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Προεπιλογή + + RSSWidget @@ -9110,78 +9076,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Επεξεργασία URL ροής... + Επεξεργασία URL ροής... - Edit feed URL - Επεξεργασία URL ροής + Επεξεργασία URL ροής - + Please choose a folder name Παρακαλώ επιλέξτε ένα όνομα φακέλου - + Folder name: Όνομα φακέλου: - + New folder Νέος φάκελος - - Please type a RSS feed URL - Παρακαλώ εισάγετε ένα URL ροής RSS + Παρακαλώ εισάγετε ένα URL ροής RSS - - Feed URL: - URL ροής: + URL ροής: - + Deletion confirmation Επιβεβαίωση διαγραφής - + Are you sure you want to delete the selected RSS feeds? Είστε σίγουροι ότι θέλετε να διαγράψετε τις επιλεγμένες ροές RSS; - + Please choose a new name for this RSS feed Παρακαλώ επιλέξτε ένα νέο όνομα για αυτή την ροή RSS - + New feed name: Νέο όνομα ροής: - + Rename failed Η μετονομασία απέτυχε - + Date: Ημερομηνία: - + Feed: Τροφοδοσία: - + Author: Δημιουργός: @@ -9318,10 +9283,6 @@ Those plugins were disabled. i.e: Number of partial sources Leechers - - Search engine - Μηχανή αναζήτησης - Filter search results... @@ -9411,17 +9372,17 @@ Those plugins were disabled. Engine - + Engine Engine URL - + Engine URL Published On - + Δημοσιεύτηκε Στις @@ -9442,104 +9403,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Άγνωστη μορφή αρχείου προσθήκης μηχανής αναζήτησης. - + Plugin already at version %1, which is greater than %2 Η προσθήκη βρίσκεται ήδη στην έκδοση %1, η οποία είναι μεγαλύτερη από την %2 - + A more recent version of this plugin is already installed. Μια πιο πρόσφατη έκδοση αυτής της προσθήκης έχει ήδη εγκατασταθεί. - + Plugin %1 is not supported. Η προσθήκη %1 δεν υποστηρίζεται. - - + + Plugin is not supported. Η προσθήκη δεν υποστηρίζεται. - + Plugin %1 has been successfully updated. Η προσθήκη %1 έχει ενημερωθεί επιτυχώς. - + All categories Όλες οι κατηγορίες - + Movies Ταινίες - + TV shows Τηλεοπτικές σειρές - + Music Μουσική - + Games Παιχνίδια - + Anime Άνιμε - + Software Λογισμικό - + Pictures Εικόνες - + Books Βιβλία - + Update server is temporarily unavailable. %1 Ο διακομιστής ενημερώσεων είναι προσωρινά μη διαθέσιμος. %1 - - + + Failed to download the plugin file. %1 Αποτυχία λήψης του αρχείου προσθήκης. %1 - + Plugin "%1" is outdated, updating to version %2 Η προσθήκη "%1" είναι απαρχαιωμένη, ενημέρωση στην έκδοση %2 - + Incorrect update info received for %1 out of %2 plugins. Ελήφθησαν λανθασμένες πληροφορίες ενημέρωσης για %1 από τις %2 προσθήκες. - + Search plugin '%1' contains invalid version string ('%2') Η προσθήκη αναζήτησης '%1' περιέχει μη έγκυρη έκδοση συμβολοσειράς ('%2') @@ -9565,135 +9526,127 @@ Click the "Search plugins..." button at the bottom right of the window Αναζήτηση προσθηκών… - + A phrase to search for. Μια φράση προς αναζήτηση. - + Spaces in a search term may be protected by double quotes. Τα κενά σε έναν όρο αναζήτησης μπορούν να προστατευθούν με διπλά εισαγωγικά. - + Example: Search phrase example Παράδειγμα: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: αναζήτηση για <b>foo bar</b> - + All plugins Όλες οι προσθήκες - + Only enabled Μόνο ενεργοποιημένο - - + + Invalid data format. - Μη έγκυρη μορφή δεδομένων. + Μη έγκυρη μορφή δεδομένων. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: αναζήτηση για <b>foo</b> και <b>bar</b> - + Refresh - + Ανανέωση - + Close tab Κλείσιμο καρτέλας - + Close all tabs Κλείσιμο όλων των καρτελών - + Select... Επιλογή... - - + + Search Engine Μηχανή Αναζήτησης - - + + Please install Python to use the Search Engine. Παρακαλώ εγκαταστήστε το Python για να χρησιμοποιήσετε την Μηχανή Αναζήτησης. - + Empty search pattern Κενό πρότυπο αναζήτησης - + Please type a search pattern first Παρακαλώ πληκτρολογήστε ένα πρότυπο αναζήτησης πρώτα - + Stop Διακοπή - - Search has finished - Η αναζήτηση ολοκληρώθηκε - - - Search has failed - Η αναζήτηση απέτυχε - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10091,67 +10044,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Κατάσταση σύνδεσης: - - + + No direct connections. This may indicate network configuration problems. Χωρίς απευθείας συνδέσεις. Αυτό μπορεί να αποτελεί ένδειξη προβλημάτων των παραμέτρων του δικτύου. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 κόμβοι - + qBittorrent needs to be restarted! Το qBittorrent χρειάζεται επανεκκίνηση! - - + + Connection Status: Κατάσταση Σύνδεσης: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Εκτός σύνδεσης. Αυτό συνήθως σημαίνει ότι το qBittorrent απέτυχε να λειτουργήσει στην επιλεγμένη θύρα για εισερχόμενες συνδέσεις. - + Online Σε σύνδεση - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Κλικ για αλλαγή σε εναλλακτικά όρια ταχύτητας - + Click to switch to regular speed limits Κλικ για αλλαγή σε κανονικά όρια ταχύτητας @@ -10179,23 +10142,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Ολοκληρωμένα (0) - - Resumed (0) - Σε Συνέχιση (0) - - - Paused (0) - Σε Παύση (0) - Running (0) - + Εκτελούνται (0) Stopped (0) - + Σταματημένα (0) @@ -10260,49 +10215,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + Εκτελούνται (%1) Stopped (%1) - + Σταματημένα (%1) Start torrents - + Έναρξη torrents Stop torrents - - - - Paused (%1) - Σε Παύση (%1) + Παύση torrents Moving (%1) Μετακίνηση (%1) - - Resume torrents - Συνέχιση torrents - - - Pause torrents - Παύση torrents - Remove torrents Αφαίρεση torrent - - Resumed (%1) - Σε Συνέχιση (%1) - Active (%1) @@ -10374,32 +10313,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Αφαίρεση αχρησιμοποίητων ετικετών - - Resume torrents - Συνέχιση torrents - - - Pause torrents - Παύση torrents - Remove torrents Αφαίρεση torrent - - New Tag - Νέα ετικέτα - Start torrents - + Έναρξη torrents Stop torrents - + Διακοπή torrents @@ -10726,17 +10653,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Πάρα πολλές ενεργές εργασίες - + Torrent creation is still unfinished. Η δημιουργία του torrent είναι ακόμα ημιτελής. - + Torrent creation failed. Αποτυχία δημιουργίας του torrent @@ -10988,17 +10915,6 @@ Please choose a different name and try again. Φάκελος Παρακολούθησης: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Αποτυχία ανάθεσης μνήμης κατά την ανάγνωση του αρχείου. Αρχείο: "%1". Σφάλμα: "%2" - - - Invalid metadata - Μη έγκυρα μεταδεδομένα - - TorrentOptionsDialog @@ -11036,10 +10952,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - Όρια ταχύτητας torrent - Download: @@ -11072,34 +10984,6 @@ Please choose a different name and try again. Upload: Αποστολή: - - Torrent share limits - Όρια διαμοιρασμού torrent - - - Use global share limit - Χρήση γενικού ορίου διαμοιρασμού - - - Set no share limit - Ορισμός κανενός ορίου διαμοιρασμού - - - Set share limit to - Ορισμός ορίου διαμοιρασμού σε - - - ratio - αναλογία - - - total minutes - συνολικά λεπτά - - - inactive minutes - ανενεργά λεπτά - Disable DHT for this torrent @@ -11141,14 +11025,6 @@ Please choose a different name and try again. Not applicable to private torrents Δεν εφαρμόζεται σε ιδιωτικά torrent - - No share limit method selected - Δεν επιλέχθηκε μέθοδος ορίου διαμοιρασμού - - - Please select a limit method first - Παρακαλώ επιλέξτε πρώτα μια μέθοδο ορίου - TorrentShareLimitsWidget @@ -11198,27 +11074,27 @@ Please choose a different name and try again. Action when the limit is reached: - + Ενέργεια όταν συμπληρωθεί το όριο: Stop torrent - + Διακοπή torrent Remove torrent - Αφαίρεση torrent + Αφαίρεση torrent Remove torrent and its content - + Αφαίρεση torrent και του περιεχομένου του Enable super seeding for torrent - Ενεργοποίηση super seeding για το torrent + Ενεργοποίηση super seeding για το torrent @@ -11233,10 +11109,6 @@ Please choose a different name and try again. Torrent Tags Ετικέτες Torrent - - New Tag - Νέα Ετικέτα - Add tag @@ -11271,78 +11143,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Σφάλμα: το '%1' δεν είναι έγκυρο αρχείο torrent. - + Priority must be an integer Η προτεραιότητα πρέπει να είναι ένας ακέραιος αριθμός - + Priority is not valid Η προτεραιότητα δεν είναι έγκυρη - + Torrent's metadata has not yet downloaded Τα μεταδεδομένα του torrent δεν έχουν ληφθεί ακόμη - + File IDs must be integers Τα IDs αρχείου πρέπει να είναι ακέραιοι - + File ID is not valid Το ID αρχείου δεν είναι έγκυρο - - - - + + + + Torrent queueing must be enabled Η ουρά torrent πρέπει να είναι ενεργοποιημένη - - + + Save path cannot be empty Η διαδρομή αποθήκευσης δεν μπορεί να είναι κενή - - + + Cannot create target directory Δεν είναι δυνατή η δημιουργία του καταλόγου προορισμού - - + + Category cannot be empty Η κατηγορία δεν μπορεί να είναι κενή - + Unable to create category Δεν ήταν δυνατή η δημιουργία της κατηγορίας - + Unable to edit category Δεν ήταν δυνατή η επεξεργασία της κατηγορίας - + Unable to export torrent file. Error: %1 Αδυναμία εξαγωγής του αρχείου torrent. Σφάλμα: %1 - + Cannot make save path Αδυναμία δημιουργίας διαδρομής αποθήκευσης @@ -11362,39 +11234,39 @@ Please choose a different name and try again. Η παράμετρος 'sort' δεν είναι έγκυρη - + "%1" is not an existing URL - + "%1" is not a valid file index. Το "%1" δεν είναι έγκυρο index αρχείο. - + Index %1 is out of bounds. Το index %1 είναι εκτός ορίων. - - + + Cannot write to directory Δεν είναι δυνατή η εγγραφή στον κατάλογο - + WebUI Set location: moving "%1", from "%2" to "%3" Ρύθμιση τοποθεσίας WebUI: μεταφορά "%1", από "%2" σε "%3" - + Incorrect torrent name Λανθασμένο όνομα torrent - - + + Incorrect category name Λανθασμένο όνομα κατηγορίας @@ -11477,45 +11349,33 @@ Please choose a different name and try again. Invalid state! - + Μη έγκυρη κατάσταση! URL/Announce Endpoint - + URL/Ανακοίνωση Endpoint BT Protocol - + Πρωτόκολλο BT Next Announce - + Επόμενη Ανακοίνωση Min Announce - - - - Invalid status! - Μη έγκυρη κατάσταση! - - - URL/Announce endpoint - Τελικό σημείο URL/αναγγελίας + Λεπτά Ανακοίνωσης Tier Επίπεδο - - Protocol - Πρωτόκολλο - Status @@ -11546,18 +11406,6 @@ Please choose a different name and try again. Message Μήνυμα - - Next announce - Επόμενη ανακοίνωση - - - Min announce - Ελάχ. ανακοίνωση - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11415,73 @@ Please choose a different name and try again. Αυτό το torrent είναι ιδιωτικό - + Tracker editing Επεξεργασία tracker - + Tracker URL: URL του tracker: - - + + Tracker editing failed Η επεξεργασία του tracker απέτυχε - + The tracker URL entered is invalid. Το URL του tracker που καταχωρίσατε δεν είναι έγκυρο. - + The tracker URL already exists. Το URL του tracker υπάρχει ήδη. - + Edit tracker URL... Επεξεργασία URL του tracker... - + Remove tracker Αφαίρεση tracker - + Copy tracker URL Αντιγραφή URL του tracker - + Force reannounce to selected trackers Εξαναγκασμός reannounce σε επιλεγμένους trackers - + Force reannounce to all trackers Εξαναγκασμός reannounce σε όλους τους trackers - + Resize columns Αλλαγή μεγέθους στηλών - + Resize all non-hidden columns to the size of their contents Αλλαγή του μεγέθους όλων των μη κρυφών στηλών στο μέγεθος του περιεχομένου τους - + Add trackers... Προσθήκη trackers... - + Column visibility Ορατότητα στήλης @@ -11716,20 +11564,12 @@ Please choose a different name and try again. Start torrents - + Έναρξη torrents Stop torrents - - - - Resume torrents - Συνέχιση των torrents - - - Pause torrents - Παύση torrents + Παύση torrents @@ -11853,10 +11693,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Έλεγχος δεδομένων συνέχισης - - Paused - Σε παύση - Completed @@ -11897,21 +11733,16 @@ Please choose a different name and try again. % Done Πρόοδος - - Status - Torrent status (e.g. downloading, seeding, paused) - Κατάσταση - Stopped - + Σταματημένο Status Torrent status (e.g. downloading, seeding, stopped) - Κατάσταση + Κατάσταση @@ -11946,7 +11777,7 @@ Please choose a different name and try again. Popularity - + Δημοτικότητα @@ -12027,22 +11858,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Χρόνος εν Ενεργεία + Χρόνος εν Ενεργεία Yes - Ναι + Ναι No - Όχι - - - Time Active - Time (duration) the torrent is active (not paused) - Χρόνος εν Ενεργεία + Όχι @@ -12114,12 +11940,12 @@ Please choose a different name and try again. Private Flags private torrents - + Ιδιωτικά Ratio / Time Active (in months), indicates how popular the torrent is - + Αναλογία / Ενεργός Χρόνος (σε μήνες), δείχνει πόσο δημοφιλές είναι το torrent @@ -12144,358 +11970,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Ορατότητα στήλης - + Recheck confirmation Επιβεβαίωση επανέλεγχου - + Are you sure you want to recheck the selected torrent(s)? Είστε σίγουροι πως θέλετε να επανελέγξετε τα επιλεγμένα torrent(s); - + Rename Μετονομασία - + New name: Νέο όνομα: - + Choose save path Επιλέξτε διαδρομή αποθήκευσης - Confirm pause - Επιβεβαίωση παύσης - - - Would you like to pause all torrents? - Θέλετε σίγουρα να θέσετε σε παύση όλα τα torrent; - - - Confirm resume - Επιβεβαίωση συνέχισης - - - Would you like to resume all torrents? - Θέλετε σίγουρα να θέσετε σε συνέχιση όλα τα torrent; - - - + Unable to preview Αδυναμία προεπισκόπησης - + The selected torrent "%1" does not contain previewable files Το επιλεγμένο torrent "%1" δεν περιέχει αρχεία με δυνατότητα προεπισκόπησης - + Resize columns Αλλαγή μεγέθους στηλών - + Resize all non-hidden columns to the size of their contents Αλλαγή του μεγέθους όλων των μη κρυφών στηλών στο μέγεθος του περιεχομένου τους - + Enable automatic torrent management Ενεργοποίηση αυτόματης διαχείρισης torrent - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Είστε βέβαιοι πως θέλετε να ενεργοποιήσετε την Αυτόματη Διαχείριση Torrent για τα επιλεγμένα torrent(s); Μπορεί να μετεγκατασταθούν. - Add Tags - Προσθήκη ετικετών - - - + Choose folder to save exported .torrent files Επιλέξτε φάκελο για αποθήκευση εξαγόμενων αρχείων .torrent - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Η εξαγωγή αρχείου .torrent απέτυχε. Torrent: "%1". Αποθήκευση διαδρομής: "%2". Αιτία: "%3" - + A file with the same name already exists Υπάρχει ήδη αρχείο με το ίδιο όνομα - + Export .torrent file error Σφάλμα εξαγωγής αρχείου .torrent - + Remove All Tags Αφαίρεση όλων των ετικετών - + Remove all tags from selected torrents? Αφαίρεση όλων των ετικετών από τα επιλεγμένα torrent; - + Comma-separated tags: Ετικέτες χωρισμένες με κόμμα: - + Invalid tag Μη έγκυρη ετικέτα - + Tag name: '%1' is invalid Το όνομα ετικέτας '%1' δεν είναι έγκυρο. - &Resume - Resume/start the torrent - &Συνέχιση - - - &Pause - Pause the torrent - &Παύση - - - Force Resu&me - Force Resume/start the torrent - Εξαναγκαστική Συνέχι&ση - - - + Pre&view file... Προε&πισκόπηση αρχείου… - + Torrent &options... &Ρυθμίσεις torrent... - + 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 loc&ation... Ρύθμιση τοπο&θεσίας… - + Force rec&heck Εξαναγκαστικός επανέ&λεγχος - + Force r&eannounce Εξαναγκαστική επανανακοίνωση - + &Magnet link &Σύνδεσμος Magnet - + Torrent &ID Torrent &ID - + &Comment &Σχόλιο - + &Name &Ονομα - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Μετ&ονομασία - + Edit trac&kers... Επεξεργασία trac&kers... - + E&xport .torrent... Ε&ξαγωγή .torrent... - + Categor&y Κατηγορί&α - + &New... New category... &Νέο... - + &Reset Reset category &Επαναφορά - + Ta&gs Ετικ&έτες - + &Add... Add / assign multiple tags... &Προσθήκη... - + &Remove All Remove all tags &Αφαίρεση Ολων - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Δεν είναι δυνατή η εξαναγκαστική επανανακοίνωση εάν το torrent είναι Σε Διακοπή/Σε Ουρά/Με Σφάλμα/Ελέγχεται - + &Queue &Ουρά - + &Copy &Αντιγραφή - + Exported torrent is not necessarily the same as the imported Το εξαγόμενο torrent δεν είναι απαραίτητα το ίδιο με το εισαγόμενο - + Download in sequential order Λήψη σε διαδοχική σειρά - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Παρουσιάστηκαν σφάλματα κατά την εξαγωγή αρχείων .torrent. Ελέγξτε το αρχείο καταγραφής εκτέλεσης για λεπτομέρειες. - + &Start Resume/start the torrent - + Εκκίνη&ση - + Sto&p Stop the torrent - + Διακο&πή - + Force Star&t Force Resume/start the torrent - + Ε&ξαναγκαστική Εκκίνηση - + &Remove Remove the torrent &Αφαίρεση - + Download first and last pieces first Λήψη πρώτων και τελευταίων κομματιών πρώτα - + Automatic Torrent Management Αυτόματη Διαχείριση Torrent - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Η αυτόματη λειτουργία σημαίνει ότι διάφορες ιδιότητες του torrent (π.χ. διαδρομή αποθήκευσης) θα καθοριστούν από την συσχετισμένη κατηγορία. - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Δεν είναι δυνατή η εξαναγκαστική επανανακοίνωση εάν το torrent είναι Σε Παύση/Με Σφάλματα/Επανελέγχεται - - - + Super seeding mode Λειτουργία super seeding @@ -12571,7 +12358,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + Ο ορισμός στυλ εφαρμογής απέτυχε. Αγνωστο στυλ: "%1" @@ -12627,32 +12414,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Βρέθηκε εκτελέσιμο αρχείο Python. Όνομα: "%1". Έκδοση: "%2" - + Failed to find Python executable. Path: "%1". Απέτυχε να βρει το εκτελέσιμο αρχείο Python. Μονοπάτι: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Αποτύχαμε να βρούμε το εκτελέσιμο αρχείο `python3` στη μεταβλητή περιβάλλοντος PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Αποτύχαμε να βρούμε το εκτελέσιμο αρχείο `python` στη μεταβλητή περιβάλλοντος PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Αποτύχαμε να βρούμε το εκτελέσιμο αρχείο `python` στο μητρώο των Windows. - + Failed to find Python executable Απέτυχε να βρει εκτελέσιμο αρχείο Python @@ -12744,52 +12531,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Καθορίστηκε μη αποδεκτό όνομα cookie συνεδρίας: '%1'. Χρησιμοποιείται η προεπιλογή. - + Unacceptable file type, only regular file is allowed. Μη αποδεκτός τύπος αρχείου, μόνο κανονικό αρχείο επιτρέπεται. - + Symlinks inside alternative UI folder are forbidden. Τα symlinks απαγορεύονται μέσα σε εναλλακτικό φάκελο του UI. - + Using built-in WebUI. Χρήση ενσωματωμένου WebUI. - + Using custom WebUI. Location: "%1". Χρήση προσαρμοσμένου WebUI. Τοποθεσία: "% 1". - + WebUI translation for selected locale (%1) has been successfully loaded. Η μετάφραση WebUI για επιλεγμένες τοπικές ρυθμίσεις (%1) φορτώθηκε με επιτυχία. - + Couldn't load WebUI translation for selected locale (%1). Δεν ήταν δυνατή η φόρτωση της μετάφρασης WebUI για επιλεγμένες τοπικές ρυθμίσεις (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Λείπει το διαχωριστικό «:» στην προσαρμοσμένη κεφαλίδα του HTTP στο WebUI: "%1" - + Web server error. %1 Σφάλμα διακομιστή Web. %1 - + Web server error. Unknown error. Σφάλμα διακομιστή Web. Άγνωστο σφάλμα. @@ -12847,7 +12634,7 @@ Please choose a different name and try again. Unknown error - Αγνωστο σφάλμα + Αγνωστο σφάλμα diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index 9fcbb73ce..6a78dff56 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -231,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -364,112 +364,112 @@ - + I/O Error - - - Not Available - This comment is unavailable - - Not Available + This comment is unavailable + + + + + Not Available This date is unavailable - + Not available - + Magnet link - + Retrieving metadata... - - + + Choose save path - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A - + %1 (Free space on disk: %2) - + Not available This size is unavailable. - + Torrent file (*%1) - + Save as torrent file - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... - + Parsing metadata... - + Metadata retrieval complete @@ -477,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -668,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB - + Recheck torrents on completion - - + + ms milliseconds - + Setting - + Value Value set for this setting - + (disabled) - + (auto) - - + + min minutes - + All addresses - + qBittorrent Section - - + + Open documentation - + All IPv4 addresses - + All IPv6 addresses - + libtorrent Section - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal - + Below normal - + Medium - + Low - + Very low - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache - - - - + + + + + s seconds - + Disk cache expiry interval - + Disk queue size - - + + Enable OS cache - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications - + Display notifications for added torrents - + Download tracker's favicon - + Save path history length - + Enable speed graphs - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck - + Confirm removal of all tags - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker - + Embedded tracker port @@ -1399,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 - + Torrent size: %1 - + Save path: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds - - + + Thank you for using qBittorrent. - + Torrent: %1, sending mail notification - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit - + I/O Error i.e: Input/Output Error - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1521,110 +1532,110 @@ - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. - + Information - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... - + qBittorrent is now ready to exit @@ -1760,263 +1771,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Matches articles based on episode filter. - + Example: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match - + Episode filter rules: - + Season number is a mandatory non-zero value - + Filter must end with semicolon - + Three range types for episodes are supported: - + Single number: <b>1x25;</b> matches episode 25 of season one - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value - + Rules - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago - + Last Match: Unknown - + New rule name - + Please type the name of the new download rule. - - - - Rule name conflict - - + Rule name conflict + + + + + A rule with this name already exists, please choose another name. - + Are you sure you want to remove the download rule named '%1'? - + Are you sure you want to remove the selected download rules? - + Rule deletion confirmation - + Invalid action - + The list is empty, there is nothing to export. - + Export RSS rules - + I/O Error - + Failed to create the destination file. Reason: %1 - + Import RSS rules - + Failed to import the selected rules file. Reason: %1 - + Add new rule... - + Delete rule - + Rename rule... - + Delete selected rules - + Clear downloaded episodes... - + Rule renaming - + Please type the new rule name - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2068,28 +2079,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2100,16 +2121,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2117,38 +2139,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2156,22 +2200,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2179,498 +2223,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2720,47 +2769,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3352,22 +3401,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3485,6 +3534,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3875,12 +3958,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show - + Check for program updates @@ -3895,378 +3978,378 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Execution Log - + Clear the password - + &Set Password - + Preferences - + &Clear Password - + Transfers - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only - + Text Only - + Text Alongside Icons - + Text Under Icons - + Follow System Style - - + + UI lock password - - + + Please type the UI lock password: - + Are you sure you want to clear the password? - + Use regular expressions - - + + Search Engine - + Search has failed - + Search has finished - + Search - + Transfers (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? - + &No - + &Yes - + &Always Yes - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime - + qBittorrent Update Available - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime - + A new version is available. - + Do you want to download %1? - + Open changelog... - + No updates available. You are already using the latest version. - + &Check for Updates - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - + Checking for Updates... - + Already checking for program updates in the background - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error - - + + Invalid password - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) - + The password is invalid - + DL speed: %1 e.g: Download speed: 10 KiB/s - + UP speed: %1 e.g: Upload speed: 10 KiB/s - + Hide - + Exiting qBittorrent - + Open Torrent Files - + Torrent Files @@ -5760,47 +5843,47 @@ Minimum requirement: %2. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5946,392 +6029,402 @@ Minimum requirement: %2. - + + Show free disk space in status bar + + + + Torrent content layout: - + Original - + Create subfolder - + Don't create subfolder - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... - + Options.. - + Remove - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time - + To: To end time - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: - - - + + + min minutes - + Seeding Limits - + Remove torrent - + Remove torrent and its files - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: - + Web User Interface (Remote control) - + IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never - + ban for: - + Session timeout: - + Disabled - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6340,37 +6433,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6483,99 +6576,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management - + Default Torrent Management Mode: - + Manual - + Automatic - + When Torrent Category changed: - + Relocate torrent - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories - + Default Save Path: - + Copy .torrent files to: @@ -6585,22 +6678,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files @@ -6695,64 +6788,64 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6772,50 +6865,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6832,511 +6925,506 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + To: To receiver - + SMTP server: - + Sender - + From: From sender - + This server requires a secure connection (SSL) - - + + Authentication - - - - + + + + Username: - - - - + + + + Password: - + Run external program - + Show console window - + TCP and μTP - + Listening Port - + Port used for incoming connections: - + Set to 0 to let your system pick an unused port - + Random - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits - + Maximum number of connections per torrent: - + Global maximum number of connections: - + Maximum number of upload slots per torrent: - + Global maximum number of upload slots: - + Proxy Server - + Type: - + SOCKS4 - + SOCKS5 - + HTTP - - + + Host: - - - + + + Port: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... - + Apply to trackers - + Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s - - + + Upload: - - + + Download: - + Alternative Rate Limits - + Start time - + End time - + When: - + Every day - + Weekdays - + Weekends - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds - + Torrent inactivity timer: - + then - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: - + Key: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password - + Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: - + Register - + Domain name: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7346,12 +7434,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7371,183 +7459,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name - + %L: Category - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path - + %C: Number of files - + %Z: Torrent size (bytes) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7557,69 +7645,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7630,18 +7718,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Time Error - + The start time and the end time can't be the same. - - + + Length Error @@ -7732,163 +7820,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region - + IP/Address - + Port - + Flags - + Connection - + Client i.e.: Client application - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded - + Down Speed i.e: Download speed - + Up Speed i.e: Upload speed - + Downloaded i.e: total data downloaded - + Uploaded i.e: total data uploaded - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. - + Files i.e. files that are being downloaded right now - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A - + Copy IP:port @@ -8165,39 +8253,6 @@ Those plugins were disabled. - - PowerManagement - - - qBittorrent is active - - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - - - PreviewSelectDialog @@ -8487,124 +8542,124 @@ Those plugins were disabled. - + Never - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - - + + %1 (%2 this session) - - + + N/A - + Yes - + No - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - + Filter files... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - + Web seed editing - + Web seed URL: @@ -8612,33 +8667,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8646,22 +8701,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8710,12 +8765,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8737,76 +8792,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + + + + + Refresh interval: + + + + + sec + + + + + Default + + + RSSWidget @@ -8906,78 +9002,61 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name - + Folder name: - + New folder - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: - + Feed: - + Author: @@ -9234,104 +9313,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories - + Movies - + TV shows - + Music - + Games - + Anime - + Software - + Pictures - + Books - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9356,94 +9435,94 @@ Click the "Search plugins..." button at the bottom right of the window - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins - + Only enabled - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab - + Close all tabs - + Select... - - + + Search Engine - - + + Please install Python to use the Search Engine. - + Empty search pattern - + Please type a search pattern first - + Stop @@ -9451,32 +9530,32 @@ Click the "Search plugins..." button at the bottom right of the window SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9874,67 +9953,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes - + qBittorrent needs to be restarted! - - + + Connection Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -10470,17 +10559,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10960,78 +11049,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11051,39 +11140,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name @@ -11227,73 +11316,73 @@ Please choose a different name and try again. - + Tracker editing - + Tracker URL: - - + + Tracker editing failed - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker - + Copy tracker URL - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility @@ -11782,319 +11871,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility - + Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? - + Rename - + New name: - + Choose save path - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags - + Remove all tags from selected torrents? - + Comma-separated tags: - + Invalid tag - + Tag name: '%1' is invalid - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first - + Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode @@ -12226,32 +12315,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12343,52 +12432,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. diff --git a/src/lang/qbittorrent_en_AU.ts b/src/lang/qbittorrent_en_AU.ts index e09edad52..b5cb2a56e 100644 --- a/src/lang/qbittorrent_en_AU.ts +++ b/src/lang/qbittorrent_en_AU.ts @@ -170,10 +170,6 @@ Never show again Never show again - - Torrent settings - Torrent settings - Set as default category @@ -235,25 +231,25 @@ Stop condition: - - + + None None - - + + Metadata received Metadata received - + Torrents that have metadata initially will be added as stopped. Torrents that have metadata initially will be added as stopped. - + Files checked Files checked @@ -368,112 +364,112 @@ Save as .torrent file... - + I/O Error I/O Error - + Not Available This comment is unavailable Not Available - + Not Available This date is unavailable Not Available - + Not available Not available - + Magnet link Magnet link - + Retrieving metadata... Retrieving metadata... - - + + Choose save path Choose save path - + No stop condition is set. No stop condition is set. - + Torrent will stop after metadata is received. Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. This will also download metadata if it wasn't there initially. - + N/A N/A - + %1 (Free space on disk: %2) %1 (Free space on disk: %2) - + Not available This size is unavailable. Not available - + Torrent file (*%1) Torrent file (*%1) - + Save as torrent file Save as torrent file - + Couldn't export torrent metadata file '%1'. Reason: %2. Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. Cannot create v2 torrent until its data is fully downloaded. - + Filter files... Filter files... - + Parsing metadata... Parsing metadata... - + Metadata retrieval complete Metadata retrieval complete @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Failed to add torrent. Source: "%1". Reason: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - + Merging of trackers is disabled Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Recheck torrents on completion - - + + ms milliseconds ms - + Setting Setting - + Value Value set for this setting Value - + (disabled) (disabled) - + (auto) (auto) - - + + min minutes min - + All addresses All addresses - + qBittorrent Section qBittorrent Section - - + + Open documentation Open documentation - + All IPv4 addresses All IPv4 addresses - + All IPv6 addresses All IPv6 addresses - + libtorrent Section libtorrent Section - + Fastresume files Fastresume files - + SQLite database (experimental) SQLite database (experimental) - + Resume data storage type (requires restart) Resume data storage type (requires restart) - + Normal Normal - + Below normal Below normal - + Medium Medium - + Low Low - + Very low Very low - + Physical memory (RAM) usage limit Physical memory (RAM) usage limit - + Asynchronous I/O threads Asynchronous I/O threads - + Hashing threads Hashing threads - + File pool size File pool size - + Outstanding memory when checking torrents Outstanding memory when checking torrents - + Disk cache Disk cache - - - - + + + + + s seconds s - + Disk cache expiry interval Disk cache expiry interval - + Disk queue size Disk queue size - - + + Enable OS cache Enable OS cache - + Coalesce reads & writes Coalesce reads & writes - + Use piece extent affinity Use piece extent affinity - + Send upload piece suggestions Send upload piece suggestions - - - - - + + + + + 0 (disabled) 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Save resume data interval [0: disabled] - + Outgoing ports (Min) [0: disabled] Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) 0 (permanent lease) - + UPnP lease duration [0: permanent lease] UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) (infinite) - + (system default) (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux This option is less effective on Linux - + Process memory priority Process memory priority - + Bdecode depth limit Bdecode depth limit - + Bdecode token limit Bdecode token limit - + Default Default - + Memory mapped files Memory mapped files - + POSIX-compliant POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) Disk IO type (requires restart) - - + + Disable OS cache Disable OS cache - + Disk IO read mode Disk IO read mode - + Write-through Write-through - + Disk IO write mode Disk IO write mode - + Send buffer watermark Send buffer watermark - + Send buffer low watermark Send buffer low watermark - + Send buffer watermark factor Send buffer watermark factor - + Outgoing connections per second Outgoing connections per second - - + + 0 (system default) 0 (system default) - + Socket send buffer size [0: system default] Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] Socket receive buffer size [0: system default] - + Socket backlog size Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit .torrent file size limit - + Type of service (ToS) for connections to peers Type of service (ToS) for connections to peers - + Prefer TCP Prefer TCP - + Peer proportional (throttles TCP) Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Support internationalised domain name (IDN) - + Allow multiple connections from the same IP address Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances It appends the text to the window title to help distinguish qBittorrent instances - + Customize application instance name Customise application instance name - + It controls the internal state update interval which in turn will affect UI updates It controls the internal state update interval which in turn will affect UI updates - + Refresh interval Refresh interval - + Resolve peer host names Resolve peer host names - + IP address reported to trackers (requires restart) IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Re-announce to all trackers when IP or port changed - + Enable icons in menus Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) (Auto detect if empty) - + Python executable path (may require restart) Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - sec + sec - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage Peer turnover disconnect percentage - + Peer turnover threshold percentage Peer turnover threshold percentage - + Peer turnover disconnect interval Peer turnover disconnect interval - + Resets to default if empty Resets to default if empty - + DHT bootstrap nodes DHT bootstrap nodes - + I2P inbound quantity I2P inbound quantity - + I2P outbound quantity I2P outbound quantity - + I2P inbound length I2P inbound length - + I2P outbound length I2P outbound length - + Display notifications Display notifications - + Display notifications for added torrents Display notifications for added torrents - + Download tracker's favicon Download tracker's favicon - + Save path history length Save path history length - + Enable speed graphs Enable speed graphs - + Fixed slots Fixed slots - + Upload rate based Upload rate based - + Upload slots behavior Upload slots behaviour - + Round-robin Round-robin - + Fastest upload Fastest upload - + Anti-leech Anti-leech - + Upload choking algorithm Upload choking algorithm - + Confirm torrent recheck Confirm torrent recheck - + Confirm removal of all tags Confirm removal of all tags - + Always announce to all trackers in a tier Always announce to all trackers in a tier - + Always announce to all tiers Always announce to all tiers - + Any interface i.e. Any network interface Any interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP mixed mode algorithm - + Resolve peer countries Resolve peer countries - + Network interface Network interface - + Optional IP address to bind to Optional IP address to bind to - + Max concurrent HTTP announces Max concurrent HTTP announces - + Enable embedded tracker Enable embedded tracker - + Embedded tracker port Embedded tracker port @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 Using config directory: %1 - + Torrent name: %1 Torrent name: %1 - + Torrent size: %1 Torrent size: %1 - + Save path: %1 Save path: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds The torrent was downloaded in %1. - - + + Thank you for using qBittorrent. Thank you for using qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, sending e-mail notification - + Add torrent failed Add torrent failed - + Couldn't add torrent '%1', reason: %2. Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... Loading torrents... - + E&xit E&xit - + I/O Error i.e: Input/Output Error I/O Error - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Reason: %2 - + Torrent added Torrent added - + '%1' was added. e.g: xxx.avi was added. '%1' was added. - + Download completed Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 started. Process ID: %2 - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' has finished downloading. - + Information Information - + To fix the error, you may need to edit the config file manually. To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 To control qBittorrent, access the WebUI at: %1 - + Exit Exit - + Recursive download confirmation Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Never - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated qBittorrent termination initiated - + qBittorrent is shutting down... qBittorrent is shutting down... - + Saving torrent progress... Saving torrent progress... - + qBittorrent is now ready to exit qBittorrent is now ready to exit @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Export... - + Matches articles based on episode filter. Matches articles based on episode filter. - + Example: Example: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match will match 2, 5, 8 through 15, 30 and onward episodes of season one - + Episode filter rules: Episode filter rules: - + Season number is a mandatory non-zero value Season number is a mandatory non-zero value - + Filter must end with semicolon Filter must end with semicolon - + Three range types for episodes are supported: Three range types for episodes are supported: - + Single number: <b>1x25;</b> matches episode 25 of season one Single number: <b>1x25;</b> matches episode 25 of season one - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value Episode number is a mandatory positive value - + Rules Rules - + Rules (legacy) Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago Last Match: %1 days ago - + Last Match: Unknown Last Match: Unknown - + New rule name New rule name - + Please type the name of the new download rule. Please type the name of the new download rule. - - + + Rule name conflict Rule name conflict - - + + A rule with this name already exists, please choose another name. A rule with this name already exists, please choose another name. - + Are you sure you want to remove the download rule named '%1'? Are you sure you want to remove the download rule named '%1'? - + Are you sure you want to remove the selected download rules? Are you sure you want to remove the selected download rules? - + Rule deletion confirmation Rule deletion confirmation - + Invalid action Invalid action - + The list is empty, there is nothing to export. The list is empty, there is nothing to export. - + Export RSS rules Export RSS rules - + I/O Error I/O Error - + Failed to create the destination file. Reason: %1 Failed to create the destination file. Reason: %1 - + Import RSS rules Import RSS rules - + Failed to import the selected rules file. Reason: %1 Failed to import the selected rules file. Reason: %1 - + Add new rule... Add new rule... - + Delete rule Delete rule - + Rename rule... Rename rule... - + Delete selected rules Delete selected rules - + Clear downloaded episodes... Clear downloaded episodes... - + Rule renaming Rule renaming - + Please type the new rule name Please type the new rule name - + Clear downloaded episodes Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 Position %1: %2 - + Wildcard mode: you can use Wildcard mode: you can use - - + + Import error Import error - + Failed to read the file. %1 Failed to read the file. %1 - + ? to match any single character ? to match any single character - + * to match zero or more of any characters * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) White-spaces count as AND operators (all words, any order) - + | is used as OR operator | is used as OR operator - + If word order is important use * instead of whitespace. If word order is important use * instead of white-space. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) An expression with an empty %1 clause (e.g. %2) - + will match all articles. will match all articles. - + will exclude all articles. will exclude all articles. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: invalid format - - + + Cannot parse torrent info: %1 Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Couldn't save torrent resume data to '%1'. Error: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 Couldn't save data to '%1'. Error: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + Cannot parse resume data: %1 + + + + + Cannot parse torrent info: %1 + Cannot parse torrent info: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Couldn't begin transaction. Error: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 Couldn't store torrents queue positions. Error: %1 @@ -2185,530 +2229,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON ON - - - - - - - - - + + + + + + + + + OFF OFF - - + + Local Peer Discovery support: %1 Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" Peer ID: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 Anonymous mode: %1 - - + + Encryption support: %1 Encryption support: %1 - - + + FORCED FORCED - + Could not find GUID of network interface. Interface: "%1" Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. Torrent reached the share ratio limit. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Removed torrent. - - - Removed torrent and deleted its content. - Removed torrent and deleted its content. - - - Torrent paused. - Torrent paused. - - - + Super seeding enabled. Super seeding enabled. - + Torrent reached the seeding time limit. Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - Merging of trackers is disabled + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - Trackers cannot be merged because it is a private torrent + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - Trackers are merged from new source + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent paused. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrent move cancelled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent errored. Torrent: "%1". Error: "%2" - Removed torrent. Torrent: "%1" - Removed torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Removed torrent and deleted its content. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtered port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). privileged port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 mixed mode restrictions - + Failed to load Categories. %1 Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 is disabled - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 is disabled - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2758,47 +2775,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Couldn't write to file. Reason: "%1". Torrent is now in "upload only" mode. - + Download first and last piece first: %1, torrent: '%2' Download first and last piece first: %1, torrent: '%2' - + On On - + Off Off - + Failed to reload torrent. Torrent: %1. Reason: %2 Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 Performance alert: %1. More info: %2 @@ -2835,11 +2852,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Expected integer number in environment variable '%1', but got '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' must follow syntax '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2892,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' must follow syntax '%1=%2' + Parameter '%1' must follow syntax '%1=%2' @@ -2970,10 +2982,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - Add torrents as started or paused - Skip hash check @@ -3070,14 +3078,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - Remove torrents @@ -3176,10 +3176,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - Also permanently delete the files - Also permanently delete the files - Are you sure you want to remove '%1' from the transfer list? @@ -3411,26 +3407,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" Downloading torrent... Source: "%1" - Trackers cannot be merged because it is a private torrent - Trackers cannot be merged because it is a private torrent - - - + Torrent is already present Torrent is already present - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3548,6 +3540,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Supported image files + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Power management found suitable D-Bus interface. Interface: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Power management error. Action: %1. Error: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Power management unexpected error. State: %1. Error: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3715,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Options... - - &Resume - &Resume - &Remove @@ -3774,10 +3796,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Close Window - - R&esume All - R&esume All - Manage Cookies... @@ -3893,10 +3911,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Hibernate System - - S&hutdown System - S&hutdown System - &Statistics @@ -3917,14 +3931,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &About - - &Pause - &Pause - - - P&ause All - P&ause All - &Add Torrent File... @@ -3958,12 +3964,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Show - + Check for program updates Check for program updates @@ -3978,388 +3984,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also If you like qBittorrent, please donate! - + Execution Log Execution Log - + Clear the password Clear the password - + &Set Password &Set Password - + Preferences Preferences - + &Clear Password &Clear Password - + Transfers Transfers - - + + qBittorrent is minimized to tray qBittorrent is minimised to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. This behaviour can be changed in the settings. You won't be reminded again. - + Icons Only Icons Only - + Text Only Text Only - + Text Alongside Icons Text Alongside Icons - + Text Under Icons Text Under Icons - + Follow System Style Follow System Style - - + + UI lock password UI lock password - - + + Please type the UI lock password: Please type the UI lock password: - + Are you sure you want to clear the password? Are you sure you want to clear the password? - + Use regular expressions Use regular expressions - - + + Search Engine - Search Engine + Search Engine - + Search has failed - Search has failed + Search has failed - + Search has finished - Search has finished + Search has finished - + Search Search - + Transfers (%1) Transfers (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray qBittorrent is closed to tray - + Some files are currently transferring. Some files are currently transferring. - + Are you sure you want to quit qBittorrent? Are you sure you want to quit qBittorrent? - + &No &No - + &Yes &Yes - + &Always Yes &Always Yes - + Options saved. Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Missing Python Runtime - + qBittorrent Update Available qBittorrent Update Available - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime Old Python Runtime - + A new version is available. A new version is available. - + Do you want to download %1? Do you want to download %1? - + Open changelog... Open changelog... - + No updates available. You are already using the latest version. No updates available. You are already using the latest version. - + &Check for Updates &Check for Updates - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Paused + Paused - + Checking for Updates... Checking for Updates... - + Already checking for program updates in the background Already checking for program updates in the background - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Download error - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python setup could not be downloaded, reason: %1. -Please install it manually. - - - - + + Invalid password Invalid password - + Filter torrents... Filter torrents... - + Filter by: Filter by: - + The password must be at least 3 characters long The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid The password is invalid - + DL speed: %1 e.g: Download speed: 10 KiB/s DL speed: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s UP speed: %1 - + Hide Hide - + Exiting qBittorrent Exiting qBittorrent - + Open Torrent Files Open Torrent Files - + Torrent Files Torrent Files @@ -5853,47 +5853,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 Email Notification Error: %1 @@ -5935,10 +5935,6 @@ Please install it manually. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5955,6 @@ Please install it manually. Confirm when deleting torrents Confirm when deleting torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Shows a confirmation dialog upon pausing/resuming all the torrents - - - Confirm "Pause/Resume all" actions - Confirm "Pause/Resume all" actions - Use alternating row colors @@ -5983,10 +5971,6 @@ Please install it manually. Always Always - - Paused torrents only - Paused torrents only - Action on double-click @@ -5997,10 +5981,6 @@ Please install it manually. Downloading torrents: Downloading torrents: - - Start / Stop Torrent - Start / Stop Torrent - @@ -6059,179 +6039,179 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent content layout: - + Original Original - + Create subfolder Create subfolder - + Don't create subfolder Don't create subfolder - + The torrent will be added to the top of the download queue The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue Add to top of queue - + When duplicate torrent is being added When duplicate torrent is being added - + Merge trackers to existing torrent Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder Keep unselected files in ".unwanted" folder - + Add... Add... - + Options.. Options.. - + Remove Remove - + Email notification &upon download completion Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Peer connection protocol: - + Any Any - + I2P (experimental) I2P (experimental) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymisation. This may be useful if the user is not interested in the anonymisation of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - - - + Mixed mode Mixed mode - Some options are incompatible with the chosen proxy type! - Some options are incompatible with the chosen proxy type! + Some options are incompatible with the chosen proxy type! - + If checked, hostname lookups are done via the proxy If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes Use proxy for BitTorrent purposes - + RSS feeds will use proxy RSS feeds will use proxy - + Use proxy for RSS purposes Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy Search engine, software updates or anything else will use proxy - + Use proxy for general purposes Use proxy for general purposes - + IP Fi&ltering IP Fi&ltering - + Schedule &the use of alternative rate limits Schedule &the use of alternative rate limits - + From: From start time From: - + To: To end time To: - + Find peers on the DHT network Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6220,190 @@ Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: Maximum active checking torrents: - + &Torrent Queueing &Torrent Queueing - + When total seeding time reaches When total seeding time reaches - + When inactive seeding time reaches When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - A&utomatically add these trackers to new downloads: - - - + RSS Reader RSS Reader - + Enable fetching RSS feeds Enable fetching RSS feeds - + Feeds refresh interval: Feeds refresh interval: - + Same host request delay: Same host request delay: - + Maximum number of articles per feed: Maximum number of articles per feed: - - - + + + min minutes min - + Seeding Limits Seeding Limits - Pause torrent - Pause torrent - - - + Remove torrent Remove torrent - + Remove torrent and its files Remove torrent and its files - + Enable super seeding for torrent Enable super seeding for torrent - + When ratio reaches When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents Enable auto downloading of RSS torrents - + Edit auto downloading rules... Edit auto downloading rules... - + RSS Smart Episode Filter RSS Smart Episode Filter - + Download REPACK/PROPER episodes Download REPACK/PROPER episodes - + Filters: Filters: - + Web User Interface (Remote control) Web User Interface (Remote control) - + IP address: IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6412,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: Ban client after consecutive failures: - + Never Never - + ban for: ban for: - + Session timeout: Session timeout: - + Disabled Disabled - Enable cookie Secure flag (requires HTTPS) - Enable cookie Secure flag (requires HTTPS) - - - + Server domains: Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6455,37 @@ you should put in domain names used by Web UI server. Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Upda&te my dynamic domain name @@ -6519,7 +6497,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Search + Search @@ -6620,99 +6598,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Delete backup logs older than: - + Show external IP in status bar - + When adding a torrent When adding a torrent - + Bring torrent dialog to the front Bring torrent dialogue to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled Also when addition is cancelled - + Warning! Data loss possible! Warning! Data loss possible! - + Saving Management Saving Management - + Default Torrent Management Mode: Default Torrent Management Mode: - + Manual Manual - + Automatic Automatic - + When Torrent Category changed: When Torrent Category changed: - + Relocate torrent Relocate torrent - + Switch torrent to Manual Mode Switch torrent to Manual Mode - - + + Relocate affected torrents Relocate affected torrents - - + + Switch affected torrents to Manual Mode Switch affected torrents to Manual Mode - + Use Subcategories Use Subcategories - + Default Save Path: Default Save Path: - + Copy .torrent files to: Copy .torrent files to: @@ -6722,26 +6700,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Show &qBittorrent in notification area - &Log file - &Log file - - - + Display &torrent content and some options Display &torrent content and some options - + De&lete .torrent files afterwards De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files Pre-allocate disk space for all files @@ -6771,10 +6745,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Preview file, otherwise open destination folder - - Show torrent options - Show torrent options - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6810,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.years - + Log performance warnings Log performance warnings - The torrent will be added to download list in a paused state - The torrent will be added to download list in a paused state - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Do not start the download automatically - + Whether the .torrent file should be deleted after adding it Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Allocate full file sizes on disk before starting downloads, to minimise fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: When Default Save/Incomplete Path changed: - + When Category Save Path changed: When Category Save Path changed: - + Use Category paths in Manual Mode Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one Resolve relative Save Path against appropriate Category path instead of Default one @@ -6922,50 +6888,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyqBittorrent window state on start up - + Torrent stop condition: Torrent stop condition: - - + + None None - - + + Metadata received Metadata received - - + + Files checked Files checked - + Ask for merging trackers when torrent is being added manually Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Use another path for incomplete torrents: - + Automatically add torrents from: Automatically add torrents from: - + Excluded file names Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6960,510 @@ readme.txt: filter exact file name. readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not 'readme10.txt'. - + Receiver Receiver - + To: To receiver To: - + SMTP server: SMTP server: - + Sender Sender - + From: From sender From: - + This server requires a secure connection (SSL) This server requires a secure connection (SSL) - - + + Authentication Authentication - - - - + + + + Username: Username: - - - - + + + + Password: Password: - + Run external program Run external program - Run on torrent added - Run on torrent added - - - Run on torrent finished - Run on torrent finished - - - + Show console window Show console window - + TCP and μTP TCP and μTP - + Listening Port Listening Port - + Port used for incoming connections: Port used for incoming connections: - + Set to 0 to let your system pick an unused port Set to 0 to let your system pick an unused port - + Random Random - + Use UPnP / NAT-PMP port forwarding from my router Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits Connections Limits - + Maximum number of connections per torrent: Maximum number of connections per torrent: - + Global maximum number of connections: Global maximum number of connections: - + Maximum number of upload slots per torrent: Maximum number of upload slots per torrent: - + Global maximum number of upload slots: Global maximum number of upload slots: - + Proxy Server Proxy Server - + Type: Type: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections Use proxy for peer connections - + A&uthentication A&uthentication - Info: The password is saved unencrypted - Info: The password is saved unencrypted + Info: The password is saved unencrypted - + Filter path (.dat, .p2p, .p2b): Filter path (.dat, .p2p, .p2b): - + Reload the filter Reload the filter - + Manually banned IP addresses... Manually banned IP addresses... - + Apply to trackers Apply to trackers - + Global Rate Limits Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Upload: - - + + Download: Download: - + Alternative Rate Limits Alternative Rate Limits - + Start time Start time - + End time End time - + When: When: - + Every day Every day - + Weekdays Weekdays - + Weekends Weekends - + Rate Limits Settings Rate Limits Settings - + Apply rate limit to peers on LAN Apply rate limit to peers on LAN - + Apply rate limit to transport overhead Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Apply rate limit to µTP protocol - + Privacy Privacy - + Enable DHT (decentralized network) to find more peers Enable DHT (decentralised network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Exchange peers with compatible BitTorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network Look for peers on your local network - + Enable Local Peer Discovery to find more peers Enable Local Peer Discovery to find more peers - + Encryption mode: Encryption mode: - + Require encryption Require encryption - + Disable encryption Disable encryption - + Enable when using a proxy or a VPN connection Enable when using a proxy or a VPN connection - + Enable anonymous mode Enable anonymous mode - + Maximum active downloads: Maximum active downloads: - + Maximum active uploads: Maximum active uploads: - + Maximum active torrents: Maximum active torrents: - + Do not count slow torrents in these limits Do not count slow torrents in these limits - + Upload rate threshold: Upload rate threshold: - + Download rate threshold: Download rate threshold: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Torrent inactivity timer: - + then then - + Use UPnP / NAT-PMP to forward the port from my router Use UPnP / NAT-PMP to forward the port from my router - + Certificate: Certificate: - + Key: Key: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password Change current password - Use alternative Web UI - Use alternative Web UI - - - + Files location: Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Security - + Enable clickjacking protection Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Enable Host header validation - + Add custom HTTP headers Add custom HTTP headers - + Header: value pairs, one per line Header: value pairs, one per line - + Enable reverse proxy support Enable reverse proxy support - + Trusted proxies list: Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Service: - + Register Register - + Domain name: Domain name: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7520,12 +7473,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Select qBittorrent UI Theme file - + Choose Alternative UI files location Choose Alternative UI files location - + Supported parameters (case sensitive): Supported parameters (case sensitive): @@ -7545,183 +7498,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Disabled due to failed to detect system tray presence - + No stop condition is set. No stop condition is set. - + Torrent will stop after metadata is received. Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: Torrent name - + %L: Category %L: Category - + %F: Content path (same as root path for multifile torrent) %F: Content path (same as root path for multi-file torrent) - + %R: Root path (first torrent subdirectory path) %R: Root path (first torrent subdirectory path) - + %D: Save path %D: Save path - + %C: Number of files %C: Number of files - + %Z: Torrent size (bytes) %Z: Torrent size (bytes) - + %T: Current tracker %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: Encapsulate parameter with quotation marks to avoid text being cut off at white-space (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (None) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate Certificate - + Select certificate Select certificate - + Private key Private key - + Select private key Select private key - + WebUI configuration failed. Reason: %1 WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Select folder to monitor - + Adding entry failed Adding entry failed - + The WebUI username must be at least 3 characters long. The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. The WebUI password must be at least 6 characters long. - + Location Error Location Error - - + + Choose export directory Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7731,69 +7684,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not qBittorrent UI Theme file (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Choose a save directory - + Torrents that have metadata initially will be added as stopped. Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Choose an IP filter file - + All supported filters All supported filters - + The alternative WebUI files location cannot be blank. The alternative WebUI files location cannot be blank. - + Parsing error Parsing error - + Failed to parse the provided IP filter Failed to parse the provided IP filter - + Successfully refreshed Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Successfully parsed the provided IP filter: %1 rules were applied. @@ -7804,18 +7757,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Preferences - + Time Error Time Error - + The start time and the end time can't be the same. The start time and the end time can't be the same. - - + + Length Error Length Error @@ -7906,163 +7859,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Country/Region - + IP/Address IP/Address - + Port Port - + Flags Flags - + Connection Connection - + Client i.e.: Client application Client - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID Client - + Progress i.e: % downloaded Progress - + Down Speed i.e: Download speed Down Speed - + Up Speed i.e: Upload speed Up Speed - + Downloaded i.e: total data downloaded Downloaded - + Uploaded i.e: total data uploaded Uploaded - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevance - + Files i.e. files that are being downloaded right now Files - + Column visibility Column visibility - + Resize columns Resize columns - + Resize all non-hidden columns to the size of their contents Resize all non-hidden columns to the size of their contents - + Add peers... Add peers... - - + + Adding peers Adding peers - + Some peers cannot be added. Check the Log for details. Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. Peers are added to this torrent. - - + + Ban peer permanently Ban peer permanently - + Cannot add peers to a private torrent Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued Cannot add peers when the torrent is queued - + No peer was selected No peer was selected - + Are you sure you want to permanently ban the selected peers? Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned Peer "%1" is manually banned - + N/A N/A - + Copy IP:port Copy IP:port @@ -8343,34 +8296,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent is active + qBittorrent is active PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Power management found suitable D-Bus interface. Interface: %1 + Power management found suitable D-Bus interface. Interface: %1 - Power management error. Did not found suitable D-Bus interface. - Power management error. Did not found suitable D-Bus interface. + Power management error. Did not found suitable D-Bus interface. - - - Power management error. Action: %1. Error: %2 - Power management error. Action: %1. Error: %2 + Power management error. Action: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 + Power management unexpected error. State: %1. Error: %2 @@ -8662,153 +8608,124 @@ Those plugins were disabled. Save Path: - + Never Never - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (have %3) - - + + %1 (%2 this session) %1 (%2 this session) - - + + N/A N/A - + Yes - Yes + Yes - + No - No + No - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (seeded for %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 average) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - New Web seed - - - Remove Web seed - Remove Web seed - - - Copy Web seed URL - Copy Web seed URL - - - Edit Web seed URL - Edit Web seed URL - - - + Filter files... Filter files... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Speed graphs are disabled - + You can enable it in Advanced Options You can enable it in Advanced Options - New URL seed - New HTTP source - New URL seed - - - New URL seed: - New URL seed: - - - This URL seed is already in the list. - This URL seed is already in the list. - - - + Web seed editing Web seed editing - + Web seed URL: Web seed URL: @@ -8816,33 +8733,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8850,22 +8767,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8914,12 +8831,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8941,76 +8858,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. Item doesn't exist: %1. - Couldn't move folder into itself. - Couldn't move folder into itself. + Couldn't move folder into itself. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Cannot delete root folder. - + Failed to read RSS session data. %1 Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed doesn't exist: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Default + + RSSWidget @@ -9110,78 +9072,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Edit feed URL... + Edit feed URL... - Edit feed URL - Edit feed URL + Edit feed URL - + Please choose a folder name Please choose a folder name - + Folder name: Folder name: - + New folder New folder - - Please type a RSS feed URL - Please type a RSS feed URL + Please type a RSS feed URL - - Feed URL: - Feed URL: + Feed URL: - + Deletion confirmation Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed Please choose a new name for this RSS feed - + New feed name: New feed name: - + Rename failed Rename failed - + Date: Date: - + Feed: Feed: - + Author: Author: @@ -9318,10 +9279,6 @@ Those plugins were disabled. i.e: Number of partial sources Leechers - - Search engine - Search engine - Filter search results... @@ -9442,104 +9399,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. A more recent version of this plugin is already installed. - + Plugin %1 is not supported. Plugin %1 is not supported. - - + + Plugin is not supported. Plugin is not supported. - + Plugin %1 has been successfully updated. Plugin %1 has been successfully updated. - + All categories All categories - + Movies Movies - + TV shows TV shows - + Music Music - + Games Games - + Anime Anime - + Software Software - + Pictures Pictures - + Books Books - + Update server is temporarily unavailable. %1 Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') Search plugin '%1' contains invalid version string ('%2') @@ -9565,135 +9522,127 @@ Click the "Search plug-ins..." button at the bottom right of the windo Search plug-ins... - + A phrase to search for. A phrase to search for. - + Spaces in a search term may be protected by double quotes. Spaces in a search term may be protected by double quotes. - + Example: Search phrase example Example: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> - + All plugins All plug-ins - + Only enabled Only enabled - - + + Invalid data format. - Invalid data format. + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> - + Refresh - + Close tab Close tab - + Close all tabs Close all tabs - + Select... Select... - - + + Search Engine Search Engine - - + + Please install Python to use the Search Engine. Please install Python to use the Search Engine. - + Empty search pattern Empty search pattern - + Please type a search pattern first Please type a search pattern first - + Stop Stop - - Search has finished - Search has finished - - - Search has failed - Search has failed - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10091,67 +10040,77 @@ Click the "Search plug-ins..." button at the bottom right of the windo StatusBar - + Connection status: Connection status: - - + + No direct connections. This may indicate network configuration problems. No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 nodes - + qBittorrent needs to be restarted! qBittorrent needs to be restarted! - - + + Connection Status: Connection Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Click to switch to alternative speed limits - + Click to switch to regular speed limits Click to switch to regular speed limits @@ -10179,14 +10138,6 @@ Click the "Search plug-ins..." button at the bottom right of the windo Completed (0) Completed (0) - - Resumed (0) - Resumed (0) - - - Paused (0) - Paused (0) - Running (0) @@ -10277,32 +10228,16 @@ Click the "Search plug-ins..." button at the bottom right of the windo Stop torrents - - Paused (%1) - Paused (%1) - Moving (%1) Moving (%1) - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - Remove torrents Remove torrents - - Resumed (%1) - Resumed (%1) - Active (%1) @@ -10374,23 +10309,11 @@ Click the "Search plug-ins..." button at the bottom right of the windo Remove unused tags Remove unused tags - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - Remove torrents Remove torrents - - New Tag - New Tag - Start torrents @@ -10726,17 +10649,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Too many active tasks - + Torrent creation is still unfinished. Torrent creation is still unfinished. - + Torrent creation failed. Torrent creation failed. @@ -10988,17 +10911,6 @@ Please choose a different name and try again. Watching folder: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Failed to allocate memory when reading file. File: "%1". Error: "%2" - - - Invalid metadata - Invalid metadata - - TorrentOptionsDialog @@ -11036,10 +10948,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - Torrent speed limits - Download: @@ -11072,34 +10980,6 @@ Please choose a different name and try again. Upload: Upload: - - Torrent share limits - Torrent share limits - - - Use global share limit - Use global share limit - - - Set no share limit - Set no share limit - - - Set share limit to - Set share limit to - - - ratio - ratio - - - total minutes - total minutes - - - inactive minutes - inactive minutes - Disable DHT for this torrent @@ -11141,14 +11021,6 @@ Please choose a different name and try again. Not applicable to private torrents Not applicable to private torrents - - No share limit method selected - No share limit method selected - - - Please select a limit method first - Please select a limit method first - TorrentShareLimitsWidget @@ -11208,7 +11080,7 @@ Please choose a different name and try again. Remove torrent - Remove torrent + Remove torrent @@ -11218,7 +11090,7 @@ Please choose a different name and try again. Enable super seeding for torrent - Enable super seeding for torrent + Enable super seeding for torrent @@ -11233,10 +11105,6 @@ Please choose a different name and try again. Torrent Tags Torrent Tags - - New Tag - New Tag - Add tag @@ -11271,78 +11139,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Error: '%1' is not a valid torrent file. - + Priority must be an integer Priority must be an integer - + Priority is not valid Priority is not valid - + Torrent's metadata has not yet downloaded Torrent's metadata has not yet downloaded - + File IDs must be integers File IDs must be integers - + File ID is not valid File ID is not valid - - - - + + + + Torrent queueing must be enabled Torrent queueing must be enabled - - + + Save path cannot be empty Save path cannot be empty - - + + Cannot create target directory Cannot create target directory - - + + Category cannot be empty Category cannot be empty - + Unable to create category Unable to create category - + Unable to edit category Unable to edit category - + Unable to export torrent file. Error: %1 Unable to export torrent file. Error: %1 - + Cannot make save path Cannot make save path @@ -11362,39 +11230,39 @@ Please choose a different name and try again. 'sort' parameter is invalid - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" is not a valid file index. - + Index %1 is out of bounds. Index %1 is out of bounds. - - + + Cannot write to directory Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name Incorrect torrent name - - + + Incorrect category name Incorrect category name @@ -11499,23 +11367,11 @@ Please choose a different name and try again. Min Announce - - Invalid status! - Invalid status! - - - URL/Announce endpoint - URL/Announce endpoint - Tier Tier - - Protocol - Protocol - Status @@ -11546,18 +11402,6 @@ Please choose a different name and try again. Message Message - - Next announce - Next announce - - - Min announce - Min announce - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11411,73 @@ Please choose a different name and try again. This torrent is private - + Tracker editing Tracker editing - + Tracker URL: Tracker URL: - - + + Tracker editing failed Tracker editing failed - + The tracker URL entered is invalid. The tracker URL entered is invalid. - + The tracker URL already exists. The tracker URL already exists. - + Edit tracker URL... Edit tracker URL... - + Remove tracker Remove tracker - + Copy tracker URL Copy tracker URL - + Force reannounce to selected trackers Force re-announce to selected trackers - + Force reannounce to all trackers Force re-announce to all trackers - + Resize columns Resize columns - + Resize all non-hidden columns to the size of their contents Resize all non-hidden columns to the size of their contents - + Add trackers... Add trackers... - + Column visibility Column visibility @@ -11723,14 +11567,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - Remove torrents @@ -11853,10 +11689,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Checking resume data - - Paused - Paused - Completed @@ -11897,21 +11729,16 @@ Please choose a different name and try again. % Done Progress - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Stopped Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -12027,22 +11854,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Time Active + Time Active Yes - Yes + Yes No - No - - - Time Active - Time (duration) the torrent is active (not paused) - Time Active + No @@ -12144,358 +11966,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Column visibility - + Recheck confirmation Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? Are you sure you want to recheck the selected torrent(s)? - + Rename Rename - + New name: New name: - + Choose save path Choose save path - Confirm pause - Confirm pause - - - Would you like to pause all torrents? - Would you like to pause all torrents? - - - Confirm resume - Confirm resume - - - Would you like to resume all torrents? - Would you like to resume all torrents? - - - + Unable to preview Unable to preview - + The selected torrent "%1" does not contain previewable files The selected torrent "%1" does not contain previewable files - + Resize columns Resize columns - + Resize all non-hidden columns to the size of their contents Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Add Tags - - - + Choose folder to save exported .torrent files Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists A file with the same name already exists - + Export .torrent file error Export .torrent file error - + Remove All Tags Remove All Tags - + Remove all tags from selected torrents? Remove all tags from selected torrents? - + Comma-separated tags: Comma-separated tags: - + Invalid tag Invalid tag - + Tag name: '%1' is invalid Tag name: '%1' is invalid - &Resume - Resume/start the torrent - &Resume - - - &Pause - Pause the torrent - &Pause - - - Force Resu&me - Force Resume/start the torrent - Force Resu&me - - - + Pre&view file... Pre&view file... - + Torrent &options... Torrent &options... - + Open destination &folder Open destination &folder - + Move &up i.e. move up in the queue Move &up - + Move &down i.e. Move down in the queue Move &down - + Move to &top i.e. Move to top of the queue Move to &top - + Move to &bottom i.e. Move to bottom of the queue Move to &bottom - + Set loc&ation... Set loc&ation... - + Force rec&heck Force rec&heck - + Force r&eannounce Force r&eannounce - + &Magnet link &Magnet link - + Torrent &ID Torrent &ID - + &Comment &Comment - + &Name &Name - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Re&name... - + Edit trac&kers... Edit trac&kers... - + E&xport .torrent... E&xport .torrent... - + Categor&y Categor&y - + &New... New category... &New... - + &Reset Reset category &Reset - + Ta&gs Ta&gs - + &Add... Add / assign multiple tags... &Add... - + &Remove All Remove all tags &Remove All - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Queue - + &Copy &Copy - + Exported torrent is not necessarily the same as the imported Exported torrent is not necessarily the same as the imported - + Download in sequential order Download in sequential order - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &Remove - + Download first and last pieces first Download first and last pieces first - + Automatic Torrent Management Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - - - + Super seeding mode Super seeding mode @@ -12627,32 +12410,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Failed to find `python` executable in Windows Registry. - + Failed to find Python executable Failed to find Python executable @@ -12744,52 +12527,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. Using built-in WebUI. - + Using custom WebUI. Location: "%1". Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 Web server error. %1 - + Web server error. Unknown error. Web server error. Unknown error. @@ -12847,7 +12630,7 @@ Please choose a different name and try again. Unknown error - Unknown error + Unknown error diff --git a/src/lang/qbittorrent_en_GB.ts b/src/lang/qbittorrent_en_GB.ts index 67f7a193e..614dd35f1 100644 --- a/src/lang/qbittorrent_en_GB.ts +++ b/src/lang/qbittorrent_en_GB.ts @@ -170,10 +170,6 @@ Never show again Never show again - - Torrent settings - Torrent settings - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrent options @@ -235,25 +231,25 @@ Stop condition: - - + + None None - - + + Metadata received Metadata received - + Torrents that have metadata initially will be added as stopped. Torrents that have metadata initially will be added as stopped. - + Files checked Files checked @@ -368,112 +364,112 @@ Save as .torrent file... - + I/O Error I/O Error - + Not Available This comment is unavailable Not Available - + Not Available This date is unavailable Not Available - + Not available Not available - + Magnet link Magnet link - + Retrieving metadata... Retrieving metadata... - - + + Choose save path Choose save path - + No stop condition is set. No stop condition is set. - + Torrent will stop after metadata is received. Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. This will also download metadata if it wasn't there initially. - + N/A N/A - + %1 (Free space on disk: %2) %1 (Free space on disk: %2) - + Not available This size is unavailable. Not available - + Torrent file (*%1) Torrent file (*%1) - + Save as torrent file Save as torrent file - + Couldn't export torrent metadata file '%1'. Reason: %2. Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. Cannot create v2 torrent until its data is fully downloaded. - + Filter files... Filter files... - + Parsing metadata... Parsing metadata... - + Metadata retrieval complete Metadata retrieval complete @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Failed to add torrent. Source: "%1". Reason: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - + Merging of trackers is disabled Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Recheck torrents on completion - - + + ms milliseconds ms - + Setting Setting - + Value Value set for this setting Value - + (disabled) (disabled) - + (auto) (auto) - - + + min minutes min - + All addresses All addresses - + qBittorrent Section qBittorrent Section - - + + Open documentation Open documentation - + All IPv4 addresses All IPv4 addresses - + All IPv6 addresses All IPv6 addresses - + libtorrent Section libtorrent Section - + Fastresume files Fastresume files - + SQLite database (experimental) SQLite database (experimental) - + Resume data storage type (requires restart) Resume data storage type (requires restart) - + Normal Normal - + Below normal Below normal - + Medium Medium - + Low Low - + Very low Very low - + Physical memory (RAM) usage limit Physical memory (RAM) usage limit - + Asynchronous I/O threads Asynchronous I/O threads - + Hashing threads Hashing threads - + File pool size File pool size - + Outstanding memory when checking torrents Outstanding memory when checking torrents - + Disk cache Disk cache - - - - + + + + + s seconds s - + Disk cache expiry interval Disk cache expiry interval - + Disk queue size Disk queue size - - + + Enable OS cache Enable OS cache - + Coalesce reads & writes Coalesce reads & writes - + Use piece extent affinity Use piece extent affinity - + Send upload piece suggestions Send upload piece suggestions - - - - - + + + + + 0 (disabled) 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Save resume data interval [0: disabled] - + Outgoing ports (Min) [0: disabled] Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) 0 (permanent lease) - + UPnP lease duration [0: permanent lease] UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) (infinite) - + (system default) (system default) - + Delete files permanently - + Delete files permanently - + Move files to trash (if possible) - + Move files to Wastebasket (if possible) - + Torrent content removing mode - + Torrent content removing mode - + This option is less effective on Linux This option is less effective on Linux - + Process memory priority Process memory priority - + Bdecode depth limit Bdecode depth limit - + Bdecode token limit Bdecode token limit - + Default Default - + Memory mapped files Memory mapped files - + POSIX-compliant POSIX-compliant - + Simple pread/pwrite - + Simple pread/pwrite - + Disk IO type (requires restart) Disk IO type (requires restart) - - + + Disable OS cache Disable OS cache - + Disk IO read mode Disk IO read mode - + Write-through Write-through - + Disk IO write mode Disk IO write mode - + Send buffer watermark Send buffer watermark - + Send buffer low watermark Send buffer low watermark - + Send buffer watermark factor Send buffer watermark factor - + Outgoing connections per second Outgoing connections per second - - + + 0 (system default) 0 (system default) - + Socket send buffer size [0: system default] Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] Socket receive buffer size [0: system default] - + Socket backlog size Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Save statistics interval [0: disabled] - + .torrent file size limit .torrent file size limit - + Type of service (ToS) for connections to peers Type of service (ToS) for connections to peers - + Prefer TCP Prefer TCP - + Peer proportional (throttles TCP) Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Support internationalised domain name (IDN) - + Allow multiple connections from the same IP address Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name Customise application instance name - + It controls the internal state update interval which in turn will affect UI updates It controls the internal state update interval which in turn will affect UI updates - + Refresh interval Refresh interval - + Resolve peer host names Resolve peer host names - + IP address reported to trackers (requires restart) IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Re-announce to all trackers when IP or port changed - + Enable icons in menus Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + Ignore SSL errors - + (Auto detect if empty) (Auto detect if empty) - + Python executable path (may require restart) Python executable path (may require restart) - + Start BitTorrent session in paused state - + Start BitTorrent session in paused state - + sec seconds - sec + sec - + -1 (unlimited) - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage Peer turnover disconnect percentage - + Peer turnover threshold percentage Peer turnover threshold percentage - + Peer turnover disconnect interval Peer turnover disconnect interval - + Resets to default if empty Resets to default if empty - + DHT bootstrap nodes DHT bootstrap nodes - + I2P inbound quantity I2P inbound quantity - + I2P outbound quantity I2P outbound quantity - + I2P inbound length I2P inbound length - + I2P outbound length I2P outbound length - + Display notifications Display notifications - + Display notifications for added torrents Display notifications for added torrents - + Download tracker's favicon Download tracker's favicon - + Save path history length Save path history length - + Enable speed graphs Enable speed graphs - + Fixed slots Fixed slots - + Upload rate based Upload rate based - + Upload slots behavior Upload slots behaviour - + Round-robin Round-robin - + Fastest upload Fastest upload - + Anti-leech Anti-leech - + Upload choking algorithm Upload choking algorithm - + Confirm torrent recheck Confirm torrent recheck - + Confirm removal of all tags Confirm removal of all tags - + Always announce to all trackers in a tier Always announce to all trackers in a tier - + Always announce to all tiers Always announce to all tiers - + Any interface i.e. Any network interface Any interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP mixed mode algorithm - + Resolve peer countries Resolve peer countries - + Network interface Network interface - + Optional IP address to bind to Optional IP address to bind to - + Max concurrent HTTP announces Max concurrent HTTP announces - + Enable embedded tracker Enable embedded tracker - + Embedded tracker port Embedded tracker port @@ -1382,142 +1393,142 @@ Invalid directory path - + Invalid directory path Directory does not exist - + Directory does not exist Invalid mode, allowed values: %1 - + Invalid mode, allowed values: %1 cookies must be array - + cookies must be array Application - + Running in portable mode. Auto detected profile folder at: %1 Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 Using config directory: %1 - + Torrent name: %1 Torrent name: %1 - + Torrent size: %1 Torrent size: %1 - + Save path: %1 Save path: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds The torrent was downloaded in %1. - - + + Thank you for using qBittorrent. Thank you for using qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, sending e-mail notification - + Add torrent failed Add torrent failed - + Couldn't add torrent '%1', reason: %2. Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... Loading torrents... - + E&xit E&xit - + I/O Error i.e: Input/Output Error I/O Error - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Reason: %2 - + Torrent added Torrent added - + '%1' was added. e.g: xxx.avi was added. '%1' was added. - + Download completed Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 started. Process ID: %2 - + This is a test email. - + This is a test email. - + Test email - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' has finished downloading. - + Information Information - + To fix the error, you may need to edit the config file manually. To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 To control qBittorrent, access the WebUI at: %1 - + Exit Exit - + Recursive download confirmation Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Never - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated qBittorrent termination initiated - + qBittorrent is shutting down... qBittorrent is shutting down... - + Saving torrent progress... Saving torrent progress... - + qBittorrent is now ready to exit qBittorrent is now ready to exit @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Export... - + Matches articles based on episode filter. Matches articles based on episode filter. - + Example: Example: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match will match 2, 5, 8 through 15, 30 and onward episodes of season one - + Episode filter rules: Episode filter rules: - + Season number is a mandatory non-zero value Season number is a mandatory non-zero value - + Filter must end with semicolon Filter must end with semicolon - + Three range types for episodes are supported: Three range types for episodes are supported: - + Single number: <b>1x25;</b> matches episode 25 of season one Single number: <b>1x25;</b> matches episode 25 of season one - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value Episode number is a mandatory positive value - + Rules Rules - + Rules (legacy) Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago Last Match: %1 days ago - + Last Match: Unknown Last Match: Unknown - + New rule name New rule name - + Please type the name of the new download rule. Please type the name of the new download rule. - - + + Rule name conflict Rule name conflict - - + + A rule with this name already exists, please choose another name. A rule with this name already exists, please choose another name. - + Are you sure you want to remove the download rule named '%1'? Are you sure you want to remove the download rule named '%1'? - + Are you sure you want to remove the selected download rules? Are you sure you want to remove the selected download rules? - + Rule deletion confirmation Rule deletion confirmation - + Invalid action Invalid action - + The list is empty, there is nothing to export. The list is empty, there is nothing to export. - + Export RSS rules Export RSS rules - + I/O Error I/O Error - + Failed to create the destination file. Reason: %1 Failed to create the destination file. Reason: %1 - + Import RSS rules Import RSS rules - + Failed to import the selected rules file. Reason: %1 Failed to import the selected rules file. Reason: %1 - + Add new rule... Add new rule... - + Delete rule Delete rule - + Rename rule... Rename rule... - + Delete selected rules Delete selected rules - + Clear downloaded episodes... Clear downloaded episodes... - + Rule renaming Rule renaming - + Please type the new rule name Please type the new rule name - + Clear downloaded episodes Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 Position %1: %2 - + Wildcard mode: you can use Wildcard mode: you can use - - + + Import error Import error - + Failed to read the file. %1 Failed to read the file. %1 - + ? to match any single character ? to match any single character - + * to match zero or more of any characters * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) White-spaces count as AND operators (all words, any order) - + | is used as OR operator | is used as OR operator - + If word order is important use * instead of whitespace. If word order is important use * instead of white-space. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) An expression with an empty %1 clause (e.g. %2) - + will match all articles. will match all articles. - + will exclude all articles. will exclude all articles. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: invalid format - - + + Cannot parse torrent info: %1 Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Couldn't save torrent resume data to '%1'. Error: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 Couldn't save data to '%1'. Error: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + Cannot parse resume data: %1 + + + + + Cannot parse torrent info: %1 + Cannot parse torrent info: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Couldn't begin transaction. Error: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 Couldn't store torrents queue positions. Error: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON ON - - - - - - - - - + + + + + + + + + OFF OFF - - + + Local Peer Discovery support: %1 Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" Peer ID: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 Anonymous mode: %1 - - + + Encryption support: %1 Encryption support: %1 - - + + FORCED FORCED - + Could not find GUID of network interface. Interface: "%1" Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. Torrent reached the share ratio limit. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Removed torrent. - - - Removed torrent and deleted its content. - Removed torrent and deleted its content. - - - Torrent paused. - Torrent paused. - - - + Super seeding enabled. Super seeding enabled. - + Torrent reached the seeding time limit. Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP support: ON - + Saving resume data completed. - + Saving resume data completed. - + BitTorrent session successfully finished. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent. - + Removing torrent and deleting its content. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - + Torrent removed. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Merging of trackers is disabled - Merging of trackers is disabled + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - Trackers cannot be merged because it is a private torrent + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - Trackers are merged from new source + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent paused. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent stopped. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent errored. Torrent: "%1". Error: "%2" - Removed torrent. Torrent: "%1" - Removed torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Removed torrent and deleted its content. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtered port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). privileged port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 mixed mode restrictions - + Failed to load Categories. %1 Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 is disabled - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 is disabled - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Couldn't write to file. Reason: "%1". Torrent is now in "upload only" mode. - + Download first and last piece first: %1, torrent: '%2' Download first and last piece first: %1, torrent: '%2' - + On On - + Off Off - + Failed to reload torrent. Torrent: %1. Reason: %2 Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 Performance alert: %1. More info: %2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Expected integer number in environment variable '%1', but got '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' must follow syntax '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' must follow syntax '%1=%2' + Parameter '%1' must follow syntax '%1=%2' @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - Add torrents as started or paused + Add torrents as running or stopped @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Start torrents Stop torrents - - - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents + Stop torrents @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + System @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - Also permanently delete the files + Also remove the content files @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + Pattern Format Plain text - + Plain text Wildcards - + Wildcards Regular expression - + Regular expression GUIAddTorrentManager - + Downloading torrent... Source: "%1" Downloading torrent... Source: "%1" - Trackers cannot be merged because it is a private torrent - Trackers cannot be merged because it is a private torrent - - - + Torrent is already present Torrent is already present - + Trackers cannot be merged because it is a private torrent. - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Supported image files + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Power management found suitable D-Bus interface. Interface: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Power management error. Action: %1. Error: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Power management unexpected error. State: %1. Error: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Options... - - &Resume - &Resume - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + Sh&utdown System @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Close Window - - R&esume All - R&esume All - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + Sta&rt Sto&p - + Sto&p R&esume Session - + R&esume Session Pau&se Session - + Pau&se Session @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Hibernate System - - S&hutdown System - S&hutdown System - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &About - - &Pause - &Pause - - - P&ause All - P&ause All - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Show - + Check for program updates Check for program updates @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also If you like qBittorrent, please donate! - + Execution Log Execution Log - + Clear the password Clear the password - + &Set Password &Set Password - + Preferences Preferences - + &Clear Password &Clear Password - + Transfers Transfers - - + + qBittorrent is minimized to tray qBittorrent is minimised to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. This behaviour can be changed in the settings. You won't be reminded again. - + Icons Only Icons Only - + Text Only Text Only - + Text Alongside Icons Text Alongside Icons - + Text Under Icons Text Under Icons - + Follow System Style Follow System Style - - + + UI lock password UI lock password - - + + Please type the UI lock password: Please type the UI lock password: - + Are you sure you want to clear the password? Are you sure you want to clear the password? - + Use regular expressions Use regular expressions - - + + Search Engine - Search Engine + Search Engine - + Search has failed - Search has failed + Search has failed - + Search has finished - Search has finished + Search has finished - + Search Search - + Transfers (%1) Transfers (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray qBittorrent is closed to tray - + Some files are currently transferring. Some files are currently transferring. - + Are you sure you want to quit qBittorrent? Are you sure you want to quit qBittorrent? - + &No &No - + &Yes &Yes - + &Always Yes &Always Yes - + Options saved. Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSED] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Python installer could not be downloaded. Error: %1. +Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python installation success. + Exit code: %1. + Exit code: %1. + + + + Reason: installer crashed. + Reason: installer crashed. + + + Python installation failed. - + Python installation failed. - + Launching Python installer. File: "%1". - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Missing Python Runtime - + qBittorrent Update Available qBittorrent Update Available - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime Old Python Runtime - + A new version is available. A new version is available. - + Do you want to download %1? Do you want to download %1? - + Open changelog... Open changelog... - + No updates available. You are already using the latest version. No updates available. You are already using the latest version. - + &Check for Updates &Check for Updates - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Paused + Paused - + Checking for Updates... Checking for Updates... - + Already checking for program updates in the background Already checking for program updates in the background - + Python installation in progress... - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Download error - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python setup could not be downloaded, reason: %1. -Please install it manually. - - - - + + Invalid password Invalid password - + Filter torrents... Filter torrents... - + Filter by: Filter by: - + The password must be at least 3 characters long The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid The password is invalid - + DL speed: %1 e.g: Download speed: 10 KiB/s DL speed: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s UP speed: %1 - + Hide Hide - + Exiting qBittorrent Exiting qBittorrent - + Open Torrent Files Open Torrent Files - + Torrent Files Torrent Files @@ -4556,7 +4561,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + SSL error, URL: "%1", errors: "%2" @@ -5853,47 +5858,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 Connection failed, unrecognised reply: %1 - + Authentication failed, msg: %1 Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 Email Notification Error: %1 @@ -5935,10 +5940,6 @@ Please install it manually. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5960,6 @@ Please install it manually. Confirm when deleting torrents Confirm when deleting torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Shows a confirmation dialog upon pausing/resuming all the torrents - - - Confirm "Pause/Resume all" actions - Confirm "Pause/Resume all" actions - Use alternating row colors @@ -5983,10 +5976,6 @@ Please install it manually. Always Always - - Paused torrents only - Paused torrents only - Action on double-click @@ -5997,10 +5986,6 @@ Please install it manually. Downloading torrents: Downloading torrents: - - Start / Stop Torrent - Start / Stop Torrent - @@ -6059,179 +6044,179 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent content layout: - + Original Original - + Create subfolder Create subfolder - + Don't create subfolder Don't create subfolder - + The torrent will be added to the top of the download queue The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue Add to top of queue - + When duplicate torrent is being added When duplicate torrent is being added - + Merge trackers to existing torrent Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder Keep unselected files in ".unwanted" folder - + Add... Add... - + Options.. Options.. - + Remove Remove - + Email notification &upon download completion Email notification &upon download completion - + Send test email - + Send test email - + Run on torrent added: - + Run on torrent added: - + Run on torrent finished: - + Run on torrent finished: - + Peer connection protocol: Peer connection protocol: - + Any Any - + I2P (experimental) I2P (experimental) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymisation. This may be useful if the user is not interested in the anonymisation of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - - - + Mixed mode Mixed mode - Some options are incompatible with the chosen proxy type! - Some options are incompatible with the chosen proxy type! + Some options are incompatible with the chosen proxy type! - + If checked, hostname lookups are done via the proxy If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes Use proxy for BitTorrent purposes - + RSS feeds will use proxy RSS feeds will use proxy - + Use proxy for RSS purposes Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy Search engine, software updates or anything else will use proxy - + Use proxy for general purposes Use proxy for general purposes - + IP Fi&ltering IP Fi&ltering - + Schedule &the use of alternative rate limits Schedule &the use of alternative rate limits - + From: From start time From: - + To: To end time To: - + Find peers on the DHT network Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: Maximum active checking torrents: - + &Torrent Queueing &Torrent Queueing - + When total seeding time reaches When total seeding time reaches - + When inactive seeding time reaches When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - A&utomatically add these trackers to new downloads: - - - + RSS Reader RSS Reader - + Enable fetching RSS feeds Enable fetching RSS feeds - + Feeds refresh interval: Feeds refresh interval: - + Same host request delay: Same host request delay: - + Maximum number of articles per feed: Maximum number of articles per feed: - - - + + + min minutes min - + Seeding Limits Seeding Limits - Pause torrent - Pause torrent - - - + Remove torrent Remove torrent - + Remove torrent and its files Remove torrent and its files - + Enable super seeding for torrent Enable super seeding for torrent - + When ratio reaches When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Stop torrent - + A&utomatically append these trackers to new downloads: - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Fetched trackers - + Search UI - + Search UI - + Store opened tabs - + Store opened tabs - + Also store search results - + Also store search results - + History length - + History length - + RSS Torrent Auto Downloader RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents Enable auto downloading of RSS torrents - + Edit auto downloading rules... Edit auto downloading rules... - + RSS Smart Episode Filter RSS Smart Episode Filter - + Download REPACK/PROPER episodes Download REPACK/PROPER episodes - + Filters: Filters: - + Web User Interface (Remote control) Web User Interface (Remote control) - + IP address: IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: Ban client after consecutive failures: - + Never Never - + ban for: ban for: - + Session timeout: Session timeout: - + Disabled Disabled - Enable cookie Secure flag (requires HTTPS) - Enable cookie Secure flag (requires HTTPS) - - - + Server domains: Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ you should put in domain names used by Web UI server. Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... IP subnet whitelist... - + Use alternative WebUI - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Upda&te my dynamic domain name @@ -6519,12 +6502,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Search + Search WebUI - + WebUI @@ -6539,29 +6522,29 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + Style: Color scheme: - + Color scheme: Stopped torrents only - + Stopped torrents only Start / stop torrent - + Start / stop torrent Open torrent options dialog - + Open torrent options dialogue @@ -6602,7 +6585,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - + &Log Files @@ -6620,99 +6603,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Delete backup logs older than: - + Show external IP in status bar - + Show external IP in status bar - + When adding a torrent When adding a torrent - + Bring torrent dialog to the front Bring torrent dialogue to the front - + The torrent will be added to download list in a stopped state - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled Also when addition is cancelled - + Warning! Data loss possible! Warning! Data loss possible! - + Saving Management Saving Management - + Default Torrent Management Mode: Default Torrent Management Mode: - + Manual Manual - + Automatic Automatic - + When Torrent Category changed: When Torrent Category changed: - + Relocate torrent Relocate torrent - + Switch torrent to Manual Mode Switch torrent to Manual Mode - - + + Relocate affected torrents Relocate affected torrents - - + + Switch affected torrents to Manual Mode Switch affected torrents to Manual Mode - + Use Subcategories Use Subcategories - + Default Save Path: Default Save Path: - + Copy .torrent files to: Copy .torrent files to: @@ -6722,26 +6705,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Show &qBittorrent in notification area - &Log file - &Log file - - - + Display &torrent content and some options Display &torrent content and some options - + De&lete .torrent files afterwards De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files Pre-allocate disk space for all files @@ -6771,10 +6750,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Preview file, otherwise open destination folder - - Show torrent options - Show torrent options - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.years - + Log performance warnings Log performance warnings - The torrent will be added to download list in a paused state - The torrent will be added to download list in a paused state - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Do not start the download automatically - + Whether the .torrent file should be deleted after adding it Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Allocate full file sizes on disk before starting downloads, to minimise fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog Enable recursive download dialogue - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: When Default Save/Incomplete Path changed: - + When Category Save Path changed: When Category Save Path changed: - + Use Category paths in Manual Mode Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one Resolve relative Save Path against appropriate Category path instead of Default one @@ -6922,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyqBittorrent window state on start up - + Torrent stop condition: Torrent stop condition: - - + + None None - - + + Metadata received Metadata received - - + + Files checked Files checked - + Ask for merging trackers when torrent is being added manually Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Use another path for incomplete torrents: - + Automatically add torrents from: Automatically add torrents from: - + Excluded file names Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: filter exact file name. readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not 'readme10.txt'. - + Receiver Receiver - + To: To receiver To: - + SMTP server: SMTP server: - + Sender Sender - + From: From sender From: - + This server requires a secure connection (SSL) This server requires a secure connection (SSL) - - + + Authentication Authentication - - - - + + + + Username: Username: - - - - + + + + Password: Password: - + Run external program Run external program - Run on torrent added - Run on torrent added - - - Run on torrent finished - Run on torrent finished - - - + Show console window Show console window - + TCP and μTP TCP and μTP - + Listening Port Listening Port - + Port used for incoming connections: Port used for incoming connections: - + Set to 0 to let your system pick an unused port Set to 0 to let your system pick an unused port - + Random Random - + Use UPnP / NAT-PMP port forwarding from my router Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits Connections Limits - + Maximum number of connections per torrent: Maximum number of connections per torrent: - + Global maximum number of connections: Global maximum number of connections: - + Maximum number of upload slots per torrent: Maximum number of upload slots per torrent: - + Global maximum number of upload slots: Global maximum number of upload slots: - + Proxy Server Proxy Server - + Type: Type: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections Use proxy for peer connections - + A&uthentication A&uthentication - Info: The password is saved unencrypted - Info: The password is saved unencrypted + Info: The password is saved unencrypted - + Filter path (.dat, .p2p, .p2b): Filter path (.dat, .p2p, .p2b): - + Reload the filter Reload the filter - + Manually banned IP addresses... Manually banned IP addresses... - + Apply to trackers Apply to trackers - + Global Rate Limits Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Upload: - - + + Download: Download: - + Alternative Rate Limits Alternative Rate Limits - + Start time Start time - + End time End time - + When: When: - + Every day Every day - + Weekdays Weekdays - + Weekends Weekends - + Rate Limits Settings Rate Limits Settings - + Apply rate limit to peers on LAN Apply rate limit to peers on LAN - + Apply rate limit to transport overhead Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymisation. This may be useful if the user is not interested in the anonymisation of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Apply rate limit to µTP protocol - + Privacy Privacy - + Enable DHT (decentralized network) to find more peers Enable DHT (decentralised network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Exchange peers with compatible BitTorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network Look for peers on your local network - + Enable Local Peer Discovery to find more peers Enable Local Peer Discovery to find more peers - + Encryption mode: Encryption mode: - + Require encryption Require encryption - + Disable encryption Disable encryption - + Enable when using a proxy or a VPN connection Enable when using a proxy or a VPN connection - + Enable anonymous mode Enable anonymous mode - + Maximum active downloads: Maximum active downloads: - + Maximum active uploads: Maximum active uploads: - + Maximum active torrents: Maximum active torrents: - + Do not count slow torrents in these limits Do not count slow torrents in these limits - + Upload rate threshold: Upload rate threshold: - + Download rate threshold: Download rate threshold: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Torrent inactivity timer: - + then then - + Use UPnP / NAT-PMP to forward the port from my router Use UPnP / NAT-PMP to forward the port from my router - + Certificate: Certificate: - + Key: Key: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password Change current password - Use alternative Web UI - Use alternative Web UI - - - + Files location: Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Security - + Enable clickjacking protection Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Enable Host header validation - + Add custom HTTP headers Add custom HTTP headers - + Header: value pairs, one per line Header: value pairs, one per line - + Enable reverse proxy support Enable reverse proxy support - + Trusted proxies list: Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Service: - + Register Register - + Domain name: Domain name: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7520,12 +7478,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Select qBittorrent UI Theme file - + Choose Alternative UI files location Choose Alternative UI files location - + Supported parameters (case sensitive): Supported parameters (case sensitive): @@ -7545,183 +7503,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Disabled due to failed to detect system tray presence - + No stop condition is set. No stop condition is set. - + Torrent will stop after metadata is received. Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: Torrent name - + %L: Category %L: Category - + %F: Content path (same as root path for multifile torrent) %F: Content path (same as root path for multi-file torrent) - + %R: Root path (first torrent subdirectory path) %R: Root path (first torrent subdirectory path) - + %D: Save path %D: Save path - + %C: Number of files %C: Number of files - + %Z: Torrent size (bytes) %Z: Torrent size (bytes) - + %T: Current tracker %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: Encapsulate parameter with quotation marks to avoid text being cut off at white-space (e.g., "%N") - + Test email - + Test email - + Attempted to send email. Check your inbox to confirm success - + Attempted to send email. Check your inbox to confirm success - + (None) (None) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate Certificate - + Select certificate Select certificate - + Private key Private key - + Select private key Select private key - + WebUI configuration failed. Reason: %1 WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 is recommended for best compatibility with Windows dark mode - + System System default Qt style - + System - + Let Qt decide the style for this system - + Let Qt decide the style for this system - + Dark Dark color scheme - + Dark - + Light Light color scheme - + Light - + System System color scheme - + System - + Select folder to monitor Select folder to monitor - + Adding entry failed Adding entry failed - + The WebUI username must be at least 3 characters long. The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. The WebUI password must be at least 6 characters long. - + Location Error Location Error - - + + Choose export directory Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7731,69 +7689,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not qBittorrent UI Theme file (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Choose a save directory - + Torrents that have metadata initially will be added as stopped. Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Choose an IP filter file - + All supported filters All supported filters - + The alternative WebUI files location cannot be blank. The alternative WebUI files location cannot be blank. - + Parsing error Parsing error - + Failed to parse the provided IP filter Failed to parse the provided IP filter - + Successfully refreshed Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Successfully parsed the provided IP filter: %1 rules were applied. @@ -7804,18 +7762,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Preferences - + Time Error Time Error - + The start time and the end time can't be the same. The start time and the end time can't be the same. - - + + Length Error Length Error @@ -7900,169 +7858,169 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Peer is using NAT hole punching - + Peer is using NAT hole punching PeerListWidget - + Country/Region Country/Region - + IP/Address IP/Address - + Port Port - + Flags Flags - + Connection Connection - + Client i.e.: Client application Client - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID Client - + Progress i.e: % downloaded Progress - + Down Speed i.e: Download speed Down Speed - + Up Speed i.e: Upload speed Up Speed - + Downloaded i.e: total data downloaded Downloaded - + Uploaded i.e: total data uploaded Uploaded - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevance - + Files i.e. files that are being downloaded right now Files - + Column visibility Column visibility - + Resize columns Resize columns - + Resize all non-hidden columns to the size of their contents Resize all non-hidden columns to the size of their contents - + Add peers... Add peers... - - + + Adding peers Adding peers - + Some peers cannot be added. Check the Log for details. Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. Peers are added to this torrent. - - + + Ban peer permanently Ban peer permanently - + Cannot add peers to a private torrent Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued Cannot add peers when the torrent is queued - + No peer was selected No peer was selected - + Are you sure you want to permanently ban the selected peers? Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned Peer "%1" is manually banned - + N/A N/A - + Copy IP:port Copy IP:port @@ -8343,34 +8301,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent is active + qBittorrent is active PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Power management found suitable D-Bus interface. Interface: %1 + Power management found suitable D-Bus interface. Interface: %1 - Power management error. Did not found suitable D-Bus interface. - Power management error. Did not found suitable D-Bus interface. + Power management error. Did not found suitable D-Bus interface. - - - Power management error. Action: %1. Error: %2 - Power management error. Action: %1. Error: %2 + Power management error. Action: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 + Power management unexpected error. State: %1. Error: %2 @@ -8614,12 +8565,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Time Active (in months), indicates how popular the torrent is Popularity: - + Popularity: @@ -8654,7 +8605,7 @@ Those plugins were disabled. Private: - + Private: @@ -8662,153 +8613,124 @@ Those plugins were disabled. Save Path: - + Never Never - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (have %3) - - + + %1 (%2 this session) %1 (%2 this session) - - + + N/A N/A - + Yes - Yes + Yes - + No - No + No - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (seeded for %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 average) - + Add web seed Add HTTP source - + Add web seed - + Add web seed: - + Add web seed: - - + + This web seed is already in the list. - + This web seed is already in the list. - New Web seed - New Web seed - - - Remove Web seed - Remove Web seed - - - Copy Web seed URL - Copy Web seed URL - - - Edit Web seed URL - Edit Web seed URL - - - + Filter files... Filter files... - + Add web seed... - + Add web seed... - + Remove web seed - + Remove web seed - + Copy web seed URL - + Copy web seed URL - + Edit web seed URL... - + Edit web seed URL... - + Speed graphs are disabled Speed graphs are disabled - + You can enable it in Advanced Options You can enable it in Advanced Options - New URL seed - New HTTP source - New URL seed - - - New URL seed: - New URL seed: - - - This URL seed is already in the list. - This URL seed is already in the list. - - - + Web seed editing Web seed editing - + Web seed URL: Web seed URL: @@ -8816,33 +8738,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8850,22 +8772,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8914,12 +8836,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8941,76 +8863,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. Item doesn't exist: %1. - Couldn't move folder into itself. - Couldn't move folder into itself. + Couldn't move folder into itself. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Cannot delete root folder. - + Failed to read RSS session data. %1 Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed doesn't exist: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Default + + RSSWidget @@ -9110,78 +9077,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Edit feed URL... + Edit feed URL... - Edit feed URL - Edit feed URL + Edit feed URL - + Please choose a folder name Please choose a folder name - + Folder name: Folder name: - + New folder New folder - - Please type a RSS feed URL - Please type a RSS feed URL + Please type a RSS feed URL - - Feed URL: - Feed URL: + Feed URL: - + Deletion confirmation Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed Please choose a new name for this RSS feed - + New feed name: New feed name: - + Rename failed Rename failed - + Date: Date: - + Feed: Feed: - + Author: Author: @@ -9318,10 +9284,6 @@ Those plugins were disabled. i.e: Number of partial sources Leechers - - Search engine - Search engine - Filter search results... @@ -9411,17 +9373,17 @@ Those plugins were disabled. Engine - + Engine Engine URL - + Engine URL Published On - + Published On @@ -9442,104 +9404,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. A more recent version of this plugin is already installed. - + Plugin %1 is not supported. Plugin %1 is not supported. - - + + Plugin is not supported. Plugin is not supported. - + Plugin %1 has been successfully updated. Plugin %1 has been successfully updated. - + All categories All categories - + Movies Movies - + TV shows TV shows - + Music Music - + Games Games - + Anime Anime - + Software Software - + Pictures Pictures - + Books Books - + Update server is temporarily unavailable. %1 Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') Search plugin '%1' contains invalid version string ('%2') @@ -9565,137 +9527,129 @@ Click the "Search plug-ins..." button at the bottom right of the windo Search plug-ins... - + A phrase to search for. A phrase to search for. - + Spaces in a search term may be protected by double quotes. Spaces in a search term may be protected by double quotes. - + Example: Search phrase example Example: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> - + All plugins All plug-ins - + Only enabled Only enabled - - + + Invalid data format. - Invalid data format. + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> - + Refresh - + Refresh - + Close tab Close tab - + Close all tabs Close all tabs - + Select... Select... - - + + Search Engine Search Engine - - + + Please install Python to use the Search Engine. Please install Python to use the Search Engine. - + Empty search pattern Empty search pattern - + Please type a search pattern first Please type a search pattern first - + Stop Stop - - Search has finished - Search has finished - - - Search has failed - Search has failed - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10091,67 +10045,77 @@ Click the "Search plug-ins..." button at the bottom right of the windo StatusBar - + Connection status: Connection status: - - + + No direct connections. This may indicate network configuration problems. No direct connections. This may indicate network configuration problems. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + External IP: N/A + + + + DHT: %1 nodes DHT: %1 nodes - + qBittorrent needs to be restarted! qBittorrent needs to be restarted! - - + + Connection Status: Connection Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online Online - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + External IPs: %1, %2 + + + + External IP: %1%2 + External IP: %1%2 + + + Click to switch to alternative speed limits Click to switch to alternative speed limits - + Click to switch to regular speed limits Click to switch to regular speed limits @@ -10179,23 +10143,15 @@ Click the "Search plug-ins..." button at the bottom right of the windo Completed (0) Completed (0) - - Resumed (0) - Resumed (0) - - - Paused (0) - Paused (0) - Running (0) - + Running (0) Stopped (0) - + Stopped (0) @@ -10260,49 +10216,33 @@ Click the "Search plug-ins..." button at the bottom right of the windo Running (%1) - + Running (%1) Stopped (%1) - + Stopped (%1) Start torrents - + Start torrents Stop torrents - - - - Paused (%1) - Paused (%1) + Stop torrents Moving (%1) Moving (%1) - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - Remove torrents Remove torrents - - Resumed (%1) - Resumed (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Click the "Search plug-ins..." button at the bottom right of the windo Remove unused tags Remove unused tags - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - Remove torrents Remove torrents - - New Tag - New Tag - Start torrents - + Start torrents Stop torrents - + Stop torrents @@ -10409,7 +10337,7 @@ Click the "Search plug-ins..." button at the bottom right of the windo Add tag - + Add tag @@ -10726,17 +10654,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Too many active tasks - + Torrent creation is still unfinished. Torrent creation is still unfinished. - + Torrent creation failed. Torrent creation failed. @@ -10988,17 +10916,6 @@ Please choose a different name and try again. Watching folder: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Failed to allocate memory when reading file. File: "%1". Error: "%2" - - - Invalid metadata - Invalid metadata - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Torrent speed limits + Torrent Share Limits @@ -11054,7 +10967,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Torrent Speed Limits @@ -11072,34 +10985,6 @@ Please choose a different name and try again. Upload: Upload: - - Torrent share limits - Torrent share limits - - - Use global share limit - Use global share limit - - - Set no share limit - Set no share limit - - - Set share limit to - Set share limit to - - - ratio - ratio - - - total minutes - total minutes - - - inactive minutes - inactive minutes - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Please choose a different name and try again. Not applicable to private torrents Not applicable to private torrents - - No share limit method selected - No share limit method selected - - - Please select a limit method first - Please select a limit method first - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Please choose a different name and try again. Action when the limit is reached: - + Action when the limit is reached: Stop torrent - + Stop torrent Remove torrent - Remove torrent + Remove torrent Remove torrent and its content - + Remove torrent and its content Enable super seeding for torrent - Enable super seeding for torrent + Enable super seeding for torrent @@ -11233,14 +11110,10 @@ Please choose a different name and try again. Torrent Tags Torrent Tags - - New Tag - New Tag - Add tag - + Add tag @@ -11271,90 +11144,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Error: '%1' is not a valid torrent file. - + Priority must be an integer Priority must be an integer - + Priority is not valid Priority is not valid - + Torrent's metadata has not yet downloaded Torrent's metadata has not yet downloaded - + File IDs must be integers File IDs must be integers - + File ID is not valid File ID is not valid - - - - + + + + Torrent queueing must be enabled Torrent queueing must be enabled - - + + Save path cannot be empty Save path cannot be empty - - + + Cannot create target directory Cannot create target directory - - + + Category cannot be empty Category cannot be empty - + Unable to create category Unable to create category - + Unable to edit category Unable to edit category - + Unable to export torrent file. Error: %1 Unable to export torrent file. Error: %1 - + Cannot make save path Cannot make save path "%1" is not a valid URL - + "%1" is not a valid URL URL scheme must be one of [%1] - + URL scheme must be one of [%1] @@ -11362,39 +11235,39 @@ Please choose a different name and try again. 'sort' parameter is invalid - + "%1" is not an existing URL - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" is not a valid file index. - + Index %1 is out of bounds. Index %1 is out of bounds. - - + + Cannot write to directory Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name Incorrect torrent name - - + + Incorrect category name Incorrect category name @@ -11477,45 +11350,33 @@ Please choose a different name and try again. Invalid state! - + Invalid state! URL/Announce Endpoint - + URL/Announce Endpoint BT Protocol - + BT Protocol Next Announce - + Next Announce Min Announce - - - - Invalid status! - Invalid status! - - - URL/Announce endpoint - URL/Announce endpoint + Min Announce Tier Tier - - Protocol - Protocol - Status @@ -11546,18 +11407,6 @@ Please choose a different name and try again. Message Message - - Next announce - Next announce - - - Min announce - Min announce - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Please choose a different name and try again. This torrent is private - + Tracker editing Tracker editing - + Tracker URL: Tracker URL: - - + + Tracker editing failed Tracker editing failed - + The tracker URL entered is invalid. The tracker URL entered is invalid. - + The tracker URL already exists. The tracker URL already exists. - + Edit tracker URL... Edit tracker URL... - + Remove tracker Remove tracker - + Copy tracker URL Copy tracker URL - + Force reannounce to selected trackers Force re-announce to selected trackers - + Force reannounce to all trackers Force re-announce to all trackers - + Resize columns Resize columns - + Resize all non-hidden columns to the size of their contents Resize all non-hidden columns to the size of their contents - + Add trackers... Add trackers... - + Column visibility Column visibility @@ -11716,20 +11565,12 @@ Please choose a different name and try again. Start torrents - + Start torrents Stop torrents - - - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents + Stop torrents @@ -11853,10 +11694,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Checking resume data - - Paused - Paused - Completed @@ -11897,21 +11734,16 @@ Please choose a different name and try again. % Done Progress - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Stopped Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11946,7 +11778,7 @@ Please choose a different name and try again. Popularity - + Popularity @@ -12027,22 +11859,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Time Active + Time Active Yes - Yes + Yes No - No - - - Time Active - Time (duration) the torrent is active (not paused) - Time Active + No @@ -12114,12 +11941,12 @@ Please choose a different name and try again. Private Flags private torrents - + Private Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Time Active (in months), indicates how popular the torrent is @@ -12144,358 +11971,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Column visibility - + Recheck confirmation Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? Are you sure you want to recheck the selected torrent(s)? - + Rename Rename - + New name: New name: - + Choose save path Choose save path - Confirm pause - Confirm pause - - - Would you like to pause all torrents? - Would you like to pause all torrents? - - - Confirm resume - Confirm resume - - - Would you like to resume all torrents? - Would you like to resume all torrents? - - - + Unable to preview Unable to preview - + The selected torrent "%1" does not contain previewable files The selected torrent "%1" does not contain previewable files - + Resize columns Resize columns - + Resize all non-hidden columns to the size of their contents Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Add Tags - - - + Choose folder to save exported .torrent files Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists A file with the same name already exists - + Export .torrent file error Export .torrent file error - + Remove All Tags Remove All Tags - + Remove all tags from selected torrents? Remove all tags from selected torrents? - + Comma-separated tags: Comma-separated tags: - + Invalid tag Invalid tag - + Tag name: '%1' is invalid Tag name: '%1' is invalid - &Resume - Resume/start the torrent - &Resume - - - &Pause - Pause the torrent - &Pause - - - Force Resu&me - Force Resume/start the torrent - Force Resu&me - - - + Pre&view file... Pre&view file... - + Torrent &options... Torrent &options... - + Open destination &folder Open destination &folder - + Move &up i.e. move up in the queue Move &up - + Move &down i.e. Move down in the queue Move &down - + Move to &top i.e. Move to top of the queue Move to &top - + Move to &bottom i.e. Move to bottom of the queue Move to &bottom - + Set loc&ation... Set loc&ation... - + Force rec&heck Force rec&heck - + Force r&eannounce Force r&eannounce - + &Magnet link &Magnet link - + Torrent &ID Torrent &ID - + &Comment &Comment - + &Name &Name - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Re&name... - + Edit trac&kers... Edit trac&kers... - + E&xport .torrent... E&xport .torrent... - + Categor&y Categor&y - + &New... New category... &New... - + &Reset Reset category &Reset - + Ta&gs Ta&gs - + &Add... Add / assign multiple tags... &Add... - + &Remove All Remove all tags &Remove All - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Queue - + &Copy &Copy - + Exported torrent is not necessarily the same as the imported Exported torrent is not necessarily the same as the imported - + Download in sequential order Download in sequential order - + Add tags - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + &Start - + Sto&p Stop the torrent - + Sto&p - + Force Star&t Force Resume/start the torrent - + Force Star&t - + &Remove Remove the torrent &Remove - + Download first and last pieces first Download first and last pieces first - + Automatic Torrent Management Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Can not force re-announce if torrent is Paused/Queued/Errored/Checking - - - + Super seeding mode Super seeding mode @@ -12571,7 +12359,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + Set app style failed. Unknown style: "%1" @@ -12627,32 +12415,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Failed to find `python` executable in Windows Registry. - + Failed to find Python executable Failed to find Python executable @@ -12744,52 +12532,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. Using built-in WebUI. - + Using custom WebUI. Location: "%1". Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 Web server error. %1 - + Web server error. Unknown error. Web server error. Unknown error. @@ -12847,7 +12635,7 @@ Please choose a different name and try again. Unknown error - Unknown error + Unknown error diff --git a/src/lang/qbittorrent_eo.ts b/src/lang/qbittorrent_eo.ts index 922182a3c..872204a19 100644 --- a/src/lang/qbittorrent_eo.ts +++ b/src/lang/qbittorrent_eo.ts @@ -21,12 +21,12 @@ Current maintainer - Aktuala prizorganto + Nuna prizorganto Greece - Grekujo + Grekio @@ -38,7 +38,7 @@ E-mail: - Repoŝto: + Retpoŝtadreso: @@ -49,17 +49,17 @@ Original author - Originala aŭtoro + Origina aŭtoro France - Francujo + Francio Special Thanks - Specialaj Dankoj + Specialaj dankoj @@ -74,12 +74,12 @@ Software Used - Programaroj Uzita + Programaro uzita qBittorrent was built with the following libraries: - qBittorrent konstruiĝis kun la sekvaj bibliotekoj: + qBittorrent estis farita kun la jenaj bibliotekoj: @@ -89,7 +89,7 @@ An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar. - Altnivelan BitTorrent kienton programis per C++, kiu uzas Qt ilaron kaj libtorrent-rasterbar. + Altnivela BitTorrent-kliento programita en C++, bazita sur Qt toolkit kaj libtorrent-rasterbar. @@ -99,7 +99,7 @@ Home Page: - Ĉefpaĝo: + Hejmpaĝo: @@ -123,39 +123,39 @@ The old path is invalid: '%1'. - La malnova indiko estas nevalida: '%1'. + La malnova vojo nevalidas: "%1". The new path is invalid: '%1'. - La nova indiko estas nevalida: '%1'. + La nova vojo nevalidas: "%1". Absolute path isn't allowed: '%1'. - Absoluta indiko ne rajtas: '%1'. + Absoluta vojo ne estas permesata: "%1". The file already exists: '%1'. - La dosiero jam ekzistas: '%1'. + La dosiero jam ekzistas: "%1". No such file: '%1'. - Dosiero ne ekzistas: '%1'. + Tiu dosiero ne ekzistas: "%1". The folder already exists: '%1'. - La dosierujo jam ekzistas: '%1'. + La dosierujo jam ekzistas: "%1". No such folder: '%1'. - Dosierujo ne ekzistas: '%1'. + Tiu dosierujo ne ekzistas: "%1". @@ -163,21 +163,17 @@ Save at - konservi en + Konservi ĉe Never show again - Neniam remontru - - - Torrent settings - Torentaj agordoj + Neniam remontri Set as default category - Metu kiel defaŭla kategorio + Agordi kiel defaŭlta kategorio @@ -187,22 +183,22 @@ Start torrent - Komenci la torenton + Komenci torenton Torrent information - Torena informo + Torenta informaro Skip hash check - Preterpasi la haketan kontrolon + Preterpasi haket-kontrolon Use another path for incomplete torrent - Uzi alian indikon por nekompleta torento + Uzi alian vojon por nekompleta torento @@ -217,7 +213,7 @@ Click [...] button to add/remove tags. - Alklaki [...] butonon al aldoni/forigi etikedojn. + Alklaki [...] butonon por aldoni/forigi etikedojn. @@ -232,50 +228,50 @@ Stop condition: - Haltigi situacion: - - - - - None - Nenio - - - - - Metadata received - Ricevis metadatenojn - - - - Torrents that have metadata initially will be added as stopped. - Torentoj kiu havas metadatenojn komence aldonos kiel haltigis. + Kondiĉo por halti: + + None + Nenia + + + + + Metadata received + Metadatumo ricevita + + + + Torrents that have metadata initially will be added as stopped. + Torentoj kiuj komence havas metadatumo estos aldonitaj kiel haltitaj. + + + Files checked - Dosierojn ekzamenis + Dosieroj kontrolitaj Add to top of queue - Aldoni al super de la vicoj + Aldoni al vica supro When checked, the .torrent file will not be deleted regardless of the settings at the "Download" page of the Options dialog - + Kiam kontrolita la .torrent-dosiero estos forigita sendepende de la agordoj sur la "Elŝutoj" paĝo de la "Opcioj"-dialogo Content layout: - + Enhava aranĝo: Original - Originalo + Origina @@ -310,17 +306,17 @@ Torrent Management Mode: - Modo de Torenta Administrado: + Torenta mastruma reĝimo: Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - La signifo de aŭtomata modo estas diversaj torentaj ecoj(ek. konserva indiko) decidos per la elektita kategorio + Aŭtomata reĝimo signifas ke diversaj torentaj ecoj (ekz. konserva vojo) estos decidota de la ligita kategorio Manual - Mana + Permana @@ -330,12 +326,12 @@ Remember last used save path - Memori lastan uzitan konservan indikon + Memori laste uzitan konservan vojon Do not delete .torrent file - Ne forigi .torrent dosieron + Ne forigi .torrent-dosieron @@ -355,125 +351,125 @@ Select All - Elekti cion + Elekti ĉiujn Select None - Elekti nenion + Elekti neniujn Save as .torrent file... - Konservi kiel .torrent dosiero + Konservi kiel ".torrent"-dosiero... - + I/O Error - Eneliga eraro - - - - Not Available - This comment is unavailable - Ne Disponeblas + Eneliga erraro Not Available + This comment is unavailable + Nedisponebla + + + + Not Available This date is unavailable - Ne Disponeblas + Nedisponebla - + Not available - Ne disponeblas + Nedisponebla - + Magnet link Magnet-ligilo - + Retrieving metadata... Ricevante metadatenojn... - - + + Choose save path Elektu la dosierindikon por konservi - + No stop condition is set. - + Torrent will stop after metadata is received. Torenton haltigos post ricevis metadatenojn. - + Torrent will stop after files are initially checked. - + Torento estos haltota post komenca kontrolo de dosieroj. - + This will also download metadata if it wasn't there initially. - + N/A N/A - + %1 (Free space on disk: %2) - %1 (Libera spaco de disko: %2) + %1 (Libera spaco surdiske: %2) - + Not available This size is unavailable. - Ne disponeblas + Nedisponebla - + Torrent file (*%1) - Torenta dosiero (*%1) + Torentodosiero (*%1) - + Save as torrent file - Konservi kiel torrenta dosiero + Konservi kiel torentodosiero - + Couldn't export torrent metadata file '%1'. Reason: %2. Ne povas eksporti torentan metadatenan dosieron '%1'. Kialo: %2. - + Cannot create v2 torrent until its data is fully downloaded. Ne povas kreii v2 torenton ĝis giajn datumojn tute elŝutis. - + Filter files... Filtri dosierojn... - + Parsing metadata... Sintakse analizante metadatenojn... - + Metadata retrieval complete La ricevo de metadatenoj finiĝis @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Elŝutas torenton... Fonto: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Malsukcesis aldoni torenton. Fonto: "%1". Kialo: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -576,7 +572,7 @@ Content layout: - + Enhava aranĝo: @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Rekontroli torentojn post fino - - + + ms milliseconds ms - + Setting Agordo - + Value Value set for this setting Valoro - + (disabled) (malebligita) - + (auto) (aŭtomata) - - + + min minutes min - + All addresses Ĉiuj adresoj - + qBittorrent Section - - + + Open documentation Malfermi dokumentadon - + All IPv4 addresses Ĉiuj IPv4 adresoj - + All IPv6 addresses Ĉiuj IPv6 adresoj - + libtorrent Section - + Fastresume files Rapidreaktivigi dosierojn - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Normala - + Below normal Sub normala - + Medium Meza - + Low Malalta - + Very low Tre Malalta - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache - - - - + + + + + s seconds s - + Disk cache expiry interval Intervalo por senvalidigado de la diska kaŝmemoro - + Disk queue size - - + + Enable OS cache Ebligi operaciuman kaŝmemoron - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Defaŭlto - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP Preferi TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - + sek - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Aperigi sciigoj - + Display notifications for added torrents - + Download tracker's favicon - + Save path history length - + Enable speed graphs - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck Konfirmi rekontrolon de la torento - + Confirm removal of all tags - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface Iu ajn interfaco - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker Ebligu enigitan spurilon - + Embedded tracker port Enigita spurila pordo @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 Nomo de la torento: %1 - + Torrent size: %1 Grando de la torento: %1 - + Save path: %1 Konserva dosierindiko: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds La torento elŝutiĝis en %1. - - + + Thank you for using qBittorrent. Dankon pro uzi la qBittorrent-klienton. - + Torrent: %1, sending mail notification - + Add torrent failed Malsukcesis aldoni torenton - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit &Ĉesu - + I/O Error i.e: Input/Output Error Eneliga eraro - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ Kial: %2 - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' finiĝis elŝuton. - + Information Informoj - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit Ĉesigi - + Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Neniam - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Konservante la torentan progreson... - + qBittorrent is now ready to exit @@ -1639,7 +1646,7 @@ Kial: %2 Could not create directory '%1'. - + Ne povis krei dosierujon "%1". @@ -1742,7 +1749,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also days - tagoj + tagoj @@ -1757,271 +1764,271 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Import... - &Enporti... + Enport&i... &Export... - E&lporti... + &Elporti... - + Matches articles based on episode filter. - + Example: Ekzemplo: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match - + Episode filter rules: Epizodfiltrilaj reguloj: - + Season number is a mandatory non-zero value - + Filter must end with semicolon - + Three range types for episodes are supported: - + Single number: <b>1x25;</b> matches episode 25 of season one - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value - + Rules - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago Lasta kongruo: antaŭ %1 tagoj - + Last Match: Unknown Lasta kongruo: Nekonata - + New rule name Nova regulnomo - + Please type the name of the new download rule. Bonvolu tajpi la nomon de la nova elŝutregulo. - - + + Rule name conflict Regulnoma konflikto - - + + A rule with this name already exists, please choose another name. Regulo kun tiu nomo jam ekzistas, bonvolu elekti alian nomon. - + Are you sure you want to remove the download rule named '%1'? Ĉu vi certas, ke vi volas forigi la elŝutregulon, kies nomo estas '%1'? - + Are you sure you want to remove the selected download rules? Ĉu vi certas, ke vi volas forigi la elektitajn elŝutregulojn? - + Rule deletion confirmation Regul-foriga konfirmado - + Invalid action Malvalida ago - + The list is empty, there is nothing to export. La listo malplenas, estas nenio por elporti. - + Export RSS rules - + I/O Error Eneliga eraro - + Failed to create the destination file. Reason: %1 - + Import RSS rules - + Failed to import the selected rules file. Reason: %1 - + Add new rule... Aldoni novan regulon... - + Delete rule Forigi la regulon - + Rename rule... Renomi la regulon... - + Delete selected rules Forigi elektitajn regulojn - + Clear downloaded episodes... - + Rule renaming Regul-renomado - + Please type the new rule name Bonvolu tajpi la novan regulnomon - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2031,33 +2038,33 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also List of banned IP addresses - + Listo de forbaritaj IP-adresoj Ban IP - + Forbari IP-on Delete - Forigu + Forigi Warning - + Averto The entered IP address is invalid. - + La entajpita IP-adreso nevalidas. The entered IP is already banned. - + La entajpita IP-adreso jam estas forbarita. @@ -2073,28 +2080,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2105,16 +2122,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2122,38 +2140,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2161,22 +2201,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2184,518 +2224,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Torento: "%1". - Removed torrent. - Forigis torenton. - - - Removed torrent and deleted its content. - Forigis torenton kaj ĝiajn dosierojn - - - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - Removed torrent. Torrent: "%1" - Forigis torenton. Torento: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Forigis torenton kaj ĝiajn dosierojn. Torento: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Forigis torenton sed malsuksesis forigi ĝiajn dosierojn kaj/aŭ partfile. Torrent: "%1". Eraro: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2705,7 +2730,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Failed to start seeding. - + Malsukcesis komenci fontsendi. @@ -2745,47 +2770,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -2836,7 +2861,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Usage: - Uzo: + Uzado: @@ -2873,7 +2898,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also port - + pordo @@ -2910,7 +2935,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also name - + nomo @@ -3008,7 +3033,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Uncategorized - + Senkategoriaj @@ -3016,7 +3041,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add category... - Aldoni kategorion... + Aldoni kategroion... @@ -3026,7 +3051,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Edit category... - + Redakti kategorion... @@ -3048,14 +3073,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Reaktivigi la torentojn - - - Pause torrents - Paŭzigi la torentojn - Remove torrents @@ -3067,7 +3084,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Edit... - + Redakti... @@ -3085,7 +3102,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Manage Cookies - + Administri kuketojn @@ -3093,12 +3110,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Domain - + Domajno Path - + Vojo @@ -3113,7 +3130,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expiration Date - + Eksvalidiĝa dato @@ -3134,7 +3151,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Failed to load default theme colors. %1 - + Malsukcesis ŝargi defaŭltajn kolorojn de etoso. %1 @@ -3177,17 +3194,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Download from URLs - + Elŝuti el URL-oj Add torrent links - + Aldoni torent-ligiloj One link per line (HTTP links, Magnet links and info-hashes are supported) - + Po unu ligilo linie (HTTP-ligiloj, Magnet-ligiloj kaj info-haketoj estas subtenitaj) @@ -3197,12 +3214,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also No URL entered - Neniu URL-adreso eniĝis + Neniu URL entajpita Please type at least one URL. - Bonvolu tajpi almenaŭ unu URL-adreson. + Bonvole tajpu almenaŭ unu URL-on. @@ -3210,17 +3227,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Missing pieces - + Mankantaj pecoj Partial pieces - + Partaj pecoj Completed pieces - + Kompletigitaj pecoj @@ -3233,7 +3250,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Blocked IPs - Blokitaj IP-adresoj + Forbaritaj IP-oj @@ -3243,7 +3260,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Clear - Vakigi + Viŝi @@ -3265,7 +3282,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also An error occurred while trying to open the log file. Logging to file is disabled. - + Eraro okazis provante malfermi la protokoldosieron. Protokolado al dosiero malebligita. @@ -3280,24 +3297,24 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Browse... Launch file dialog button text (full) - + &Foliumi... Choose a file Caption for file open/save dialog - + Elekti dosieron Choose a folder Caption for directory open dialog - + Elekti dosierujon Any file - + Ajna dosiero @@ -3385,22 +3402,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" Elŝutas torenton... Fonto: "%1" - + Torrent is already present - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3472,7 +3489,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Example: 172.17.32.0/24, fdff:ffff:c8::/40 - + Ekzemple: 172.17.32.0/24, fdff:ffff:c8::/40 @@ -3482,7 +3499,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Delete - Forigu + Forigi @@ -3500,7 +3517,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Browse... - Folii... + Foliumi... @@ -3518,6 +3535,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3558,7 +3609,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1 was banned 0.0.0.0 was banned - + %1 estis forbanita @@ -3627,7 +3678,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Edit - &Redakti + R&edakti @@ -3657,16 +3708,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... - &Opcioj - - - &Resume - &Reaktivigi + &Opcioj... &Remove - &Forigi + Fo&rigi @@ -3722,7 +3769,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also L&ock qBittorrent - Ŝl&osi la qBittorrent-klienton + Ŝl&osi qBittorrent-on @@ -3742,11 +3789,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window - - - - R&esume All - R&eaktivigu Ĉion + Fermi fenestron @@ -3781,7 +3824,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Log - &Protokolo + Protoko&lo @@ -3863,10 +3906,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Diskodormigi la sistemon - - S&hutdown System - Mal&ŝalti la sistemon - &Statistics @@ -3887,18 +3926,10 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &Pri - - &Pause - &Paŭzigu - - - P&ause All - &Paŭzigu Ĉion - &Add Torrent File... - Aldonu Torent&dosieron... + &Aldoni torentodosieron... @@ -3928,12 +3959,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Montru - + Check for program updates Kontroli programaran ĝisdatigadon @@ -3948,382 +3979,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Se qBittorrent plaĉas al vi, bonvolu donaci! - + Execution Log - + Clear the password Vakigi la pasvorton - + &Set Password &Agordi pasvorton - + Preferences - Agordoj + Preferoj - + &Clear Password &Vakigi la pasvorton - + Transfers Transmetoj - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only Nur bildsimboloj - + Text Only Nur Teksto - + Text Alongside Icons Teksto apud bildsimboloj - + Text Under Icons Teksto sub bildsimboloj - + Follow System Style Uzi la sisteman stilon - - + + UI lock password UI-ŝlosa pasvorto - - + + Please type the UI lock password: Bonvolu tajpi la UI-ŝlosilan pasvorton: - + Are you sure you want to clear the password? Ĉu vi certas, ke vi volas vakigi la pasvorton? - + Use regular expressions - - + + Search Engine - Serĉilo + Serĉilo - + Search has failed - Serĉo malsukcesis + Serĉo malsukcesis - + Search has finished - Serĉo finiĝis + Serĉo finiĝis - + Search Serĉi - + Transfers (%1) Transmetoj (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent ĵus ĝisdatiĝis kaj devas relanĉiĝi por la ŝanĝoj efiki. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? - + &No &Ne - + &Yes &Jes - + &Always Yes - &Ĉiam Jes + Ĉi&am jes - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime - + qBittorrent Update Available Ĝisdatigo por qBittorrent disponeblas - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Pitono estas bezona por uzi la serĉilon, sed ŝajnas, ke ĝi ne estas instalita. Ĉu vi volas instali ĝin nun? - + Python is required to use the search engine but it does not seem to be installed. Pitono estas bezona por uzi la serĉilon, sed ŝajnas, ke ĝi ne estas instalita. - - + + Old Python Runtime - + A new version is available. - + Do you want to download %1? - + Open changelog... - + No updates available. You are already using the latest version. Neniu ĝisdatigo disponeblas. Vi jam uzas la aktualan version. - + &Check for Updates &Kontroli ĝisdatigadon - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Paŭzinta + Paŭzinta - + Checking for Updates... Kontrolante ĝisdatigadon... - + Already checking for program updates in the background Jam kontrolante programan ĝisdatigon fone - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Elŝuta eraro - - + + Invalid password Malvalida pasvorto - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid - La pasvorto malvalidas + La pasvorto nevalidas - + DL speed: %1 e.g: Download speed: 10 KiB/s - Elŝutrapido: %1 + EL rapido: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s - Alŝutrapido: %1 + AL rapido: %1 - + Hide Kaŝi - + Exiting qBittorrent qBittorrent ĉesantas - + Open Torrent Files - Malfermi Torentdosierojn + Malfermi torentodosierojn - + Torrent Files - Torentdosieroj + Torentodosieroj @@ -4523,7 +4554,7 @@ Minimum requirement: %2. Ignoring SSL error, URL: "%1", errors: "%2" - + Ignoras SSL-eraron, URL: "%1", eraroj: "%2" @@ -4579,7 +4610,7 @@ Minimum requirement: %2. Albania - Albanujo + Albanio @@ -4644,7 +4675,7 @@ Minimum requirement: %2. Belgium - Belgujo + Belgio @@ -4654,7 +4685,7 @@ Minimum requirement: %2. Bulgaria - Bulgarujo + Bulgario @@ -4709,7 +4740,7 @@ Minimum requirement: %2. Belarus - Belorusujo + Belaruso @@ -4804,12 +4835,12 @@ Minimum requirement: %2. Czech Republic - Ĉeĥujo + Ĉeĥio Germany - Germanujo + Germanio @@ -4864,7 +4895,7 @@ Minimum requirement: %2. Spain - Hispanujo + Hispanio @@ -4899,7 +4930,7 @@ Minimum requirement: %2. France - Francujo + Francio @@ -4964,7 +4995,7 @@ Minimum requirement: %2. Greece - Grekujo + Grekio @@ -5019,7 +5050,7 @@ Minimum requirement: %2. Hungary - Hungarujo + Hungario @@ -5064,7 +5095,7 @@ Minimum requirement: %2. Italy - Italujo + Italio @@ -5079,7 +5110,7 @@ Minimum requirement: %2. Japan - Japanujo + Japanio @@ -5319,7 +5350,7 @@ Minimum requirement: %2. Norway - Norvegujo + Norvegio @@ -5394,7 +5425,7 @@ Minimum requirement: %2. Portugal - Portugalujo + Portugalio @@ -5419,12 +5450,12 @@ Minimum requirement: %2. Romania - Rumanujo + Romanio Russian Federation - Rusujo + Rusio @@ -5454,7 +5485,7 @@ Minimum requirement: %2. Sweden - Svedujo + Svedio @@ -5464,7 +5495,7 @@ Minimum requirement: %2. Slovenia - Slovenujo + Slovenio @@ -5474,7 +5505,7 @@ Minimum requirement: %2. Slovakia - Slovakujo + Slovakio @@ -5664,7 +5695,7 @@ Minimum requirement: %2. Turkey - Turkujo + Turkio @@ -5689,7 +5720,7 @@ Minimum requirement: %2. Ukraine - Ukrainujo + Ukrainio @@ -5764,7 +5795,7 @@ Minimum requirement: %2. Serbia - Serbujo + Serbio @@ -5815,47 +5846,47 @@ Minimum requirement: %2. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5895,16 +5926,12 @@ Minimum requirement: %2. RSS - - - - Web UI - TTT-UI + RSS Advanced - Speciala + Altnivelaj @@ -5947,10 +5974,6 @@ Minimum requirement: %2. Downloading torrents: Elŝutante torentojn: - - Start / Stop Torrent - Komenci / Haltigi la Torenton - @@ -6009,392 +6032,402 @@ Minimum requirement: %2. KiB - + + Show free disk space in status bar + + + + Torrent content layout: - + Original Originalo - + Create subfolder Kreii subdosierujon - + Don't create subfolder Ne krei subdosierujon - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue Aldoni al super de la vicoj - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... - + Aldoni... - + Options.. - + Remove Forigi - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + Ajna - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time De: - + To: To end time - Al: + Ĝis: - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader - + RSS-legilo - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: Maksimuma nombro da artikoloj por fluo: - - - + + + min minutes - min + min - + Seeding Limits - + Fontsendaj limoj - + Remove torrent Forigi torenton - + Remove torrent and its files - Forigi torenton kaj ĝiaj dosierojn + Forigi torenton kaj ĝiaj dosieroj - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL-adreso: + URL-adreso: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: - + Web User Interface (Remote control) - + IP address: - + IP-adreso: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Neniam - + ban for: - + Session timeout: - + Disabled Malebligita - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6403,37 +6436,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6445,7 +6478,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Serĉi + Serĉi @@ -6546,101 +6579,101 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent Aldonante torenton - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management - + Default Torrent Management Mode: - + Manual Mana - + Automatic Aŭtomata - + When Torrent Category changed: - + Relocate torrent - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories - + Default Save Path: - + Copy .torrent files to: - Kopii .torrent-dosierojn al: + Kopii ".torrent"-dosierojn al: @@ -6648,22 +6681,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files @@ -6743,79 +6776,79 @@ Use ';' to split multiple entries. Can use wildcard '*'. days Delete backup logs older than 10 days - + tagoj months Delete backup logs older than 10 months - + monatoj years Delete backup logs older than 10 years - + jaroj - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state Ne komenci la elŝuton aŭtomate - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Aldonu finaĵon .!qB al mankohavaj dosieroj - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6835,50 +6868,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None Nenio - - + + Metadata received Ricevis metadatenojn - - + + Files checked Dosierojn ekzamenis - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Uzi alian indikon por nekompletaj torentoj: - + Automatically add torrents from: Aŭtomate aldoni torentojn de: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6895,511 +6928,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + Ricevonto - + To: To receiver Al: - + SMTP server: SMTP-servilo: - + Sender - + Sendanto - + From: From sender De: - + This server requires a secure connection (SSL) - - + + Authentication Aŭtentigo - - - - + + + + Username: Uzantnomo: - - - - + + + + Password: Pasvorto: - + Run external program - + Lanĉi eksteran programon - + Show console window - + TCP and μTP - + Listening Port Aŭskultpordo - + Port used for incoming connections: Pordo uzata por alvenantaj konektoj: - + Set to 0 to let your system pick an unused port - + Random Hazarda - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits Konektaj Limoj - + Maximum number of connections per torrent: Maksimuma nombro da konektoj por torento: - + Global maximum number of connections: Malloka maksimuma nombro da konektoj: - + Maximum number of upload slots per torrent: Maksimuma nombro da alŝutkonektoj por torento: - + Global maximum number of upload slots: - + Proxy Server Prokura Servilo - + Type: Tipo: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Gastigo: - - - + + + Port: Pordo: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections Uzi prokurilon por samtavolaj konektoj - + A&uthentication - Info: The password is saved unencrypted - Informo: La pasvorto estas konservita senĉifrite + Informo: La pasvorto estas konservita senĉifrite - + Filter path (.dat, .p2p, .p2b): Filtri la dosierindikon (.dat, .p2p, .p2b): - + Reload the filter Reŝargi la filtron - + Manually banned IP addresses... - + Apply to trackers Apliki al spuriloj - + Global Rate Limits Mallokaj rapidlimoj - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: - Alŝuta: + Alŝuto: - - + + Download: - Elŝuti + Elŝuto: - + Alternative Rate Limits Alternativaj rapidlimoj - + Start time - + Komenca tempo - + End time - + Fina tempo - + When: Kiam: - + Every day Ĉiutage - + Weekdays - Laborsemajne + Labortagoj - + Weekends - Semajnfine + Semajnfinoj - + Rate Limits Settings Rapidlimaj agordoj - + Apply rate limit to peers on LAN Apliki la rapidlimon al samtavolanoj en loka reto. - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Apliki la rapidlimon al la µTP-protokolo - + Privacy Privateco - + Enable DHT (decentralized network) to find more peers Trovi pli samtavolanojn per DHT (malcentra reto) - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Trovi pli samtavolanojn per Peer Exchange (PeX) - + Look for peers on your local network Serĉi samtavolanojn en via loka reto - + Enable Local Peer Discovery to find more peers Trovi pli samtavolanojn per Local Peer Discovery - + Encryption mode: Ĉifroreĝimo: - + Require encryption Neprigi ĉifradon - + Disable encryption Malebligi ĉifradon - + Enable when using a proxy or a VPN connection - + Enable anonymous mode Ebligi la sennoman modon - + Maximum active downloads: Maksimumaj aktivaj elŝutoj: - + Maximum active uploads: Maksimumaj aktivaj elŝutoj: - + Maximum active torrents: Maksimumaj aktivaj torentoj: - + Do not count slow torrents in these limits Ne inkluzivi malrapidajn torentojn en tiuj limoj - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds - + sek - + Torrent inactivity timer: - + then - poste + tiam - + Use UPnP / NAT-PMP to forward the port from my router Plusendi la pordon de mia enkursigilo per UPnP / NAT-PMP - + Certificate: Atestilo: - + Key: Ŝlosilo: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password - + Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Servo: - + Register Registri - + Domain name: Domajna nomo: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7409,12 +7441,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7434,183 +7466,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. Torento haltigos post ricevis metadatenojn. - + Torrent will stop after files are initially checked. - + Torento estos haltota post komenca kontrolo de dosieroj. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: Torenta nomo - + %L: Category %L: Kategorio - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path %D: Konserva dosierindiko - + %C: Number of files - %C: Nombro de dosieroj + %C: Nombro da dosieroj - + %Z: Torrent size (bytes) %Z: Grando de la torento (bitoj) - + %T: Current tracker %T: Aktuala spurilo - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Nenio) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory Elektu la elportan dosierujon - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7620,69 +7652,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Elektu konservan dosierujon - + Torrents that have metadata initially will be added as stopped. Torentoj kiu havas metadatenojn komence aldonos kiel haltigis. - + Choose an IP filter file Elektu IP-filtrildosieron - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error Sintaksanaliza eraro - + Failed to parse the provided IP filter - + Successfully refreshed Sukcese aktualigita - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7690,21 +7722,21 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Preferences - Agordoj + Preferoj - + Time Error Tempa Eraro - + The start time and the end time can't be the same. La komenctempo kaj la fintempo ne povas esti la samaj. - - + + Length Error @@ -7795,163 +7827,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region - + IP/Address - + Port Pordo - + Flags Flagoj - + Connection Konekto - + Client i.e.: Client application Kliento - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Progreso - + Down Speed i.e: Download speed Elŝutrapido - + Up Speed i.e: Upload speed Alŝutrapido - + Downloaded i.e: total data downloaded Elŝutis - + Uploaded i.e: total data uploaded Alŝutis - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Rilateco - + Files i.e. files that are being downloaded right now Dosieroj - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently Forbari la samtavolanon daŭre - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A N/A - + Copy IP:port @@ -7999,12 +8031,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Unavailable pieces - + Nedisponeblaj pecoj Available pieces - + Disponeblaj pecoj @@ -8232,34 +8264,8 @@ Tiuj kromprogramoj malebliĝis. PowerManagement - qBittorrent is active - - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent estas aktiva @@ -8381,7 +8387,7 @@ Tiuj kromprogramoj malebliĝis. Downloaded: - Elŝutis: + Elŝutita: @@ -8412,7 +8418,7 @@ Tiuj kromprogramoj malebliĝis. Uploaded: - Alŝutis: + Alŝutita: @@ -8422,12 +8428,12 @@ Tiuj kromprogramoj malebliĝis. Download Speed: - Elŝutrapido: + Elŝuta rapido: Upload Speed: - Alŝutrapido: + Alŝuta rapido: @@ -8437,17 +8443,17 @@ Tiuj kromprogramoj malebliĝis. Download Limit: - Elŝutlimo: + Elŝuta limo: Upload Limit: - Alŝutlimo: + Alŝuta limo: Wasted: - Senefikaĵo: + Perdita: @@ -8533,7 +8539,7 @@ Tiuj kromprogramoj malebliĝis. Completed On: - Finita je: + Kompletigita je: @@ -8551,153 +8557,124 @@ Tiuj kromprogramoj malebliĝis. Konserva Dosierindiko: - + Never Neniam - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (havas %3) - - + + %1 (%2 this session) %1 (%2 ĉi tiu seanco) - - + + N/A N/A - + Yes - Jes + Jes - + No - Ne + Ne - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (fontsendis dum %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 tute) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 mez.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Nova TTT-fonto - - - Remove Web seed - Forigi TTT-fonton - - - Copy Web seed URL - Kopii URL-adreson de TTT-fonto - - - Edit Web seed URL - Redakti URL-adreson de TTT-fonto - - - + Filter files... Filtri dosierojn... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - Nova URL-fonto - - - New URL seed: - Nova URL-fonto: - - - This URL seed is already in the list. - Tiu URL-fonto jam estas en la listo. - - - + Web seed editing TTT-fonta redaktado - + Web seed URL: URL-adreso de la TTT-fonto: @@ -8705,33 +8682,33 @@ Tiuj kromprogramoj malebliĝis. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8739,24 +8716,24 @@ Tiuj kromprogramoj malebliĝis. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + Malsukcesis elŝuti RRS-fluon je "%1". Kialo: %2 + + + + RSS feed at '%1' updated. Added %2 new articles. + RRS-fluo je "%1" ĝisdatigita. Aldonis %2 novajn artikolojn. - RSS feed at '%1' updated. Added %2 new articles. - - - - Failed to parse RSS feed at '%1'. Reason: %2 - + Malsukcesis analizi RRS-fluon je "%1". Kialo: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. - + RRS-fluo je "%1" estas sukcese elŝutita. Komencas analizi ĝin. @@ -8803,12 +8780,12 @@ Tiuj kromprogramoj malebliĝis. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8821,7 +8798,7 @@ Tiuj kromprogramoj malebliĝis. Feed doesn't exist: %1. - + Fluo ne ekzistas: %1. @@ -8830,76 +8807,117 @@ Tiuj kromprogramoj malebliĝis. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Fluo ne ekzistas: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL-adreso: + + + + Refresh interval: + + + + + sec + sek + + + + Default + Defaŭlto + + RSSWidget @@ -8948,17 +8966,17 @@ Tiuj kromprogramoj malebliĝis. Delete - Forigu + Forigi Rename... - Renomi... + Alinomi... Rename - Renomi... + Alinomi @@ -8999,78 +9017,61 @@ Tiuj kromprogramoj malebliĝis. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Bonvolu elekti dosierujo-nomon - + Folder name: Dosierujo-nomo: - + New folder Nova dosierujo - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation Foriga konfirmado - + Are you sure you want to delete the selected RSS feeds? Ĉu vi certas, ke vi volas forigi la elektitajn RSS-fluojn? - + Please choose a new name for this RSS feed Bonvolu elekti novan nomon por tiu RSS-fluo - + New feed name: Nova flunomo: - + Rename failed - + Date: Dato: - + Feed: - + Author: Aŭtoro: @@ -9207,10 +9208,6 @@ Tiuj kromprogramoj malebliĝis. i.e: Number of partial sources Ricevantoj - - Search engine - Serĉilo - Filter search results... @@ -9331,104 +9328,104 @@ Tiuj kromprogramoj malebliĝis. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. Kromprogramo ne subtenatas. - + Plugin %1 has been successfully updated. - + All categories Ĉiuj kategorioj - + Movies Filmoj - + TV shows Televidserioj - + Music Muziko - + Games Ludoj - + Anime Animeo - + Software Programaroj - + Pictures Bildoj - + Books Libroj - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9453,135 +9450,127 @@ Click the "Search plugins..." button at the bottom right of the window Serĉilaj kromprogramoj... - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins Ĉiuj kromprogramoj - + Only enabled - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab - + Close all tabs - + Select... - - + + Search Engine Serĉilo - - + + Please install Python to use the Search Engine. Bonvolu instali Pitonon por uzi la Serĉilon. - + Empty search pattern Malplena serĉa ŝablono - + Please type a search pattern first Bonvolu tajpi serĉan ŝablonon unue - + Stop Halti - - Search has finished - Serĉo finiĝis - - - Search has failed - Serĉo malsukcesis - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9698,7 +9687,7 @@ Click the "Search plugins..." button at the bottom right of the window Upload: - Alŝuta: + Alŝuto: @@ -9720,7 +9709,7 @@ Click the "Search plugins..." button at the bottom right of the window Download: - Elŝuti + Elŝuto: @@ -9884,7 +9873,7 @@ Click the "Search plugins..." button at the bottom right of the window Crash info - + Informo pri paneo @@ -9979,67 +9968,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Konekta stato: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 nodoj - + qBittorrent needs to be restarted! - - + + Connection Status: Konekta Stato: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online Konektite - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -10050,30 +10049,22 @@ Click the "Search plugins..." button at the bottom right of the window All (0) this is for the status filter - Ĉio (0) + Ĉiuj (0) Downloading (0) - Elŝutante (0) + Elŝutataj (0) Seeding (0) - Fontsendanta (0) + Fontsendataj (0) Completed (0) - Finite (0) - - - Resumed (0) - Reaktiviĝita (0) - - - Paused (0) - Paŭzinta (0) + Kompletigitaj (0) @@ -10098,22 +10089,22 @@ Click the "Search plugins..." button at the bottom right of the window Stalled (0) - + Nevivaj (0) Stalled Uploading (0) - + Nevivaj alŝutataj (0) Stalled Downloading (0) - + Nevivaj elŝutataj (0) Checking (0) - + Kontrolataj (0) @@ -10123,27 +10114,27 @@ Click the "Search plugins..." button at the bottom right of the window Errored (0) - Erarinta (0) + Eroritaj (0) All (%1) - Ĉio (%1) + Ĉiuj (%1) Downloading (%1) - Elŝutante (%1) + Elŝutataj (%1) Seeding (%1) - Fontsendanta (%1) + Fontsendataj (%1) Completed (%1) - Finite (%1) + Kompletigitaj (%1) @@ -10165,32 +10156,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - Paŭzinta (%1) - Moving (%1) - - Resume torrents - Reaktivigi la torentojn - - - Pause torrents - Paŭzigi la torentojn - Remove torrents Forigi torentojn - - Resumed (%1) - Reaktiviĝita (%1) - Active (%1) @@ -10204,27 +10179,27 @@ Click the "Search plugins..." button at the bottom right of the window Stalled (%1) - + Nevivaj (%1) Stalled Uploading (%1) - + Nevivaj alŝutataj (%1) Stalled Downloading (%1) - + Nevivaj elŝutataj (%1) Checking (%1) - + Kontrolataj (%1) Errored (%1) - Erarinta (%1) + Eroritaj (%1) @@ -10237,12 +10212,12 @@ Click the "Search plugins..." button at the bottom right of the window All - Ĉio + Ĉiuj Untagged - + Senetikedaj @@ -10250,35 +10225,23 @@ Click the "Search plugins..." button at the bottom right of the window Add tag... - + Aldoni etikedon... Remove tag - Forigi la etikedon + Forigi etikedon Remove unused tags Forigi neuzitajn etikedojn - - Resume torrents - Reaktivigi la torentojn - - - Pause torrents - Paŭzigi la torentojn - Remove torrents Forigi torentojn - - New Tag - Nova Etikedo - Start torrents @@ -10302,12 +10265,12 @@ Click the "Search plugins..." button at the bottom right of the window Invalid tag name - Malvalida etikednomo + Nevalida etikeda nomo Tag name '%1' is invalid - + Etikeda nomo "%1" nevalidas @@ -10360,7 +10323,7 @@ Click the "Search plugins..." button at the bottom right of the window Path: - Indiko: + Vojo: @@ -10519,7 +10482,7 @@ Please choose a different name and try again. Renaming - + Alinomado @@ -10544,17 +10507,17 @@ Please choose a different name and try again. Open - Malfermu + Malfermi Open containing folder - + Malfermi enhavantan dosierujon Rename... - Renomi... + Alinomi... @@ -10611,17 +10574,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10641,7 +10604,7 @@ Please choose a different name and try again. Path: - Indiko: + Vojo: @@ -10652,18 +10615,18 @@ Please choose a different name and try again. Select file - + Elekti dosieron Select folder - + Elekti dosierujon Settings - + Agordoj @@ -10678,7 +10641,7 @@ Please choose a different name and try again. Piece size: - Pecogrando: + Peca grando: @@ -10688,7 +10651,7 @@ Please choose a different name and try again. Calculate number of pieces: - + Kalkuli nombro da pecoj: @@ -10753,7 +10716,7 @@ Please choose a different name and try again. Source: - + Fonto: @@ -10763,7 +10726,7 @@ Please choose a different name and try again. Create Torrent - + Krei torenton @@ -10794,7 +10757,7 @@ Please choose a different name and try again. Reason: "%1" - + Kialo: "%1" @@ -10804,12 +10767,12 @@ Please choose a different name and try again. Torrent creator - + Torenta kreanto Torrent created: - + Torento kreinta: @@ -10855,7 +10818,7 @@ Please choose a different name and try again. Magnet file too big. File: %1 - + Magnet-dosiero tro granda. Dosiero: %1 @@ -10873,13 +10836,6 @@ Please choose a different name and try again. - - TorrentInfo - - Invalid metadata - Malvalidaj metadatenoj - - TorrentOptionsDialog @@ -11049,7 +11005,7 @@ Please choose a different name and try again. Remove torrent - Forigi torenton + Forigi torenton @@ -11072,11 +11028,7 @@ Please choose a different name and try again. Torrent Tags - - - - New Tag - Nova Etikedo + Torentaj etikedoj @@ -11086,17 +11038,17 @@ Please choose a different name and try again. Tag: - Etikedo + Etikedo: Invalid tag name - Malvalida etikednomo + Nevalida etikeda nomo Tag name '%1' is invalid. - + Etikeda nomo "%1" nevalidas. @@ -11112,78 +11064,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Eraro: "%1" ne estas valida torentodosiero. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11203,39 +11155,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name @@ -11379,73 +11331,73 @@ Please choose a different name and try again. Ĉi tiu torento estas privata - + Tracker editing Spuril-redaktado - + Tracker URL: Spurila URL-adreso: - - + + Tracker editing failed Spuril-redaktado malsukcesis - + The tracker URL entered is invalid. Malvalidas la spurila URL-adreso, kiun vi enigis. - + The tracker URL already exists. Tiu spurila URL-adreso jam ekzistas. - + Edit tracker URL... - + Remove tracker Forigi la spurilon - + Copy tracker URL Kopii la spurilan URL-adreson: - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility @@ -11535,14 +11487,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - Reaktivigi la torentojn - - - Pause torrents - Paŭzigi la torentojn - Remove torrents @@ -11567,7 +11511,7 @@ Please choose a different name and try again. All (%1) this is for the tracker filter - Ĉio (%1) + Ĉiuj (%1) @@ -11606,13 +11550,13 @@ Please choose a different name and try again. Downloading - Elŝutante + Elŝutata Stalled Torrent is waiting for download to begin - Haltigita + Neviva @@ -11630,34 +11574,34 @@ Please choose a different name and try again. [F] Downloading Used when the torrent is forced started. You probably shouldn't translate the F. - [F] Elŝutanta + [F] Elŝutata Seeding Torrent is complete and in upload-only mode - Fontsendanta + Fontsendata [F] Seeding Used when the torrent is forced started. You probably shouldn't translate the F. - + [F] Fontsendata Queued Torrent is queued - Enviciĝita + Envicigita Checking Torrent local data is being checked - Kontrolate + Kontrolata @@ -11665,31 +11609,27 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Kontrolante reaktivigajn datenojn - - Paused - Paŭzinta - Completed - Finita + Kompletigita Moving Torrent local data are being moved/relocated - + Translokigata Missing Files - Mankantaj Dosieroj + Mankas dosierojn Errored Torrent status, the torrent has an error - Erarinta + Erarita @@ -11709,21 +11649,16 @@ Please choose a different name and try again. % Done Progreso - - Status - Torrent status (e.g. downloading, seeding, paused) - Stato - Stopped - + Haltinta Status Torrent status (e.g. downloading, seeding, stopped) - Stato + Stato @@ -11741,13 +11676,13 @@ Please choose a different name and try again. Down Speed i.e: Download speed - Elŝutrapido + Elŝuta rapido Up Speed i.e: Upload speed - Alŝutrapido + Alŝuta rapido @@ -11786,7 +11721,7 @@ Please choose a different name and try again. Completed On Torrent was completed on 01/01/2010 08:00 - Finita je + Kompletigita je @@ -11797,13 +11732,13 @@ Please choose a different name and try again. Down Limit i.e: Download limit - Elŝutlimo + Elŝuta limo Up Limit i.e: Upload limit - Alŝutlimo + Alŝuta limo @@ -11839,22 +11774,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Aktiva tempo + Aktiva tempo Yes - Jes + Jes No - Ne - - - Time Active - Time (duration) the torrent is active (not paused) - Aktiva tempo + Ne @@ -11872,7 +11802,7 @@ Please choose a different name and try again. Completed Amount of data completed (e.g. in MB) - Finita + Kompletigita @@ -11950,339 +11880,325 @@ Please choose a different name and try again. %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - %1 (fontsendis dum %2) + %1 (fontsendata dum %2) TransferListWidget - + Column visibility - + Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? Ĉu vi certas, ke vi volas rekontroli la elektita(j)n torento(j)n? - + Rename Renomi... - + New name: Nova nomo: - + Choose save path Elektu la konservan dosierindikon - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Aldoni Etikedojn - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags Forigi Ĉiujn Etikedojn - + Remove all tags from selected torrents? Forigi ĉiujn etikedojn per elektitaj torentoj? - + Comma-separated tags: - + Invalid tag - + Tag name: '%1' is invalid - &Resume - Resume/start the torrent - &Reaktivigi - - - &Pause - Pause the torrent - &Paŭzigu - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + &Nomo - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Nova... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Aldoni... - + &Remove All Remove all tags &Forigi Ĉiujn - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy &Kopii - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Elŝuti en sinsekva ordo - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - &Forigi + Fo&rigi - + Download first and last pieces first Elŝuti la unuan kaj la finan pecojn unue - + Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode Superfontsendanta reĝimo @@ -12297,7 +12213,7 @@ Please choose a different name and try again. Colors - + Koloroj @@ -12308,13 +12224,13 @@ Please choose a different name and try again. Light Mode - + Hela reĝimo Dark Mode - + Malhela reĝimo @@ -12363,7 +12279,7 @@ Please choose a different name and try again. Failed to load UI theme from file: "%1" - + Malsukcesis ŝargi UI-etoson el dosiero: "%1" @@ -12414,32 +12330,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12531,52 +12447,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 Eraro de retservilo. %1 - + Web server error. Unknown error. Eraro de retservilo. Nekonata eraro. @@ -12634,7 +12550,7 @@ Please choose a different name and try again. Unknown error - Nekonata eraro + Nekonata eraro diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index 9b1556123..cdec9ecaf 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -170,10 +170,6 @@ Never show again No volver a mostrar - - Torrent settings - Propiedades del torrent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Opciones de Torrent @@ -235,25 +231,25 @@ Condición de parada: - - + + None Ninguno - - + + Metadata received Metadatos recibidos - + Torrents that have metadata initially will be added as stopped. Los torrents que inicialmente tengan metadatos se añadirán como detenidos. - + Files checked Archivos verificados @@ -368,112 +364,112 @@ Guardar como archivo .torrent - + I/O Error Error de I/O - + Not Available This comment is unavailable No disponible - + Not Available This date is unavailable No disponible - + Not available No disponible - + Magnet link Enlace magnet - + Retrieving metadata... Recibiendo metadatos... - - + + Choose save path Elegir ruta - + No stop condition is set. No se establece una condición de parada. - + Torrent will stop after metadata is received. El torrent se detendrá después de que se reciban metadatos. - + Torrent will stop after files are initially checked. El torrent se detendrá después de que los archivos se verifiquen inicialmente. - + This will also download metadata if it wasn't there initially. Esto también descargará metadatos si no estaba allí inicialmente. - + N/A N/A - + %1 (Free space on disk: %2) %1 (Espacio libre en disco: %2) - + Not available This size is unavailable. No disponible - + Torrent file (*%1) Archivo Torrent (*%1) - + Save as torrent file Guardar como archivo torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. No se pudo exportar el archivo de metadatos del torrent '%1'. Razón: %2. - + Cannot create v2 torrent until its data is fully downloaded. No se puede crear el torrent v2 hasta que los datos estén completamente descargados. - + Filter files... Filtrar archivos... - + Parsing metadata... Analizando metadatos... - + Metadata retrieval complete Recepción de metadatos completa @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Descargando torrent... Fuente: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Error al agregar el torrent. Fuente: "%1". Razón: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Se a detectado un intento de agregar un torrent duplicado. Origen: %1. Torrent existente: %2. Resultado: %3 + Se a detectado un intento de agregar un torrent duplicado. Origen: %1. Torrent existente: %2. Resultado: %3 - + Merging of trackers is disabled La fusión de los rastreadores está desactivada. - + Trackers cannot be merged because it is a private torrent Los rastreadores no se pueden fusionar porque es un torrent privado. - + Trackers are merged from new source Los rastreadores han sido fusionados desde una nueva fuente + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Verificar torrents completados - - + + ms milliseconds ms - + Setting Ajustes - + Value Value set for this setting Valor - + (disabled) (deshabilitado) - + (auto) (auto) - - + + min minutes min - + All addresses Todas las direcciones - + qBittorrent Section Sección de qBittorrent - - + + Open documentation Abrir documentación - + All IPv4 addresses Todas las direcciones IPv4 - + All IPv6 addresses Todas las direcciones IPv6 - + libtorrent Section Sección de libtorrent - + Fastresume files Archivos de reanudación rápida - + SQLite database (experimental) Base de datos SQLite (experimental) - + Resume data storage type (requires restart) Reanudar el tipo de almacenamiento de datos (requiere reiniciar) - + Normal Normal - + Below normal Debajo de lo normal - + Medium Media - + Low Baja - + Very low Muy baja - + Physical memory (RAM) usage limit Límite de uso de la memoria física (RAM) - + Asynchronous I/O threads Hilos I/O asíncronos - + Hashing threads Hilos de hashing - + File pool size Tamaño de la reserva de archivos - + Outstanding memory when checking torrents Exceso de memoria al verificar los torrents - + Disk cache Caché de disco - - - - + + + + + s seconds s - + Disk cache expiry interval Intervalo de expiración de la caché de disco - + Disk queue size Tamaño de la cola de disco - - + + Enable OS cache Activar caché del S.O. - + Coalesce reads & writes Combinar lecturas y escrituras - + Use piece extent affinity Usar afinidad de extensión de pieza - + Send upload piece suggestions Enviar sugerencias de piezas a subir - - - - - + + + + + 0 (disabled) 0 (desactivado) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Guardar intervalo de datos de continuación [0: desactivado] - + Outgoing ports (Min) [0: disabled] Puertos de salida (Min) [0: desactivado] - + Outgoing ports (Max) [0: disabled] Puertos de salida (Max) [0: desactivado} - + 0 (permanent lease) 0 (cesión permanente) - + UPnP lease duration [0: permanent lease] Duración de la cesión UPnP [0: cesión permanente] - + Stop tracker timeout [0: disabled] Parar el temporizador de tracker [0: desactivado] - + Notification timeout [0: infinite, -1: system default] Cuenta atrás de notificación [0: infinito, -1 por defecto del sistema] - + Maximum outstanding requests to a single peer Máximo de solicitudes pendientes a un único par - - - - - + + + + + KiB KiB - + (infinite) (infinito) - + (system default) (por defecto de sistema) - + Delete files permanently - + Eliminar archivos permanentemente - + Move files to trash (if possible) - + Mover los archivos a la papelera (si es posible) - + Torrent content removing mode - + Modo de eliminación de contenido de torrent - + This option is less effective on Linux Esta opción es menos efectiva en Linux - + Process memory priority Prioridad de la memoria de proceso - + Bdecode depth limit Límite de profundidad Bdecode - + Bdecode token limit Límite de token Bdecode - + Default Por defecto - + Memory mapped files Archivos mapeados en memoria - + POSIX-compliant compatible con POSIX - + Simple pread/pwrite - + Prelectura/prescritura simple - + Disk IO type (requires restart) Tipo de E/S de disco (requiere reiniciar) - - + + Disable OS cache Deshabilitar caché del sistema operativo - + Disk IO read mode Modo de lectura de E/S de disco - + Write-through Escritura por medio de - + Disk IO write mode Modo de escritura de E/S de disco - + Send buffer watermark Enviar buffer watermark - + Send buffer low watermark Enviar buffer lowmark - + Send buffer watermark factor Enviar buffer watermark factor - + Outgoing connections per second Conexiones salientes por segundo - - + + 0 (system default) 0 (por defecto de sistema) - + Socket send buffer size [0: system default] Tamaño de buffer de envío [0: por defecto de sistema] - + Socket receive buffer size [0: system default] Tamaño de buffer de recepción [0: por defecto de sistema] - + Socket backlog size Tamaño del backlog del socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Intervalo de guardado de estadísticas [0: desactivado] - + .torrent file size limit Límite de tamaño de archivo .torrent - + Type of service (ToS) for connections to peers Tipo de servicio (ToS) para conexiones a pares - + Prefer TCP Preferir TCP - + Peer proportional (throttles TCP) Proporcional a los pares (ahoga el TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Permitir nombres de dominio internacionalizados (IDN) - + Allow multiple connections from the same IP address Permitir múltiples conexiones de la misma dirección IP - + Validate HTTPS tracker certificates Validar certificados HTTPS del rastreador - + Server-side request forgery (SSRF) mitigation Mitigación de falsificación de solicitudes del lado del servidor (SSRF) - + Disallow connection to peers on privileged ports No permitir la conexión a pares en puertos privilegiados - + It appends the text to the window title to help distinguish qBittorent instances Añade el texto al título de la ventana para ayudar a distinguir las instancias de qBittorent - + Customize application instance name Personalizar el nombre de la instancia de la aplicación - + It controls the internal state update interval which in turn will affect UI updates Controla el intervalo de actualización del estado interno que, a su vez, afectará las actualizaciones de la interfaz de usuario - + Refresh interval Intervalo de actualización - + Resolve peer host names Resolver nombres de host de los pares - + IP address reported to trackers (requires restart) Dirección IP informada a los rastreadores (requiere reiniciar): - + Port reported to trackers (requires restart) [0: listening port] - + Puerto reportado a los traquers (requiere reiniciar) [0: puerto de escucha] - + Reannounce to all trackers when IP or port changed Reanunciar a todos los rastreadores cuando cambia la IP o el puerto - + Enable icons in menus Habilitar iconos en menús - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Habilitar el reenvío de puertos para el rastreador integrado - + Enable quarantine for downloaded files Habilitar cuarentena para los archivos descargados - + Enable Mark-of-the-Web (MOTW) for downloaded files Habilite la Marca de la Web (MOTW) para archivos descargados - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Afecta la validación de certificados y las actividades de protocolos que no son torrent (por ejemplo, feeds RSS, actualizaciones de programas, archivos torrent, base de datos geoip, etc.) - + Ignore SSL errors - + Ignorar errores SSL - + (Auto detect if empty) (Auto detectar si está vacío) - + Python executable path (may require restart) Ruta del ejecutable de Python (puede requerir reinicio) - + Start BitTorrent session in paused state - + Iniciar sesión de BitTorrent en estado de pausa - + sec seconds - seg + seg - + -1 (unlimited) - + -1 (ilimitado) - + BitTorrent session shutdown timeout [-1: unlimited] - + Tiempo de espera de cierre de sesión de BitTorrent [-1: ilimitado] - + Confirm removal of tracker from all torrents Confirmar la eliminación del rastreador de todos los torrents - + Peer turnover disconnect percentage Porcentaje de desconexión de la rotación de pares - + Peer turnover threshold percentage Porcentaje del limite de rotación de pares - + Peer turnover disconnect interval Intervalo de desconexión de rotación de pares - + Resets to default if empty Restablece a predeterminados si está vacío - + DHT bootstrap nodes Nodos bootstrap DHT - + I2P inbound quantity Cantidad entrante I2P - + I2P outbound quantity Cantidad saliente de I2P - + I2P inbound length Longitud de entrada I2P - + I2P outbound length Longitud de salida I2P - + Display notifications Mostrar notificaciones - + Display notifications for added torrents Mostrar notificaciones para torrents agregados - + Download tracker's favicon Descargar favicon del tracker - + Save path history length Tamaño del historial de rutas de guardado - + Enable speed graphs Activar gráficas de velocidad - + Fixed slots Puestos fijos - + Upload rate based Basado en la vel. de subida - + Upload slots behavior Comportamiento de los puestos de subida - + Round-robin Round-robin - + Fastest upload Subida mas rápida - + Anti-leech Anti-leech - + Upload choking algorithm Algoritmo de bloqueo de subidas - + Confirm torrent recheck Confirmar la verificación del torrent - + Confirm removal of all tags Confirmar la eliminación de todas las etiquetas - + Always announce to all trackers in a tier Siempre anunciar a todos los trackers del nivel - + Always announce to all tiers Siempre anunciar a todos los niveles - + Any interface i.e. Any network interface Cualquier interfaz - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algoritmo de modo mixto %1-TCP - + Resolve peer countries Resolver el país de los pares - + Network interface Interfaz de red - + Optional IP address to bind to Dirección IP opcional para enlazar - + Max concurrent HTTP announces Aviso de HTTP simultáneo máximo - + Enable embedded tracker Activar tracker integrado - + Embedded tracker port Puerto del tracker integrado @@ -1382,142 +1393,142 @@ Invalid directory path - + Ruta de directorio inválida Directory does not exist - + El directorio no existe Invalid mode, allowed values: %1 - + Modo inválido, valores permitidos: %1 cookies must be array - + cookies debe ser un array Application - + Running in portable mode. Auto detected profile folder at: %1 Ejecutando en modo portátil. Carpeta de perfil detectada automáticamente en: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Parámetro de línea de comandos redundante detectado: "%1". Modo portable implica recuperación relativamente rápida. - + Using config directory: %1 Usando el directorio de configuración: %1 - + Torrent name: %1 Nombre del torrent: %1 - + Torrent size: %1 Tamaño del torrent: %1 - + Save path: %1 Guardar en: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds El torrernt se descargó en %1. - - + + Thank you for using qBittorrent. Gracias por utilizar qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, enviando correo de notificación - + Add torrent failed Error al agregar torrent - + Couldn't add torrent '%1', reason: %2. No se pudo agregar el torrent '%1', motivo: %2. - + The WebUI administrator username is: %1 El nombre de usuario del administrador de WebUI es: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 La contraseña del administrador de WebUI no fue establecida. Una contraseña temporal fue puesta en esta sesión: %1 - + You should set your own password in program preferences. Debes poner tu propia contraseña en las preferencias del programa. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. ¡La interfaz de usuario web está desactivada! Para habilitar la interfaz de usuario web, edite el archivo de configuración manualmente. - + Running external program. Torrent: "%1". Command: `%2` Ejecutando programa externo. Torrent: "%1". Comando: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` No se pudo ejecutar el programa externo. Torrent: "%1". Comando: `%2` - + Torrent "%1" has finished downloading El torrent "%1" ha terminado de descargarse - + WebUI will be started shortly after internal preparations. Please wait... WebUI se iniciará poco después de los preparativos internos. Espere por favor... - - + + Loading torrents... Cargando torrents... - + E&xit S&alir - + I/O Error i.e: Input/Output Error Error de E/S - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Motivo: %2 - + Torrent added Torrent añadido - + '%1' was added. e.g: xxx.avi was added. Se añadió '%1'. - + Download completed Descarga completada - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started Se inició qBittorrent %1. ID de proceso: %2 - + This is a test email. - + Este es un correo electrónico de prueba. - + Test email - + Correo electrónico de prueba - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' ha terminado de descargarse. - + Information Información - + To fix the error, you may need to edit the config file manually. Para solucionar el error, es posible que debas editar el archivo de configuración manualmente. - + To control qBittorrent, access the WebUI at: %1 Para controlar qBittorrent, acceda a WebUI en: %1 - + Exit Salir - + Recursive download confirmation Confirmación de descargas recursivas - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? El torrent '%1' contiene archivos .torrent, ¿Desea continuar con sus descargas? - + Never Nunca - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Archivo .torrent de descarga recursiva dentro de torrent. Torrent de origen: "%1". Archivo: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" No se pudo establecer el límite de uso de la memoria física (RAM). Código de error: %1. Mensaje de error: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" No se pudo establecer el límite máximo de uso de la memoria (RAM). Tamaño solicitado: %1. Límite estricto del sistema: %2. Código de error: %3. Mensaje de error: "%4" - + qBittorrent termination initiated terminación de qBittorrent iniciada - + qBittorrent is shutting down... qBittorrent se está cerrando... - + Saving torrent progress... Guardando progreso del torrent... - + qBittorrent is now ready to exit qBittorrent ahora está listo para salir @@ -1766,263 +1777,263 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha &Exportar... - + Matches articles based on episode filter. Filtrar artículos en base al filtro de episodios. - + Example: Ejemplo: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match coincidirá con los episodios 2, 5, del 8 al 15, y del 30 en adelante de la temporada uno - + Episode filter rules: Reglas del filtro de episodios: - + Season number is a mandatory non-zero value El número de temporada debe ser distinto de cero - + Filter must end with semicolon El filtro debe finalizar con punto y coma (;) - + Three range types for episodes are supported: Son soportados tres tipos de rango de episodios: - + Single number: <b>1x25;</b> matches episode 25 of season one Un número: <b>1x25;</b> coincidirá con el episodio 25 de la temporada uno - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Un rango: <b>1x25-40;</b> coincidirá con los episodios del 25 al 40 de la temporada uno - + Episode number is a mandatory positive value El número de episodio debe ser un valor positivo - + Rules Reglas - + Rules (legacy) Reglas (antiguas) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Rango infinito: <b>1x25-;</b> coincidirá con los episodios del 25 en adelante de la temporada uno, y todos los episodios de las temporadas siguientes - + Last Match: %1 days ago Última coincidencia: %1 días atrás - + Last Match: Unknown Última coincidencia: Desconocida - + New rule name Nombre de la regla - + Please type the name of the new download rule. Por favor, escriba el nombre de la nueva regla de descarga. - - + + Rule name conflict Conflicto con el nombre de la regla - - + + A rule with this name already exists, please choose another name. Ya existena una regla con este nombre, por favor, elija otro nombre. - + Are you sure you want to remove the download rule named '%1'? ¿Está seguro de querer eliminar la regla de descarga llamada '%1'? - + Are you sure you want to remove the selected download rules? ¿Está seguro que desea eliminar las reglas de descarga seleccionadas? - + Rule deletion confirmation Confirmar la eliminación de la regla - + Invalid action Acción no válida - + The list is empty, there is nothing to export. La lista está vacía, no hay nada para exportar. - + Export RSS rules Exportar reglas RSS - + I/O Error Error de I/O - + Failed to create the destination file. Reason: %1 No se pudo crear el archivo de destino. Razón: %1 - + Import RSS rules Importar reglas RSS - + Failed to import the selected rules file. Reason: %1 No se pudo importar el archivo de reglas seleccionado. Razón: %1 - + Add new rule... Agregar nueva regla... - + Delete rule Eliminar regla - + Rename rule... Renombrar regla... - + Delete selected rules Eliminar reglas seleccionadas - + Clear downloaded episodes... Limpiar episodios descargados... - + Rule renaming Renombrando regla - + Please type the new rule name Por favor, escriba el nombre de la nueva regla - + Clear downloaded episodes Limpiar episodios descargados - + Are you sure you want to clear the list of downloaded episodes for the selected rule? ¿Está seguro que desea limpiar la lista de episodios descargados de la regla seleccionada? - + Regex mode: use Perl-compatible regular expressions Modo Regex: usar expresiones regulares compatibles con Perl - - + + Position %1: %2 Posición %1: %2 - + Wildcard mode: you can use Modo comodín: puedes usar - - + + Import error Error al importar - + Failed to read the file. %1 Error al leer el archivo. %1 - + ? to match any single character ? para coincidir cualquier carácter - + * to match zero or more of any characters * para coincidir cero o más de cualquier carácter - + Whitespaces count as AND operators (all words, any order) Los espacios cuentan como operadores AND (todas las palabras, cualquier orden) - + | is used as OR operator | es usado como operador OR - + If word order is important use * instead of whitespace. Si el orden de las palabras es importante use * en vez de espacios. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Una expresión con una cláusula %1 vacía (p.ej. %2) - + will match all articles. coincidirá con todos los artículos. - + will exclude all articles. excluirá todos los artículos. @@ -2074,28 +2085,38 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha No se puede analizar los datos de reanudación: formato inválido - - + + Cannot parse torrent info: %1 No se puede analizar la información del torrent: %1 - + Cannot parse torrent info: invalid format No se puede analizar la información del torrent: formato inválido - + Mismatching info-hash detected in resume data Se detectó hash de información no coincidente en los datos del resumen - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. No se pudieron guardar los metadatos de torrent en '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. No se pudieron guardar los datos de reanudación de torrent en '%1'. Error: %2. @@ -2106,16 +2127,17 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha + Cannot parse resume data: %1 No se puede analizar los datos de reanudación: %1 - + Resume data is invalid: neither metadata nor info-hash was found Los datos del reanudación no son válidos: no se encontraron metadatos ni informacion de hash - + Couldn't save data to '%1'. Error: %2 No se pudo guardar los datos en '%1'. Error: %2 @@ -2123,38 +2145,60 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha BitTorrent::DBResumeDataStorage - + Not found. No encontrado. - + Couldn't load resume data of torrent '%1'. Error: %2 No se pudieron cargar los datos de reanudación del torrent '%1'. Error: %2 - - + + Database is corrupted. La base de datos está dañada. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. No se pudo habilitar el modo de registro diario Write-Ahead Logging (WAL). Error: %1. - + Couldn't obtain query result. No se pudo obtener el resultado de la consulta. - + WAL mode is probably unsupported due to filesystem limitations. El modo WAL probablemente no sea compatible debido a las limitaciones del sistema de archivos. - + + + Cannot parse resume data: %1 + No se puede analizar los datos de reanudación: %1 + + + + + Cannot parse torrent info: %1 + No se puede analizar la información del torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 No se pudo iniciar la transacción. Error: %1 @@ -2162,22 +2206,22 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. No se pudieron guardar los metadatos del torrent. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 No se pudieron almacenar los datos de reanudación del torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 No se pudieron borrar los datos de reanudación del torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 No se pudieron almacenar las posiciones de la cola de torrents. Error: %1 @@ -2185,530 +2229,507 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Soporte de tabla hash distribuida (DHT): %1 - - - - - - - - - + + + + + + + + + ON ON - - - - - - - - - + + + + + + + + + OFF OFF - - + + Local Peer Discovery support: %1 Soporte de deteccion local de pares: %1 - + Restart is required to toggle Peer Exchange (PeX) support Es necesario reiniciar para alternar la compatibilidad de Intercambio entre pares (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Error al reanudar el torrent. Torrent: "%1". Razón: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" No se pudo reanudar el torrent: detectado un ID de torrent inconsistente. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Detectado datos incoherentes: falta la categoría en el archivo de configuración. La categoría se recuperará pero su configuración se restablecerá a los valores predeterminados. Torrent: "%1". Categoría: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Detectado datos incoherentes: categoría inválida. Torrent: "%1". Categoría: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Detectada una discrepancia entre las rutas de guardado de la categoría recuperada y la ruta de guardado actual del torrent. El torrent ahora está en modo Manual. Torrent: "%1". Categoría: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Detectados datos incoherentes: falta la etiqueta en el archivo de configuración. Se recuperará la etiqueta. Torrent: "%1". Etiqueta: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Detectado datos incoherentes: etiqueta inválida. Torrent: "%1". Etiqueta: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Se detectó un evento de reactivación del sistema. Reanunciar a todos los rastreadores... - + Peer ID: "%1" ID de par: "%1" - + HTTP User-Agent: "%1" Agente de Usuario HTTP: "%1" - + Peer Exchange (PeX) support: %1 Soporte con intercambio entre pares (PeX): %1 - - + + Anonymous mode: %1 Modo Anónimo: %1 - - + + Encryption support: %1 Soporte de cifrado: %1 - - + + FORCED FORZADO - + Could not find GUID of network interface. Interface: "%1" No se pudo encontrar el GUID de la interfaz de red. Interfaz: "%1" - + Trying to listen on the following list of IP addresses: "%1" Intentando escuchar en la siguiente lista de direcciones IP: "%1" - + Torrent reached the share ratio limit. El Torrent alcanzó el límite de proporción de acciones. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent eliminado. - - - Removed torrent and deleted its content. - Eliminado el torrent y su contenido. - - - Torrent paused. - Torrent pausado. - - - + Super seeding enabled. Super siembra habilitado. - + Torrent reached the seeding time limit. El Torrent alcanzó el límite de tiempo de siembra. - + Torrent reached the inactive seeding time limit. El torrent alcanzó el límite de tiempo de siembra inactiva. - + Failed to load torrent. Reason: "%1" Error al cargar torrent. Razón: "%1" - + I2P error. Message: "%1". Error I2P. Mensaje: "%1". - + UPnP/NAT-PMP support: ON Soporte UPNP/NAT-PMP: ENCENDIDO - + Saving resume data completed. - + Se ha completado el guardado de los datos del currículum. - + BitTorrent session successfully finished. - + La sesión de BitTorrent finalizó exitosamente. - + Session shutdown timed out. - + Se agotó el tiempo de cierre de la sesión. - + Removing torrent. - + Eliminando torrent. - + Removing torrent and deleting its content. - + Eliminado el torrent y su contenido. - + Torrent stopped. - + Torrent detenido. - + Torrent content removed. Torrent: "%1" - + Contenido de torrent eliminado. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Error al eliminar el contenido del torrent. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - + Torrent eliminado. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Detectado un intento de añadir un torrent duplicado. Torrent existente: %1. Resultado: %2 - + Merging of trackers is disabled - La fusión de los rastreadores está desactivada. + La fusión de los rastreadores está desactivada. - + Trackers cannot be merged because it is a private torrent - Los rastreadores no se pueden fusionar porque es un torrent privado. + Los rastreadores no se pueden fusionar porque es un torrent privado. - + Trackers are merged from new source - Los rastreadores han sido fusionados desde una nueva fuente + Los rastreadores han sido fusionados desde una nueva fuente - + UPnP/NAT-PMP support: OFF Soporte UPNP/NAT-PMP: APAGADO - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Error al exportar torrent. Torrent: "%1". Destino: "%2". Razón: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Se canceló el guardado de los datos reanudados. Número de torrents pendientes: %1 - + The configured network address is invalid. Address: "%1" La dirección de red configurada no es válida. Dirección: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" No se pudo encontrar la dirección de red configurada para escuchar. Dirección: "%1" - + The configured network interface is invalid. Interface: "%1" La interfaz de red configurada no es válida. Interfaz: "%1" - + Tracker list updated - + Lista de trackers actualizada - + Failed to update tracker list. Reason: "%1" - + Error al actualizar la lista de trackers. Motivo: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Dirección IP no válida rechazada al aplicar la lista de direcciones IP prohibidas. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Añadido rastreador a torrent. Torrent: "%1". Rastreador: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Rastreador eliminado de torrent. Torrent: "%1". Rastreador: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Se añadió semilla de URL a torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Se eliminó la semilla de URL de torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + No se pudo eliminar el archivo parcial. Torrent: "%1". Motivo: "%2". - Torrent paused. Torrent: "%1" - Torrent pausado. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent reanudado. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Descarga de torrent finalizada. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Movimiento de torrent cancelado. Torrent: "%1". Origen: "%2". Destino: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent detenido. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination No se pudo poner en cola el movimiento de torrent. Torrent: "%1". Origen: "%2". Destino: "%3". Motivo: El torrent se está moviendo actualmente al destino - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location No se pudo poner en cola el movimiento del torrent. Torrent: "%1". Origen: "%2" Destino: "%3". Motivo: ambos caminos apuntan a la misma ubicación - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Movimiento de torrent en cola. Torrent: "%1". Origen: "%2". Destino: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Empezar a mover el torrent. Torrent: "%1". Destino: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" No se pudo guardar la configuración de Categorías. Archivo: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" No se pudo analizar la configuración de categorías. Archivo: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Se analizó con éxito el archivo de filtro de IP. Número de reglas aplicadas: %1 - + Failed to parse the IP filter file No se pudo analizar el archivo de filtro de IP - + Restored torrent. Torrent: "%1" Torrent restaurado. Torrent: "%1" - + Added new torrent. Torrent: "%1" Añadido nuevo torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent con error. Torrent: "%1". Error: "%2" - Removed torrent. Torrent: "%1" - Torrent eliminado. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Se eliminó el torrent y se eliminó su contenido. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Al Torrent le faltan parámetros SSL. Torrent: "%1". Mensaje: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Advertencia de error de archivo. Torrent: "%1". Archivo: "%2". Motivo: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" La asignación de puertos UPnP/NAT-PMP falló. Mensaje: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" La asignación de puertos UPnP/NAT-PMP se realizó correctamente. Mensaje: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtro de IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). puerto filtrado (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). puerto privilegiado (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Error de conexión de semilla de URL. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" La sesión de BitTorrent encontró un error grave. Razón: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Error de proxy SOCKS5. Dirección: %1. Mensaje: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 restricciones de modo mixto - + Failed to load Categories. %1 Error al cargar las Categorías. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Error al cargar la configuración de Categorías. Archivo: "%1". Error: "Formato de datos inválido" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Se eliminó el torrent pero no se pudo eliminar su contenido o su fichero .part. Torrent: "%1". Error: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 está deshabilitado - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 está deshabilitado - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Falló la búsqueda de DNS inicial de URL. Torrent: "%1". URL: "%2". Error: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Mensaje de error recibido de semilla de URL. Torrent: "%1". URL: "%2". Mensaje: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Escuchando con éxito en IP. IP: "%1". Puerto: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Error al escuchar en IP. IP: "%1". Puerto: "%2/%3". Motivo: "%4" - + Detected external IP. IP: "%1" IP externa detectada. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Error: La cola de alerta interna está llena y las alertas se descartan, es posible que vea un rendimiento degradado. Tipo de alerta descartada: "%1". Mensaje: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent movido con éxito. Torrent: "%1". Destino: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" No se pudo mover el torrent. Torrent: "%1". Origen: "%2". Destino: "%3". Razón: "%4" @@ -2758,47 +2779,47 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha No se pudo escribir en el archivo. Razón: "%1". El torrent ahora está en modo "solo subida". - + Download first and last piece first: %1, torrent: '%2' Descargar el primero y último fragmento: %1, torrent: '%2' - + On Activado - + Off Desactivado - + Failed to reload torrent. Torrent: %1. Reason: %2 Fallo al recargar el torrent. Torrent: %1. Razón: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Reanudar los datos erroneos generados. Torrent: "%1". Razón: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Error al restaurar el torrent. Probablemente los archivos se movieron o no se puede acceder al almacenamiento. Torrent: "%1". Razón: "%2" - + Missing metadata Faltan metadatos - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Error al cambiar el nombre del archivo. Torrent: "%1", archivo: "%2", motivo: "%3" - + Performance alert: %1. More info: %2 Alerta de rendimiento: %1. Más información: %2 @@ -2835,11 +2856,6 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Expected integer number in environment variable '%1', but got '%2' Esperado un número entero en la variable del entorno '%1', pero se obtuvo '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - El parámetro '%1' debe seguir la sintaxis '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - El parámetro '%1' debe seguir la sintaxis '%1=%2' + El parámetro '%1' debe seguir la sintaxis '%1=%2' @@ -2968,11 +2984,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Add torrents as running or stopped - - - - Add torrents as started or paused - Agregar torrents iniciados o pausados + Añadir torrents iniciados o detenidos @@ -3063,20 +3075,12 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Continuar torrents - - - Pause torrents - Pausar torrents + Parar torrents @@ -3099,7 +3103,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha System - + Systema @@ -3174,11 +3178,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Also remove the content files - - - - Also permanently delete the files - También eliminar permanentemente los archivos. + Elimina también los archivos de contenido. @@ -3390,47 +3390,43 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Pattern Format - + Formato de patrón Plain text - + Texto simple Wildcards - + Comodines Regular expression - + Expresión regular GUIAddTorrentManager - + Downloading torrent... Source: "%1" Descargando torrent... Fuente: "%1" - Trackers cannot be merged because it is a private torrent - Los rastreadores no se pueden fusionar porque es un torrent privado. - - - + Torrent is already present El torrent ya está presente - + Trackers cannot be merged because it is a private torrent. - + Los rastreadores no pueden fusionarse porque es un torrent privado. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? El torrent '%1' ya está en la lista de transferencia. ¿Quieres fusionar rastreadores de una nueva fuente? @@ -3548,6 +3544,40 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Ficheros de imagen soportados + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + El administrador de Energía encontró una interfaz D-Bus adecuada. Interfaz: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Error de administración de energía. Acción: %1. Error: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Error inesperado en la administración de energía. Estado: %1. Error: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha &Options... &Opciones... - - &Resume - &Continuar - &Remove @@ -3762,7 +3788,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Sh&utdown System - + A&pagar el sistema @@ -3774,10 +3800,6 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Close Window Cerrar ventana - - R&esume All - R&eanudar todos - Manage Cookies... @@ -3816,22 +3838,22 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Sta&rt - + Inicia&r Sto&p - + De&tener R&esume Session - + R&estaurar sesión Pau&se Session - + Pau&sar sesión @@ -3893,10 +3915,6 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha &Hibernate System &Hibernar Equipo - - S&hutdown System - &Apagar Equipo - &Statistics @@ -3917,14 +3935,6 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha &About &Acerca de - - &Pause - &Pausar - - - P&ause All - Pa&usar todos - &Add Torrent File... @@ -3958,12 +3968,12 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha - + Show Mostrar - + Check for program updates Buscar actualizaciones del programa @@ -3978,389 +3988,384 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Si le gusta qBittorrent, por favor realice una donación! - + Execution Log Log - + Clear the password Borrar la contraseña - + &Set Password &Establecer Contraseña - + Preferences Preferencias - + &Clear Password Limpiar C&ontraseña - + Transfers Transferencias - - + + qBittorrent is minimized to tray qBittorrent fue minimizado al área de notificación - - - + + + This behavior can be changed in the settings. You won't be reminded again. Este comportamiento puede ser cambiado en las opciones. No se le recordará nuevamente. - + Icons Only Solo iconos - + Text Only Solo texto - + Text Alongside Icons Texto al lado de los iconos - + Text Under Icons Texto debajo de los iconos - + Follow System Style Usar estilo del equipo - - + + UI lock password Contraseña de bloqueo - - + + Please type the UI lock password: Por favor, escriba la contraseña de bloqueo: - + Are you sure you want to clear the password? ¿Seguro que desea borrar la contraseña? - + Use regular expressions Usar expresiones regulares - - + + Search Engine - Motor de búsqueda + Motor de búsqueda - + Search has failed - La búsqueda ha fallado + La búsqueda ha fallado - + Search has finished - + La búsqueda ha finalizado - + Search Buscar - + Transfers (%1) Transferencias (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent ha sido actualizado y debe ser reiniciado para que los cambios sean efectivos. - + qBittorrent is closed to tray qBittorrent fue cerrado al área de notificación - + Some files are currently transferring. Algunos archivos aún están transfiriéndose. - + Are you sure you want to quit qBittorrent? ¿Está seguro de que quiere cerrar qBittorrent? - + &No &No - + &Yes &Sí - + &Always Yes S&iempre sí - + Options saved. Opciones guardadas. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSADO] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + El instalador de Python no se pudo descargar. Error %1. +Por favor instalar manualmente. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Error renombrando el instalador de Python. Origen: "%1". Destino: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + La instalación de Python se realizó con éxito. + Exit code: %1. + Código de salida: %1. + + + + Reason: installer crashed. + Motivo: Error del instalador. + + + Python installation failed. - + La instalación de Python falló. - + Launching Python installer. File: "%1". - + Lanzando instalador de Python. Fichero: "%1". - - + + Missing Python Runtime Falta el intérprete de Python - + qBittorrent Update Available Actualización de qBittorrent disponible - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python es necesario para utilizar el motor de búsqueda pero no parece que esté instalado. ¿Desea instalarlo ahora? - + Python is required to use the search engine but it does not seem to be installed. Python es necesario para utilizar el motor de búsqueda pero no parece que esté instalado. - - + + Old Python Runtime Intérprete de Python antiguo - + A new version is available. Hay una nueva versión disponible. - + Do you want to download %1? ¿Desea descargar %1? - + Open changelog... Abrir el registro de cambios... - + No updates available. You are already using the latest version. No hay actualizaciones disponibles. Ya está utilizando la versión mas reciente. - + &Check for Updates &Buscar actualizaciones - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Tu versión de Python (%1) está desactualizada. Requisito mínimo: %2. ¿Quieres instalar una versión más reciente ahora? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Tu versión de Python (%1) está desactualizada. Actualice a la última versión para que los motores de búsqueda funcionen. Requisito mínimo: %2. - + Paused - Pausado + Pausados - + Checking for Updates... Buscando actualizaciones... - + Already checking for program updates in the background Ya se están buscando actualizaciones del programa en segundo plano - + Python installation in progress... - + Instalación de Python en curso... - + Failed to open Python installer. File: "%1". - + Error al abrir el instalador de Python. Fichero: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + La comprobació del hash MD5 dels instalador de Python falló. Fichero: "%1". Hash obtenido: "%2". Hash esperado: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + La comprobación del hash SHA3-512 del instalador de Python falló. Archivo: "%1". Hash obtenido: "%2". Hash esperado: "%3". - + Download error Error de descarga - Python setup could not be downloaded, reason: %1. -Please install it manually. - La instalación de Python no se pudo realizar, la razón: %1. -Por favor, instálelo de forma manual. - - - - + + Invalid password Contraseña no válida - + Filter torrents... Filtrar torrents... - + Filter by: Filtrar por: - + The password must be at least 3 characters long La contraseña debe tener al menos 3 caracteres - - - + + + RSS (%1) RSS (%1) - + The password is invalid La contraseña no es válida - + DL speed: %1 e.g: Download speed: 10 KiB/s Vel. descarga: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Vel. subida: %1 - + Hide Ocultar - + Exiting qBittorrent Cerrando qBittorrent - + Open Torrent Files Abrir archivos torrent - + Torrent Files Archivos torrent @@ -4557,7 +4562,7 @@ Por favor, instálelo de forma manual. SSL error, URL: "%1", errors: "%2" - + Error de SSL, URL: "%1", errores: "%2" @@ -5854,47 +5859,47 @@ Por favor, instálelo de forma manual. Net::Smtp - + Connection failed, unrecognized reply: %1 Conexión fallida, respuesta no reconocida: %1 - + Authentication failed, msg: %1 Error de autenticación, mensaje: %1 - + <mail from> was rejected by server, msg: %1 <mail from> fue rechazado por el servidor, mensaje: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> fue rechazado por el servidor, mensaje: %1 - + <data> was rejected by server, msg: %1 <data> fue rechazado por el servidor, mensaje: %1 - + Message was rejected by the server, error: %1 El mensaje fue rechazado por el servidor, error: %1 - + Both EHLO and HELO failed, msg: %1 Tanto EHLO como HELO fallaron, mensaje: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 El servidor SMTP no parece admitir ninguno de los modos de autenticación que admitimos [CRAM-MD5|PLAIN|LOGIN], omitiendo la autenticación, sabiendo que es probable que falle... Modos de autenticación del servidor: %1 - + Email Notification Error: %1 Error de notificación por correo electrónico: %1 @@ -5936,10 +5941,6 @@ Por favor, instálelo de forma manual. RSS RSS - - Web UI - Interfaz Web - Advanced @@ -5960,14 +5961,6 @@ Por favor, instálelo de forma manual. Confirm when deleting torrents Confirmar al eliminar torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Muestra un cuadro de diálogo de confirmación al pausar/reanudar todos los torrents - - - Confirm "Pause/Resume all" actions - Confirmar acciones de "Pausar/Reanudar todo" - Use alternating row colors @@ -5984,10 +5977,6 @@ Por favor, instálelo de forma manual. Always Siempre - - Paused torrents only - Solo torrents pausados - Action on double-click @@ -5998,10 +5987,6 @@ Por favor, instálelo de forma manual. Downloading torrents: Torrents descargando: - - Start / Stop Torrent - Iniciar / Parar torrent - @@ -6060,179 +6045,179 @@ Por favor, instálelo de forma manual. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Diseño de contenido de torrent: - + Original Original - + Create subfolder Crear subcarpeta - + Don't create subfolder No crear subcarpeta - + The torrent will be added to the top of the download queue El torrent se añadirá al principio de la cola de descarga. - + Add to top of queue The torrent will be added to the top of the download queue Añadir al principio de la cola - + When duplicate torrent is being added Cuando se añade un torrent duplicado - + Merge trackers to existing torrent Fusionar rastreadores a un torrent existente - + Keep unselected files in ".unwanted" folder Mantén los archivos no seleccionados en la carpeta ".unwanted" - + Add... Añadir... - + Options.. Opciones.. - + Remove Eliminar - + Email notification &upon download completion Notificarme por correo electrónico de la finalización de las descargas - + Send test email - + Enviar correo electrónico de prueba - + Run on torrent added: - + Añadida ejecución en torrent: - + Run on torrent finished: - + Finalizada ejecución en torrent: - + Peer connection protocol: Protocolo de conexión entre pares: - + Any Ninguno - + I2P (experimental) I2P (experimental) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>si &quot;modo mixto&quot; está activado se permite a los torrents I2P buscar pares de otras fuentes que el tracker, y conectar a direcciones IP corrientes, sin aportar ninguna anonimización. Esto puede ser útil si el usuario no está interesado en la anonimización deI2P, pero todavía quiere poder conectar a pares I2P</p></body></html> - - - + Mixed mode Modo mixto - Some options are incompatible with the chosen proxy type! - ¡Algunas opciones son incompatibles con el tipo de proxy elegido! + ¡Algunas opciones son incompatibles con el tipo de proxy elegido! - + If checked, hostname lookups are done via the proxy Si se verifica, las búsquedas del nombre de host se realizan a través del proxy. - + Perform hostname lookup via proxy Realizar búsqueda de hots via proxy - + Use proxy for BitTorrent purposes Usar proxy para propósitos de BitTorrent - + RSS feeds will use proxy Las fuentes RSS usarán proxy - + Use proxy for RSS purposes Usar proxy para propósitos de RSS - + Search engine, software updates or anything else will use proxy El motor de búsqueda, las actualizaciones de software o cualquier otra cosa usarán proxy - + Use proxy for general purposes Usar proxy para propósitos generales - + IP Fi&ltering Filtrado IP - + Schedule &the use of alternative rate limits Programar el uso de límites alternativos - + From: From start time De: - + To: To end time Para: - + Find peers on the DHT network Buscar pares en la red DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6241,188 +6226,190 @@ Requerir encriptación: Solo conectar a pares con encriptación de protocolo Deshabilitar encriptación: Solo conectar a pares sin encriptación de protocolo - + Allow encryption Permitir el cifrado - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Más información</a>) - + Maximum active checking torrents: Máximo de torrents de comprobación activos: - + &Torrent Queueing Torrents en cola - + When total seeding time reaches Cuando el tiempo total de siembra alcance - + When inactive seeding time reaches Cuando el tiempo de siembra inactiva alcanza - A&utomatically add these trackers to new downloads: - Agregar automáticamente estos trackers a las descargas: - - - + RSS Reader Lector RSS - + Enable fetching RSS feeds Habilitar búsqueda por canales RSS - + Feeds refresh interval: Intervalo de actualización de canales RSS: - + Same host request delay: Retraso en la solicitud del mismo host: - + Maximum number of articles per feed: Número máximo de artículos por canal: - - - + + + min minutes min - + Seeding Limits Límites de siembra - Pause torrent - Pausar torrent - - - + Remove torrent Eliminar torrent - + Remove torrent and its files Eliminar el torrent y sus archivos - + Enable super seeding for torrent Habilitar la super-siembra para el torrent - + When ratio reaches Cuando se alcance la ratio - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Parar torrents - + A&utomatically append these trackers to new downloads: - + Añade a&utomáticamente estos rastreadores a las nuevas descargas: - + Automatically append trackers from URL to new downloads: - + Añadir automáticamente rastreadores desde la URL a las nuevas descargas: - + URL: - URL: + URL: - + Fetched trackers - + Rastreadores obtenidos - + Search UI - + Interfaz de búsqueda - + Store opened tabs - + Guardar pestañas abiertas - + Also store search results - + También almacena los resultados de la búsqueda - + History length - + Longitud del historial - + RSS Torrent Auto Downloader Descargador RSS - + Enable auto downloading of RSS torrents Habilitar auto descarga de torrents RSS - + Edit auto downloading rules... Editar reglas de auto descarga... - + RSS Smart Episode Filter Filtro Inteligente de Episodios por RSS - + Download REPACK/PROPER episodes Descargar episodios REPACK/PROPER - + Filters: Filtros: - + Web User Interface (Remote control) interfaz Web (Control remoto) - + IP address: Direcciones IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6433,41 +6420,37 @@ Especifique una dirección IPv4 o IPv6. "*" para cualquier dirección IPv4 O IPv6 - + Ban client after consecutive failures: Vetar cliente después de consecutivos intentos fallidos: - + Never Nunca - + ban for: vetar por: - + Session timeout: Límite de tiempo de la sesión: - + Disabled Deshabilitado - Enable cookie Secure flag (requires HTTPS) - Habilitar la marca de cookie Segura (requiere HTTPS) - - - + Server domains: Dominios de servidor: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6480,37 +6463,37 @@ no debería utilizar nombres de dominio utilizados por el servidor de la interfa Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. - + &Use HTTPS instead of HTTP &Usar HTTPS en lugar de HTTP - + Bypass authentication for clients on localhost Eludir la autenticación para clientes en localhost - + Bypass authentication for clients in whitelisted IP subnets Eludir la autenticación para clientes en la lista blanca de subredes IP - + IP subnet whitelist... Lista blanca de subredes IP... - + Use alternative WebUI - + Usar la interfaz Web alternativa - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Especifique IP de proxy inverso (o subredes, por ejemplo, 0.0.0.0/24) para usar la dirección de cliente reenviada (encabezado X-Reenviado-para encabezado). Usar ';' para dividir varias entradas. - + Upda&te my dynamic domain name Actualizar mi nombre de dominio dinámico @@ -6522,12 +6505,12 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' Search - Buscar + Buscar WebUI - + Interfaz de usuario de la Web @@ -6542,29 +6525,29 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' Style: - + Estilo: Color scheme: - + Esquema de colores: Stopped torrents only - + Solo torrents detenidos Start / stop torrent - + Iniciar / Parar torrent Open torrent options dialog - + Abrir el diálogo de opciones de torrent @@ -6605,7 +6588,7 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' &Log Files - + &Archivos de registro @@ -6623,99 +6606,99 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' Eliminar logs de más antiguos que: - + Show external IP in status bar - + Mostrar IP externa en la barra de estado - + When adding a torrent Al agregar un torrent - + Bring torrent dialog to the front Traer el diálogo del torrent al frente - + The torrent will be added to download list in a stopped state - + El torrent se añadirá a la lista de descargas en estado detenido. - + Also delete .torrent files whose addition was cancelled También eliminar archivos .torrent si su agregado fue cancelado. - + Also when addition is cancelled También cuando su agregado es cancelado. - + Warning! Data loss possible! ¡Peligro! Perdida de datos posible. - + Saving Management Administración de guardado - + Default Torrent Management Mode: Administración de Torrents predeterminada: - + Manual Manual - + Automatic Automático - + When Torrent Category changed: Cuando cambia la categoría del torrent: - + Relocate torrent Reubicar torrent - + Switch torrent to Manual Mode Cambiar torrent a modo manual - - + + Relocate affected torrents Reubicar los torrents afectados - - + + Switch affected torrents to Manual Mode Cambiar los torrents afectados a modo manual - + Use Subcategories Usar subcategorias: - + Default Save Path: Ubicación de guardado predeterminada: - + Copy .torrent files to: Copiar archivos .torrent en: @@ -6725,26 +6708,22 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' Mostrar &qBittorrent en el área de notificación - &Log file - Archivo de &logs - - - + Display &torrent content and some options Mostrar el contenido del Torrent y opciones - + De&lete .torrent files afterwards Después eliminar el archivo .torrent - + Copy .torrent files for finished downloads to: Copiar archivos .torrent de descargas finalizadas a: - + Pre-allocate disk space for all files Pre-asignar espacio en el disco para todos los archivos @@ -6774,10 +6753,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' Preview file, otherwise open destination folder Previsualizar el archivo, sino, abrir la carpeta de destino - - Show torrent options - Mostrar opciones de torrent - Shows a confirmation dialog when exiting with active torrents @@ -6843,69 +6818,65 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin ' años - + Log performance warnings Registrar advertencias de rendimiento - The torrent will be added to download list in a paused state - El torrent será añadido a la lista de descarga en estado pausado - - - + Do not start the download automatically The torrent will be added to download list in a stopped state No comenzar la descarga automáticamente - + Whether the .torrent file should be deleted after adding it Si el archivo .torrent debe eliminarse después de añadirlo - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Reservar espacio para ficheros de tamaño completo en disco antes de iniciar la descarga, para minimizar la fragmentación. Solo útil en discos duros. - + Append .!qB extension to incomplete files Agregar la extensión .!qB a los archivos incompletos - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Cuando se descarga un torrent, permite agregar torrents de cualquier archivo .torrent que se encuentra dentro de él - + Enable recursive download dialog Activar la ventana de confirmación de descargas recursivas - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automático: Diversas características del torrent (p.e. ruta de guardado) se decidirán por la categoría asociada Manual: Diversas características del torrent (p.e. ruta de guardado) deben ser asignadas manualmente - + When Default Save/Incomplete Path changed: Cuando cambió la ruta guardada/incompleta predeterminada: - + When Category Save Path changed: Cuando cambia la ruta de destino de la categoría: - + Use Category paths in Manual Mode Usar directorios de Categoría en Modo Manual - + Resolve relative Save Path against appropriate Category path instead of Default one Resolver la ruta de ubicación relativa contra la ruta de categoría apropiada en lugar de la predeterminada. @@ -6925,50 +6896,50 @@ Manual: Diversas características del torrent (p.e. ruta de guardado) deben ser Estado de la ventana de qBittorrent al iniciar - + Torrent stop condition: Condición de parada del Torrent: - - + + None Ninguno - - + + Metadata received Metadatos recibidos - - + + Files checked Archivos verificados - + Ask for merging trackers when torrent is being added manually Solicitar la fusión de rastreadores cuando el torrent se añade manualmente - + Use another path for incomplete torrents: Use otra ruta para torrents incompletos: - + Automatically add torrents from: Agregar automáticamente los torrents de: - + Excluded file names Nombres de archivos excluidos - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6997,523 +6968,510 @@ readme.txt: filtra el nombre exacto del archivo. readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no 'readme10.txt'. - + Receiver Destinatario - + To: To receiver Para: - + SMTP server: Servidor SMTP: - + Sender Remitente - + From: From sender De: - + This server requires a secure connection (SSL) El servidor requiere una conexión segura (SSL) - - + + Authentication Autenticación - - - - + + + + Username: Nombre de usuario: - - - - + + + + Password: Contraseña: - + Run external program Ejecutar programa externo - Run on torrent added - Seguir ejecutando torrent añadido - - - Run on torrent finished - Seguir ejecutando torrent finalizado - - - + Show console window Mostrar ventana de la consola - + TCP and μTP TCP y μTP - + Listening Port Puerto de escucha - + Port used for incoming connections: Puerto utilizado para conexiones entrantes: - + Set to 0 to let your system pick an unused port Establezca el valor 0 para permitir que el sistema utilice un puerto sin usar. - + Random Aleatorio - + Use UPnP / NAT-PMP port forwarding from my router Usar reenvío de puertos UPnP / NAT-PMP de mi router - + Connections Limits Límites de conexión - + Maximum number of connections per torrent: Máximo de conexiones por torrent: - + Global maximum number of connections: Máximo de conexiones totales: - + Maximum number of upload slots per torrent: Máximo de puestos de subida por torrent: - + Global maximum number of upload slots: Máximo total de puestos de subida: - + Proxy Server Servidor proxy - + Type: Tipo: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Puerto: - + Otherwise, the proxy server is only used for tracker connections Sino, el servidor proxy se utilizará solamente para las conexiones al tracker - + Use proxy for peer connections Usar proxy para las conexiones a los pares - + A&uthentication Autenticación - Info: The password is saved unencrypted - Info: La contraseña se guarda sin cifrar + Info: La contraseña se guarda sin cifrar - + Filter path (.dat, .p2p, .p2b): Ruta del filtro (.dat, .p2p, .p2b): - + Reload the filter Actualizar el filtro - + Manually banned IP addresses... Direcciones IP prohibidas manualmente... - + Apply to trackers Aplicar a los trackers - + Global Rate Limits Limites globales de velocidad - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Subida: - - + + Download: Bajada: - + Alternative Rate Limits Límites de velocidad alternativos - + Start time Hora de inicio - + End time Hora de finalización - + When: Cuándo: - + Every day Todos los días - + Weekdays Días laborales - + Weekends Fines de semana - + Rate Limits Settings Configuración de los limites - + Apply rate limit to peers on LAN Aplicar el límite a los pares en LAN - + Apply rate limit to transport overhead Aplicar límite para el exceso de transporte (Overhead) - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Si el "modo mixto" está habilitado, los torrents I2P también pueden obtener pares de otras fuentes además del rastreador y conectarse a IP regulares, sin proporcionar anonimización. Esto puede ser útil si el usuario no está interesado en la anonimización de I2P, pero sí quiere poder conectarse a pares I2P.</p></body></html> - + Apply rate limit to µTP protocol Aplicar límite para conexiones µTP - + Privacy Privacidad - + Enable DHT (decentralized network) to find more peers Activar DHT (red descentralizada) para encontrar más pares - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Intercambiar pares con clientes Bittorrent compatibles (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Habilitar intercambio de pares (PeX) para encontrar más pares - + Look for peers on your local network Buscar pares en su red local - + Enable Local Peer Discovery to find more peers Habilitar busqueda local de pares para encontrar más pares - + Encryption mode: Modo de cifrado: - + Require encryption Exigir cifrado - + Disable encryption Deshabilitar cifrado - + Enable when using a proxy or a VPN connection Habilitar cuando se use un proxy o un VPN - + Enable anonymous mode Activar modo anónimo - + Maximum active downloads: Máximo de descargas activas: - + Maximum active uploads: Máximo de subidas activas: - + Maximum active torrents: Máximo de torrents activos: - + Do not count slow torrents in these limits No contar torrents lentos en estos límites - + Upload rate threshold: Umbral de vel. de subida: - + Download rate threshold: Umbral de vel. de descarga: - - - - + + + + sec seconds seg - + Torrent inactivity timer: Temporizador de inactividad de Torrent: - + then luego - + Use UPnP / NAT-PMP to forward the port from my router Usar UPnP / NAT-PMP para redirigir el puerto de mi router - + Certificate: Certificado: - + Key: Clave: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Información acerca de los certificados</a> - + Change current password Cambiar contraseña actual - Use alternative Web UI - Usar la interfaz Web alternativa - - - + Files location: Ubicación de archivos: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Lista de interfaces web alternativas</a> - + Security Seguridad - + Enable clickjacking protection Activar protección de clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Activar protección CSRF (Cross-site Request Forgery) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Habilitar la bandera segura de cookies (requiere conexión HTTPS o localhost) - + Enable Host header validation Habilitar la validación de encabezado del Host - + Add custom HTTP headers Añadir cabeceras HTTP personalizadas - + Header: value pairs, one per line Cabecera: pares de valores, uno por línea - + Enable reverse proxy support Habilitar el soporte de proxy inverso - + Trusted proxies list: Lista de proxies de confianza: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Ejemplos de configuración de proxy inverso</a> - + Service: Servicio: - + Register Registro - + Domain name: Nombre de dominio: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Al activar estas opciones, puedes <strong>perder permanentemente</strong> tus archivos .torrent - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Si habilitas la segunda opción (&ldquo;También cuando la agregado es cancelado&rdquo;) el archivo .torrent <strong> será borrado </strong> incluso si elijes &ldquo;<strong>Cancelar</strong>&rdquo; en la ventana de &ldquo;Agregar torrent&rdquo; @@ -7523,12 +7481,12 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Seleccionar archivo de Tema UI de qBittorrent - + Choose Alternative UI files location Elegir ubicación de archivos de la Interfaz de Usuario alternativa - + Supported parameters (case sensitive): Parámetros soportados (sensible a mayúsculas): @@ -7548,183 +7506,183 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Desactivado debido a que no se pudo detectar la presencia de la bandeja del sistema - + No stop condition is set. No se establece una condición de parada. - + Torrent will stop after metadata is received. El torrent se detendrá después de que se reciban metadatos. - + Torrent will stop after files are initially checked. El torrent se detendrá después de que los archivos se verifiquen inicialmente. - + This will also download metadata if it wasn't there initially. Esto también descargará metadatos si no estaba allí inicialmente. - + %N: Torrent name %N: Nombre del torrent - + %L: Category %L: Categoría - + %F: Content path (same as root path for multifile torrent) %F: Ruta del contenido (misma ruta que la raíz para torrents muilti-archivo) - + %R: Root path (first torrent subdirectory path) %R: Ruta Raíz (primer subdirectorio del torrent) - + %D: Save path %D: Ruta de destino - + %C: Number of files %C: Cantidad de archivos - + %Z: Torrent size (bytes) %Z: Tamaño del torrent (bytes) - + %T: Current tracker %T: Tracker actual - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Consejo: Encapsula el parámetro con comillas para evitar que el texto sea cortado en un espacio (ej: "%N") - + Test email - + Correo electrónico de prueba - + Attempted to send email. Check your inbox to confirm success - + Se intentó enviar un correo electrónico. Revisa tu bandeja de entrada para confirmar el éxito - + (None) (Ninguno) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Un torrent se considerará lento si la velocidad de descarga y subida se mantienen debajo de estos valores por el tiempo indicado en el "Temporizador de inactividad de Torrent" - + Certificate Certificado - + Select certificate Seleccionar certificado - + Private key Llave privada - + Select private key Seleccionar llave privada - + WebUI configuration failed. Reason: %1 La configuración de WebUI falló. Motivo: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + Se recomienda %1 para una mejor compatibilidad con el modo oscuro de Windows - + System System default Qt style - + Systema - + Let Qt decide the style for this system - + Deje que Qt decida el estilo para este sistema - + Dark Dark color scheme - + Oscuro - + Light Light color scheme - + Claro - + System System color scheme - + Systema - + Select folder to monitor Seleccione una carpeta para monitorear - + Adding entry failed Fallo al agregar entrada - + The WebUI username must be at least 3 characters long. El nombre de usuario de WebUI debe tener al menos 3 caracteres. - + The WebUI password must be at least 6 characters long. La contraseña de WebUI debe tener al menos 6 caracteres. - + Location Error Error de ubicación - - + + Choose export directory Selecciona una ruta de exportación - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Cuando estas opciones están habilitadas, qBittorrent <strong>eliminará</strong> los archivos .torrent después de que se hayan agregado con éxito (la primera opción) o no (la segunda opción) a su cola de descarga. Esto se aplicará <strong>no solo</strong> a los archivos abiertos mediante &ldquo; Agregar torrent&rdquo;; acción del menú, pero también a los que se abren mediante la <strong>asociación de tipo de archivo</strong> @@ -7734,69 +7692,69 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Archivo de tema de la interfaz de usuario de qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Tags (separados por coma) - + %I: Info hash v1 (or '-' if unavailable) %I: Hash de información v1 (o '-' si no está disponible) - + %J: Info hash v2 (or '-' if unavailable) %J: Hash de información v2 (o '-' si no está disponible) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ID de torrent (ya sea hash de información sha-1 para torrent v1 o hash de información sha-256 truncado para torrent v2/híbrido) - - + + Choose a save directory Seleccione una ruta para guardar - + Torrents that have metadata initially will be added as stopped. Los torrents que inicialmente tengan metadatos se añadirán como detenidos. - + Choose an IP filter file Seleccione un archivo de filtro IP - + All supported filters Todos los filtros soportados - + The alternative WebUI files location cannot be blank. La ubicación alternativa de los archivos WebUI no puede estar en blanco. - + Parsing error Error de análisis - + Failed to parse the provided IP filter No se ha podido analizar el filtro IP proporcionado - + Successfully refreshed Actualizado correctamente - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Filtro IP analizado correctamente: %1 reglas fueron aplicadas. @@ -7807,18 +7765,18 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Preferencias - + Time Error Error de tiempo - + The start time and the end time can't be the same. Los tiempos de inicio y finalización no pueden ser iguales. - - + + Length Error Error de longitud @@ -7903,169 +7861,169 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Peer is using NAT hole punching - + El par está usando la perforación de agujeros NAT PeerListWidget - + Country/Region País/Región - + IP/Address IP/Dirección - + Port Puerto - + Flags Banderas - + Connection Conexión - + Client i.e.: Client application Cliente - + Peer ID Client i.e.: Client resolved from Peer ID Cliente de identificación de pares - + Progress i.e: % downloaded Progreso - + Down Speed i.e: Download speed Vel. Descarga - + Up Speed i.e: Upload speed Vel. Subida - + Downloaded i.e: total data downloaded Descargado - + Uploaded i.e: total data uploaded Subido - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Importancia - + Files i.e. files that are being downloaded right now Archivos - + Column visibility Visibilidad de columnas - + Resize columns Redimensionar columnas - + Resize all non-hidden columns to the size of their contents Reajustar el tamaño de todas las columnas no ocultas al tamaño de sus contenidos. - + Add peers... Añadir pares - - + + Adding peers Agregando pares - + Some peers cannot be added. Check the Log for details. Algunos pares no pudieron ser añadidos. Revisa el registro para más detalles. - + Peers are added to this torrent. Los pares se añaden a este torrent. - - + + Ban peer permanently Prohibir este par permanentemente - + Cannot add peers to a private torrent No se pueden añadir pares a un torrent privado - + Cannot add peers when the torrent is checking No se pueden añadir pares cuando el torrent está comprobando - + Cannot add peers when the torrent is queued No se pueden añadir pares cuando el torrent está en cola - + No peer was selected No se ha seleccionado ningún par - + Are you sure you want to permanently ban the selected peers? ¿Estás seguro de que deseas vetar permanentemente a los pares seleccionados? - + Peer "%1" is manually banned El par "%1" está vetado manualmente - + N/A N/A - + Copy IP:port Copiar IP:puerto @@ -8345,34 +8303,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent está activo + qBittorrent está activo PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - El administrador de Energía encontró una interfaz D-Bus adecuada. Interfaz: %1 + El administrador de Energía encontró una interfaz D-Bus adecuada. Interfaz: %1 - Power management error. Did not found suitable D-Bus interface. - Error de administración de energía. No se encontró la interfaz D-Bus adecuada. + Error de administración de energía. No se encontró la interfaz D-Bus adecuada. - - - Power management error. Action: %1. Error: %2 - Error de administración de energía. Acción: %1. Error: %2 + Error de administración de energía. Acción: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 - Error inesperado en la administración de energía. Estado: %1. Error: %2 + Error inesperado en la administración de energía. Estado: %1. Error: %2 @@ -8616,12 +8567,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio/Tiempo Activo (en meses), indica qué tan popular es el torrent Popularity: - + Popularidad: @@ -8656,7 +8607,7 @@ Those plugins were disabled. Private: - + Privado: @@ -8664,153 +8615,124 @@ Those plugins were disabled. Ruta de destino: - + Never Nunca - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (tienes %3) - - + + %1 (%2 this session) %1 (%2 en esta sesión) - - + + N/A N/A - + Yes - + Si - + No - No + No - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (sembrado durante %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 máx) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 prom.) - + Add web seed Add HTTP source - + Añadir semilla web - + Add web seed: - + Añadir semilla web: - - + + This web seed is already in the list. - + Esta semilla web ya está en la lista. - New Web seed - Nueva semilla Web - - - Remove Web seed - Eliminar semilla Web - - - Copy Web seed URL - Copiar URL de la semilla Web - - - Edit Web seed URL - Editar URL de la semilla Web - - - + Filter files... Filtrar archivos... - + Add web seed... - + Añadir semilla web... - + Remove web seed - + Eliminar semilla Web - + Copy web seed URL - + Copiar URL de la semilla Web - + Edit web seed URL... - + Editar URL de la semilla Web - + Speed graphs are disabled Los gráficos de velocidad están desactivados - + You can enable it in Advanced Options Puede habilitarlo en Opciones Avanzadas - New URL seed - New HTTP source - Nueva semilla URL - - - New URL seed: - Nueva semilla URL: - - - This URL seed is already in the list. - Esta semilla URL ya está en la lista. - - - + Web seed editing Editando semilla Web - + Web seed URL: URL de la semilla Web: @@ -8818,33 +8740,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Formato de datos inválido. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 No se guardaron las reglas del descargador RSS en %1. Error: %2 - + Invalid data format Formato de datos inválido. - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... El artículo RSS '%1' es aceptado por la regla '%2'. Intentando añadir torrent... - + Failed to read RSS AutoDownloader rules. %1 Error al leer las reglas RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 No se cargaron las reglas del descargador RSS Razón: %1 @@ -8852,22 +8774,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 No se pudo descargar el feed RSS: '%1', razón: %2. - + RSS feed at '%1' updated. Added %2 new articles. Actualizado Feed RSS en '%1'. Agregados %2 nuevos artículos. - + Failed to parse RSS feed at '%1'. Reason: %2 No se pudo analizar el feed RSS: '%1', razón: %2. - + RSS feed at '%1' is successfully downloaded. Starting to parse it. El RSS feed en '%1' se ha descargado correctamente. Se ha comenzando a analizarlo. @@ -8916,12 +8838,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" No se pudo guardar la configuración de la sesión RSS. Archivo: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" No se pudo guardar los datos de la sesión RSS. Archivo: "%1". Error: "%2" @@ -8943,76 +8865,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. El item no existe: %1. - Couldn't move folder into itself. - No se pudo mover la carpeta a sí misma. + No se pudo mover la carpeta a sí misma. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. No se puede eliminar la carpeta raíz. - + Failed to read RSS session data. %1 Error al leer los datos de la sesión RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Error al analizar los datos de la sesión RSS. Archivo: "%1". Error: "%2": "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Error al cargar los datos de la sesión RSS. Archivo: "%1". Error: "Formato de datos no válido". - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. No se pudo cargar la fuente RSS. Fuente: "%1". Motivo: se requiere la URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. No se pudo cargar la fuente RSS. Fuente: "%1". Motivo: el UID no es válido. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Se encontró una fuente RSS duplicada. UID: "%1". Error: la configuración parece estar dañada. - + Couldn't load RSS item. Item: "%1". Invalid data format. No se pudo cargar el elemento RSS. Elemento: "%1". Formato de datos inválido. - + Corrupted RSS list, not loading it. Lista de RSS corrupta, no cargarla. - + Incorrect RSS Item path: %1. Elemento RSS incorrecto Ruta : %1. - + RSS item with given path already exists: %1. El canal RSS con la ruta dada ya existe: %1. - + Parent folder doesn't exist: %1. La carpeta no existe: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + El feed no existe %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + seg + + + + Default + Por defecto + + RSSWidget @@ -9112,78 +9079,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Guardar URL de feed... + Guardar URL de feed... - Edit feed URL - Editar URL de feed + Editar URL de feed - + Please choose a folder name Por favor elija un nombre para la carpeta - + Folder name: Nombre de la carpeta: - + New folder Nueva carpeta - - Please type a RSS feed URL - Por favor escribe una URL de un Canal RSS + Por favor escribe una URL de un Canal RSS - - Feed URL: - URL del canal: + URL del canal: - + Deletion confirmation Confirmar eliminación - + Are you sure you want to delete the selected RSS feeds? ¿Esta seguro que desea eliminar los canales RSS seleccionados? - + Please choose a new name for this RSS feed Por favor, elija un nuevo nombre para el canal RSS - + New feed name: Nombre del nuevo canal: - + Rename failed Renombrado fallido - + Date: Fecha: - + Feed: Semillas: - + Author: Autor: @@ -9320,10 +9286,6 @@ Those plugins were disabled. i.e: Number of partial sources Pares - - Search engine - Motor de búsqueda - Filter search results... @@ -9413,17 +9375,17 @@ Those plugins were disabled. Engine - + Motor Engine URL - + URL del motor Published On - + Publicado el @@ -9444,104 +9406,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Formato de plugin de motor de búsqueda desconocido. - + Plugin already at version %1, which is greater than %2 La versión del plugin %1, ya es mayor que %2 - + A more recent version of this plugin is already installed. Una versión más reciente del plugin ya está instalada. - + Plugin %1 is not supported. Plugin %1 no soportado. - - + + Plugin is not supported. Plugin no soportado. - + Plugin %1 has been successfully updated. Plugin %1 actualizado exitosamente. - + All categories Todas - + Movies Películas - + TV shows Programas de TV - + Music Música - + Games Juegos - + Anime Anime - + Software Software - + Pictures Imágenes - + Books Libros - + Update server is temporarily unavailable. %1 El servidor de actualizaciones no está disponible temporalmente. %1 - - + + Failed to download the plugin file. %1 Error al descargar el plugin. %1 - + Plugin "%1" is outdated, updating to version %2 El plugin %1 se está actualizando a la versión %2 - + Incorrect update info received for %1 out of %2 plugins. La información de actualización recibida es incorrecta para %1 de %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') El plugin de búsqueda '%1' contiene una cadena de versión invalida ('%2') @@ -9567,137 +9529,129 @@ Presione el boton "Plugins de búsqueda..." ubicado abajo a la derecha Plugins de búsqueda... - + A phrase to search for. Una frase a buscar. - + Spaces in a search term may be protected by double quotes. Los espacios de una búsqueda pueden ser protegidos por comillas dobles. - + Example: Search phrase example Ejemplo: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: buscar <b>foo bar</b> - + All plugins Todos los motores - + Only enabled Solo habilitados - - + + Invalid data format. - Formato de datos inválido. + Formato de datos inválido. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: buscar por<b>foo</b> y <b>bar</b> - + Refresh - + Refrescar - + Close tab Cerrar pestaña - + Close all tabs Cerrar todas las pestañas - + Select... Seleccionar... - - + + Search Engine Motor de búsqueda - - + + Please install Python to use the Search Engine. Por favor, instala Python para usar el motor de búsqueda. - + Empty search pattern Patrón de búsqueda vacío - + Please type a search pattern first Por favor, escriba un patrón de búsqueda primero - + Stop Detener - - Search has finished - La búsqueda ha terminado - - - Search has failed - La búsqueda ha fallado - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Fallo al cargar los datos de estado guardados de la IU de búsqueda. Archivo: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Fallo al cargar los resultados de búsqueda guardados. Pestaña: "%1". Archivo: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Fallo al guardar el estado de la interfaz de usuario de búsqueda. Archivo: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Fallo al guardar los resultados de la búsqueda. Pestaña: "%1". Archivo: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Fallo al cargar el historial de la interfaz de búsqueda. Archivo: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Fallo al guardar el historial de búsqueda. Archivo: "%1". Error: "%2" @@ -10093,67 +10047,77 @@ Presione el boton "Plugins de búsqueda..." ubicado abajo a la derecha StatusBar - + Connection status: Estado de la conexión: - - + + No direct connections. This may indicate network configuration problems. No hay conexiones directas. Esto puede indicar problemas en la configuración de red. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + IP externa: N/A + + + + DHT: %1 nodes DHT: %1 nodos - + qBittorrent needs to be restarted! Es necesario reiniciar qBittorrent - - + + Connection Status: Estado de la conexión: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Fuera de línea. Esto normalmente significa que qBittorrent no puede escuchar el puerto seleccionado para las conexiones entrantes. - + Online En línea - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + IPs externas: %1, %2 + + + + External IP: %1%2 + IP externa: %1%2 + + + Click to switch to alternative speed limits Click para cambiar a los límites de velocidad alternativos - + Click to switch to regular speed limits Click para cambiar a los límites de velocidad normales @@ -10181,23 +10145,15 @@ Presione el boton "Plugins de búsqueda..." ubicado abajo a la derecha Completed (0) Completados (0) - - Resumed (0) - Reanudados (0) - - - Paused (0) - Pausados (0) - Running (0) - + En ejecución (0) Stopped (0) - + Detenido (0) @@ -10262,49 +10218,33 @@ Presione el boton "Plugins de búsqueda..." ubicado abajo a la derecha Running (%1) - + En ejecución (%1) Stopped (%1) - + Detenido (%1) Start torrents - + Iniciar torrents Stop torrents - - - - Paused (%1) - Pausados (%1) + Parar torrents Moving (%1) Moviendo (%1) - - Resume torrents - Reanudar torrents - - - Pause torrents - Pausar torrents - Remove torrents Eliminar torrents - - Resumed (%1) - Continuados (%1) - Active (%1) @@ -10376,32 +10316,20 @@ Presione el boton "Plugins de búsqueda..." ubicado abajo a la derecha Remove unused tags Eliminar etiquetas sin usar - - Resume torrents - Reanudar torrents - - - Pause torrents - Pausar torrents - Remove torrents Eliminar torrents - - New Tag - Nueva etiqueta - Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -10411,7 +10339,7 @@ Presione el boton "Plugins de búsqueda..." ubicado abajo a la derecha Add tag - + Añadir etiqueta @@ -10728,17 +10656,17 @@ Por favor, elija otro nombre. TorrentCreatorController - + Too many active tasks Demasiadas tareas activas - + Torrent creation is still unfinished. La creación del torrent aún está sin acabar. - + Torrent creation failed. La creación del torrent falló. @@ -10990,17 +10918,6 @@ Por favor, elija otro nombre. Carpeta de visualización: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Fallo al asignar memoria al leer archivo. Archivo: "%1". Error: "%2" - - - Invalid metadata - Metadatos inválidos - - TorrentOptionsDialog @@ -11036,11 +10953,7 @@ Por favor, elija otro nombre. Torrent Share Limits - - - - Torrent speed limits - Límites de velocidad del torrent + Límites para compartir torrent @@ -11056,7 +10969,7 @@ Por favor, elija otro nombre. Torrent Speed Limits - + Límites de velocidad de torrent @@ -11074,34 +10987,6 @@ Por favor, elija otro nombre. Upload: Subida: - - Torrent share limits - Límites de uso compartido de torrents - - - Use global share limit - Usar límite de participación global - - - Set no share limit - No establecer límite de participación - - - Set share limit to - Establecer límite de participación en - - - ratio - tasa - - - total minutes - minutos totales - - - inactive minutes - minutos inactivos - Disable DHT for this torrent @@ -11143,14 +11028,6 @@ Por favor, elija otro nombre. Not applicable to private torrents No aplicable a torrents privados - - No share limit method selected - No se seleccionó ningún método de límite de participación - - - Please select a limit method first - Primero seleccione un método de límite - TorrentShareLimitsWidget @@ -11200,27 +11077,27 @@ Por favor, elija otro nombre. Action when the limit is reached: - + Acción cuando se alcanza el límite: Stop torrent - + Parar torrents Remove torrent - Eliminar torrent + Eliminar torrent Remove torrent and its content - + Eliminar el torrent y su contenido Enable super seeding for torrent - Habilitar la super-siembra para el torrent + Habilitar la super-siembra para el torrent @@ -11235,14 +11112,10 @@ Por favor, elija otro nombre. Torrent Tags Etiquetas de torrent - - New Tag - Nueva etiqueta - Add tag - + Añadir etiqueta @@ -11273,90 +11146,90 @@ Por favor, elija otro nombre. TorrentsController - + Error: '%1' is not a valid torrent file. Error: '%1' no es un archivo torrent valido. - + Priority must be an integer La prioridad debe ser un entero - + Priority is not valid La prioridad no es válida - + Torrent's metadata has not yet downloaded Aún no se han descargado los metadatos del torrent - + File IDs must be integers El ID del archivo debe ser enteros - + File ID is not valid El ID del archivo no es válido - - - - + + + + Torrent queueing must be enabled Debe activar la cola de torrents - - + + Save path cannot be empty La ruta de destino no puede estar vacía - - + + Cannot create target directory No se puede crear el directorio de destino - - + + Category cannot be empty La categoría no puede estar vacía - + Unable to create category No se pudo crear la categoría - + Unable to edit category No se pudo editar la categoría - + Unable to export torrent file. Error: %1 No se puede exportar el archivo torrent. Error: %1 - + Cannot make save path No se puede crear la ruta de destino "%1" is not a valid URL - + "%1" no es una URL valida URL scheme must be one of [%1] - + El esquema de URL debe ser uno de [%1] @@ -11364,39 +11237,39 @@ Por favor, elija otro nombre. El parámetro 'sort' no es válido - + "%1" is not an existing URL - + "%1" no es una URL existente - + "%1" is not a valid file index. "%1" no es un índice de archivo válido. - + Index %1 is out of bounds. El índice %1 está fuera de los límites. - - + + Cannot write to directory No se puede escribir en el directorio - + WebUI Set location: moving "%1", from "%2" to "%3" Establecer ubicación: moviendo "%1", de "%2" a "%3" - + Incorrect torrent name Nombre del torrent incorrecto - - + + Incorrect category name Nombre de la categoría incorrecto @@ -11479,45 +11352,33 @@ Por favor, elija otro nombre. Invalid state! - + ¡Estado inválido! URL/Announce Endpoint - + URL/Punto final de anuncio BT Protocol - + Protocolo BT Next Announce - + Siguiente anuncio Min Announce - - - - Invalid status! - ¡Estado inválido! - - - URL/Announce endpoint - URL/Anunciar punto final + Anuncio mínimo Tier Nivel - - Protocol - Protocolo - Status @@ -11548,18 +11409,6 @@ Por favor, elija otro nombre. Message Mensaje - - Next announce - Siguiente anuncio - - - Min announce - Anuncio mínimo - - - v%1 - v%1 - TrackerListWidget @@ -11569,73 +11418,73 @@ Por favor, elija otro nombre. Este torrent es privado - + Tracker editing Editando tracker - + Tracker URL: URL del tracker: - - + + Tracker editing failed Falló la edición del tracker - + The tracker URL entered is invalid. La URL del tracker es inválida. - + The tracker URL already exists. La URL del tracker ya existe. - + Edit tracker URL... Editar URL del tracker... - + Remove tracker Eliminar tracker - + Copy tracker URL Copiar URL del tracker - + Force reannounce to selected trackers Forzar recomunicación con los trackers seleccionados - + Force reannounce to all trackers Forzar recomunicación con todos los trackers - + Resize columns Redimensionar columnas - + Resize all non-hidden columns to the size of their contents Reajustar el tamaño de todas las columnas no ocultas al tamaño de sus contenidos. - + Add trackers... Añadir trackers... - + Column visibility Visibilidad de columnas @@ -11718,20 +11567,12 @@ Por favor, elija otro nombre. Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Reanudar torrents - - - Pause torrents - Pausar torrents + Parar torrents @@ -11855,10 +11696,6 @@ Por favor, elija otro nombre. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Comprobando datos de reanudación - - Paused - Pausado - Completed @@ -11899,21 +11736,16 @@ Por favor, elija otro nombre. % Done Progreso - - Status - Torrent status (e.g. downloading, seeding, paused) - Estado - Stopped - + Detenido Status Torrent status (e.g. downloading, seeding, stopped) - Estado + Estado @@ -11948,7 +11780,7 @@ Por favor, elija otro nombre. Popularity - + Popularidad @@ -12029,22 +11861,17 @@ Por favor, elija otro nombre. Time Active Time (duration) the torrent is active (not stopped) - Tiempo Activo + Tiempo Activo Yes - + No - No - - - Time Active - Time (duration) the torrent is active (not paused) - Tiempo Activo + No @@ -12116,12 +11943,12 @@ Por favor, elija otro nombre. Private Flags private torrents - + Privado Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio/Tiempo Activo (en meses), indica qué tan popular es el torrent @@ -12146,358 +11973,319 @@ Por favor, elija otro nombre. TransferListWidget - + Column visibility Visibilidad de columnas - + Recheck confirmation Confirmación de comprobación - + Are you sure you want to recheck the selected torrent(s)? ¿Esta seguro que desea comprobar los torrents seleccionados? - + Rename Renombrar - + New name: Nuevo nombre: - + Choose save path Seleccione una ruta de destino - Confirm pause - Confirmar pausa - - - Would you like to pause all torrents? - ¿Te gustaría pausar todos los torrents? - - - Confirm resume - Confirmar reanudar - - - Would you like to resume all torrents? - ¿Te gustaría reanudar todos los torrents? - - - + Unable to preview Imposible previsualizar - + The selected torrent "%1" does not contain previewable files El torrent seleccionado "%1" no contiene archivos previsualizables - + Resize columns Redimensionar columnas - + Resize all non-hidden columns to the size of their contents Cambiar el tamaño de todas las columnas no ocultas al tamaño original de sus contenidos. - + Enable automatic torrent management Habilitar administración de torrent automática. - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. ¿Está seguro de que desea activar la administración automática de Torrent para el/los Torrent(s) seleccionados? Pueden que sean reubicados. - Add Tags - Añadir etiquetas - - - + Choose folder to save exported .torrent files Elija la carpeta para guardar los archivos .torrent exportados - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Error al exportar el archivo .torrent. Torrent: "%1". Guardar ruta: "%2". Motivo: "%3" - + A file with the same name already exists Ya existe un archivo con el mismo nombre - + Export .torrent file error Exportar error de archivo .torrent - + Remove All Tags Eliminar todas las etiquetas - + Remove all tags from selected torrents? ¿Eliminar todas las etiquetas de los torrents seleccionados? - + Comma-separated tags: Etiquetas separadas por comas: - + Invalid tag Etiqueta no válida - + Tag name: '%1' is invalid El nombre de la etiqueta: '%1' no es válido - &Resume - Resume/start the torrent - &Continuar - - - &Pause - Pause the torrent - &Pausar - - - Force Resu&me - Force Resume/start the torrent - Forzar contin&uación - - - + Pre&view file... Pre&visualizar archivo... - + Torrent &options... &Opciones del torrent... - + Open destination &folder Abrir &carpeta de destino - + Move &up i.e. move up in the queue Mover &arriba - + Move &down i.e. Move down in the queue Mover &abajo - + Move to &top i.e. Move to top of the queue Mover al &principio - + Move to &bottom i.e. Move to bottom of the queue Mover al &final - + Set loc&ation... Est&ablecer destino... - + Force rec&heck Forzar verificación de arc&hivo - + Force r&eannounce Forzar r&ecomunicación - + &Magnet link Enlace &Magnético - + Torrent &ID &ID del torrent - + &Comment &Comentario - + &Name &Nombre - + Info &hash v1 Informacion &hash v1 - + Info h&ash v2 Informacion &hash v2 - + Re&name... Re&nombrar... - + Edit trac&kers... Editar trac&kers... - + E&xport .torrent... E&xportar .torrent... - + Categor&y Categori&a - + &New... New category... &Nuevo... - + &Reset Reset category &Restablecer - + Ta&gs Etique&tas - + &Add... Add / assign multiple tags... &Añadir... - + &Remove All Remove all tags &Eliminar Todo - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + No se puede forzar el re-anunciamiento si el torrent está detenido/en cola/con error/comprobando - + &Queue &Cola - + &Copy &Copiar - + Exported torrent is not necessarily the same as the imported El torrent exportado no es necesariamente el mismo que el importado - + Download in sequential order Descargar en orden secuencial - + Add tags - + Añadir etiquetas - + Errors occurred when exporting .torrent files. Check execution log for details. Ocurrieron errores al exportar archivos .torrent. Consulte el registro de ejecución para obtener más información. - + &Start Resume/start the torrent - + &Iniciar - + Sto&p Stop the torrent - + De&tener - + Force Star&t Force Resume/start the torrent - + For&zar inicio - + &Remove Remove the torrent &Eliminar - + Download first and last pieces first Descargar antes primeras y últimas partes - + Automatic Torrent Management Administración automática de torrents - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Modo automático significa que varias propiedades del Torrent (i.e. ruta de guardado) será decidida por la categoría asociada. - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - No se puede forzar la reanudación si el torrent está en pausa, en cola, con error o comprobando - - - + Super seeding mode Modo supersiembra @@ -12573,7 +12361,7 @@ Por favor, elija otro nombre. Set app style failed. Unknown style: "%1" - + Error al configurar el estilo de la aplicación. Estilo desconocido: "%1" @@ -12629,32 +12417,32 @@ Por favor, elija otro nombre. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Se encontró el ejecutable de Python. Nombre: "%1". Versión: "%2" - + Failed to find Python executable. Path: "%1". Error al encontrar el ejecutable de Python. Ruta: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" No se encontró el ejecutable de `python3` en la variable de entorno PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" No se encontró el ejecutable de `python` en la variable de entorno PATH: "%1" - + Failed to find `python` executable in Windows Registry. No se pudo encontrar el ejecutable `python` en el Registro de Windows. - + Failed to find Python executable No se pudo encontrar el ejecutable de Python @@ -12746,52 +12534,52 @@ Por favor, elija otro nombre. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Se especificó un nombre de cookie de sesión inaceptable: '%1'. Se usa uno predeterminado. - + Unacceptable file type, only regular file is allowed. Tipo de archivo no aceptable, solo se aceptan de tipo regular. - + Symlinks inside alternative UI folder are forbidden. Los enlaces simbólicos dentro de la carpeta de la interfaz alternativa están prohibidos. - + Using built-in WebUI. Usando WebUI incorporada. - + Using custom WebUI. Location: "%1". Usando WebUI personalizada. Ruta: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. La traducción de WebUI para la configuración regional seleccionada (%1) se cargó correctamente. - + Couldn't load WebUI translation for selected locale (%1). No se pudo cargar la traducción de la interfaz de usuario web para la configuración regional seleccionada (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Falta separador ':' en cabecera personalizada WebUI: "%1" - + Web server error. %1 Error del servidor web. %1 - + Web server error. Unknown error. Error del servidor web. Error desconocido. @@ -12849,7 +12637,7 @@ Por favor, elija otro nombre. Unknown error - Error desconocido + Error desconocido diff --git a/src/lang/qbittorrent_et.ts b/src/lang/qbittorrent_et.ts index d4255bd50..516d3a17c 100644 --- a/src/lang/qbittorrent_et.ts +++ b/src/lang/qbittorrent_et.ts @@ -170,10 +170,6 @@ Never show again Ära enam näita - - Torrent settings - Torrenti seaded - Set as default category @@ -235,25 +231,25 @@ Peatamise tingimus: - - + + None - - + + Metadata received Metaandmed kätte saadud - + Torrents that have metadata initially will be added as stopped. Torrentid, millel on metaandmed, lisatakse peatutuna. - + Files checked @@ -368,112 +364,112 @@ Salvesta kui .torrent fail... - + I/O Error I/O viga - + Not Available This comment is unavailable Pole saadaval - + Not Available This date is unavailable Pole Saadaval - + Not available Pole saadaval - + Magnet link Magneti link - + Retrieving metadata... Hangitakse metaandmeid... - - + + Choose save path Vali salvestamise asukoht - + No stop condition is set. Pole peatamise tingimust määratud. - + Torrent will stop after metadata is received. Torrent peatatakse pärast meta-andmete saamist. - + Torrent will stop after files are initially checked. Torrent peatatakse pärast failide kontrolli. - + This will also download metadata if it wasn't there initially. See laeb alla ka metadata, kui seda ennem ei olnud. - + N/A Puudub - + %1 (Free space on disk: %2) %1 (Vabaruum kettal: %2) - + Not available This size is unavailable. Pole saadaval - + Torrent file (*%1) Torrenti fail (*%1) - + Save as torrent file Salvesta kui torrenti fail - + Couldn't export torrent metadata file '%1'. Reason: %2. Ei saanud eksportida torrenti metadata faili '%1'. Selgitus: %2. - + Cannot create v2 torrent until its data is fully downloaded. Ei saa luua v2 torrentit, enne kui pole andmed tervenisti allalaaditud. - + Filter files... Filtreeri failid... - + Parsing metadata... Metaandmete lugemine... - + Metadata retrieval complete Metaandmete hankimine sai valmis @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Allalaaditakse torrentit... Allikas: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Nurjus torrenti lisamine. Allikas: "%1". Selgitus: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Tuvastati katse lisada duplikaat torrent. Allikas: %1. Olemasolev torrent: %2. Tulemus: %3 + Tuvastati katse lisada duplikaat torrent. Allikas: %1. Olemasolev torrent: %2. Tulemus: %3 - + Merging of trackers is disabled Jälitajate kokkuliitmine on väljalülitatud - + Trackers cannot be merged because it is a private torrent Jälitajaid ei saa liita, kuna tegemist on privaatse torrentiga - + Trackers are merged from new source Jälitajad liidetakse uuest allikast + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Kontrolli üle torrentid pärast allalaadimist - - + + ms milliseconds ms - + Setting Seaded - + Value Value set for this setting Väärtus - + (disabled) (väljalülitatud) - + (auto) (automaatne) - - + + min minutes min - + All addresses Kõik aadressid - + qBittorrent Section qBittorrenti jaotis - - + + Open documentation Ava dokumentatsioon - + All IPv4 addresses Kõik IPv4 aadressid - + All IPv6 addresses Kõik IPv6 aadressid - + libtorrent Section libtorrent jaotis - + Fastresume files Fastresume failid - + SQLite database (experimental) SQLite andmebaas (eksperimentaalne) - + Resume data storage type (requires restart) Jätkamise andmete salvestuse tüüp (taaskäivitus on vajalik) - + Normal Tavaline - + Below normal Alla tavalise - + Medium Keskmine - + Low Madal - + Very low Väga madal - + Physical memory (RAM) usage limit Füüsilise mälu (RAM) kasutamise piirang - + Asynchronous I/O threads Asünkroonsed I/O lõimed - + Hashing threads Räsi lõimed - + File pool size Failipanga suurus - + Outstanding memory when checking torrents Vajalik mälu torrentite kontrollimisel - + Disk cache Ketta vahemälu - - - - + + + + + s seconds s - + Disk cache expiry interval Ketta puhvri aegumise intervall - + Disk queue size Ketta järjekorra suurus - - + + Enable OS cache Luba OS'i puhver - + Coalesce reads & writes Ühenda lugemised ja kirjutamised - + Use piece extent affinity Kasuta tüki ulatuse sidusust - + Send upload piece suggestions Saada üleslaadimise tükkide soovitusi - - - - - + + + + + 0 (disabled) 0 (keelatud) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] Väljuvad pordid (Min) [0: keelatud] - + Outgoing ports (Max) [0: disabled] Väljuvad pordid (Maks.) [0: keelatud] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] Teavituse aegumine [0: piiranguta, -1: süsteemi tavasäte] - + Maximum outstanding requests to a single peer Maksimum ootelolevate päringute arv ühele partnerile - - - - - + + + + + KiB KiB - + (infinite) (piiramatu) - + (system default) (süsteemi tavasäte) - + Delete files permanently - + Kustuta failid lõplikult - + Move files to trash (if possible) - + Pane failid prügikasti (kui on võimalik) - + Torrent content removing mode - + This option is less effective on Linux See valik on Linuxi puhul vähem tõhus - + Process memory priority Protsessi mälu prioriteet - + Bdecode depth limit - + Bdecode token limit - + Default Vaikimisi - + Memory mapped files Mälukaardistatud failid - + POSIX-compliant POSIX-ühilduv - + Simple pread/pwrite - + Disk IO type (requires restart) Ketta IO tüüp (taaskäivitus on vajalik) - - + + Disable OS cache Keela OS'i puhver - + Disk IO read mode Ketta IO lugemisrežiim - + Write-through - + Disk IO write mode Ketta IO kirjutamisrežiim - + Send buffer watermark Saada puhvri vesimärk - + Send buffer low watermark Saada puhver madal vesimärk - + Send buffer watermark factor Saada puhvri vesimärgi faktor - + Outgoing connections per second Väljuvaid ühendusi ühes sekundis - - + + 0 (system default) 0 (süsteemi tavasäte) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Pesa tööjärje suurus - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit .torrent'i faili suuruse limiit - + Type of service (ToS) for connections to peers Teenuse tüüp (ToS) ühenduste puhul partneritega - + Prefer TCP Eelista TCP-d - + Peer proportional (throttles TCP) Proportsionaalne partnerite vahel (piirab TCP-d) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Luba tugi rahvusvahelistele domeeninimedele (IDN) - + Allow multiple connections from the same IP address Luba mitu ühendust samalt IP aadressilt - + Validate HTTPS tracker certificates Valideeri HTTPS jälitajate sertifikaate - + Server-side request forgery (SSRF) mitigation Serveripoolse taotluse võltsimise (SSRF) leevendamine - + Disallow connection to peers on privileged ports Keela ühendus partneritega eelistatud portidel - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval Värskendamise intervall - + Resolve peer host names Lahenda partneri hostinimed - + IP address reported to trackers (requires restart) Jälgijatele saadetav IP-aadress (vajalik on taaskäivitus) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Koheselt teavita kõiki jälgijaid, kui IP või port on muutunud - + Enable icons in menus Luba ikoonid menüüs - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files Luba karantiin allalaaditud failidele - + Enable Mark-of-the-Web (MOTW) for downloaded files Luba Mark-of-the-Web (MOTW) allalaaditud failidele - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - sek + sek - + -1 (unlimited) - + -1 (piiramatu) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage Partnerite ringluse katkemise protsent - + Peer turnover threshold percentage Partnerite ringluse piirmäära protsent - + Peer turnover disconnect interval Partnerite ringluse katkemise sagedus - + Resets to default if empty Algne taastatakse, kui jätta tühjaks - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Näita teavitusi - + Display notifications for added torrents Näita teavitusi lisatud torrentitel - + Download tracker's favicon Lae alla jälitaja pisi-ikoon - + Save path history length Salvestuse asukoha-ajaloo pikkus - + Enable speed graphs Luba kiiruse graafikud - + Fixed slots Fikseeritud pesad - + Upload rate based Üleslaadimise kiiruse järgi - + Upload slots behavior Üleslaadimiste kohtade käitumine: - + Round-robin Round-robin - + Fastest upload Kiireim üleslaadimine - + Anti-leech Antikaan - + Upload choking algorithm Üleslaadimise choking-algoritm - + Confirm torrent recheck Kinnita torrenti ülekontrollimist - + Confirm removal of all tags Kinnita üle, enne kõikide siltide eemaldamist - + Always announce to all trackers in a tier Saada teavitused alati kõikidele jälitajatele, mis samal tasandil - + Always announce to all tiers Anna alati teada kõigile tasanditele - + Any interface i.e. Any network interface Iga kasutajaliides - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP segarežiimi algoritm - + Resolve peer countries Leia partnerite riigid - + Network interface Võrguliides - + Optional IP address to bind to Valikuline IP-aadress, millega siduda - + Max concurrent HTTP announces Maksimaalselt samaaegseid HTTP-teavitusi - + Enable embedded tracker Luba integreeritud jälitaja - + Embedded tracker port Integreeritud jälitaja port @@ -1392,7 +1403,7 @@ Invalid mode, allowed values: %1 - + Sobimatu režiim, lubatud on: %1 @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Töötab kaasaskantavas režiimis. Automaatselt tuvastati profiili kaust asukohas: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Tuvastati üleliigne käsurea tähis: "%1". Kaasaskantav režiim eeldab suhtelist fastresume'i. - + Using config directory: %1 Kasutatakse konfiguratsiooni kataloogi: %1 - + Torrent name: %1 Torrenti nimi: %1 - + Torrent size: %1 Torrenti suurus: %1 - + Save path: %1 Salvesta kausta: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrenti allalaadimiseks kulus %1. - - + + Thank you for using qBittorrent. Aitäh, et kasutad qBittorrentit. - + Torrent: %1, sending mail notification Torrent: %1, saadetakse e-posti teavitus - + Add torrent failed Torrenti lisamine nurjus - + Couldn't add torrent '%1', reason: %2. Ei saanud lisada torrentit '%1', selgitus: %2. - + The WebUI administrator username is: %1 WebUI administraatori kasutajanimi on: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 WebUI administraatori parooli pole määratud. Ajutine parool on selleks sessiooniks: %1 - + You should set your own password in program preferences. Te peaksite määrama omaenda parooli programmi sätetes. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torrent %1' on lõpetanud allalaadimise - + WebUI will be started shortly after internal preparations. Please wait... WebUI käivitub peatselt pärast ettevalmistusi. Palun oodake... - - + + Loading torrents... Laetakse torrenteid... - + E&xit S&ulge - + I/O Error i.e: Input/Output Error I/O viga - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Selgitus: %2 - + Torrent added Torrent lisatud - + '%1' was added. e.g: xxx.avi was added. '%1' oli lisatud. - + Download completed Allalaadimine sai valmis - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + See on testi email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' on allalaaditud. - + Information Informatsioon - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 Juhtimaks qBittorrent'it, avage WebUI aadressil: %1 - + Exit Sulge - + Recursive download confirmation Korduv allalaadimise kinnitamine - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' sisaldab .torrent faile, soovite jätkata nende allalaadimist? - + Never Mitte kunagi - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Korduv .torrent faili allalaadimine torrentist. Allikaks on torrent: "%1". Fail: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Nurjus füüsilise mälu (RAM) kasutamise piirangu määramine. Veakood: %1. Veateade: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Nurjus füüsilise mälu (RAM) kasutuspiirangu määramine. Taotletud suurus: %1. Süsteemi piirang: %2. Vea kood: %3. Veateade: "%4" - + qBittorrent termination initiated qBittorrenti sulgemine käivitakse - + qBittorrent is shutting down... qBittorrent suletakse... - + Saving torrent progress... Salvestan torrenti seisu... - + qBittorrent is now ready to exit qBittorrent on nüüd sulgemiseks valmis @@ -1766,263 +1777,263 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe &Ekspordi... - + Matches articles based on episode filter. Sobitab artikleid vastavalt osa filtrile. - + Example: Näidis: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match vastab 2, 5, 8 kuni 15, 30 ja järgnevatele osadele esimesest hooajast - + Episode filter rules: Osade filtrite reeglid: - + Season number is a mandatory non-zero value Hooaja number on kohustuslik nullist erinev väärtus - + Filter must end with semicolon Filter peab lõppema semikooloniga - + Three range types for episodes are supported: Kolm toetatud vahemiku tüüpi episoodidele: - + Single number: <b>1x25;</b> matches episode 25 of season one Ühekordne number: <b>1x25;</b> ühtib osa 25-ga, esimesest hooajast - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Tavaline vahemik: <b>1x25-40;</b> ühtib osadega 25 kuni 40, esimesest hooajast - + Episode number is a mandatory positive value Osa number on kohustuslik positiivne väärtus - + Rules Reeglid - + Rules (legacy) Reeglid (vana) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Lõpmatu valik: <b>1x25-;</b> sobib esimese hooaja 25. ja hilisemate hooaegade kõigi osadega. - + Last Match: %1 days ago Viimane sobivus: %1 päeva tagasi - + Last Match: Unknown Viimane sobivus: teadmata - + New rule name Uus reegli nimi - + Please type the name of the new download rule. Palun sisesta nimi, allalaadimise uuele reeglile. - - + + Rule name conflict Reegli nime konflikt - - + + A rule with this name already exists, please choose another name. Samanimeline kategooria on olemas, palun vali teine nimi. - + Are you sure you want to remove the download rule named '%1'? Kindel, et soovid eemaldada allalaadimise reegli nimega '%1'? - + Are you sure you want to remove the selected download rules? Kindel, et soovid eemaldada valitud allalaadimise reeglid? - + Rule deletion confirmation Reegli kustutamise kinnitamine - + Invalid action Sobimatu toiming - + The list is empty, there is nothing to export. Nimekiri on tühi, pole midagi eksportida. - + Export RSS rules Ekspordi RSS reeglid - + I/O Error I/O viga - + Failed to create the destination file. Reason: %1 Nurjus sihtkohafaili loomine. Selgitus: %1 - + Import RSS rules Impordi RSS reeglid - + Failed to import the selected rules file. Reason: %1 Nurjus valitud reegli faili importimine. Selgitus: %1 - + Add new rule... Lisa uus reegel... - + Delete rule Kustuta reegel - + Rename rule... Ümbernimeta reegel... - + Delete selected rules Kustuta valitud reeglid - + Clear downloaded episodes... Eemalda allalaaditud osad... - + Rule renaming Reegli ümbernimetamine - + Please type the new rule name Palun sisesta uue reegli nimi - + Clear downloaded episodes Eemalda allalaaditud osad - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Kindel, et soovid eemaldada valitud reeglis allalaaditud osade nimekirja? - + Regex mode: use Perl-compatible regular expressions Regex-režiim: kasuta Perliga ühilduvaid regulaarseid väljendeid - - + + Position %1: %2 Positsioon %1: %2 - + Wildcard mode: you can use Wildcard-režiim: saate kasutada - - + + Import error Importimise viga - + Failed to read the file. %1 Nurjus faili lugemine. %1 - + ? to match any single character ? mis tahes üksikule tähemärgile vastamiseks - + * to match zero or more of any characters *, et sobitada null või rohkem tähemärki - + Whitespaces count as AND operators (all words, any order) Tühimikud loetakse AND-operaatoriteks (kõik sõnad, mis tahes järjekorras). - + | is used as OR operator | kasutatakse OR operaatorina - + If word order is important use * instead of whitespace. Kui sõnade järjekord on oluline, siis kasuta * tühimiku asemel. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Väljend tühja %1 klausliga (nt %2) - + will match all articles. vastab kõigile artiklitele. - + will exclude all articles. välistab kõik artiklid. @@ -2074,28 +2085,38 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Ei saanud salvestada torrenti metadata't '%1'. Viga: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Ei õnnestunud salvestada torrendi jätkamise andmeid '%1'. Viga: %2. @@ -2106,16 +2127,17 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 Ei saanud salvestada andmeid asukohta '%1'. Viga: %2 @@ -2123,38 +2145,60 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe BitTorrent::DBResumeDataStorage - + Not found. Ei leitud. - + Couldn't load resume data of torrent '%1'. Error: %2 Ei õnnestunud laadida torrenti '%1' jätkamise andmeid. Viga: %2 - - + + Database is corrupted. Andmebaas on vigane. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2206,22 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Ei saanud salvestada torrenti metadata't. Viga: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Ei saanud salvestada jätkamise andmeid torrent '%1' jaoks. Viga: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Ei õnnestunud kustutada torrenti '%1' jätkamise andmeid. Viga: %2 - + Couldn't store torrents queue positions. Error: %1 Ei saanud salvestada torrentite järjekorra positsioone. Viga: %1 @@ -2185,526 +2229,503 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Hajutatud räsitabeli (DHT) tugi: %1 - - - - - - - - - + + + + + + + + + ON SEES - - - - - - - - - + + + + + + + + + OFF VÄLJAS - - + + Local Peer Discovery support: %1 Kohaliku partneri avastamise toetus: %1 - + Restart is required to toggle Peer Exchange (PeX) support Taaskäivitus on vajalik, et muuta Peer Exchange (PeX) tuge - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Nurjus torrenti jätkamine. Torrent: "%1". Selgitus: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrenti ei õnnestunud jätkata: tuvastati vastuoluline torrenti ID. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Avastatud vastuolulised andmed: kategooria puudub konfiguratsioonifailist. Kategooria taastatakse, kuid selle seaded taastatakse vaikimisi. Torrent: "%1". Kategooria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Avastatud vastuolulised andmed: kehtetu kategooria. Torrent: "%1". Kategooria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Avastatud ebakõla taastatava kategooria asukohtade ja torrenti praeguse asukoha vahel. Torrent on nüüd lülitatud manuaalsesse režiimi. Torrent: "%1". Kategooria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" Partneri ID: "%1" - + HTTP User-Agent: "%1" HTTP kasutajaagent: "%1" - + Peer Exchange (PeX) support: %1 Peer Exchange (PeX) tugi: %1 - - + + Anonymous mode: %1 Anonüümne režiim: %1 - - + + Encryption support: %1 Krüpteeringu tugi: %1 - - + + FORCED SUNNITUD - + Could not find GUID of network interface. Interface: "%1" Ei suutnud leida võrguliidese GUID-i. Liides: "%1" - + Trying to listen on the following list of IP addresses: "%1" Proovin kuulata järgmist IP-aadresside nimekirja: "%1" - + Torrent reached the share ratio limit. Torrent jõudis jagamise määra piirini. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Eemaldati torrent. - - - Removed torrent and deleted its content. - Eemaldati torrent ja kustutati selle sisu. - - - Torrent paused. - Torrent on pausitud. - - - + Super seeding enabled. Super jagamine lubatud - + Torrent reached the seeding time limit. Torrent jõudis jagamise aja piirini. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Nurjus torrenti laadimine. Selgitus: "%1" - + I2P error. Message: "%1". I2P viga. Teade: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP tugi: SEES - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - Jälitajate kokkuliitmine on väljalülitatud + Jälitajate kokkuliitmine on väljalülitatud - + Trackers cannot be merged because it is a private torrent - Jälitajaid ei saa liita, kuna tegemist on privaatse torrentiga + Jälitajaid ei saa liita, kuna tegemist on privaatse torrentiga - + Trackers are merged from new source - Jälitajad liidetakse uuest allikast + Jälitajad liidetakse uuest allikast - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP tugi: VÄLJAS - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Nurjus torrenti eksportimine. Torrent: "%1". Sihtkoht: "%2". Selgitus: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Jätkamise andmete salvestamine katkestati. Ootelolevate torrentide arv: %1 - + The configured network address is invalid. Address: "%1" Konfigureeritud võrguaadress on kehtetu. Aadress: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Ei õnnestunud leida konfigureeritud võrgu aadressi, mida kuulata. Aadress: "%1" - + The configured network interface is invalid. Interface: "%1" Konfigureeritud võrguliides on kehtetu. Liides: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Keelatud IP aadresside nimekirja kohaldamisel lükati tagasi kehtetu IP aadress. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Torrentile lisati jälitaja. Torrent: "%1". Jälitaja: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Eemaldati jälitaja torrentil. Torrent: "%1". Jälitaja: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Lisatud URL-seeme torrentile. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Eemaldatud URL-seeme torrentist. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent on pausitud. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrentit jätkati. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent-i allalaadimine on lõppenud. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrenti liikumine tühistatud. Torrent: "%1". Allikas: "%2". Sihtkoht: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Ei saanud torrenti teisaldamist järjekorda lisada. Torrent: "%1". Allikas: "%2". Sihtkoht: "%3". Selgitus: torrent liigub hetkel sihtkohta - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Ei suutnud järjekorda lisada torrenti liigutamist. Torrent: "%1". Allikas: "%2" Sihtkoht: "%3". Selgitus: mõlemad teekonnad viitavad samale asukohale. - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Järjekorda pandud torrenti liikumine. Torrent: "%1". Allikas: "%2". Sihtkoht: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Alusta torrenti liigutamist. Torrent: "%1". Sihtkoht: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Kategooriate konfiguratsiooni salvestamine ebaõnnestus. Faili: "%1". Viga: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Kategooriate konfiguratsiooni analüüsimine ebaõnnestus. Faili: "%1". Viga: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IP-filtri faili edukas analüüsimine. Kohaldatud reeglite arv: %1 - + Failed to parse the IP filter file IP-filtri faili analüüsimine ebaõnnestus - + Restored torrent. Torrent: "%1" Taastatud torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Lisatud on uus torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrenti viga. Torrent: "%1". Viga: "%2" - Removed torrent. Torrent: "%1" - Eemaldati torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Eemaldati torrent ja selle sisu. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentil puudub SSL parameetrid. Torrent: "%1". Teade: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Faili veahoiatus. Torrent: "%1". Faili: "%2". Selgitus: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP portide kaardistamine nurjus. Teade: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP portide kaardistamine õnnestus. Teade: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtreeritud port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proksi viga. Aadress: %1. Teade: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 segarežiimi piirangud - + Failed to load Categories. %1 Ei saanud laadida kategooriaid. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Nurjus kategooriate sättete laadimine. Faili: "%1". Viga: "vale andmevorming" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 on väljalülitatud - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 on väljalülitatud - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL-seemne DNS-otsing nurjus. Torrent: "%1". URL: "%2". Viga: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Saabunud veateade URL-seemnest. Torrent: "%1". URL: "%2". Teade: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Edukas IP-kuulamine. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Ei saanud kuulata IP-d. IP: "%1". Port: "%2/%3". Selgitus: "%4" - + Detected external IP. IP: "%1" Avastatud väline IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Viga: Sisemine hoiatuste järjekord on täis ja hoiatused tühistatakse, võib tekkida jõudluse langus. Tühistatud hoiatuste tüüp: "%1". Teade: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent edukalt teisaldatud. Torrent: "%1". Sihtkoht: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Ei saanud torrentit liigutada. Torrent: "%1". Allikas: "%2". Sihtkoht: "%3". Selgitus: "%4" @@ -2754,47 +2775,47 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Ei saanud faili kirjutada. Selgitus: "%1". Torrent on nüüd "ainult üleslaadimise" režiimis. - + Download first and last piece first: %1, torrent: '%2' Lae alla esmalt esimene ja viimane tükk: %1, torrent: '%2' - + On Sees - + Off Väljas - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Ei saanud torrentit taastada. Arvatavasti on failid teisaldatud või salvestusruum ei ole kättesaadav. Torrent: "%1". Selgitus: "%2" - + Missing metadata Puuduvad metaandmed - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Faili ümbernimetamine nurjus. Torrent: "%1", fail: "%2", selgitus: "%3" - + Performance alert: %1. More info: %2 Toimivushäire: %1. Rohkem infot: %2 @@ -2831,11 +2852,6 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Expected integer number in environment variable '%1', but got '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameeter '%1' peab järgima süntaksit '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2876,7 +2892,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameeter '%1' peab järgima süntaksit '%1=%2' + Parameeter '%1' peab järgima süntaksit '%1=%2' @@ -2966,10 +2982,6 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Add torrents as running or stopped - - Add torrents as started or paused - Lisa torrentid käivitatuna või pausitutena - Skip hash check @@ -3059,20 +3071,12 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Start torrents - + Käivita torrentid Stop torrents - - - - Resume torrents - Jätka torrentitega - - - Pause torrents - Pausi torrentid + Peata torrentid @@ -3172,10 +3176,6 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Also remove the content files - - Also permanently delete the files - Samuti kustuta lõplikult ka failid - Are you sure you want to remove '%1' from the transfer list? @@ -3407,26 +3407,22 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe GUIAddTorrentManager - + Downloading torrent... Source: "%1" Allalaaditakse torrentit... Allikas: "%1" - Trackers cannot be merged because it is a private torrent - Jälitajaid ei saa liita, kuna tegemist on privaatse torrentiga - - - + Torrent is already present see Torrent on juba olemas - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' on juba ülekandeloendis. Kas soovite jälgijaid lisada uuest allikast? @@ -3544,6 +3540,40 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Toetatud pildi failid + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3685,10 +3715,6 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe &Options... &Valikud... - - &Resume - &Jätka - &Remove @@ -3770,10 +3796,6 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Close Window Sulge Aken - - R&esume All - J&ätka Kõikidega - Manage Cookies... @@ -3812,12 +3834,12 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Sta&rt - + Käivi&ta Sto&p - + Pe&ata @@ -3889,10 +3911,6 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe &Hibernate System &Pane süsteem talveunerežiimi - - S&hutdown System - S&ulge süsteem - &Statistics @@ -3913,14 +3931,6 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe &About &Teave - - &Pause - &Pane pausile - - - P&ause All - P&ausi Kõik - &Add Torrent File... @@ -3954,12 +3964,12 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe - + Show Näita - + Check for program updates Kontrolli programmi uuendusi @@ -3974,388 +3984,382 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Kui sulle meeldib qBittorrent, palun annetage! - + Execution Log Toimingute logi - + Clear the password Eemalda see parool - + &Set Password &Määra Parool - + Preferences Eelistused - + &Clear Password &Eemalda parool - + Transfers Ülekanded - - + + qBittorrent is minimized to tray qBittorrent on minimeeritud tegumireale - - - + + + This behavior can be changed in the settings. You won't be reminded again. Seda käitumist saab muuta seadetest. Teid ei teavita sellest rohkem. - + Icons Only Ainult ikoonid - + Text Only Ainult tekst - + Text Alongside Icons Text Ikoonide Kõrval - + Text Under Icons Text Ikoonide Alla - + Follow System Style Järgi Süsteemi Stiili - - + + UI lock password UI luku parool - - + + Please type the UI lock password: Palun sisesta UI luku parool: - + Are you sure you want to clear the password? Kindel, et soovid eemaldada selle parooli? - + Use regular expressions Kasuta regulaarseid väljendeid - - + + Search Engine - Otsingu Mootor + Otsingu Mootor - + Search has failed - Otsimine nurjus + Otsimine nurjus - + Search has finished - Otsing on lõpetatud + Otsing on lõpetatud - + Search Otsi - + Transfers (%1) Ülekanded (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent oli just uuendatud ja on vajalik taaskäivitada muudatuse rakendamiseks. - + qBittorrent is closed to tray qBittorrent on suletud tegumireale - + Some files are currently transferring. Osa faile on hetkel edastamisel. - + Are you sure you want to quit qBittorrent? Kindel, et soovid täielikult sulgeda qBittorrenti? - + &No &Ei - + &Yes &Jah - + &Always Yes &Alati Jah - + Options saved. Sätted salvestati. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [A: %1, Ü: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Puudub Python Runtime - + qBittorrent Update Available qBittorrenti Uuendus Saadaval - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python on vajalik, et kasutada otsingu mootorit, tundub nagu poleks teil see installitud. Soovite koheselt paigaldada? - + Python is required to use the search engine but it does not seem to be installed. Python on vajalik, et kasutada otsingu mootorit, tundub nagu poleks teil see installitud. - - + + Old Python Runtime Vana Python Runtime - + A new version is available. Uus versioon on saadaval. - + Do you want to download %1? Kas sa soovid allalaadida %1? - + Open changelog... Ava muudatustelogi... - + No updates available. You are already using the latest version. Uuendused pole saadaval. Juba kasutate uusimat versiooni. - + &Check for Updates &Kontrolli Uuendusi - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Teie Pythoni versioon (%1) on liiga vana. Vajalik on vähemalt: %2. Kas soovite koheselt installida uue versiooni? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Teie Pythoni versioon (%1) on vana. Palun uuendage uusimale versioonile, et toimiksid otsingu mootorid. Vajalik on vähemalt: %2. - + Paused - Pausitud + Pausitud - + Checking for Updates... Kontrollin uuendusi... - + Already checking for program updates in the background Juba kontrollin programmi uuendusi tagaplaanil - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Allalaadimise tõrge - Python setup could not be downloaded, reason: %1. -Please install it manually. - Pythoni setupit ei saanud allalaadida, selgitus: %1. -Palun installige see iseseisvalt. - - - - + + Invalid password Sobimatu parool - + Filter torrents... Filtreeri torrenteid... - + Filter by: Filtreering: - + The password must be at least 3 characters long Parooli pikkus peab olema vähemalt 3 tähemärki - - - + + + RSS (%1) RSS (%1) - + The password is invalid Parool on sobimatu - + DL speed: %1 e.g: Download speed: 10 KiB/s AL kiirus: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s ÜL kiirus: %1 - + Hide Peida - + Exiting qBittorrent Suletakse qBittorrent - + Open Torrent Files Ava Torrenti Failid - + Torrent Files Torrenti Failid @@ -5849,47 +5853,47 @@ Palun installige see iseseisvalt. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 Server lükkas <mail from> tagasi, sõnum: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> server lükkas tagasi, sõnum: %1 - + <data> was rejected by server, msg: %1 <data> server lükkas tagasi, sõnum: %1 - + Message was rejected by the server, error: %1 Server lükkas sõnumi tagasi, viga: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP server ei näi toetavat ühtegi meie poolt toetatavat autentimisrežiimi [CRAM-MD5|PLAIN|LOGIN], jättes autentimise vahele, teades, et see tõenäoliselt ebaõnnestub... Serveri autentimisviisid: %1 - + Email Notification Error: %1 E-posti teavitamise viga: %1 @@ -5931,10 +5935,6 @@ Palun installige see iseseisvalt. RSS RSS - - Web UI - Web UI - Advanced @@ -5955,14 +5955,6 @@ Palun installige see iseseisvalt. Confirm when deleting torrents Kinnita enne torrentite kustutamist - - Shows a confirmation dialog upon pausing/resuming all the torrents - Kuvatakse kinnitamiseks dialoog, enne kui pausitakse/jätkatakse kõikide torrentitega - - - Confirm "Pause/Resume all" actions - Kinnita "Pausi/Jätka kõik" toiminguid - Use alternating row colors @@ -5979,10 +5971,6 @@ Palun installige see iseseisvalt. Always Alati - - Paused torrents only - Ainult pausitud torrentid - Action on double-click @@ -5993,10 +5981,6 @@ Palun installige see iseseisvalt. Downloading torrents: Allalaadimisel torrentid: - - Start / Stop Torrent - Käivita / Seiska Torrent - @@ -6055,175 +6039,179 @@ Palun installige see iseseisvalt. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrenti sisu paigutus: - + Original Originaal - + Create subfolder Loo alamkaust - + Don't create subfolder Ära loo alamkausta - + The torrent will be added to the top of the download queue Torrent lisatakse ootejärjekorras täitsa esimeseks - + Add to top of queue The torrent will be added to the top of the download queue Lisa ootejärjekorras esimeseks - + When duplicate torrent is being added Kui lisatakse juba olemasolev torrent - + Merge trackers to existing torrent Liida jälitajad olemasolevale torrentile - + Keep unselected files in ".unwanted" folder Hoia mittevalitud failid ".unwanted" kaustas - + Add... Lisa... - + Options.. Valikud... - + Remove Eemalda - + Email notification &upon download completion E-postile teavitus &pärast allalaadimist - + Send test email - + Saada test e-kiri - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Partneri ühenduse protokoll: - + Any Suvaline - + I2P (experimental) I2P (eksperimentaalne) - + Mixed mode - Some options are incompatible with the chosen proxy type! - Osad valikud ei ühildu valitud proksi tüübiga! + Osad valikud ei ühildu valitud proksi tüübiga! - + If checked, hostname lookups are done via the proxy Kui valitud, hostinimede otsing tehakse proksi abiga - + Perform hostname lookup via proxy Tee hostinimede otsing proksi abiga - + Use proxy for BitTorrent purposes Kasuta proksit BitTorrenti jaoks - + RSS feeds will use proxy RSS vood kasutavad proksit - + Use proxy for RSS purposes Kasuta proksit RSS jaoks - + Search engine, software updates or anything else will use proxy Otsingu mootor, tarkvara uuendused ja muud kasutavad proksit - + Use proxy for general purposes Kasuta proksit tavatoimingute jaoks - + IP Fi&ltering IP Fi&lteering - + Schedule &the use of alternative rate limits Planeeri alternatiivsete kiiruste limiidi &kasutust - + From: From start time Ajast: - + To: To end time Kuni: - + Find peers on the DHT network Otsi partnereid DHT võrgust - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6232,225 +6220,227 @@ Nõua krüpteering: Ainult ühenda partneritega kel on lubatud protokolli krüpt Keela krüpteering: Ainult ühenda partneritega kel pole protokolli krüpteeringut - + Allow encryption Luba krüpteering - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Rohkem informatsiooni</a>) - + Maximum active checking torrents: Maksimum samaaegselt kontrollitavaid torrenteid: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - A&utomaatselt lisa need jälitajad uutele allalaadimistele: - - - + RSS Reader RSS Lugeja - + Enable fetching RSS feeds RSS-voogude toomise lubamine - + Feeds refresh interval: Voogude värskendamise intervall: - + Same host request delay: - + Maximum number of articles per feed: Artiklite maksimaalne arv ühe voo kohta: - - - + + + min minutes min - + Seeding Limits Jagamise limiidid - Pause torrent - Pausi torrent - - - + Remove torrent Eemalda torrent - + Remove torrent and its files Eemalda torrent ja selle failid - + Enable super seeding for torrent Luba super jagamise režiim torrentile - + When ratio reaches Kui suhe jõuab - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + Peata torrent + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL + URL - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS Torrenti Automaatne Allalaadija - + Enable auto downloading of RSS torrents Luba RSS'i torrentite automaatne allalaadimine - + Edit auto downloading rules... Muuda automaatse allalaadimise reegleid... - + RSS Smart Episode Filter RSS tark osa filter - + Download REPACK/PROPER episodes Laadi alla REPACK/PROPER osad - + Filters: Filtrid: - + Web User Interface (Remote control) Veebi kasutajaliides (kaughaldus) - + IP address: IP aadress: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: Keela klient pärast mitut järjestikkust nurjumist: - + Never Mitte kunagi - + ban for: keela kuni: - + Session timeout: Sessiooni aegumistähtaeg: - + Disabled Keelatud - + Server domains: Serveri domeenid: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6459,37 +6449,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Kasuta HTTPS'i HTTP asemel - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Kasuta alternatiivset WebUI'd - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Uue&nda minu dünaamilise domeeni nime @@ -6501,12 +6491,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Otsi + Otsi WebUI - + WebUI @@ -6602,99 +6592,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Kustuta tagavara logid mis vanemad kui: - + Show external IP in status bar - + When adding a torrent Kui lisatakse torrent - + Bring torrent dialog to the front Too esile torrenti dialoogiaken - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Kustuta ka .torrent failid, mille lisamine tühistati - + Also when addition is cancelled Ka siis, kui lisamine tühistatakse - + Warning! Data loss possible! Hoiatus! Andmete kadu võimalik! - + Saving Management Salvestamise Haldamine - + Default Torrent Management Mode: Torrentide vaikimisi haldusrežiim: - + Manual Juhend - + Automatic Automaatne - + When Torrent Category changed: Kui torrenti kategooria muutus: - + Relocate torrent Ümberpaiguta torrent - + Switch torrent to Manual Mode Lülita torrent manuaalsesse režiimi - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode Lülitage mõjutatud torrentid manuaalsesse režiimi - + Use Subcategories Kasuta Alamkategooriaid - + Default Save Path: Tava Salvestamise Asukoht: - + Copy .torrent files to: Kopeeri .torrent failid asukohta: @@ -6704,26 +6694,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Kuva &qBittorrent teavituste alal - &Log file - &Logi fail - - - + Display &torrent content and some options Kuva &torrenti sisu ja osasid valikuid - + De&lete .torrent files afterwards Ku&stuta pärast .torrent failid - + Copy .torrent files for finished downloads to: Kopeeri .torrent failid lõpetanud allalaadimistel hiljem asukohta: - + Pre-allocate disk space for all files Hõiva ette ketta ruum kõikidele failidele @@ -6753,10 +6739,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Kuva faili eelvaade, muidu ava faili kaust - - Show torrent options - Kuva torrenti valikuid - Shows a confirmation dialog when exiting with active torrents @@ -6822,69 +6804,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.aastat - + Log performance warnings Logi jõudluse hoiatused - The torrent will be added to download list in a paused state - Torrent lisatakse allalaadimise nimekirja pausitud olekus - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Ära käivita allalaadimist automaatselt - + Whether the .torrent file should be deleted after adding it Kas .torrent fail peaks olema kustutatud pärast lisamist - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Hõiva täielikult kogu faili maht enne allalaadimist, et vähendada fragmentatsiooni. Kasulik HDD jaoks. - + Append .!qB extension to incomplete files Lisa .!qB laiend poolikutele failidele - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Kui torrentit laetakse alla, paku torrentite lisamist, ükskõik mis sellest leitud . torrenti failidest - + Enable recursive download dialog Luba korduv allalaadimise dialoog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automaatne: mitmed torrenti omadused (s.h. salvestamise asukoht) otsustatakse seostatud kategooriaga Manuaalne: mitmed torrenti omadused (s.h. salvestamise asukoht) tuleb määrata käsitsi - + When Default Save/Incomplete Path changed: Kui muudetakse tava salvestuste/poolikute asukohta: - + When Category Save Path changed: Kui muutus kategooria salvestamise asukoht: - + Use Category paths in Manual Mode Kasuta kategooria asukohti manuaalses režiimis - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6904,50 +6882,50 @@ Manuaalne: mitmed torrenti omadused (s.h. salvestamise asukoht) tuleb määrata qBittorrenti akna olek käivitamisel - + Torrent stop condition: Torrenti peatamise tingimus: - - + + None - - + + Metadata received Metaandmed kätte saadud - - + + Files checked - + Ask for merging trackers when torrent is being added manually Küsi üle jälitajate liitmine, kui torrent lisatakse manuaalselt - + Use another path for incomplete torrents: Kasuta muud asukohta poolikutel torrentitel: - + Automatically add torrents from: Automaatselt lisa torrentid asukohast: - + Excluded file names Välistatud failide nimed - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6964,523 +6942,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Vastuvõtja - + To: To receiver Sihtkohta: - + SMTP server: SMTP server: - + Sender Saatja - + From: From sender Asukohast: - + This server requires a secure connection (SSL) See server vajab turvalist ühendust (SSL) - - + + Authentication Audentimine - - - - + + + + Username: Kasutajanimi: - - - - + + + + Password: Parool: - + Run external program Käivita välispidine programm - Run on torrent added - Käivita torrenti lisamisel - - - Run on torrent finished - Käivita, kui torrent sai valmis - - - + Show console window Näita konsooli akent - + TCP and μTP TCP ja μTP - + Listening Port Kuulatav port - + Port used for incoming connections: Port kasutuseks sissetulevatel ühendustel: - + Set to 0 to let your system pick an unused port Vali 0, et süsteem saaks valida vaba pordi - + Random Suvaline - + Use UPnP / NAT-PMP port forwarding from my router Kasuta UPnP / NAT-PMP port forwarding'ut minu ruuterist - + Connections Limits Ühenduste limiidid - + Maximum number of connections per torrent: Maksimum kogus ühendusi ühel torrentil: - + Global maximum number of connections: Globaalselt maksimum kogus ühendusi: - + Maximum number of upload slots per torrent: Maksimum kogus üleslaadimise kohti ühel torrentil: - + Global maximum number of upload slots: Globaalselt maksimum kogus üleslaadimise kohti: - + Proxy Server Proxy Server - + Type: Tüüp: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Muidu, seda proxy serverit kasutatakse ainult jälitajate ühendustel - + Use proxy for peer connections Kasuta ühendustel partneritega proksit - + A&uthentication A&udentimine - Info: The password is saved unencrypted - Info: See parool on salvestatud krüpteeringuta + Info: See parool on salvestatud krüpteeringuta - + Filter path (.dat, .p2p, .p2b): - + Reload the filter Lae filter uuesti - + Manually banned IP addresses... Manuaalselt keelatud IP aadressid... - + Apply to trackers Määra jälgijatele - + Global Rate Limits Üldine kiiruse limiidid - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Üleslaadimine: - - + + Download: Allalaadimine: - + Alternative Rate Limits Alternatiivsed kiiruse piirangud - + Start time Alguse aeg - + End time Lõpu aeg - + When: Millal: - + Every day Kõik päevad - + Weekdays Tööpäevadel - + Weekends Nädalavahetustel - + Rate Limits Settings Kiiruse piirangu seaded - + Apply rate limit to peers on LAN Määra kiiruse limiit partneritele LAN'is - + Apply rate limit to transport overhead Määra kiiruse limiit edastatavale lisainfole - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Määra kiiruse limiit µTP protokollile - + Privacy Privaatsus - + Enable DHT (decentralized network) to find more peers Luba DHT (detsentraliseeritud võrk), et leida rohkem partnereid - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Luba partnerite vahetus toetatud Bitorrenti klientidega (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Luba Peer Exchange (PeX), et leida rohkem partnereid - + Look for peers on your local network Otsi partnereid oma kohalikust võrgust - + Enable Local Peer Discovery to find more peers Luba Kohalike Partnerite Avastamine, et leida rohkem partnereid - + Encryption mode: Krüpteeringu režiim: - + Require encryption Nõua krüpteering - + Disable encryption Keela krüpteering - + Enable when using a proxy or a VPN connection Luba kui kasutad proksit või VPN ühendust - + Enable anonymous mode Luba anonüümne režiim - + Maximum active downloads: Maksimaalselt aktiivseid allalaadimisi: - + Maximum active uploads: Maksimaalselt aktiivseid üleslaadimisi: - + Maximum active torrents: Maksimaalselt aktiivseid torrenteid: - + Do not count slow torrents in these limits Ära arvesta aeglaseid torrenteid limiitide hulka - + Upload rate threshold: Üleslaadimise kiiruse piirmäär: - + Download rate threshold: Allalaadimise kiiruse piirmäär: - - - - + + + + sec seconds sek - + Torrent inactivity timer: Torrenti passiivsuse timer: - + then siis - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: Sertifikaat: - + Key: Võti: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informatsioon sertifikaatidest</a> - + Change current password Muuda praegust parooli - Use alternative Web UI - Kasuta alternatiivset Web UI'd - - - + Files location: Faili asukoht: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Turvalisus - + Enable clickjacking protection Luba clickjacking'ute kaitse - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers Lisa kohandatud HTTP päised - + Header: value pairs, one per line - + Enable reverse proxy support Luba reverse proxy tugi - + Trusted proxies list: Usaldatud prokside nimekiri - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Teenus: - + Register Registreeri - + Domain name: Domeeni nimi: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Lubades need valikud, on oht, et <strong>kaotate täielikult</strong> oma .torrent failid! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Kui te lubate teise valiku (&ldquo;Ka siis, kui lisamine tühistatakse&rdquo;), <strong>kustutatakse</strong> .torrent fail isegi siis, kui te vajutate &ldquo;<strong>Tühista</strong>&rdquo; dialoogis &ldquo;Lisa torrent&rdquo; @@ -7490,12 +7455,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Vali qBittorrenti UI Teema fail - + Choose Alternative UI files location Vali Alternatiivse UI faili asukoht - + Supported parameters (case sensitive): Toetatud parameetrid (sõltuvalt suur- ja väiketähest): @@ -7515,183 +7480,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. Pole peatamise tingimust määratud. - + Torrent will stop after metadata is received. Torrent peatatakse pärast meta-andmete saamist. - + Torrent will stop after files are initially checked. Torrent peatatakse pärast failide kontrolli. - + This will also download metadata if it wasn't there initially. See laeb alla ka metadata, kui seda ennem ei olnud. - + %N: Torrent name %N: Torrenti nimi - + %L: Category %L: Kategooria - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path %D: Salvestamise asukoht - + %C: Number of files %C: Faile on kokku - + %Z: Torrent size (bytes) %Z: Torrenti suurus (baiti) - + %T: Current tracker %T: Praegune jälitaja - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Vihje: ümbritsege parameeter jutumärkidega, et vältida teksti katkestamist tühimikes (nt "%N"). - + Test email - + Attempted to send email. Check your inbox to confirm success - + Prooviti saata e-kiri. Kontrollige postkasti, et kas saabus edukalt - + (None) (Puudub) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate Sertifikaat: - + Select certificate Vali sertifikaat - + Private key Privaatne võti - + Select private key Vali privaatne võti - + WebUI configuration failed. Reason: %1 WebUI konfigureerimine nurjus. Selgitus: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 on soovitatud parimaks Windowsi tumeda režiimi ühildusega - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Tume - + Light Light color scheme - + Hele - + System System color scheme - + Select folder to monitor Vali kaust mida monitoorida - + Adding entry failed Kirje lisamine nurjus - + The WebUI username must be at least 3 characters long. WebUI kasutajanimi pikkus peab olema vähemalt 3 tähemärki. - + The WebUI password must be at least 6 characters long. WebUI parooli pikkus peab olema vähemalt 6 tähemärki. - + Location Error Asukoha viga - - + + Choose export directory Vali ekspordi sihtkoht - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7701,69 +7666,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: Sildid (eraldatud komaga) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Vali salvestamise sihtkoht - + Torrents that have metadata initially will be added as stopped. Torrentid, millel on metaandmed, lisatakse peatutuna. - + Choose an IP filter file Vali IP filtri fail - + All supported filters Kõik toetatud filtrid - + The alternative WebUI files location cannot be blank. Alternatiivse WebUI faili asukoht ei saa olla tühi. - + Parsing error Analüüsimise viga - + Failed to parse the provided IP filter - + Successfully refreshed Edukalt värskendatud - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7774,18 +7739,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Eelistused - + Time Error Aja viga - + The start time and the end time can't be the same. Alguse ja lõpu aeg ei tohi olla samad. - - + + Length Error Pikkuse viga @@ -7876,163 +7841,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Riik/Regioon - + IP/Address IP/Aadress - + Port Port - + Flags Lipud - + Connection Ühendus - + Client i.e.: Client application Klient - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Edenemine - + Down Speed i.e: Download speed Alla Kiirus - + Up Speed i.e: Upload speed Üles Kiirus - + Downloaded i.e: total data downloaded Allalaetud - + Uploaded i.e: total data uploaded Üleslaaditud - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Seotus - + Files i.e. files that are being downloaded right now Failid - + Column visibility Veeru nähtavus - + Resize columns Muuda veergude suurust - + Resize all non-hidden columns to the size of their contents Muuda kõikide mitte-peidetud veergude suurust sobitumaks vastavalt nende sisule - + Add peers... Lisa partnereid... - - + + Adding peers Lisan partnereid - + Some peers cannot be added. Check the Log for details. Mõnda partnerit ei saa lisada. Vaata lisainfot Log failist. - + Peers are added to this torrent. Partnerid on lisatud sellele torrentile. - - + + Ban peer permanently Keela partner lõplikult - + Cannot add peers to a private torrent Ei saa lisada partnereid privaatsetele torrentitele - + Cannot add peers when the torrent is checking Partnereid ei saa lisada, kui torrentit kontrollitakse - + Cannot add peers when the torrent is queued Partnereid ei saa lisada, kui torrent on ootejärjekorras - + No peer was selected Ühtegi partnerit ei valitud - + Are you sure you want to permanently ban the selected peers? Kindel, et soovid lõplikult keelata valitud partnereid? - + Peer "%1" is manually banned Partner "%1" on manuaalselt keelatud - + N/A Puudub - + Copy IP:port Kopeeri IP:port @@ -8313,34 +8278,8 @@ Need pistikprogrammid olid välja lülitatud. PowerManagement - qBittorrent is active - qBittorrent on aktiivne - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent on aktiivne @@ -8589,7 +8528,7 @@ Need pistikprogrammid olid välja lülitatud. Popularity: - + Populaarsus: @@ -8624,7 +8563,7 @@ Need pistikprogrammid olid välja lülitatud. Private: - + Privaatne: @@ -8632,153 +8571,124 @@ Need pistikprogrammid olid välja lülitatud. Salvestamise Asukoht: - + Never Mitte kunagi - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (olemas %3) - - + + %1 (%2 this session) %1 (%2 see seanss) - - + + N/A Puudub - + Yes - Jah + Jah - + No - Ei + Ei - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 on kokku) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 kesk.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Uus veebi-seeme - - - Remove Web seed - Eemalda veebi-seeme - - - Copy Web seed URL - Kopeeri veebi-seemne URL - - - Edit Web seed URL - Muuda veebi-seemne URL-i - - - + Filter files... Filtreeri failid... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Kiiruse graafikud on väljalülitatud - + You can enable it in Advanced Options - New URL seed - New HTTP source - Uus URL-seeme - - - New URL seed: - Uus URL-seeme: - - - This URL seed is already in the list. - URL-seeme on juba nimekirjas. - - - + Web seed editing Veebi-seemne muutmine - + Web seed URL: Veebi-seemne URL: @@ -8786,33 +8696,33 @@ Need pistikprogrammid olid välja lülitatud. RSS::AutoDownloader - - + + Invalid data format. Sobimatu andmete formaat. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format Sobimatu andmete formaat - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8820,22 +8730,22 @@ Need pistikprogrammid olid välja lülitatud. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Ei saanud allalaadida RSS-voogu '%1'. Selgitus: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-voog kohas '%1' on uuendatud. Lisatud %2 uut artiklit. - + Failed to parse RSS feed at '%1'. Reason: %2 Ei saanud analüüsida RSS-voogu '%1'. Selgitus: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-voog kohas '%1' on edukalt alla laaditud. Hakkame seda analüüsima. @@ -8884,12 +8794,12 @@ Need pistikprogrammid olid välja lülitatud. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8911,76 +8821,117 @@ Need pistikprogrammid olid välja lülitatud. - + Item doesn't exist: %1. Seda pole olemas: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Juurkausta ei saa kustutada. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Nurjus RSS-voogu laadimine. Voog: "%1". Selgitus: URL on vajalik. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Ei saanud RSS-voogu laadida. Voog: "%1". Põhjus: UID on kehtetu. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Leitakse dubleeritud RSS-voog. UID: "%1". Viga: Konfiguratsioon näib olevat rikutud. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. Vigane RSS nimekiri, seda ei kuvata. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. Ülemkausta ei eksisteeri: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Voogu pole olemas: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL + + + + Refresh interval: + + + + + sec + sek + + + + Default + Vaikimisi + + RSSWidget @@ -9080,78 +9031,77 @@ Need pistikprogrammid olid välja lülitatud. + Feed options... + + + Edit feed URL... - Muuda voogu URLi... + Muuda voogu URLi... - Edit feed URL - Muuda voogu URLi + Muuda voogu URLi - + Please choose a folder name Palun valige kausta nimi - + Folder name: Kausta nimi: - + New folder Uus kaust - - Please type a RSS feed URL - Palun sisesta RSS-voo URL + Palun sisesta RSS-voo URL - - Feed URL: - Feedi URL: + Feedi URL: - + Deletion confirmation Kustutamise kinnitamine - + Are you sure you want to delete the selected RSS feeds? Kindel, et soovite kustutada valitud RSS-vood? - + Please choose a new name for this RSS feed Palun valige RSS-voole uus nimi - + New feed name: Uus feedi nimi: - + Rename failed Ümbernimetamine nurjus - + Date: Kuupäev: - + Feed: Voog: - + Author: Autor: @@ -9288,10 +9238,6 @@ Need pistikprogrammid olid välja lülitatud. i.e: Number of partial sources Kaanid - - Search engine - Otsingumootor - Filter search results... @@ -9412,104 +9358,104 @@ Need pistikprogrammid olid välja lülitatud. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. Plugin'at ei toetata. - + Plugin %1 has been successfully updated. Plugin %1 on edukalt uuendatud. - + All categories Kõik kategooriad - + Movies Filmid - + TV shows TV saated - + Music Muusika - + Games Mängud - + Anime Anime - + Software Tarkvara - + Pictures Pildid - + Books Raamatud - + Update server is temporarily unavailable. %1 Uuenduste server on ajutiselt kinni. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" on vana, uuendan versioonile %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9534,135 +9480,127 @@ Click the "Search plugins..." button at the bottom right of the window Otsi plugin'aid... - + A phrase to search for. Fraas mida otsida. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example Näidis: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins - + Only enabled Ainult lubatud - - + + Invalid data format. - Sobimatu andmete formaat. + Sobimatu andmete formaat. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab Sulge sakk - + Close all tabs Sulge kõik sakid - + Select... Vali... - - + + Search Engine Otsingu Mootor - - + + Please install Python to use the Search Engine. Palun installige Python, et kasutada otsingu mootorit. - + Empty search pattern Tühjenda otsingu väli - + Please type a search pattern first Palun sisestage esmalt otsingumuster - + Stop Stop - - Search has finished - Otsing on lõpetatud - - - Search has failed - Otsimine nurjus - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10060,67 +9998,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Ühenduse olek: - - + + No direct connections. This may indicate network configuration problems. Ei ole otseühendusi. See viitab interneti sätete probleemile. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 sõlme - + qBittorrent needs to be restarted! qBittorrentit on vaja taaskäivitada! - - + + Connection Status: Ühenduse Olek: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Võrguühenduseta. See tähendab tavaliselt, et qBittorrent ei suutnud valitud pordil sissetulevaid ühendusi kuulata. - + Online Võrgus - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Klõpsake, et lülituda alternatiivsetele kiiruspiirangutele - + Click to switch to regular speed limits Klõpsake, et lülituda tavapärastele kiiruspiirangutele @@ -10148,10 +10096,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Lõpetatud (0) - - Paused (0) - Pausitud (0) - Running (0) @@ -10235,30 +10179,18 @@ Click the "Search plugins..." button at the bottom right of the window Start torrents - + Käivita torrentid Stop torrents - - - - Paused (%1) - Pausitud (%1) + Peata torrentid Moving (%1) Teisaldakse (%1) - - Resume torrents - Jätka torrentitega - - - Pause torrents - Pausi torrentid - Remove torrents @@ -10335,32 +10267,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Eemalda kasutamata sildid - - Resume torrents - Jätka torrentitega - - - Pause torrents - Pausi torrentid - Remove torrents Eemalda torrentid - - New Tag - Uus Silt - Start torrents - + Käivita torrentid Stop torrents - + Peata torrentid @@ -10687,17 +10607,17 @@ Palun vali teine nimi ja proovi uuesti. TorrentCreatorController - + Too many active tasks Liiga palju aktiivseid toiminguid - + Torrent creation is still unfinished. Torrenti loomine pole veel valmis. - + Torrent creation failed. Torrenti loomine nurjus. @@ -10949,13 +10869,6 @@ Palun vali teine nimi ja proovi uuesti. - - TorrentInfo - - Invalid metadata - Vigased metaandmed - - TorrentOptionsDialog @@ -10993,10 +10906,6 @@ Palun vali teine nimi ja proovi uuesti. Torrent Share Limits - - Torrent speed limits - Torrenti kiiruse limiidid - Download: @@ -11029,26 +10938,6 @@ Palun vali teine nimi ja proovi uuesti. Upload: Üleslaadimine: - - Torrent share limits - Torrenti jagamise limiidid - - - Use global share limit - Kasuta üleüldist jagamise limiiti - - - Set no share limit - Ilma jagamise piiranguta - - - Set share limit to - Määra jagamise limiit - - - ratio - suhe - Disable DHT for this torrent @@ -11090,10 +10979,6 @@ Palun vali teine nimi ja proovi uuesti. Not applicable to private torrents Ei kehti privaatsetele torrentitele - - Please select a limit method first - Palun ennem valige limiidi meetod - TorrentShareLimitsWidget @@ -11148,12 +11033,12 @@ Palun vali teine nimi ja proovi uuesti. Stop torrent - + Peata torrent Remove torrent - Eemalda torrent + Eemalda torrent @@ -11163,7 +11048,7 @@ Palun vali teine nimi ja proovi uuesti. Enable super seeding for torrent - Luba super jagamise režiim torrentile + Luba super jagamise režiim torrentile @@ -11178,10 +11063,6 @@ Palun vali teine nimi ja proovi uuesti. Torrent Tags Torrenti sildid - - New Tag - Uus Silt - Add tag @@ -11216,78 +11097,78 @@ Palun vali teine nimi ja proovi uuesti. TorrentsController - + Error: '%1' is not a valid torrent file. Viga: '%1' ei ole sobiv torrenti fail. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded Torrenti metadata ei ole veel allalaaditud - + File IDs must be integers - + File ID is not valid Faili ID pole sobilik - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty Salvestamise asukoht ei tohi olla tühimik - - + + Cannot create target directory Sihtkataloogi ei saa luua - - + + Category cannot be empty Kategooria ei saa olla tühi - + Unable to create category Ei saanud luua kategooriat - + Unable to edit category Ei saanud muuta kategooriat - + Unable to export torrent file. Error: %1 Ei saa eksportida torrenti faili. Viga: %1 - + Cannot make save path @@ -11307,39 +11188,39 @@ Palun vali teine nimi ja proovi uuesti. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Ei saa kirjutada sihtkohta - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name Sobimatu torrenti nimi - - + + Incorrect category name Sobimatu kategooria nimi @@ -11422,7 +11303,7 @@ Palun vali teine nimi ja proovi uuesti. Invalid state! - + Sobimatu olek! @@ -11444,19 +11325,11 @@ Palun vali teine nimi ja proovi uuesti. Min Announce - - Invalid status! - Sobimatu olek! - Tier - - Protocol - Protokoll - Status @@ -11487,10 +11360,6 @@ Palun vali teine nimi ja proovi uuesti. Message Teavitus - - v%1 - v%1 - TrackerListWidget @@ -11500,73 +11369,73 @@ Palun vali teine nimi ja proovi uuesti. See torrent on privaatne - + Tracker editing Jälitaja muutmine - + Tracker URL: Jälitaja URL: - - + + Tracker editing failed Jälitaja muutmine nurjus - + The tracker URL entered is invalid. Sisestatud jälitaja URL on sobimatu. - + The tracker URL already exists. See jälitaja URL on juba olemas. - + Edit tracker URL... Muuda jälgija URL-i... - + Remove tracker Eemalda jälitaja - + Copy tracker URL Kopeeri jälitaja URL - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns Muuda veergude suurust - + Resize all non-hidden columns to the size of their contents Muuda kõikide mitte-peidetud veergude suurust sobitumaks vastavalt nende sisule - + Add trackers... Lisa jälitajaid... - + Column visibility Veergude nähtavus @@ -11649,20 +11518,12 @@ Palun vali teine nimi ja proovi uuesti. Start torrents - + Käivita torrentid Stop torrents - - - - Resume torrents - Jätka torrentitega - - - Pause torrents - Pausi torrentid + Peata torrentid @@ -11786,10 +11647,6 @@ Palun vali teine nimi ja proovi uuesti. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Kontrollin jätkamise andmeid - - Paused - Pausitud - Completed @@ -11830,11 +11687,6 @@ Palun vali teine nimi ja proovi uuesti. % Done Edenemine - - Status - Torrent status (e.g. downloading, seeding, paused) - Olek - Stopped @@ -11844,7 +11696,7 @@ Palun vali teine nimi ja proovi uuesti. Status Torrent status (e.g. downloading, seeding, stopped) - Olek + Olek @@ -11879,7 +11731,7 @@ Palun vali teine nimi ja proovi uuesti. Popularity - + Populaarsus @@ -11960,22 +11812,17 @@ Palun vali teine nimi ja proovi uuesti. Time Active Time (duration) the torrent is active (not stopped) - Aeg Aktiivne + Aeg Aktiivne: Yes - Jah + Jah No - Ei - - - Time Active - Time (duration) the torrent is active (not paused) - Aeg Aktiivne + Ei @@ -12047,7 +11894,7 @@ Palun vali teine nimi ja proovi uuesti. Private Flags private torrents - + Privaatne @@ -12077,354 +11924,319 @@ Palun vali teine nimi ja proovi uuesti. TransferListWidget - + Column visibility Veeru nähtavus - + Recheck confirmation Ülekontrollimise kinnitamine - + Are you sure you want to recheck the selected torrent(s)? Kindel, et soovid üle kontrollida valitud torrent(eid)? - + Rename Ümbernimeta - + New name: Uus nimi: - + Choose save path Vali salvestamise asukoht - Confirm pause - Kinnitus, enne pausimist - - - Would you like to pause all torrents? - Kas soovite pausile panna kõik torrentid? - - - Confirm resume - Kinnitus, enne jätkamist - - - Would you like to resume all torrents? - Kas soovite jätkata kõikide torrentitega? - - - + Unable to preview Ei saanud teha eelvaadet - + The selected torrent "%1" does not contain previewable files Valitud torrent "%1" ei sisalda eelvaadetavaid faile - + Resize columns Muuda veergude suurust - + Resize all non-hidden columns to the size of their contents Muuda kõikide mitte-peidetud veergude suurust sobitumaks vastavalt nende sisule - + Enable automatic torrent management Lülita sisse automaatne torrentite haldamine - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Oled kindel, et soovid sisselülitada automaatse torrenti halduse valitud torrenti(tele)? Nende torrentite asukohti võidakse muuta. - Add Tags - Lisa silte - - - + Choose folder to save exported .torrent files Määra kaust kuhu salvestakse eksporditud .torrent failid - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Nurjus .torrent faili eksportimine. Torrent: "%1". Salvestuse asukoht: "%2". Selgitus: "%3" - + A file with the same name already exists Sama nimega fail on juba olemas - + Export .torrent file error Viga .torrent faili eksportimisega - + Remove All Tags Eemalda Kõik Sildid - + Remove all tags from selected torrents? Eemalda kõik sildid valitud torrentitelt? - + Comma-separated tags: Komaga eraldatud sildid: - + Invalid tag Sobimatu silt - + Tag name: '%1' is invalid Sildi nimi: '%1' on sobimatu - &Resume - Resume/start the torrent - &Jätka - - - &Pause - Pause the torrent - &Pane Pausile - - - Force Resu&me - Force Resume/start the torrent - Sunni Jätka&ma - - - + Pre&view file... Fai&li eelvaade... - + Torrent &options... Torrenti &valikud... - + Open destination &folder Ava sihtkoha &kaust - + Move &up i.e. move up in the queue Liiguta &üles - + Move &down i.e. Move down in the queue Liiguta &alla - + Move to &top i.e. Move to top of the queue Liiguta kõige &üles - + Move to &bottom i.e. Move to bottom of the queue Liiguta täitsa &alla - + Set loc&ation... Määra a&sukoht... - + Force rec&heck Sunni üle&kontrolli - + Force r&eannounce - + &Magnet link &Magnet link - + Torrent &ID Torrenti &ID - + &Comment &Kommentaar - + &Name &Nimi - + Info &hash v1 Info &räsi v1 - + Info h&ash v2 Info r&äsi v2 - + Re&name... Üm&bernimeta... - + Edit trac&kers... Muuda j&älitajaid... - + E&xport .torrent... E&kspordi .torrent... - + Categor&y Kategoor&ia - + &New... New category... &Uus... - + &Reset Reset category - + Ta&gs Sil&did - + &Add... Add / assign multiple tags... &Lisa... - + &Remove All Remove all tags &Eemalda Kõik - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Järjekord - + &Copy &Kopeeri - + Exported torrent is not necessarily the same as the imported Eksporditud torrent ei ole täielikult sama mis imporditud - + Download in sequential order Järjestikuses allalaadimine - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Ilmnesid vead .torrent failide eksportimisega. Kontrollige toimingute logi, et näha lisainfot. - + &Start Resume/start the torrent - + &Käivita - + Sto&p Stop the torrent - + Pe&ata - + Force Star&t Force Resume/start the torrent - + Sunni Käivita&ma - + &Remove Remove the torrent &Eemalda - + Download first and last pieces first Lae alla esmalt esimene ja viimane tükk - + Automatic Torrent Management Automaatne Torrenti Haldamine - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automaatne režiim tähendab, et mitmed torrenti omadused (sh salvestamise koht) määratakse seostatud kategooriaga - + Super seeding mode Super jagamise režiim @@ -12556,32 +12368,32 @@ Palun vali teine nimi ja proovi uuesti. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12673,52 +12485,52 @@ Palun vali teine nimi ja proovi uuesti. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Lubamatu failitüüp, lubatud on ainult tavaline fail. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. Kasutatakse integreeritud WebUI'd. - + Using custom WebUI. Location: "%1". Kasutatakse kohandatud WebUI'd. Asukoht: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. WebUI tõlge valitud lokaalile (%1) on edukalt laetud. - + Couldn't load WebUI translation for selected locale (%1). Ei saanud laadida WebUI tõlget valitud lokaalile (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Puudub eraldaja ':' WebUI kohandatud HTTP päises: "%1" - + Web server error. %1 Veebi serveri viga. %1 - + Web server error. Unknown error. @@ -12776,7 +12588,7 @@ Palun vali teine nimi ja proovi uuesti. Unknown error - Tundmatu viga + Tundmatu viga diff --git a/src/lang/qbittorrent_eu.ts b/src/lang/qbittorrent_eu.ts index f20aa83f6..4b74b9ec3 100644 --- a/src/lang/qbittorrent_eu.ts +++ b/src/lang/qbittorrent_eu.ts @@ -170,10 +170,6 @@ Never show again Ez erakutsi berriro - - Torrent settings - Torrent ezarpenak - Set as default category @@ -235,25 +231,25 @@ Gelditze-egoera: - - + + None Bat ere ez - - + + Metadata received Metadatuak jaso dira - + Torrents that have metadata initially will be added as stopped. Hasieran metadatuak dituzten torrentak geldituta gehituko dira. - + Files checked Fitxategiak egiaztatuta @@ -368,112 +364,112 @@ Gorde .torrent agiri bezala... - + I/O Error S/I Akatsa - + Not Available This comment is unavailable Ez dago Eskuragarri - + Not Available This date is unavailable Ez dago Eskuragarri - + Not available Eskuraezina - + Magnet link Magnet lotura - + Retrieving metadata... Metadatuak eskuratzen... - - + + Choose save path Hautatu gordetze helburua - + No stop condition is set. Ez da gelditze-egoerarik ezarri. - + Torrent will stop after metadata is received. Torrenta gelditu egingo da metadatuak jaso ondoren. - + Torrent will stop after files are initially checked. Torrenta gelditu egingo da fitxategiak aztertu ondoren. - + This will also download metadata if it wasn't there initially. Honek metadatuak deskargatu ditu ez bazeuden hasieratik. - + N/A E/G - + %1 (Free space on disk: %2) %1 (Diskako toki askea: %2) - + Not available This size is unavailable. Ez dago Eskuragarri - + Torrent file (*%1) Torrent fitxategia (*%1) - + Save as torrent file Gorde torrent agiri bezala - + Couldn't export torrent metadata file '%1'. Reason: %2. Ezin izan da '%1' torrent metadatu fitxategia esportatu. Arrazoia: %2. - + Cannot create v2 torrent until its data is fully downloaded. Ezin da v2 torrenta sortu bere datuak guztiz deskargatu arte. - + Filter files... Iragazi agiriak... - + Parsing metadata... Metadatuak aztertzen... - + Metadata retrieval complete Metadatu eskurapena osatuta @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Torrenta deskargatzen... Iturria: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Torrenta gehitzeak huts egin du. Irurria: "%1". Arrazoia: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Bikoiztutako torrent bat gehitzeko saiakera bat detektatu da. Iturria: %1. Dagoen torrenta: %2. Emaitza: %3 + Bikoiztutako torrent bat gehitzeko saiakera bat detektatu da. Iturria: %1. Dagoen torrenta: %2. Emaitza: %3 - + Merging of trackers is disabled Aztarnarien fusioa desgaituta dago - + Trackers cannot be merged because it is a private torrent Ezin dira aztarnariak fusionatu torrenta pribatua delako - + Trackers are merged from new source Aztarnariak fusionatu dira iturri berritik + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Berregiaztatu torrentak osatutakoan - - + + ms milliseconds sm - + Setting Ezarpena - + Value Value set for this setting Balioa - + (disabled) (ezgaituta) - + (auto) (berez) - - + + min minutes min - + All addresses Helbide guztiak - + qBittorrent Section qBittorrent Atala - - + + Open documentation Ireki agiritza - + All IPv4 addresses IPv4 helbide guztiak - + All IPv6 addresses IPv6 helbide guztiak - + libtorrent Section libtorrent Atala - + Fastresume files Fastresume fitxategiak - + SQLite database (experimental) SQLite datu-basea (esperimentala) - + Resume data storage type (requires restart) Berrekite datu biltegi-mota (berrabiaraztea beharrezkoa) - + Normal Arrunta - + Below normal Arruntetik behera - + Medium Ertaina - + Low Apala - + Very low Oso apala - + Physical memory (RAM) usage limit Memoria fisikoaren (RAM) erabilera-muga - + Asynchronous I/O threads S/I hari asinkronoak - + Hashing threads Hash hariak - + File pool size Agiri multzoaren neurria - + Outstanding memory when checking torrents Gain oroimena torrentak egiaztatzean - + Disk cache Diska katxea - - - - + + + + + s seconds seg - + Disk cache expiry interval Diska katxe muga tartea - + Disk queue size Diskoaren ilara tamaina - - + + Enable OS cache Gaitu SE katxea - + Coalesce reads & writes Batu irakur eta idatzi - + Use piece extent affinity Erabili atalaren maila kidetasuna - + Send upload piece suggestions Bidali igoera atal iradokizunak - - - - - + + + + + 0 (disabled) 0 (desgaituta) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Gorde berrekintze-datu tartea: [0: desgaituta] - + Outgoing ports (Min) [0: disabled] Irteera atakak (Gutx) [0: desgaituta] - + Outgoing ports (Max) [0: disabled] Irteera atakak (Geh) [0: desgaituta] - + 0 (permanent lease) 0 (alokatze iraunkorra) - + UPnP lease duration [0: permanent lease] UPnP esleipenaren iraupena [0: esleipen iraunkorra] - + Stop tracker timeout [0: disabled] Jarraitzailearen denbora-muga gelditzeko: [0: desgaituta] - + Notification timeout [0: infinite, -1: system default] Jakinarazpenen denbora-muga [0: infinitua, -1: sistemak lehenetsia] - + Maximum outstanding requests to a single peer Gehienezko eskaerak parekide bakar bati - - - - - + + + + + KiB KiB - + (infinite) (infinitua) - + (system default) (sistemak lehenetsia) - + Delete files permanently - + Ezabatu fitxategiak betirako - + Move files to trash (if possible) - + Mugitu fitxategiak zakarrontzira (posible bada) - + Torrent content removing mode - + Torrent edukiaren kentze modua - + This option is less effective on Linux Aukera honek eragin gutxiago du Linuxen - + Process memory priority Prozesuen memoria prioritatea - + Bdecode depth limit Bdecode sakoneraren muga - + Bdecode token limit Bdecode token muga - + Default Lehenetsia - + Memory mapped files Memoriara esleitutako fitxategiak - + POSIX-compliant POSIX betetzen du - + Simple pread/pwrite - + pread/pwrite sinplea - + Disk IO type (requires restart) Diskoaren SI mota (berrabiarazi behar da) - - + + Disable OS cache Desgaitu SE cachea - + Disk IO read mode Diskoaren SI irakurtze modua - + Write-through Igarotze-idazketa - + Disk IO write mode Diskoaren SI idazte modua - + Send buffer watermark Bidali buffer urmarka - + Send buffer low watermark Bidali buffer apal urmarka - + Send buffer watermark factor Bidali buffer urmarka ezaugarria - + Outgoing connections per second Irteerako konexioak segundoko - - + + 0 (system default) 0 (sistemak lehenetsia) - + Socket send buffer size [0: system default] Socket bidaltzeko buffer tamaina [0: sistemak lehenetsita] - + Socket receive buffer size [0: system default] Socket jasotzeko buffer tamaina [0: sistemak lehenetsita] - + Socket backlog size Socket atzera-oharraren neurria - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit .torrent fitxategiaren tamaina muga - + Type of service (ToS) for connections to peers Zerbitzu motak (ToS) konexio parekoentzat - + Prefer TCP Hobetsi TCP - + Peer proportional (throttles TCP) Hartzailekiko proporzionala (dohitua TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Sostengatzen du nazioarteturiko domeinu izena (IDN) - + Allow multiple connections from the same IP address Ahalbide elkarketa ugari IP helbide berdinetik - + Validate HTTPS tracker certificates Balioztatu HTTPS aztarnari egiaztagiriak - + Server-side request forgery (SSRF) mitigation Zerbitzariaren aldeko eskaera faltsutzea (SSRF) saihestea - + Disallow connection to peers on privileged ports Ez ahalbidetu elkarketa hartzaileetara pribilegiozko ataketan - + It appends the text to the window title to help distinguish qBittorent instances Testua leihoaren izenburuari eransten dio qBittorent instantziak bereizten laguntzeko - + Customize application instance name Pertsonalizatu aplikazioaren instantziaren izena - + It controls the internal state update interval which in turn will affect UI updates Barne-egoera eguneratzeko tartea kontrolatzen du eta horrek, aldi berean, UI eguneratzeei eragingo die - + Refresh interval Freskatze-tartea - + Resolve peer host names Erabaki hartzaile hostalari izenak - + IP address reported to trackers (requires restart) Aztarnariei jakinarazitako IP helbidea (berrabiarazi behar da) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Beriragarri jarraitzaile guztietara IP edo ataka aldatzean - + Enable icons in menus Gaitu ikonoak menuetan - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Gaitu ataka-birbidaltzea kapsulatutako aztarnarientzat - + Enable quarantine for downloaded files Gaitu berrogeialdia deskargatutako fitxategietarako - + Enable Mark-of-the-Web (MOTW) for downloaded files Gaitu Mark-of-the-Web (MOTW) deskargatutako fitxategietarako - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ziurtagirien baliozkotzeari eta torrenten kanpoko protokolo-jarduerei eragiten die (adibidez, RSS jarioak, programen eguneraketak, torrent fitxategiak, geoip db, etab.) - + Ignore SSL errors - + Ezikusi SSL erroreak - + (Auto detect if empty) (Auto detektatu hutsik badago) - + Python executable path (may require restart) Python exekutagarriaren bide-izena (baliteke berrabiarazi behar izatea) - + Start BitTorrent session in paused state - + Hasi BitTorrent saioa pausatutako egoeran - + sec seconds - seg + seg - + -1 (unlimited) - + -1 (mugagabea) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent saioa ixteko denbora-muga [-1: mugagabea] - + Confirm removal of tracker from all torrents Berretsi aztarnaria torrent guztietatik kentzea - + Peer turnover disconnect percentage Peer turnover disconnect percentage - + Peer turnover threshold percentage Hartzaile errotazio muga ehunekoa - + Peer turnover disconnect interval Hartzaile errotazio etetze tartea - + Resets to default if empty Lehenetsira berrezartzen da hutsik badago - + DHT bootstrap nodes DHT hasieratze nodoak - + I2P inbound quantity I2P sarrerako kantitatea - + I2P outbound quantity I2P irteerako kantitatea - + I2P inbound length I2P sarrerako luzera - + I2P outbound length I2P irteerako luzera - + Display notifications Erakutsi jakinarazpenak - + Display notifications for added torrents Erakutsi jakinarazpenak gehitutako torrententzat - + Download tracker's favicon Jeitsi aztarnariaren ikurra - + Save path history length Gordetze helburu historiaren luzera - + Enable speed graphs Gaitu abiadura grafikoak - + Fixed slots Slot finkoak - + Upload rate based Igoera maila ohinarrituz - + Upload slots behavior Igoera sloten jokabidea - + Round-robin Round-robin - + Fastest upload Igoera azkarrena - + Anti-leech Izain-aurkakoa - + Upload choking algorithm Igoera choking algoritmoa - + Confirm torrent recheck Baieztatu torrentaren berregiaztapena - + Confirm removal of all tags Baieztatu etiketa guztiak kentzea - + Always announce to all trackers in a tier Betik iragarri maila bateko aztarnari guztietara - + Always announce to all tiers Betik iragarri maila guztietara - + Any interface i.e. Any network interface Edozein interfaze - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP algoritmo modu nahasia - + Resolve peer countries Erabaki hartzaile herrialdeak - + Network interface Sare interfazea - + Optional IP address to bind to Aukerazko IP helbidea lotzeko - + Max concurrent HTTP announces Geh HTTP iragarpen aldiberean - + Enable embedded tracker Gaitu barneratutako aztarnaria - + Embedded tracker port Barneratutako aztarnari ataka @@ -1382,17 +1393,17 @@ Invalid directory path - + Direktorio bide-izen baliogabea Directory does not exist - + Direktorioa ez dago Invalid mode, allowed values: %1 - + Modu baliogabea, baimendutako balioak: %1 @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Eramangarri moduan ekiten. Profila agiritegia berez atzeman da hemen: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Agindu lerro ikur erredundantea atzeman da: "%1". Modu eramangarriak berrekite-azkar erlatiboa darama. - + Using config directory: %1 Itxurapen zuzenbidea erabiltzen: %1 - + Torrent name: %1 Torrentaren izena: %1 - + Torrent size: %1 Torrentaren neurria: %1 - + Save path: %1 Gordetze helburua: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrenta %1-ra jeitsi da. - - + + Thank you for using qBittorrent. Mila esker qBittorrent erabiltzeagaitik. - + Torrent: %1, sending mail notification Torrenta: %1, post@ jakinarapena bidaltzen - + Add torrent failed Torrenta gehitzeak huts egin du - + Couldn't add torrent '%1', reason: %2. Ezin izan da '%1' torrent-a gehitu, arrazoia: %2. - + The WebUI administrator username is: %1 WebUI administratzailearen erabiltzaile-izena hau da: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 WebUI administratzailearen pasahitza ez da ezarri. Saio honetarako aldi baterako pasahitz bat eman da: %1 - + You should set your own password in program preferences. Zure pasahitza ezarri beharko zenuke programaren hobespenetan. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI-a desgaituta dago! WebUI gaitzeko, editatu konfigurazio fitxategia eskuz. - + Running external program. Torrent: "%1". Command: `%2` Kanpoko programa exekutatzen. Torrenta: "%1". Komandoa: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Kanpoko programa exekutatzeak huts egin du. Torrenta: "%1". Komandoa: `%2` - + Torrent "%1" has finished downloading "% 1" torrenta deskargatzen amaitu da - + WebUI will be started shortly after internal preparations. Please wait... WebUI barne prestaketak egin eta gutxira hasiko dira. Mesedez, itxaron... - - + + Loading torrents... Torrentak kargatzen... - + E&xit I&rten - + I/O Error i.e: Input/Output Error S/I Akatsa - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Zergaitia: %2 - + Torrent added Torrenta gehituta - + '%1' was added. e.g: xxx.avi was added. '%1' gehituta. - + Download completed Deskarga osatu da - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 hasi da. Prozesuaren ID: %2 - + This is a test email. - + Hau proba posta bat da. - + Test email - + Test posta - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1'-k amaitu du jeisketa. - + Information Argibideak - + To fix the error, you may need to edit the config file manually. Errorea konpontzeko, baliteke konfigurazio fitxategia eskuz editatu behar izatea. - + To control qBittorrent, access the WebUI at: %1 qBittorrent kontrolatzeko, sartu WebUI-ra hemen: %1 - + Exit Irten - + Recursive download confirmation Jeisketa mugagabearen baieztapena - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? '%1' torrentak .torrent fitxategiak ditu, haien deskargarekin jarraitu nahi duzu? - + Never Inoiz - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Deskargatu errekurtsiboki .torrent fitxategia torrent barruan. Iturburu torrenta: "%1". Fitxategia: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Ezin izan da memoria fisikoaren (RAM) erabilera-muga ezarri. Errore kodea: %1. Errore mezua: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Ezin izan da memoria fisikoaren (RAM) erabilera muga gogorra ezarri. Eskatutako tamaina: %1. Sistemaren muga gogorra: %2. Errore kodea: %3. Errore mezua: "%4" - + qBittorrent termination initiated qBittorrent-en amaiera hasi da - + qBittorrent is shutting down... qBittorrent itzaltzen ari da... - + Saving torrent progress... Torrent garapena gordetzen... - + qBittorrent is now ready to exit qBittorrent irteteko prest dago @@ -1766,263 +1777,263 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar E&sportatu... - + Matches articles based on episode filter. Atal iragazkian ohinarritutako artikulu bat-etortzeak. - + Example: Adibidea: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match bat-etorriko dira 2, 5, 8 -> 15, 30 bitartez eta bat denboraldiko hurrengo atalak - + Episode filter rules: Atal iragazki arauak: - + Season number is a mandatory non-zero value Denboraldi zenbakia ezin da huts balioa izan - + Filter must end with semicolon Iragazkia puntu eta kakotxaz amaitu behar da - + Three range types for episodes are supported: Hiru eremu mota sostengatzen dira atalentzat: - + Single number: <b>1x25;</b> matches episode 25 of season one Zenbaki soila: <b>1x25;</b> lehen denboraldiko 25. atala da - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Eremu arrunta: <b>1x25-40;</b> lehen denboraldiko 25 eta 40.-a arteko atalak dira - + Episode number is a mandatory positive value Atal zenbakia balio positiboa izan behar da - + Rules Arauak - + Rules (legacy) Arauak (ondorena) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Eremu mugagabea: <b>1x25-;</b> lehen denboraldiko 25. atala eta aurreranzkoak, eta ondorengo denboraldietako atal guztiak bat datoz - + Last Match: %1 days ago Azken Bat-etortzea: duela %1 egun - + Last Match: Unknown Azken Bat-etortzea: Ezezaguna - + New rule name Arau izen berria - + Please type the name of the new download rule. Mesedez idatzi jeisketa arau berriaren izena. - - + + Rule name conflict Arau izen gatazka - - + + A rule with this name already exists, please choose another name. Jadanik badago izen hau duen arau bat, mesedez hautatu beste izen bat. - + Are you sure you want to remove the download rule named '%1'? Zihur zaude %1 izeneko jeisketa araua kentzea nahi duzula? - + Are you sure you want to remove the selected download rules? Zihur zaude hautatutako jeisketa arauak kentzea nahi dituzula? - + Rule deletion confirmation Arau ezabapen baieztapena - + Invalid action Ekintza baliogabea - + The list is empty, there is nothing to export. Zerrenda hutsik dago, ez dago ezer esportatzeko. - + Export RSS rules Esportatu RSS arauak - + I/O Error S/I Akatsa - + Failed to create the destination file. Reason: %1 Hutsegitea helmuga agiria sortzerakoan. Zergaitia: %1 - + Import RSS rules Inportatu RSS arauak - + Failed to import the selected rules file. Reason: %1 Hutsegitea hautaturiko araua agiria inportatzerakoan. Zergaitia: %1 - + Add new rule... Gehitu arau berria... - + Delete rule Ezabatu araua - + Rename rule... Berrizendatu araua... - + Delete selected rules Ezabatu hautatutako arauak - + Clear downloaded episodes... Garbitu jeitsitako atalak... - + Rule renaming Arau berrizendapena - + Please type the new rule name Mesedez idatzi arau izen berria - + Clear downloaded episodes Garbitu jeitsitako atalak - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Zihur zaude hautatutako araurako jeitsitako atalen zerrenda garbitu nahi dituzula? - + Regex mode: use Perl-compatible regular expressions Regex modua: erabili Perl-bezalako adierazpen arruntak - - + + Position %1: %2 Kokapena %1: %2 - + Wildcard mode: you can use Ordezhizki modua: erabili ditzakezu - - + + Import error Inportazio errorea - + Failed to read the file. %1 Fitxategia irakurtzeak huts egin du. %1 - + ? to match any single character ? edozein hizki soil bat etortzeko - + * to match zero or more of any characters * edozein hizkiko zero edo gehiago bat etortzeko - + Whitespaces count as AND operators (all words, any order) Zuriuneak ETA aldagaia bezala zenbatzen da (hitz gutziak, edozein hurrenkera) - + | is used as OR operator | EDO aldagai bezala erabiltzen da - + If word order is important use * instead of whitespace. Hitz hurrenkera garrantzitsua bada erabili * zuriunearen ordez. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) %1 esaldi hutsa duen adierazpen bat (adib. %2) - + will match all articles. bat etorriko da artikulo guztiekin. - + will exclude all articles. artikulo guztiak baztertuko ditu. @@ -2074,28 +2085,38 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Ezin dira berrekiteko datuak analizatu: formatu baliogabea - - + + Cannot parse torrent info: %1 Ezin da torrentaren informazioa analizatu: %1 - + Cannot parse torrent info: invalid format Ezin da torrentaren informazioa analizatu: formatu baliogabea - + Mismatching info-hash detected in resume data Info-hash baterazina detektatu da berrekiteko datuetan - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Ezin izan dira torrentaren metadatuak '%1'(e)ra gorde. Errorea: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Ezin izan dira torrentaren berrekite datuak gorde '%1'. Errorea: %2. @@ -2106,16 +2127,17 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar + Cannot parse resume data: %1 Ezin dira berrekiteko datuak analizatu: %1 - + Resume data is invalid: neither metadata nor info-hash was found Berrekite datuak baliogabeak dira: ez dira ez metadatuak ez info-hash aurkitu - + Couldn't save data to '%1'. Error: %2 Ezinezkoa datuak gordetzea hemen: '%1'. Akatsa: %2 @@ -2123,38 +2145,60 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar BitTorrent::DBResumeDataStorage - + Not found. Ez da aurkitu. - + Couldn't load resume data of torrent '%1'. Error: %2 Ezin izan dira '%1' torrenteko berrekite datuak kargatu. Errorea: %2 - - + + Database is corrupted. Datu-basea kaltetuta dago. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Ezin izan da Write-Ahead Logging (WAL) egunkari-modua gaitu. Errorea: %1. - + Couldn't obtain query result. Ezin izan da eskaeraren emaitza lortu. - + WAL mode is probably unsupported due to filesystem limitations. WAL modua ziurrenik ez da onartzen fitxategi-sistemaren mugak direla eta. - + + + Cannot parse resume data: %1 + Ezin dira berrekiteko datuak analizatu: %1 + + + + + Cannot parse torrent info: %1 + Ezin da torrentaren informazioa analizatu: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Ezin izan da transakzioa hasi. Errorea: %1 @@ -2162,22 +2206,22 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Ezin izan dira torrentaren metadatuak gorde. Errorea: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Ezin izan dira '%1' torrenteko berrekite datuak gorde. Errorea: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Ezin izan dira '%1' torrenteko berrekite datuak ezabatu. Errorea: %2 - + Couldn't store torrents queue positions. Error: %1 Ezin izan dira torrenten ilararen posizioak gorde. Errorea: %1 @@ -2185,530 +2229,507 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Distributed Hash Table (DHT) euskarria: %1 - - - - - - - - - + + + + + + + + + ON BAI - - - - - - - - - + + + + + + + + + OFF EZ - - + + Local Peer Discovery support: %1 Tokiko parekideen aurkikuntza euskarria: %1 - + Restart is required to toggle Peer Exchange (PeX) support Berrabiarazi behar da Peer Exchange (PeX) euskarria aldatzeko - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrenta berrekiteak huts egin du. Torrenta: "%1". Arrazoia: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrenta berrezartzeak huts egin du: torrent ID inkoherentea hauteman da. Torrenta: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Datu inkoherenteak hauteman dira: kategoria falta da konfigurazio fitxategian. Kategoria berreskuratuko da, baina bere ezarpenak lehenetsiko dira. Torrenta: "%1". Kategoria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Datu inkoherenteak hauteman dira: kategoria baliogabea. Torrenta: "%1". Kategoria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Berreskuratutako kategoriaren eta torrentaren uneko artean bat ez datozen gordetze bide-izenak hauteman dira. Torrenta eskuzko modura aldatu da orain. Torrenta: "%1". Kategoria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Datu inkoherenteak hauteman dira: etiketa falta da konfigurazio fitxategian. Etiketa berreskuratuko da. Torrenta: "%1". Etiketa: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Datu inkoherenteak hauteman dira: etiketa baliogabea. Torrenta: "%1". Etiketa: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Sistema esnatzeko gertaera detektatu da. Aztarnari guztiei berriro iragartzen... - + Peer ID: "%1" Hartzailearen ID-a: "%1" - + HTTP User-Agent: "%1" HTTP erabiltzaile-agentea: "%1" - + Peer Exchange (PeX) support: %1 Peer Exchange (PeX) euskarria: %1 - - + + Anonymous mode: %1 Modu anonimoa: %1 - - + + Encryption support: %1 Zifratze euskarria: %1 - - + + FORCED BEHARTUTA - + Could not find GUID of network interface. Interface: "%1" Ezin izan da sareko interfazearen GUIDa aurkitu. Interfazea: "%1" - + Trying to listen on the following list of IP addresses: "%1" IP helbideen zerrenda hau entzuten saiatzen: "%1" - + Torrent reached the share ratio limit. Torrent partekatze-ratioaren mugara iritsi da. - + Torrent: "%1". Torrenta: "%1". - Removed torrent. - Torrenta kenduta. - - - Removed torrent and deleted its content. - Torrenta kenduta eta bere edukiak ezabatuta. - - - Torrent paused. - Torrenta pausatuta. - - - + Super seeding enabled. Super emaritza gaituta. - + Torrent reached the seeding time limit. Torrentek emaritze denbora-mugara iritsi da. - + Torrent reached the inactive seeding time limit. Torrenta emaritza inaktiboaren denbora-mugara iritsi da. - + Failed to load torrent. Reason: "%1" Ezin izan da torrenta kargatu. Arrazoia: "%1" - + I2P error. Message: "%1". I2P errorea. Mezua: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP euskarria: AKTIBO - + Saving resume data completed. - + Berregite datuen gordeketa osatu da. - + BitTorrent session successfully finished. - + BitTorrent saioa behar bezala amaitu da. - + Session shutdown timed out. - + Saioa ixteko denbora-muga gainditu da. - + Removing torrent. - + Torrenta kentzen. - + Removing torrent and deleting its content. - + Torrenta kentzen eta bere edukia ezabatzen. - + Torrent stopped. - + Torrenta geldituta. - + Torrent content removed. Torrent: "%1" - + Torrentaren edukia kendu da. Torrenta: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrenta kentzeak huts egin du. Torrenta: "%1". Errorea: "%2" - + Torrent removed. Torrent: "%1" - + Torrenta kenduta. Torrenta: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Bikoiztutako torrent bat gehitzeko saiakera bat detektatu da. Dagoen torrenta: %1. Emaitza: %2 - + Merging of trackers is disabled - Aztarnarien fusioa desgaituta dago + Aztarnarien fusioa desgaituta dago - + Trackers cannot be merged because it is a private torrent - Ezin dira aztarnariak fusionatu torrenta pribatua delako + Ezin dira aztarnariak fusionatu torrenta pribatua delako - + Trackers are merged from new source - Aztarnariak fusionatu dira iturri berritik + Aztarnariak fusionatu dira iturri berritik - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP euskarria: EZ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Ezin izan da torrenta esportatu. Torrenta: "%1". Helburua: "%2". Arrazoia: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Berrekite datuak gordetzeari utzi zaio. Torrent nabarmenen kopurua: %1 - + The configured network address is invalid. Address: "%1" Konfiguratutako sare helbidea ez da baliozkoa. Helbidea: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Entzuteko konfiguratutako sare helbidea aurkitzeak huts egin du. Helbidea: "%1" - + The configured network interface is invalid. Interface: "%1" Konfiguratutako sare interfazea ez da baliozkoa. Helbidea: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" IP helbide baliogabea baztertu da debekatutako IP helbideen zerrenda aplikatzean. IPa: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Aztarnaria gehitu da torrentera. Torrenta: "%1". Aztarnaria: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Aztarnaria kendu da torrentetik. Torrenta: "%1". Aztarnaria: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL bidezko emailea gehitu da torrentera. Torrenta: "%1". URLa: "% 2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL bidezko emailea kendu da torrentetik. Torrenta: "%1". URLa: "% 2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Zati-fitxategia kentzeak huts egin du. Torrent: "%1". Arrazoia: "%2". - Torrent paused. Torrent: "%1" - Torrenta pausatuta. Torrenta: "%1" - - - + Torrent resumed. Torrent: "%1" Torrenta berrekita. Torrenta: "%1" - + Torrent download finished. Torrent: "%1" Torrentaren deskarga bukatu da. Torrenta: "% 1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrenta mugitzea bertan behera utzi da. Torrenat: "%1". Iturria: "%2". Helmuga: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrenta geldituta. Torrenta: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Torrenta mugitzea ilaran jartzeak huts egin du. Torrenta: "%1". Iturria: "%2". Helmuga: "%3". Arrazoia: torrent helburura mugitzen ari da une honetan - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Torrenta mugitzea ilaran jartzeak huts egin du. Torrenta: "%1". Iturria: "%2". Helburua: "%3". Arrazoia: bide-izenek kokaleku berdinera daramate - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrentaren mugimendua ilaran jarri da. Torrenta: "%1". Iturria: "%2". Helburua: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Hasi torrenta mugitzen. Torrenta: "%1". Helmuga: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Kategorien konfigurazioa gordetzeak huts egin du. Fitxategia: "%1". Errorea: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Kategorien konfigurazioa analizatzeak huts egin du. Fitxategia: "%1". Errorea: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Behar bezala analizatu da IP iragazkien fitxategia. Aplikaturiko arau kopurua: %1 - + Failed to parse the IP filter file IP iragazkien fitxategia analizatzeak huts egin du - + Restored torrent. Torrent: "%1" Torrenta berrezarrita. Torrenta: "%1" - + Added new torrent. Torrent: "%1" Torrent berria gehitu da. Torrenta: "% 1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrentak errore bat izan du. Torrenta: "%1". Errorea: "%2" - Removed torrent. Torrent: "%1" - Torrenta kenduta. Torrenta: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrenta kenduta eta bere edukiak ezabatuta. Torrenta: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentari SSL parametroak falta zaizkio. Torrenta: "%1". Mezua: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Fitxategiaren errorearen alerta. Torrenta: "%1". Fitxategia: "%2". Arrazoia: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP ataka mapatzeak huts egin du. Mezua: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP ataken mapatzea ongi burutu da. Mezua: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP Iragazkia - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). iragazitako ataka (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). ataka pribilegiatua (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent saioak errore larri bat aurkitu du. Arrazoia: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxy errorea. Helbidea: %1. Mezua: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 modu nahasi murrizpenak - + Failed to load Categories. %1 Ezin izan dira kategoriak kargatu. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" kategorien konfigurazioa kargatzeak huts egin du. Fitxategia: "%1". Errorea: "Datu formatu baliogabea" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrenta kendu da baina bere edukiak edo zati-fitxategia ezabatzeak huts egin du. Torrenta: "%1". Errorea: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 ezgaituta dago - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 ezgaituta dago - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL emaritzaren DNS bilaketak huts egin du. Torrent: "%1". URLa: "%2". Errorea: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" URL emailetik errore-mezua jaso da. Torrenta: "%1". URLa: "%2". Mezua: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" IPan ondo entzuten. IP: "%1". Ataka: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" IPan entzuteak huts egin du. IP: "%1". Portua: "%2/%3". Arrazoia: "%4" - + Detected external IP. IP: "%1" Kanpoko IP detektatu da. IP-a: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Errorea: Barneko alerta-ilara beteta dago eta alertak kendu egin dira, baliteke errendimendu hondatua ikustea. Alerta mota jaitsi da: "%1". Mezua: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrenta ondo mugitu da. Torrenta: "%1". Helmuga: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrent mugitzeak huts egin du. Torrenta: "%1". Iturria: "%2". Helburua: "%3". Arrazoia: "%4" @@ -2758,47 +2779,47 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Ezin izan da fitxategian idatzi. Arrazoia: "%1". Torrenta "kargatu soilik" moduan dago orain. - + Download first and last piece first: %1, torrent: '%2' Jeitsi lehen eta azken atalak lehenik: %1, torrenta: '%2' - + On Bai - + Off Ez - + Failed to reload torrent. Torrent: %1. Reason: %2 Torrenta birkargatzeak huts egin du. Torrenta: "%1". Arrazoia: "%2" - + Generate resume data failed. Torrent: "%1". Reason: "%2" Berrekite datuak sortzeak huts egin du. Torrenta: "%1". Arrazoia: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrenta berresteak huts egin du. Fitxategiak lekuz aldatu dira edo biltegiratzea ez da erabilgarri. Torrenta: "%1". Arrazoia: "%2" - + Missing metadata Metadatuak falta dira - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Agiri berrizendatze hutsegitea. Torrenta: "%1", agiria: "%2", zegatia: "%3" - + Performance alert: %1. More info: %2 Errendimendu alerta: %1. Informazio gehiago: %2 @@ -2835,11 +2856,6 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Expected integer number in environment variable '%1', but got '%2' Zenbaki osoa itxaroten zen '%1' inguru aldagaian, baina lortu da '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - '%1' parametroak '%1=%2' joskera jarraitu behar du - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - '%1' parametroak '%1=%2' joskera jarraitu behar du + '%1' parametroak '%1=%2' joskera jarraitu behar du @@ -2968,11 +2984,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Add torrents as running or stopped - - - - Add torrents as started or paused - Gehitu torrentak hasita edo pausatuta bezala + Gehitu torrentak martxan edo geldituta bezala @@ -3063,20 +3075,12 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Start torrents - + Hasi torrentak Stop torrents - - - - Resume torrents - Berrekin torrentak - - - Pause torrents - Pausatu torrentak + Gelditu torrentak @@ -3099,7 +3103,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar System - + Sistema @@ -3174,11 +3178,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Also remove the content files - - - - Also permanently delete the files - Fitxategiak ere betirako ezabatu + Eduki fitxategiak ere kendu @@ -3390,47 +3390,43 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Pattern Format - + Patroiaren formatua Plain text - + Testu arrunta Wildcards - + Komodinak Regular expression - + Adierazpen arrunta GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrenta deskargatzen... Iturria: "%1" - Trackers cannot be merged because it is a private torrent - Ezin dira aztarnariak fusionatu torrenta pribatua delako - - - + Torrent is already present Torrenta badago jadanik - + Trackers cannot be merged because it is a private torrent. - + Aztarnariak ezin dira batu torrenta pribatua delako - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? '%1' torrenta transferentzia zerrendan dago jada. Iturburu berriko jarraitzaileak batu nahi dituzu? @@ -3548,6 +3544,40 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Onartutako irudi fitxategiak + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Energia-kudeaketak D-Bus interfaze egokia aurkitu du. Interfazea: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Energia-kudeaketa errorea. Ekintza: %1. Errorea: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Energia-kudeaketan ustekabeko errorea. Egoera: %1. Errorea: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar &Options... A&ukerak... - - &Resume - &Berrekin - &Remove @@ -3774,10 +3800,6 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Close Window Itxi Leihoa - - R&esume All - Berrekin &Denak - Manage Cookies... @@ -3816,12 +3838,12 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Sta&rt - + Ha&si Sto&p - + &Gelditu @@ -3831,7 +3853,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Pau&se Session - + &Pausatu saioa @@ -3893,10 +3915,6 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar &Hibernate System &Neguratu Sistema - - S&hutdown System - &Itzali Sistema - &Statistics @@ -3917,14 +3935,6 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar &About &Honi buruz - - &Pause - &Pausatu - - - P&ause All - P&asatu Denak - &Add Torrent File... @@ -3958,12 +3968,12 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar - + Show Erakutsi - + Check for program updates Egiaztatu programaren eguneraketak @@ -3978,388 +3988,382 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar qBittorrent gogoko baduzu, mesedez eman dirulaguntza! - + Execution Log Ekintza Oharra - + Clear the password Garbitu sarhitza - + &Set Password Ezarri &Sarhitza - + Preferences Hobespenak - + &Clear Password &Garbitu Sarhitza - + Transfers Eskualdaketak - - + + qBittorrent is minimized to tray qBittorrent erretilura txikiendu da - - - + + + This behavior can be changed in the settings. You won't be reminded again. Jokabide hau ezarpenetan aldatu daiteke. Ez zaizu berriro gogoratuko. - + Icons Only Ikurrak Bakarrik - + Text Only Idazkia Bakarrik - + Text Alongside Icons Idazkia Ikurren Alboan - + Text Under Icons Idazkia Ikurren Azpian - + Follow System Style Jarraitu Sistemaren Estiloa - - + + UI lock password EI blokeatze sarhitza - - + + Please type the UI lock password: Mesedez idatzi EI blokeatze sarhitza: - + Are you sure you want to clear the password? Zihur zaude sarhitza garbitzea nahi duzula? - + Use regular expressions Erabili adierazpen arruntak - - + + Search Engine - Bilaketa Gailua + Bilaketa Gailua - + Search has failed - Bilaketak huts egin du + Bilaketak huts egin du - + Search has finished - Bilaketa amaitu da + Bilaketa amaitu da - + Search Bilatu - + Transfers (%1) Eskualdaketak (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent eguneratua izan da eta berrabiarazpena behar du aldaketek eragina izateko. - + qBittorrent is closed to tray qBittorrent erretilura itxi da - + Some files are currently transferring. Zenbait agiri eskualdatzen ari dira une honetan. - + Are you sure you want to quit qBittorrent? Zihur zaude qBittorrent uztea nahi duzula? - + &No &Ez - + &Yes &Bai - + &Always Yes & Betik Bai - + Options saved. Aukerak gordeta. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSATUTA] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, K: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Ez dago Python Runtime - + qBittorrent Update Available qBittorrent Eguneraketa Eskuragarri - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python beharrezkoa da bilaketa gailua erabiltzeko baina ez dirudi ezarrita dagoenik. Orain ezartzea nahi duzu? - + Python is required to use the search engine but it does not seem to be installed. Python beharrezkoa da bilaketa gailua erabiltzeko baina ez dirudi ezarrita dagoenik. - - + + Old Python Runtime Python Runtime zaharra - + A new version is available. Bertsio berri bat eskuragarri - + Do you want to download %1? Nahi duzu %1 jeistea? - + Open changelog... Ireki aldaketa-oharra.. - + No updates available. You are already using the latest version. Ez dago eguneraketarik eskuragarri. Jadanik azken bertsioa ari zara erabiltzen. - + &Check for Updates &Egiaztatu Eguneraketak - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Zure Python bertsioa (%1) zaharkituta dago. Beharrezko gutxienekoa: %2. Bertsio berriago bat instalatu nahi duzu orain? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Zure Python bertsioa (%1) zaharkituta dago. Mesedez, eguneratu azken bertsiora bilatzaileek funtziona dezaten. Beharrezko gutxiena: %2. - + Paused - Pausatuta + Pausatuta - + Checking for Updates... Eguneraketak Egiaztatzen.. - + Already checking for program updates in the background Jadanik programaren eguneraketa egiaztatzen barrenean - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Jeisketa akatsa - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python ezartzailea ezin da jeitsi, zergaitia: %1. -Mesedez ezarri eskuz. - - - - + + Invalid password Sarhitz baliogabea - + Filter torrents... Iragazi torrentak... - + Filter by: Iragazi honekin: - + The password must be at least 3 characters long Pasahitzak 3 karaktere izan behar ditu gutxienez - - - + + + RSS (%1) RSS (%1) - + The password is invalid Sarhitza baliogabea da - + DL speed: %1 e.g: Download speed: 10 KiB/s JE abiadura: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s IG abiadura: %1 - + Hide Ezkutatu - + Exiting qBittorrent qBittorrentetik irtetzen - + Open Torrent Files Ireki Torrent Agiriak - + Torrent Files Torrent Agiriak @@ -4556,7 +4560,7 @@ Mesedez ezarri eskuz. SSL error, URL: "%1", errors: "%2" - + SSL errorea, URL: "%1", erroreak: "%2" @@ -5853,47 +5857,47 @@ Mesedez ezarri eskuz. Net::Smtp - + Connection failed, unrecognized reply: %1 Konexioak huts egin du, erantzun ezezaguna: %1 - + Authentication failed, msg: %1 Autentifikazioak huts egin du, mez: %1 - + <mail from> was rejected by server, msg: %1 <mail from> zerbitzariarengatik ukatua izan da, mez: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> zerbitzariarengatik ukatua izan da, mez: %1 - + <data> was rejected by server, msg: %1 <data> zerbitzariarengatik ukatua izan da, mez: %1 - + Message was rejected by the server, error: %1 Mezua zerbitzariarengatik ukatua izan da, mez: %1 - + Both EHLO and HELO failed, msg: %1 EHLO eta HELO-k huts egin dute, mez: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Badirudi SMTP zerbitzariak ez duela onartzen ditugun autentifikazio-modurik [CRAM-MD5|PLAIN|LOGIN], autentifikazioa saltatzen, seguruenik huts egingo duela jakinda... Zerbitzariaren autentifikazio-moduak: %1 - + Email Notification Error: %1 E-posta jakinarazpen errorea: %1 @@ -5935,10 +5939,6 @@ Mesedez ezarri eskuz. RSS RSS - - Web UI - Web EI - Advanced @@ -5959,14 +5959,6 @@ Mesedez ezarri eskuz. Confirm when deleting torrents Baieztatu torrenten ezabapena - - Shows a confirmation dialog upon pausing/resuming all the torrents - Berrespen elkarrizketa bat erakusten du torrentak pausatu/berrekitean - - - Confirm "Pause/Resume all" actions - Berretsi "Pausatu/Berrekin denak" ekintzak - Use alternating row colors @@ -5983,10 +5975,6 @@ Mesedez ezarri eskuz. Always Betik - - Paused torrents only - Pausatutako torrentak bakarrik - Action on double-click @@ -5997,10 +5985,6 @@ Mesedez ezarri eskuz. Downloading torrents: Torrentak jeisterakoan: - - Start / Stop Torrent - Hasi / Gelditu Torrenta - @@ -6059,179 +6043,179 @@ Mesedez ezarri eskuz. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent edukiaren antolakuntza: - + Original Jatorrizkoa - + Create subfolder Sortu azpiagiritegia - + Don't create subfolder Ez sortu azpiagiritegia - + The torrent will be added to the top of the download queue Torrenta deskarga-ilararen goiko aldean gehituko da - + Add to top of queue The torrent will be added to the top of the download queue Gehitu ilararen goiko aldera. - + When duplicate torrent is being added Torrent bikoiztua gehitzen ari denean - + Merge trackers to existing torrent Batu aztarnariak lehendik dagoen torrentarekin - + Keep unselected files in ".unwanted" folder Gorde hautatu gabeko fitxategiak ".unwanted" karpetan - + Add... Gehitu... - + Options.. Aukerak... - + Remove Kendu - + Email notification &upon download completion &Post@ jakinarazpena jeitsiera osatutakoan - + Send test email - + Bidali proba posta - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Hartzaile elkarketa protokoloa: - + Any Edozein - + I2P (experimental) I2P (esperimentala) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>&quot;modu mistoa&quot; gaituta dago I2P torrentek aztarnaria ez den beste iturri batzuetatik parekoak ere lortzeko eta ohiko IPetara konektatzeko baimena dute, anonimotasunik eman gabe. Hau erabilgarria izan daiteke erabiltzaileari I2Pren anonimotasuna interesatzen ez bazaio, baina hala ere I2P parekideekin konektatu ahal izan nahi badu.</p></body></html> - - - + Mixed mode Modu mistoa - Some options are incompatible with the chosen proxy type! - Aukera batzuk ez dira bateragarriak aukeratutako proxy-motarekin! + Aukera batzuk ez dira bateragarriak aukeratutako proxy-motarekin! - + If checked, hostname lookups are done via the proxy Hautatzen bada, ostalari-izenen bilaketak proxy bidez egiten dira - + Perform hostname lookup via proxy Egin ostalari-izenen bilaketa proxy bidez - + Use proxy for BitTorrent purposes Erabili proxy BitTorrent helburuetarako - + RSS feeds will use proxy RSS jarioek proxya erabiliko dute - + Use proxy for RSS purposes Erabili proxy RSS helburuetarako - + Search engine, software updates or anything else will use proxy Bilatzaileak, software eguneratzeak edo beste edozerk proxya erabiliko du - + Use proxy for general purposes Erabili proxy helburu orokorretarako - + IP Fi&ltering IP I&ragazketa - + Schedule &the use of alternative rate limits Egitarautu a&ukerazko neurri muga erabilpena - + From: From start time Hemendik: - + To: To end time Hona: - + Find peers on the DHT network Bilatu hartzaileak DHT sarean - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6224,190 @@ Enkriptaketa beharr du: Elkartu hartzaileetara enkriptaketa protokoloaren bidez Ezagaitu enkriptaketa: Elkartu hartzaileetara enkriptaketa protokolo gabe bakarrik - + Allow encryption Gaitu enkriptaketa - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Argibide gehiago</a>) - + Maximum active checking torrents: Gehienezko egiaztapen-torrent aktibo: - + &Torrent Queueing &Torrent Lerrokapena - + When total seeding time reaches Emaritza denbora osoa honetara heltzen denean - + When inactive seeding time reaches Emaritza denbora inaktiboa honetara heltzen denean - A&utomatically add these trackers to new downloads: - &Berezgaitasunez gehitu aztarnari hauek jeitsiera berriei: - - - + RSS Reader RSS Irakurlea - + Enable fetching RSS feeds Gaitu RSS jarioak lortzea - + Feeds refresh interval: Jarioen berritze epea: - + Same host request delay: Ostalari berdinaren eskaeren atzerapena: - + Maximum number of articles per feed: Gehienezko idazlan harpidetza bakoitzeko: - - - + + + min minutes min - + Seeding Limits Emaritza Mugak - Pause torrent - Pausatu torrenta - - - + Remove torrent Kendu torrenta - + Remove torrent and its files Kendu torrenta eta bere agiriak - + Enable super seeding for torrent Gaitu gain emaritza torrentarentzat - + When ratio reaches Maila erdietsitakoan - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Gelditu torrenta - + A&utomatically append these trackers to new downloads: - + Erantsi a&utomatikoki aztarnari hauek deskarga berrietan: - + Automatically append trackers from URL to new downloads: - + URL: - URL-a: + URL-a: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS Torrent Berez Jeistzailea - + Enable auto downloading of RSS torrents Gaitu RSS torrenten berez jeistea - + Edit auto downloading rules... Editatu berez jeiste arauak... - + RSS Smart Episode Filter RSS Atal Iragazki Adimentsua - + Download REPACK/PROPER episodes Jeitsi REPACK/PROPER atalak - + Filters: Iragazkiak: - + Web User Interface (Remote control) Web Erabiltzaile Interfazea (Hurruneko agintea) - + IP address: IP helbidea: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6416,37 @@ Adierazi IPv4 edo IPv6 helbide bat. "0.0.0.0" adierazi dezakezu edozei "::" edozein IPv6 helbiderentzat, edo "*" bientzat IPv4 et IPv6. - + Ban client after consecutive failures: Kanporatu bezeroa hutsegite jarraien ondoren - + Never Inoiz ez - + ban for: Kanporatu honegatik: - + Session timeout: Saio epemuga: - + Disabled Ezgaituta - Enable cookie Secure flag (requires HTTPS) - Gaitu cookie Seguru ikurra (HTTPS behar du) - - - + Server domains: Zerbitzari domeinuak: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6459,37 @@ WebEI zerbitzariak erabiltzen dituen domeinu izenetan jarri behar duzu. Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. - + &Use HTTPS instead of HTTP Erabili &HTTPS, HTTP-ren ordez - + Bypass authentication for clients on localhost Igaropen egiaztapena tokiko-hostalariko berezoentzat - + Bypass authentication for clients in whitelisted IP subnets Igaropen egiaztapena IP azpisare zerrenda-zuriko berezoentzat - + IP subnet whitelist... IP azpisare zerrenda-zuria... - + Use alternative WebUI - + Erabili beste WebUI bat - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Zehaztu alderantzizko proxy IPak (edo azpisareak, adib. 0.0.0.0/24) birbidalitako bezeroaren helbidea (X-Forwarded-For goiburua) erabiltzeko. Erabili ';' hainbat sarrera banatzeko. - + Upda&te my dynamic domain name Eg&uneratu nire domeinu dinamikoaren izena @@ -6519,12 +6501,12 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi Search - + Bilaketa WebUI - + WebUI @@ -6539,17 +6521,17 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi Style: - + Estiloa: Color scheme: - + Kolore-eskema: Stopped torrents only - + Gelditutako torrentak soilik @@ -6620,99 +6602,99 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi Ezabatu zaharragoak diren babeskopia oharrak: - + Show external IP in status bar - + When adding a torrent Torrent bat gehitzerakoan - + Bring torrent dialog to the front Ekarri torrent elkarrizketa aurrealdera - + The torrent will be added to download list in a stopped state - + Torrenta deskarga zerrendara gehituko da gelditu egoeran - + Also delete .torrent files whose addition was cancelled Ezabatu gehitzea ezeztatu diren .torrent agiriak ere - + Also when addition is cancelled Baita gehitzea ezeztatutakoan - + Warning! Data loss possible! Kontuz! Datuak galdu daitezke! - + Saving Management Gordetze Kudeaketa - + Default Torrent Management Mode: Berezko Torrent Kudeaketa Modua: - + Manual Eskuzkoa - + Automatic Berezgaitasunezkoa - + When Torrent Category changed: Torrent Kategoria aldatzen denean: - + Relocate torrent Berkokatu torrenta - + Switch torrent to Manual Mode Aldatu torrenta Eskuzko Modura - - + + Relocate affected torrents Berkokatu eragindako torrentak - - + + Switch affected torrents to Manual Mode Aldatu eragindako torrentak Eskuzko Modura - + Use Subcategories Erabili Azpikategoriak - + Default Save Path: Berezko Gordetze Helbura: - + Copy .torrent files to: Kopiatu .torrent agiriak hona: @@ -6722,26 +6704,22 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi Erakutsi &qBittorrent jakinarazpen eremuan - &Log file - &Ohar agiria - - - + Display &torrent content and some options Erakutsi &torrent edukia eta aukera batzuk - + De&lete .torrent files afterwards E&zabatu .torrent agiriak edonola - + Copy .torrent files for finished downloads to: Kopiatu amaitutako jeisketa .torrent agiriak hona: - + Pre-allocate disk space for all files Aurre-esleitu diska tokia agiri guztientzat @@ -6771,10 +6749,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi Preview file, otherwise open destination folder Aurreikusi agiria, bestela ireki helmuga agiritegia - - Show torrent options - Erakutsi torrentaren aukerak - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6814,65 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabi urte - + Log performance warnings Erregistratu errendimendu oharrak - The torrent will be added to download list in a paused state - Torrent agiriak jeisketa zerrendara gehituko dira pausatu egoran. - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Ez hasi jeisketa berezgaitasunez - + Whether the .torrent file should be deleted after adding it .torrent fitxategia gehitu ondoren ezabatu behar den ala ez - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Esleitu agiri neurri osoan diskan jeitsierak hasi aurretik, zatiketa gutxitzeko. HDD-etan bakarrik erabilgarria. - + Append .!qB extension to incomplete files Gehitu .!qB luzapena osatugabeko agiriei - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Torrent bat jeistean, eskaini torrentak gehitzea bere barnean aurkituriko .torrent agiri guztientzat - + Enable recursive download dialog Gaitu jeisketa mugagabearen elkarrizketa - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Berezgaitasunezkoa: Torrent ezaugarri ugari (adib. gordetze helburua) elkarturiko kategoriaren arabera erabakiko da Eskuzkoa: Torrent ezaugarri ugari (adib. gordetze helburua) eskuz esleitu behar da - + When Default Save/Incomplete Path changed: Gorde/Osagabe bide-izen lehenetsia aldatzen denean: - + When Category Save Path changed: Kategoria Gordetze Helburua aldatzen denean: - + Use Category paths in Manual Mode Erabili kategorien bide-izenak eskuzko moduan - + Resolve relative Save Path against appropriate Category path instead of Default one Ebatzi gordetze bide-izen erlatiboa kategoriaren bide egokiaren aurka lehenetsitako baten ordez @@ -6922,50 +6892,50 @@ Eskuzkoa: Torrent ezaugarri ugari (adib. gordetze helburua) eskuz esleitu behar qBittorrent leihoaren egoera abiaraztean - + Torrent stop condition: Torrentaren gelditze-baldintza: - - + + None (Bat ere ez) - - + + Metadata received Metadatuak jaso dira - - + + Files checked Fitxategiak egiaztatuta - + Ask for merging trackers when torrent is being added manually Eskatu aztarnariak bateratzea torrenta eskuz gehitzen denean - + Use another path for incomplete torrents: Erabili beste bide-izena bukatu gabeko torrententzat: - + Automatically add torrents from: Berezgaitasunez gehitu torrentak hemendik: - + Excluded file names Baztertutako fitxategi-izenak - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6964,510 @@ readme.txt: iragazi fitxategiaren izen zehatza. readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina ez 'readme10.txt'. - + Receiver Jasotzailea - + To: To receiver Hona: - + SMTP server: SMTP zerbitzaria: - + Sender Bidaltzailea - + From: From sender Hemendik: - + This server requires a secure connection (SSL) Zerbitzari honek elkarketa segurua behar du (SSL) - - + + Authentication Egiaztapena - - - - + + + + Username: Erabiltzaile-izena: - - - - + + + + Password: Sarhitza: - + Run external program Exekutatu kanpoko programa - Run on torrent added - Exekutatu torrenta gehitzean - - - Run on torrent finished - Exekutatu torrenta bukatzean - - - + Show console window Erakutsi kontsolaren leihoa - + TCP and μTP TCP eta μTP - + Listening Port Aditze Ataka - + Port used for incoming connections: Barrurako elkarketentzako ataka: - + Set to 0 to let your system pick an unused port Ezarri 0ra sistemak erabili gabeko ataka bat hartzeko - + Random Zorizkoa - + Use UPnP / NAT-PMP port forwarding from my router Erabili UPnP / NAT-PMP ataka nire bideratzailetik bidaltzeko - + Connections Limits Elkarketa Mugak - + Maximum number of connections per torrent: Gehienezko elkarketa zenbatekoa torrent bakoitzeko: - + Global maximum number of connections: Gehienezko elkarketa zenbatekoa orotara: - + Maximum number of upload slots per torrent: Gehienezko igoera aho zenbatekoa torrent bakoitzeko: - + Global maximum number of upload slots: Gehienezko Igoera aho orokor zenbatekoa: - + Proxy Server Proxy Zerbitzaria - + Type: Mota: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Hostalaria: - - - + + + Port: Ataka: - + Otherwise, the proxy server is only used for tracker connections Bestela, proxya zerbitzaria aztarnari elkarketetarako bakarrik erabiltzen da - + Use proxy for peer connections Erabili proxya hartzaile elkarketetarako - + A&uthentication E&giaztapena - Info: The password is saved unencrypted - Argibidea: Sarhitza enkriptatu gabe gordetzen da + Argibidea: Sarhitza enkriptatu gabe gordetzen da - + Filter path (.dat, .p2p, .p2b): Iragazki helburua (.dat, .p2p, .p2b): - + Reload the filter Birgertatu iragazkia - + Manually banned IP addresses... Eskuzko IP helbide eragoztea... - + Apply to trackers Ezarri aztarnariei - + Global Rate Limits Neurri Muga Orokorrak - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Igoera: - - + + Download: Jeitsiera: - + Alternative Rate Limits Aukerazko Neurri Mugak - + Start time Hasiera ordua - + End time Amaira ordua - + When: Noiz: - + Every day Egunero - + Weekdays Lanegunak - + Weekends Asteburuak - + Rate Limits Settings Neurri Muga Ezarpenak - + Apply rate limit to peers on LAN Ezarri neurri muga LAN-eko hartzaileei - + Apply rate limit to transport overhead Ezarri neurri muga burugain garraioari - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Ezarri neurri muga µTP protokoloari - + Privacy Pribatutatasuna - + Enable DHT (decentralized network) to find more peers Gaitu DHT (zentralizatugabeko sarea) hartzaile gehiago bilatzeko - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Aldatu hartzaileak Bittorrent bezero bateragarriekin (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Gaitu Hartzaile Aldaketa (PeX) hartzaile gehiago bilatzeko - + Look for peers on your local network Bilatu hartzaileak zure tokiko sarean - + Enable Local Peer Discovery to find more peers Gaitu Tokiko Hartzaile Aurkikuntza hartzaile gehiago bilatzeko - + Encryption mode: Enkriptaketa modua: - + Require encryption Enkriptaketa beharrezkoa - + Disable encryption Ezgaitu enkriptaketa - + Enable when using a proxy or a VPN connection Gaitu proxy bat edo VPN elkarketa bat erabiltzerakoan. - + Enable anonymous mode Gaitu izengabeko modua - + Maximum active downloads: Gehienezko jeitsiera eraginda: - + Maximum active uploads: Gehienezko igoera eraginda: - + Maximum active torrents: Gehienezko torrent eraginda: - + Do not count slow torrents in these limits Ez zenbatu torrent geldoak muga hauetan - + Upload rate threshold: Igoera neurri mugapena: - + Download rate threshold: Jeitsiera neurri mugapena: - - - - + + + + sec seconds seg - + Torrent inactivity timer: Torrentaren jardungabe denboragailua: - + then orduan - + Use UPnP / NAT-PMP to forward the port from my router Erabili UPnP / NAT-PMP ataka nire bideratzailetik bidaltzeko - + Certificate: Egiaztagiria: - + Key: Giltza: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Egiaztagiriei buruzko argibideak</a> - + Change current password Aldatu oraingo sarhitza - Use alternative Web UI - Erabili aukerazko Web EI - - - + Files location: Agirien kokalekua: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Segurtasuna - + Enable clickjacking protection Gaitu clickjacking babesa - + Enable Cross-Site Request Forgery (CSRF) protection Gaitu Cross-Site Request Forgery (CSRF) babesa - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Gaitu Hostalari idazburu balioztapena - + Add custom HTTP headers Gehitu norbere HTTP idazburuak - + Header: value pairs, one per line Idazburua: balio pareak, bat lerroko - + Enable reverse proxy support Gaitu alderantzizko proxy bateragarritasuna - + Trusted proxies list: Proxy fidagarrien zerrenda: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Zerbitzua: - + Register Izena eman - + Domain name: Domeinu izena: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Aukera hauek gaituz, <strong>atzerabiderik gabe galdu</strong> ditzakezu zure .torrent agiriak! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Bigarren aukera gaitzen baduzu (&ldquo;Baita gehitzea ezeztatutakoan&rdquo;) .torrent agiria <strong>ezabatu egingo da</strong> baita &ldquo;<strong>Ezeztatu</strong>&rdquo; sakatzen baduzu ere &ldquo;Gehitu torrenta&rdquo; elkarrizketan @@ -7520,12 +7477,12 @@ readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina Hautatu qBittorrent EI Azalgai agiria - + Choose Alternative UI files location Hautatu EI agiri kokaleku alternatiboa - + Supported parameters (case sensitive): Sostengatutako parametroak (hizki xehe-larriak bereiziz) @@ -7545,183 +7502,183 @@ readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina Desgaituta dago sistemaren erretiluaren presentzia detektatu ez delako - + No stop condition is set. Ez da gelditze-egoerarik ezarri. - + Torrent will stop after metadata is received. Torrent gelditu egingo da metadatuak jaso ondoren. - + Torrent will stop after files are initially checked. Torrent-a gelditu egingo da fitxategiak aztertu ondoren. - + This will also download metadata if it wasn't there initially. Honek metadatuak deskargatu ditu ez bazeuden hasieratik. - + %N: Torrent name %N: Torrentaren izena - + %L: Category %L: Kategoria - + %F: Content path (same as root path for multifile torrent) %F: Eduki helburua (torrent anitzerako erro helburua bezala) - + %R: Root path (first torrent subdirectory path) %R: Erro helburua (lehen torrent azpizuzenbide helburua) - + %D: Save path %D: Gordetze helburua - + %C: Number of files %C: Agiri zenbatekoa - + %Z: Torrent size (bytes) %Z: Torrentaren neurria (byte) - + %T: Current tracker %T: Oraingo aztarnaria - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Aholkua: Enkapsulatu parametroa adartxo artean idazkia zuriune batekin ebakia izatea saihesteko (adib., "%N") - + Test email - + Test posta - + Attempted to send email. Check your inbox to confirm success - + Posta elektronikoa bidaltzen saiatu da. Egiaztatu sarrera-ontzia arrakasta berresteko - + (None) (Bat ere ez) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent bat astirotzat hartuko da bere jeitsiera eta igoera neurriak balio hauen azpitik badaude "Torrent jardungabe denboragailu" segunduz - + Certificate Egiaztagiria - + Select certificate Hautatu egiaztagiria - + Private key Giltza pribatua - + Select private key Hautatu giltza pribatua - + WebUI configuration failed. Reason: %1 WebUI konfigurazioak huts egin du. Arrazoia: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 gomendatzen da bateragarritasun handiena lortzeko Windows modu ilunarekin - + System System default Qt style - + Sistema - + Let Qt decide the style for this system - + Utzi Qt-k sistemaren estiloa erabakitzen - + Dark Dark color scheme - + Iluna - + Light Light color scheme - + Argia - + System System color scheme - + Sistema - + Select folder to monitor Hautatu monitorizatzeko agiritegia - + Adding entry failed Hutsegitea sarrera gehitzean - + The WebUI username must be at least 3 characters long. WebUI erabiltzaile-izenak 3 karaktere izan behar ditu gutxienez. - + The WebUI password must be at least 6 characters long. WebUI pasahitzak 6 karaktere izan behar ditu gutxienez. - + Location Error Kokaleku Akatsa - - + + Choose export directory Hautatu esportatzeko zuzenbidea - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Aukera hauek gaitzen direnean, qBittorent-ek .torrent agiriak <strong>ezabatuko</strong> ditu beren jeitsiera lerrora ongi (lehen aukera) edo ez (bigarren aukera) gehitutakoan. Hau <strong>ez da bakarrik</strong> &ldquo;Gehitu torrenta&rdquo; menu ekintzaren bidez irekitako agirietan ezarriko, baita <strong>agiri mota elkarketa</strong> bidez irekitakoetan ere. @@ -7731,69 +7688,69 @@ readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina qBittorrent UI gaiaren fitxategia (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiketak (kakotxaz bananduta) - + %I: Info hash v1 (or '-' if unavailable) %I: info hash v1 (edo '-' erabilgarri ez badago) - + %J: Info hash v2 (or '-' if unavailable) %J: info hash v2 (edo '-' erabilgarri ez badago) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent IDa (sha-1 info hash v1 torrenterako edo sha-256 info hash moztua v2/hybrid torrenterako) - - + + Choose a save directory Hautatu gordetzeko zuzenbide bat - + Torrents that have metadata initially will be added as stopped. Hasieran metadatuak dituzten torrentak geldituta gehituko dira. - + Choose an IP filter file Hautatu IP iragazki agiri bat - + All supported filters Sostengatutako iragazki guztiak - + The alternative WebUI files location cannot be blank. Ordezko WebUIaren fitxategien kokalekua ezin da hutsik egon. - + Parsing error Azterketa akatsa - + Failed to parse the provided IP filter Hutsegitea emandako IP iragazkia aztertzerakoan - + Successfully refreshed Ongi berrituta - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Emandako IP iragazkia ongi aztertu da: %1 araua ezarri dira. @@ -7804,18 +7761,18 @@ readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina Hobespenak - + Time Error Ordu Akatsa - + The start time and the end time can't be the same. Hasiera ordua eta amaiera ordua ezin dira berdinak izan. - - + + Length Error Luzera Akatsa @@ -7900,169 +7857,169 @@ readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina Peer is using NAT hole punching - + Parekidea NAT zulaketa erabiltzen ari da PeerListWidget - + Country/Region Herrialdea/Eskualdea - + IP/Address IP/Helbidea - + Port Ataka - + Flags Ikurrak - + Connection Elkarketa - + Client i.e.: Client application Bezeroa - + Peer ID Client i.e.: Client resolved from Peer ID Parekidearen bezeroaren ID-a - + Progress i.e: % downloaded Garapena - + Down Speed i.e: Download speed Jeisketa Abiadura - + Up Speed i.e: Upload speed Igoera Abiadura - + Downloaded i.e: total data downloaded Jeitsita - + Uploaded i.e: total data uploaded Igota - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Garrantzia - + Files i.e. files that are being downloaded right now Agiriak - + Column visibility Zutabe ikusgarritasuna - + Resize columns Zutabeen tamaina aldatu - + Resize all non-hidden columns to the size of their contents Ezkutatu gabeko zutabeen tamaina haien edukien tamainara aldatu - + Add peers... Gehitu parekoak... - - + + Adding peers Hartzaile gehiketa - + Some peers cannot be added. Check the Log for details. Zenbait hartzaile ezin dira gehitu. Egitaztatu Oharra xehetasunetarako. - + Peers are added to this torrent. Hartzaileak torrent honetara gehitu dira. - - + + Ban peer permanently Eragotzi hartzailea mugagabe - + Cannot add peers to a private torrent Ezin dira parekideak gehitu torrent pribatu batera - + Cannot add peers when the torrent is checking Ezin dira parekideak gehitu torrenta egiaztatzen ari denean - + Cannot add peers when the torrent is queued Ezin dira parekideak gehitu torrenta ilaran dagoenean - + No peer was selected Ez da parekiderik hautatu - + Are you sure you want to permanently ban the selected peers? Zihur zaude mugagabe eragoztea nahi dituzula hautatutako hartzaileak? - + Peer "%1" is manually banned "%1" hartzailea eskuz eragotzia - + N/A E/G - + Copy IP:port Kopiatu IP:ataka @@ -8343,34 +8300,27 @@ Plugin hauek ezgaituta daude. PowerManagement - qBittorrent is active - qBittorrent ekinean dago + qBittorrent ekinean dago PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Energia-kudeaketak D-Bus interfaze egokia aurkitu du. Interfazea: %1 + Energia-kudeaketak D-Bus interfaze egokia aurkitu du. Interfazea: %1 - Power management error. Did not found suitable D-Bus interface. - Energia-kudeaketako errorea. Ez da aurkitu D-Bus interfaze egokia. + Energia-kudeaketako errorea. Ez da aurkitu D-Bus interfaze egokia. - - - Power management error. Action: %1. Error: %2 - Energia-kudeaketa errorea. Ekintza: %1. Errorea: %2 + Energia-kudeaketa errorea. Ekintza: %1. Errorea: %2 - Power management unexpected error. State: %1. Error: %2 - Energia-kudeaketan ustekabeko errorea. Egoera: %1. Errorea: %2 + Energia-kudeaketan ustekabeko errorea. Egoera: %1. Errorea: %2 @@ -8614,12 +8564,12 @@ Plugin hauek ezgaituta daude. Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Denbora aktiboa (hilabetetan), torrenta zein ezaguna den adierazten du Popularity: - + Ospea: @@ -8654,7 +8604,7 @@ Plugin hauek ezgaituta daude. Private: - + Pribatua: @@ -8662,153 +8612,124 @@ Plugin hauek ezgaituta daude. Gordetze Helburua: - + Never Inoiz ez - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ditu %3) - - + + %1 (%2 this session) %1 (%2 saio honetan) - - + + N/A E/G - + Yes - Bai + Bai - + No - Ez + Ez - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (emarituta %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 geh) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 guztira) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 bat.-best.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Web emaritza berria - - - Remove Web seed - Kendu Web emaritza - - - Copy Web seed URL - Kopiatu Web emaritza URL-a - - - Edit Web seed URL - Editatu Web emaritza URL-a - - - + Filter files... Iragazi agiriak... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Abiadura grafikoak desgaituta daude - + You can enable it in Advanced Options Aukera aurreratuetan gaitu dezakezu - New URL seed - New HTTP source - URL emaritza berria - - - New URL seed: - URL emaritza berria: - - - This URL seed is already in the list. - URL emaritza hau jadanik zerrendan dago. - - - + Web seed editing Web emaritza editatzen - + Web seed URL: Web emaritza URL-a: @@ -8816,33 +8737,33 @@ Plugin hauek ezgaituta daude. RSS::AutoDownloader - - + + Invalid data format. Datu heuskarri baliogabea - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Ezin dira RSS Berez-Jeistzaile datuak gorde hemen: %1. Akatsa: %2 - + Invalid data format Datu heuskarri baliogabea - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... '%1' RSS artikulua '%2' arauak onartzen du. Torrenta gehitzen saiatzen... - + Failed to read RSS AutoDownloader rules. %1 RSS deskarga automatikoko arauak irakurtzeak huts egin du. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Ezin da RSS Berez-Jeistzailea arauak gertatu. Zergaitia: %1 @@ -8850,22 +8771,22 @@ Plugin hauek ezgaituta daude. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Hutsegitea RSS jarioa '%1'-ra jeistean. Zergaitia: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS jarioa '%1' eguneratuta. Gehituta %2 artikulu berri. - + Failed to parse RSS feed at '%1'. Reason: %2 Hutsegitea RSS jarioa aztertzean '%1'. Zergaitia: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS jarioa '%1' ongi jeitsi da. Aztertzea abiatzen. @@ -8914,12 +8835,12 @@ Plugin hauek ezgaituta daude. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Ezin izan da RSS saioaren konfigurazioa gorde. Fitxategia: "%1". Errorea: "% 2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Ezin izan dira RSS saioko datuak gorde. Fitxategia: "%1". Errorea: "%2" @@ -8941,76 +8862,121 @@ Plugin hauek ezgaituta daude. - + Item doesn't exist: %1. Gaia ez dago: %1 - Couldn't move folder into itself. - Ezin izan da karpeta bere burura mugitu. + Ezin izan da karpeta bere burura mugitu. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Ezin da erro agiritegia ezabatu. - + Failed to read RSS session data. %1 RSS saioaren datuak irakurtzeak huts egin du. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" RSS saioko datuak analizatzeak huts egin du. Fitxategia: "%1". Errorea: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Ezin izan dira RSS saioko datuak kargatu. Fitxategia: "%1". Errorea: "Datu formatu baliogabea." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Ezin izan da RSS jarioa kargatu. Jarioa: "%1". Arrazoia: URLa beharrezkoa da. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Ezin izan da RSS jarioa kargatu. Jarioa: "%1". Arrazoia: UIDa baliogabea da. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. RSS jario bikoiztua aurkitu da. UID: "%1". Errorea: konfigurazioa hondatuta dagoela dirudi. - + Couldn't load RSS item. Item: "%1". Invalid data format. Ezin izan da RSS elementua kargatu. Elementua: "%1". Datu-formatu baliogabea. - + Corrupted RSS list, not loading it. RSS zerrenda hondatua, ez da kargatzen. - + Incorrect RSS Item path: %1. RSS gai helburu okerra: %1. - + RSS item with given path already exists: %1. Jadanik badago RSS gaia emandako helburuarekin: %1 - + Parent folder doesn't exist: %1. Gaineko agiritegia ez dago: %1 + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Jarioa ez da existitzen: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL-a: + + + + Refresh interval: + + + + + sec + seg + + + + Default + + + RSSWidget @@ -9110,78 +9076,77 @@ Plugin hauek ezgaituta daude. + Feed options... + + + Edit feed URL... - Editatu jarioaren URL-a... + Editatu jarioaren URL-a... - Edit feed URL - Editatu jarioaren URL-a + Editatu jarioaren URL-a - + Please choose a folder name Mesedez hautatu agiritegi izen bat - + Folder name: Agiritegi izena: - + New folder Agiritegi berria - - Please type a RSS feed URL - Mesedez idatzi RSS jario URL bat + Mesedez idatzi RSS jario URL bat - - Feed URL: - Kopiatu harpidetza URL-a + Kopiatu harpidetza URL-a - + Deletion confirmation Ezabatze baieztapena - + Are you sure you want to delete the selected RSS feeds? Zihur zaude hautaturiko RSS jarioak ezabatzea nahi dituzula? - + Please choose a new name for this RSS feed Mesedez hautatu izen berri bat RSS harpidetza honentzat - + New feed name: Harpidetza berriaren izena: - + Rename failed Berrizendatze hutsegitea - + Date: Eguna: - + Feed: Jarioa: - + Author: Egilea: @@ -9318,10 +9283,6 @@ Plugin hauek ezgaituta daude. i.e: Number of partial sources Izainak - - Search engine - Bilaketa gailua - Filter search results... @@ -9411,17 +9372,17 @@ Plugin hauek ezgaituta daude. Engine - + Motorra Engine URL - + Motorraten URL-a Published On - + Hemen argitaratuta @@ -9442,104 +9403,104 @@ Plugin hauek ezgaituta daude. SearchPluginManager - + Unknown search engine plugin file format. Bilaketa gailu plugin agiri heuskarri ezezaguna. - + Plugin already at version %1, which is greater than %2 Plugina jadanik %1 bertsioan dago, zeina %2 baino berriagoa den - + A more recent version of this plugin is already installed. Jadanik ezarrita dago plugin honen bertsio berriago bat. - + Plugin %1 is not supported. %1 plugina ez dago sostengatua - - + + Plugin is not supported. Plugina ez dago sostengatua - + Plugin %1 has been successfully updated. %1 plugina ongi eguneratu da. - + All categories Kategoria guztiak - + Movies Filmak - + TV shows Telesailak - + Music Musika - + Games Jokoak - + Anime Animazioa - + Software Softwarea - + Pictures Argazkiak - + Books Liburuak - + Update server is temporarily unavailable. %1 Eguneraketa zerbitzaria aldibatez eskuraezina dago. %1 - - + + Failed to download the plugin file. %1 Hutsegitea plugin agiria jeisterakoan. %1 - + Plugin "%1" is outdated, updating to version %2 "%1" plugina ez dago eguneratuta, %2 bertsiora eguneratzen - + Incorrect update info received for %1 out of %2 plugins. Eguneraketa argibide okerrak jaso dira %1-rako %2 pluginetik. - + Search plugin '%1' contains invalid version string ('%2') '%1' bilaketa pluginak bertsio kate baliogabea du ('%2') @@ -9565,135 +9526,127 @@ Klikatu "Bilatu pluginak..." botoia leihoaren behe eskuinean zenbait e Bilatu pluginak... - + A phrase to search for. Bilatzeko esaldi bat. - + Spaces in a search term may be protected by double quotes. Bilaketa hitzen arteko tarteak adartxo bikoitzekin babestu daitezke. - + Example: Search phrase example Adibidea: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;joan etorri&quot;</b>: bilatu <b>joan etorri</b> - + All plugins Plugin guztiak - + Only enabled Gaituak bakarrik - - + + Invalid data format. - Datu heuskarri baliogabea + Datu heuskarri baliogabea - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>joan etorri</b>: bilatu <b>joan</b> eta <b>etorri</b> - + Refresh - + Close tab Itxi erlaitza - + Close all tabs Itxi erlaitz guztiak - + Select... Hautatu... - - + + Search Engine Bilaketa Gailua - - + + Please install Python to use the Search Engine. Mesedez ezarri Python Bilaketa Gailua erabiltzeko. - + Empty search pattern Bilaketa eredua hutsik - + Please type a search pattern first Mesedez idatzi bilaketa eredua lehenik - + Stop Gelditu - - Search has finished - Bilaketa amaitu da - - - Search has failed - Bilaketak huts egin du - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10091,67 +10044,77 @@ Klikatu "Bilatu pluginak..." botoia leihoaren behe eskuinean zenbait e StatusBar - + Connection status: Elkarketa egoera: - - + + No direct connections. This may indicate network configuration problems. Ez dago zuzeneko elkarketarik. Honek adierazi dezake sare itxurapen arazoak daudela. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 elkargune - + qBittorrent needs to be restarted! qBittorrentek berrabiaraztea behar du! - - + + Connection Status: Elkarketa Egoera: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Lineaz-kanpo. Honek arrunt esanahi du qBittorrentek huts egin duela hautatutako barrurako elkarketen atakan aditzean. - + Online Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Klikatu beste abiadura muga batera aldatzeko - + Click to switch to regular speed limits Klikatu abiadura muga arruntera aldatzeko @@ -10179,23 +10142,15 @@ Klikatu "Bilatu pluginak..." botoia leihoaren behe eskuinean zenbait e Completed (0) Osatuta (0) - - Resumed (0) - Berrekinda (0) - - - Paused (0) - Pausatuta (0) - Running (0) - + Aktibo (0) Stopped (0) - + Geldituta (0) @@ -10260,49 +10215,33 @@ Klikatu "Bilatu pluginak..." botoia leihoaren behe eskuinean zenbait e Running (%1) - + Aktibo (%1) Stopped (%1) - + Geldituta (%1) Start torrents - + Hasi torrentak Stop torrents - - - - Paused (%1) - Pausatuta (%1) + Gelditu torrentak Moving (%1) Mugitzen (%1) - - Resume torrents - Berrekin torrentak - - - Pause torrents - Pausatu torrentak - Remove torrents Kendu torrentak - - Resumed (%1) - Berrekinda (%1) - Active (%1) @@ -10374,32 +10313,20 @@ Klikatu "Bilatu pluginak..." botoia leihoaren behe eskuinean zenbait e Remove unused tags Kendu erabili gabeko etiketak - - Resume torrents - Berrekin torrentak - - - Pause torrents - Pausatu torrentak - Remove torrents Kendu torrentak - - New Tag - Etiketa Berria - Start torrents - + Hasi torrentak Stop torrents - + Gelditu torrentak @@ -10726,17 +10653,17 @@ Mesedez hautatu beste izen bat eta saiatu berriro. TorrentCreatorController - + Too many active tasks Zeregin aktibo gehiegi - + Torrent creation is still unfinished. Torrentaren sorrera amaitu gabe dago oraindik. - + Torrent creation failed. Torrenta sortzeak huts egin du. @@ -10988,17 +10915,6 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Karpeta begiratzen: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Fitxategia irakurtzean memoria esleitzeak huts egin du. Fitxategia: "%1". Errorea: "%2" - - - Invalid metadata - Metadatu baliogabeak - - TorrentOptionsDialog @@ -11036,10 +10952,6 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Torrent Share Limits - - Torrent speed limits - Torrentaren abiadura mugak - Download: @@ -11072,34 +10984,6 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Upload: Igoera: - - Torrent share limits - Torrentaren elkarbanatze mugak - - - Use global share limit - Erabili elkarbanatze muga orokorra - - - Set no share limit - Ezarri elkarbanatze mugarik gabe - - - Set share limit to - Ezarri elkarbanatze muga honela - - - ratio - maila - - - total minutes - minutuak guztira - - - inactive minutes - minutu inaktibo - Disable DHT for this torrent @@ -11141,14 +11025,6 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Not applicable to private torrents Ez da ezartzen torrent pribatuei - - No share limit method selected - Ez da elkarbanatze muga metodorik hautatu - - - Please select a limit method first - Mesedez hautatu muga metodo bat lehenik - TorrentShareLimitsWidget @@ -11198,27 +11074,27 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Action when the limit is reached: - + Ekintza mugara iristen denean: Stop torrent - + Gelditu torrenta Remove torrent - Kendu torrenta + Kendu torrenta Remove torrent and its content - + Kendu torrenta eta bere edukia Enable super seeding for torrent - Gaitu gain emaritza torrentarentzat + Gaitu gain emaritza torrentarentzat @@ -11233,10 +11109,6 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Torrent Tags Torrent etiketak - - New Tag - Etiketa Berria - Add tag @@ -11271,78 +11143,78 @@ Mesedez hautatu beste izen bat eta saiatu berriro. TorrentsController - + Error: '%1' is not a valid torrent file. Akatsa: '%1' ez da baliozko torrent agiria. - + Priority must be an integer Lehetasuna zenbaki oso bat izan behar da - + Priority is not valid Lehentasuna ez da baliozkoa - + Torrent's metadata has not yet downloaded Torrentaren metadatuak ez dira jeitsi oraindik - + File IDs must be integers Agiri ID-ak zenbaki osoak izan behar dute - + File ID is not valid Agiri ID-a ez da baliozkoa - - - - + + + + Torrent queueing must be enabled Torrent lerrokapena gaituta egon behar da - - + + Save path cannot be empty Gordetze helburua ezin da hutsik egon - - + + Cannot create target directory Ezin da helburuko direktorioa sortu - - + + Category cannot be empty Kategoria ezin da hutsik egon - + Unable to create category Ezinezkoa kategoria sortzea - + Unable to edit category Ezinezkoa kategoria editatzea - + Unable to export torrent file. Error: %1 Ezin da torrent fitxategia esportatu. Errorea: %1 - + Cannot make save path Ezin da gordetze helburua egin @@ -11362,39 +11234,39 @@ Mesedez hautatu beste izen bat eta saiatu berriro. 'sort' parametroa baliogabea da. - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" ez da baliozko fitxategi-indizea. - + Index %1 is out of bounds. %1 indizea mugetatik kanpo dago. - - + + Cannot write to directory Ezin da zuzenbidera idatzi - + WebUI Set location: moving "%1", from "%2" to "%3" WebEI Ezarpen kokalekua: mugitzen "%1", hemendik "%2" hona "%3" - + Incorrect torrent name Torrent izen okerra - - + + Incorrect category name Kategoria izen okerra @@ -11477,45 +11349,33 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Invalid state! - + Egoera baliogabea! URL/Announce Endpoint - + URL/Iragarpen konexio-puntua BT Protocol - + BT protokoloa Next Announce - + Hurrengo iragarpena Min Announce - - - - Invalid status! - Egoera baliogabea! - - - URL/Announce endpoint - URL/Iragarpen konexio-puntua + Iragarpen min Tier Maila - - Protocol - Protokoloa - Status @@ -11546,18 +11406,6 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Message Mezua - - Next announce - Hurrengo iragarpena - - - Min announce - Iragarpen min - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11415,73 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Torrent hau pribatua da - + Tracker editing Aztarnari edizioa - + Tracker URL: Aztarnari URL-a: - - + + Tracker editing failed Aztarnari edizio hutsegitea - + The tracker URL entered is invalid. Sartutako aztarnari URL-a baliogabea da. - + The tracker URL already exists. Aztarnari URL-a jadanik badago. - + Edit tracker URL... Editatu aztarnari URL-a - + Remove tracker Kendu aztarnaria - + Copy tracker URL Kopiatu aztarnari URL-a - + Force reannounce to selected trackers Behartu hautaturiko aztarnarien ber-iragarpena - + Force reannounce to all trackers Behartu aztarnari guztien ber-iragarpena - + Resize columns Zutabeen tamaina aldatu - + Resize all non-hidden columns to the size of their contents Ezkutatu gabeko zutabeen tamaina haien edukien tamainara aldatu - + Add trackers... Gehitu aztarnariak... - + Column visibility Zutabe ikusgarritasuna @@ -11716,20 +11564,12 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Start torrents - + Hasi torrentak Stop torrents - - - - Resume torrents - Berrekin torrentak - - - Pause torrents - Pausatu torrentak + Gelditu torrentak @@ -11853,10 +11693,6 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Berrekite datuak egiaztatzen - - Paused - Pausatuta - Completed @@ -11897,21 +11733,16 @@ Mesedez hautatu beste izen bat eta saiatu berriro. % Done Garapena - - Status - Torrent status (e.g. downloading, seeding, paused) - Egoera - Stopped - + Geldituta Status Torrent status (e.g. downloading, seeding, stopped) - Egoera + Egoera @@ -11946,7 +11777,7 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Popularity - + Ospea @@ -12027,22 +11858,17 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Time Active Time (duration) the torrent is active (not stopped) - Denbora Ekinean + Denbora Ekinean Yes - Bai + Bai No - Ez - - - Time Active - Time (duration) the torrent is active (not paused) - Denbora Ekinean + Ez @@ -12114,12 +11940,12 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Private Flags private torrents - + Pribatua Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Denbora aktiboa (hilabetetan), torrenta zein ezaguna den adierazten du @@ -12144,358 +11970,319 @@ Mesedez hautatu beste izen bat eta saiatu berriro. TransferListWidget - + Column visibility Zutabe ikusgarritasuna - + Recheck confirmation Berregiaztatu baieztapena - + Are you sure you want to recheck the selected torrent(s)? Zihur zaude hautaturiko torrenta(k) berregiaztatzea nahi d(it)uzula? - + Rename Berrizendatu - + New name: Izen berria: - + Choose save path Hautatu gordetzeko helburua - Confirm pause - Berretsi pausa - - - Would you like to pause all torrents? - Torrent guztiak pausatu nahi dituzu? - - - Confirm resume - Berretsi berrekitea - - - Would you like to resume all torrents? - Torrent guztiak berrekin nahi dituzu? - - - + Unable to preview Ezinezkoa aurreikuspena - + The selected torrent "%1" does not contain previewable files "%1" hautaturiko torrentak ez du agiri aurreikusgarririk - + Resize columns Zutabeen tamaina aldatu - + Resize all non-hidden columns to the size of their contents Ezkutatu gabeko zutabeen tamaina haien edukien tamainara aldatu - + Enable automatic torrent management Gaitu torrent kudeaketa automatikoa - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Ziur torrent kudeaketa automatikoa gaitu nahi duzula hautatutako torrente(t)an? Lekuz alda daitezke. - Add Tags - Gehitu Etiketak - - - + Choose folder to save exported .torrent files Aukeratu karpeta esportatutako .torrent fitxategiak gordetzeko - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" .torrent fitxategia esportatzeak huts egin du. Torrenta: "%1". Biltegia: "%2". Arrazoia: "%3" - + A file with the same name already exists Badago izen bereko fitxategi bat - + Export .torrent file error .torrent fitxategiaren esportazio errorea - + Remove All Tags Kendu Etiketa Guztiak - + Remove all tags from selected torrents? Kendu etiketa guztiak hautatutako torrentetatik? - + Comma-separated tags: Kakotxaz-banandutako etiketak: - + Invalid tag Etiketa baliogabea - + Tag name: '%1' is invalid Etiketa izena: '%1' baliogabea da - &Resume - Resume/start the torrent - &Berrekin - - - &Pause - Pause the torrent - &Pausatu - - - Force Resu&me - Force Resume/start the torrent - Behartu Berre&kitea - - - + Pre&view file... &Aurreikusi fitxategia... - + Torrent &options... Torrentaren au&kerak... - + Open destination &folder Ireki helburuko &karpeta - + Move &up i.e. move up in the queue Mugitu &gora - + Move &down i.e. Move down in the queue Mugitu &behera - + Move to &top i.e. Move to top of the queue Mugitu &goraino - + Move to &bottom i.e. Move to bottom of the queue Mugitu &beheraino - + Set loc&ation... Ezarri koka&lekua - + Force rec&heck Behartu berr&egiaztapena - + Force r&eannounce Behartu berr&iragarpena - + &Magnet link &Magnet esteka - + Torrent &ID Torrent I&D - + &Comment &Iruzkina - + &Name &Izena - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Berrize&ndatu... - + Edit trac&kers... Editatu az&tarnariak... - + E&xport .torrent... E&sportatu .torrent... - + Categor&y Kategor&ia - + &New... New category... &Berria... - + &Reset Reset category Be&rrezarri - + Ta&gs &Etiketak - + &Add... Add / assign multiple tags... &Gehitu... - + &Remove All Remove all tags K&endu guztiak - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Ezin da berriro iragarpena behartu torrenta Gelditu/Ilaran/Errorea/Egiaztatzen bada - + &Queue &Ilara - + &Copy &Kopiatu - + Exported torrent is not necessarily the same as the imported Esportatutako torrenta ez da zertan inportatutakoaren berdina izan - + Download in sequential order Jeitsi sekuentzialki - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Erroreak gertatu dira .torrent fitxategiak esportatzean. Egiaztatu exekuzio erregistroa xehetasunetarako. - + &Start Resume/start the torrent - + &Hasi - + Sto&p Stop the torrent - + &Gelditu - + Force Star&t Force Resume/start the torrent - + Behartu &hasiera - + &Remove Remove the torrent &Kendu - + Download first and last pieces first Jeitsi lehen eta azken atalak lehenik - + Automatic Torrent Management Berezgaitasunezko Torrent Kudeaketa - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Modu automatikoan hainbat torrent ezaugarri (adib. gordetze bide-izena) kategoriaren bidez erabakiko dira - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Ezin da berriro iragarpena behartu torrenta Pausa/Geldi/Ilaran/Errorea/Egiaztatzen badagoen - - - + Super seeding mode Gain emaritza modua @@ -12571,7 +12358,7 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Set app style failed. Unknown style: "%1" - + Ezin izan da aplikazioaren estiloa ezarri. Estilo ezezaguna: "%1" @@ -12627,32 +12414,32 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Python exekutagarria aurkitu da. Izena: "%1". Bertsioa: "%2" - + Failed to find Python executable. Path: "%1". Python exekutagarria aurkitzeak huts egin du. Bide-izena: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" `python3` exekutagarria PATH ingurune-aldagaian aurkitzeak huts egin du. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" `python` exekutagarria PATH ingurune-aldagaian aurkitzeak huts egin du. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Ezin izan da aurkitu `python` exekutagarria Windows Erregistroan. - + Failed to find Python executable Ezin izan da Python exekutagarria aurkitu @@ -12744,52 +12531,52 @@ Mesedez hautatu beste izen bat eta saiatu berriro. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Saioko cookie-izen onartezina zehaztu da: '%1'. Lehenetsitako bat erabiltzen da. - + Unacceptable file type, only regular file is allowed. Agiri mota onartezina, ohiko agiriak bakarrik ahalbidetzen dira. - + Symlinks inside alternative UI folder are forbidden. Symloturak EI alternatiboaren agiritegiaren barne eragotzita daude. - + Using built-in WebUI. WebUI integratua erabiltzen. - + Using custom WebUI. Location: "%1". WebUI pertsonalizatua erabiltzen. Kokalekua: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Hautatutako tokiko (%1) WebUI itzulpena behar bezala kargatu da. - + Couldn't load WebUI translation for selected locale (%1). Ezin izan da kargatu WebUI-aren itzulpena hautatutako hizkuntzarako (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Ez dago ':' banantzailea WebEI-ko norbere HTTP idazburuan: "%1" - + Web server error. %1 Web zerbitzariaren errorea. %1 - + Web server error. Unknown error. Web zerbitzariaren errorea. Errore ezezaguna. @@ -12847,7 +12634,7 @@ Mesedez hautatu beste izen bat eta saiatu berriro. Unknown error - akats ezezaguna + akats ezezaguna diff --git a/src/lang/qbittorrent_fa.ts b/src/lang/qbittorrent_fa.ts index bd6f33a07..21229eff0 100644 --- a/src/lang/qbittorrent_fa.ts +++ b/src/lang/qbittorrent_fa.ts @@ -84,7 +84,7 @@ Copy to clipboard - + کپی در بریده‌دان @@ -170,10 +170,6 @@ Never show again دیگر نمایش نده - - Torrent settings - تنضیمات تورنت - Set as default category @@ -202,12 +198,12 @@ Use another path for incomplete torrent - + برای تورنت ناقص از مسیر دیگری استفاده کنید Torrent options - + گزینه‌های تورنت @@ -217,7 +213,7 @@ Click [...] button to add/remove tags. - + برای افزودن/حذف برچسب‌ها روی دکمه [...] کلیک کنید. @@ -227,7 +223,7 @@ ... - + ... @@ -235,25 +231,25 @@ شرط توقف: - - + + None هیچ‌کدام - - + + Metadata received متادیتا دریافت شد - + Torrents that have metadata initially will be added as stopped. - + تورنت هایی که در ابتدا دارای ابرداده هستند به عنوان متوقف شده اضافه می شوند. - + Files checked فایل‌ها بررسی شد @@ -265,7 +261,7 @@ When checked, the .torrent file will not be deleted regardless of the settings at the "Download" page of the Options dialog - + با علامت زدن، فایل .torrent بدون توجه به تنظیمات موجود در صفحه "دانلود" در گفتگوی گزینه ها حذف نخواهد شد. @@ -368,112 +364,112 @@ ذخیره به عنوان فایل .torrent - + I/O Error خطای ورودی/خروجی - + Not Available This comment is unavailable در دسترس نیست - + Not Available This date is unavailable در دسترس نیست - + Not available در دسترس نیست - + Magnet link لینک آهنربایی - + Retrieving metadata... درحال دریافت متادیتا... - - + + Choose save path انتخاب مسیر ذخیره - + No stop condition is set. هیچ شرط توقفی تنظیم نشده است. - - - Torrent will stop after metadata is received. - - - - - Torrent will stop after files are initially checked. - - - This will also download metadata if it wasn't there initially. - + Torrent will stop after metadata is received. + تورنت پس از دریافت ابرداده متوقف می شود. + + + + Torrent will stop after files are initially checked. + پس از بررسی اولیه فایل‌ها، تورنت متوقف می‌شود. + + + + This will also download metadata if it wasn't there initially. + اگر در ابتدا فرا‌داده نبود، این هم دانلود می‌کند. - + N/A غیر قابل دسترس - + %1 (Free space on disk: %2) %1 (فضای خالی دیسک: %2) - + Not available This size is unavailable. در دسترس نیست - + Torrent file (*%1) فایل تورنت (*%1) - + Save as torrent file ذخیره به عنوان فایل تورنت - + Couldn't export torrent metadata file '%1'. Reason: %2. - + فایل فراداده تورنت «%1» صادر نشد. دلیل: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + تا زمانی که اطلاعات آن به طور کامل بارگیری نشود، نمی توان تورنت ن2 ایجاد کرد. - + Filter files... صافی کردن فایلها... - + Parsing metadata... بررسی متادیتا... - + Metadata retrieval complete دریافت متادیتا انجام شد @@ -481,33 +477,37 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + بارگیری تورنت... منبع: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - + شکست در افزودن تورنت. منبع: "%1". دلیل: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - + تلاش برای افزودن یک تورنت تکراری شناسایی شد. منبع: %1. تورنت موجود: %2. نتیجه: %3 - + Merging of trackers is disabled - + ادغام ردیاب ها غیرفعال است - + Trackers cannot be merged because it is a private torrent - + ردیاب ها را نمی توان ادغام کرد زیرا یک تورنت خصوصی است - + Trackers are merged from new source + ردیاب ها از منبع جدید ادغام شده‌اند + + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 @@ -536,12 +536,12 @@ Note: the current defaults are displayed for reference. - + توجه: پیش فرض های فعلی برای مرجع نمایش داده می شوند. Use another path for incomplete torrents: - + از مسیر دیگری برای تورنت های ناقص استفاده کنید: @@ -556,7 +556,7 @@ Click [...] button to add/remove tags. - + برای افزودن/حذف برچسب‌ها روی دکمه [...] کلیک کنید. @@ -566,12 +566,12 @@ ... - + ... Start torrent: - + شروع تورنت: @@ -586,7 +586,7 @@ Add to top of queue: - + افزودن به بالای صف: @@ -596,7 +596,7 @@ Torrent share limits - + محدودیت های اشتراک تورنت @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB مبی بایت - + Recheck torrents on completion بررسی مجدد تورنت ها بعد از دانلود - - + + ms milliseconds میلی ثانیه - + Setting تنظیمات - + Value Value set for this setting مقدار - + (disabled) (غیرفعال) - + (auto) (خودکار) - - + + min minutes کمترین - + All addresses تمام آدرسها - + qBittorrent Section بخش کیو بیت تورنت - - + + Open documentation باز کردن مستندات - + All IPv4 addresses تمام آدرسهای IPv4 - + All IPv6 addresses تمام آدرسهای IPv6 - + libtorrent Section بخش لیب تورنت - + Fastresume files - + فایل های سرگیری‌سریع - + SQLite database (experimental) پایگاه داده SQLite (آزمایشی) - + Resume data storage type (requires restart) - + نوع ذخیره اطلاعات از سرگیری (نیاز به راه اندازی مجدد) - + Normal معمولی - + Below normal کمتر از معمولی - + Medium متوسط - + Low کم - + Very low خیلی کم - + Physical memory (RAM) usage limit - + محدودیت استفاده از حافظه فیزیکی (رم) - + Asynchronous I/O threads ترد های ناهمگام I/O - + Hashing threads ترد های هش - + File pool size حجم مخزن فایل - + Outstanding memory when checking torrents میزان حافظه معوق هنگام بررسی تورنت ها - + Disk cache کش دیسک - - - - + + + + + s seconds s - + Disk cache expiry interval دوره انقضا حافظه نهان دیسک - + Disk queue size - + اندازه صف دیسک - - + + Enable OS cache فعال کردن حافظه نهان سیستم عامل - + Coalesce reads & writes میزان خواندن و نوشتن های درهم آمیخته - + Use piece extent affinity - + Send upload piece suggestions پیشنهادات تکه های آپلود را بفرست - - - - - + + + + + 0 (disabled) 0 (غیرفعال) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + ذخیره فاصله داده سرگیری [0: غیرفعال] - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB کیبی‌بایت - + (infinite) - + (system default) - + (پیش‌فرض سامانه) - + Delete files permanently - + حذف دائمی پرونده‌ها - + Move files to trash (if possible) - + انتقال فایل ها به سطل زباله (در صورت امکان) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default پیش فرض - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + 0 (پیش‌فرض سامانه) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP TCP ترجیح داده شود - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address چند اتصال از طرف یک آدرس آی‌پی مجاز است - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names نمایش نام میزبان پییر ها - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus فعال کردن آیکون در منوها - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + نادیده گرفتن خطاهای SSL - + (Auto detect if empty) - + (تشخیص خودکار خالی بودن) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - ثانیه + ثانیه - + -1 (unlimited) - + -1 (نامحدود) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications اعلان‌ها نمایش داده شود - + Display notifications for added torrents اعلان‌ها برای تورنت‌های اضافه شده نمایش داده شود - + Download tracker's favicon - + Save path history length - + Enable speed graphs فعال‌سازی گراف های سرعت - + Fixed slots جایگاه های ثابت - + Upload rate based - + Upload slots behavior - + Round-robin نوبت‌گردشی - + Fastest upload سریعترین آپلود - + Anti-leech ضد لیچ - + Upload choking algorithm - + Confirm torrent recheck تایید دوباره توررنت - + Confirm removal of all tags حذف همه برچسب‌ها را تایید کنید - + Always announce to all trackers in a tier همیشه همه ترکر های در یک سطح را باخبر کن - + Always announce to all tiers همیشه همه ردیف‌ها را باخبر کن - + Any interface i.e. Any network interface هر رابطی - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries نمایش کشور پییر ها - + Network interface رابط شبکه - + Optional IP address to bind to آدرس آی‌پی اختیاری برای متصل کردن به - + Max concurrent HTTP announces - + Enable embedded tracker فعال کردن ترکر تعبیه شده - + Embedded tracker port پورت ترکر تعبیه شده @@ -1387,7 +1398,7 @@ Directory does not exist - + دایرکتوری وجود ندارد @@ -1397,127 +1408,127 @@ cookies must be array - + کوکی‌ها باید آرایه‌ای باشند Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 مسیر پیکرپندی مورد استفاده: %1 - + Torrent name: %1 نام تورنت: %1 - + Torrent size: %1 سایز تورنت: %1 - + Save path: %1 مسیر ذخیره سازی: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds این تورنت در %1 بارگیری شد. - - + + Thank you for using qBittorrent. با تشکر از شما برای استفاده از کیوبیت‌تورنت. - + Torrent: %1, sending mail notification تورنت: %1، در حال ارسال اعلان از طریق ایمیل - + Add torrent failed - + تورنت اضافه نشد - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit خروج - + I/O Error i.e: Input/Output Error خطای ورودی/خروجی - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1525,112 +1536,112 @@ - + Torrent added تورنت اضافه شد - + '%1' was added. e.g: xxx.avi was added. '%1' اضافه شده. - + Download completed - + بارگیری شد - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + این یک ایمیل آزمایشی است. - + Test email - + آزمایش ایمیل - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. بارگیری '%1' به پایان رسید. - + Information اطلاعات - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + خروج - + Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never هرگز - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + qBittorrent خاموش می شود... - + Saving torrent progress... ذخیره کردن پیشرفت تورنت... - + qBittorrent is now ready to exit - + qBittorrent اکنون آماده خروج است @@ -1704,7 +1715,7 @@ Priority: - + اولویت: @@ -1725,7 +1736,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent parameters - + پارامترهای تورنت @@ -1764,263 +1775,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &صدور... - + Matches articles based on episode filter. - + Example: مثال: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match - + Episode filter rules: قوانین فیلتر قسمت: - + Season number is a mandatory non-zero value شماره فصل، اجباری و یک عدد غیر صفر است. - + Filter must end with semicolon قالب باید با یک نقطه ویرگول به پایان برسد - + Three range types for episodes are supported: سه نوع دامنه برای قسمت ها پشتیبانی می‌شود: - + Single number: <b>1x25;</b> matches episode 25 of season one یک عدد: <b>1x25;</b> با قسمت ۲۵ فصل اول تطبیق دارد. - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value شماره قسمت یک عدد اجباری مثبت است - + Rules قوانین - + Rules (legacy) قوانین (قدیمی) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago آخرین تطابق: %1 روز پیش - + Last Match: Unknown آخرین تطابق: ناشناس - + New rule name نام قانون جدید - + Please type the name of the new download rule. لطفا نام قانون جدید دانلود را بنویسید. - - + + Rule name conflict ناسازگاری نام قانون - - + + A rule with this name already exists, please choose another name. یک قانون با این نام از قبل وجود دارد. لطفا نام دیگری انتخاب کنید. - + Are you sure you want to remove the download rule named '%1'? ایا از حذف قانون دانلود با نام '%1' مطمئن هستید؟ - + Are you sure you want to remove the selected download rules? ایا از حذف قانون های دانلود انتخاب شده مطمئن هستید؟ - + Rule deletion confirmation تایید حذف قانون - + Invalid action این عمل نامعتبر است - + The list is empty, there is nothing to export. این لیست خالی است ، چیزی برای خروجی گرفتن وجود ندارد. - + Export RSS rules خروجی گرفتن قوانین آراس‌اس - + I/O Error خطای I/O - + Failed to create the destination file. Reason: %1 ایجاد فایل مقصد ناموفق بود. دلیل: %1 - + Import RSS rules - + وارد کردن قوانین خوراک خوان - + Failed to import the selected rules file. Reason: %1 - + Add new rule... اضافه کردن قانون جدید ... - + Delete rule حذف قانون - + Rename rule... تغییر نام قانون - + Delete selected rules حذف قانون های انتخاب شده - + Clear downloaded episodes... پاکسازی قسمت های دانلود شده... - + Rule renaming - + Please type the new rule name لطفا نام قانون جدید را وارد کنید - + Clear downloaded episodes پاکسازی قسمت های دانلود شده - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 موقعیت %1: %2 - + Wildcard mode: you can use - - + + Import error - + خطای واردکردن - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2072,28 +2083,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2104,16 +2125,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 امکان ذخیره داده به '%1' وجود ندارد. خطا: %2 @@ -2121,38 +2143,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + پیدا نشد. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + پایگاه داده خراب است. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2160,22 +2204,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2183,498 +2227,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON روشن - - - - - - - - - + + + + + + + + + OFF خاموش - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED اجبار شده - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + تورنت: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + تورنت قطع شد. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + ادغام ردیاب ها غیرفعال است - + Trackers cannot be merged because it is a private torrent - + ردیاب ها را نمی توان ادغام کرد زیرا یک تورنت خصوصی است - + Trackers are merged from new source - + ردیاب ها از منبع جدید ادغام شده‌اند - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. فیلتر آی‌پی - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 غیرفعال است - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 غیرفعال است - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2724,47 +2773,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On روشن - + Off خاموش - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3020,20 +3069,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + شروع تورنت‌ها Stop torrents - - - - Resume torrents - ادامه دانلود تورنتها - - - Pause torrents - توقف دانلود تورنتها + توقف تورنت‌ها @@ -3121,7 +3162,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove torrent(s) - + حذف تورنت(ها) @@ -3156,7 +3197,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Download from URLs - + دانلود از آدرس‌ها @@ -3230,7 +3271,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also RSS feeds - + خوراک‌‌های وب @@ -3253,7 +3294,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also ... Launch file dialog button text (brief) - + ... @@ -3364,22 +3405,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + بارگیری تورنت... منبع: "%1" - + Torrent is already present تورنت از قبل وجود دارد - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3497,6 +3538,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3638,14 +3713,10 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... تنظیمات... - - &Resume - ادامه - &Remove - + حذف @@ -3723,10 +3794,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window بستن پنجره - - R&esume All - ادامه همه - Manage Cookies... @@ -3745,12 +3812,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Information Messages - + پیغام‌های اطلاعاتی Warning Messages - + پیغام‌های هشدار @@ -3770,7 +3837,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sto&p - + توقف @@ -3862,14 +3929,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About درباره - - &Pause - توقف - - - P&ause All - توقف همه - &Add Torrent File... @@ -3903,12 +3962,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show نمایش دادن - + Check for program updates جستجو برای به‌روز رسانی نرم‌افزار @@ -3923,379 +3982,379 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also اگر به qBittorrent علاقه دارید، لطفا کمک مالی کنید! - + Execution Log - + Clear the password گذزواژه را حذف کن - + &Set Password تعیین گذرواژه - + Preferences تنظیمات - + &Clear Password حذف گذرواژه - + Transfers جابه‌جایی‌ها - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only فقط آیکون‌ها - + Text Only فقط متن - + Text Alongside Icons متن در کنار آیکون‌ها - + Text Under Icons متن زیر آیگون‌ها - + Follow System Style دنبال کردن سبک سیستم - - + + UI lock password کلمه عبور قفل رابط کاربری - - + + Please type the UI lock password: لطفا کلمه عبور برای قفل کردن رابط کاربری را وارد کنید: - + Are you sure you want to clear the password? از حذف گذرواژه مطمئن هستید؟ - + Use regular expressions استفاده از عبارات با قاعده - - + + Search Engine - موتور جستجو + موتور جستجو - + Search has failed - جستجو ناموفق بود + جستجو ناموفق بود - + Search has finished - جستجو به پایان رسید + جستجو به پایان رسید - + Search جستجو - + Transfers (%1) جابه‌جایی‌ها (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? - + &No &نه - + &Yes &بله - + &Always Yes &همواره بله - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime ران‌تایم پایتون پیدا نشد - + qBittorrent Update Available به‌روزرسانی‌ای برای کیوبیت‌ تورنت موجود است - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime ران‌تایم قدیمی پایتون - + A new version is available. یک نسخه جدید موجود است. - + Do you want to download %1? آیا می‌خواهید %1 دانلود شود؟ - + Open changelog... باز کردن لیست تغییرات... - + No updates available. You are already using the latest version. به روزرسانی‌ای در دسترس نیست. شما هم اکنون از آخرین نسخه استفاده می‌کنید - + &Check for Updates &بررسی به روز رسانی‌های جدید - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - متوقف شده + متوقف شده - + Checking for Updates... در حال بررسی برای به روزرسانی ... - + Already checking for program updates in the background هم اکنون درحال بررسی برای به‌روزرسانی جدید در پس زمینه هستیم - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error خطا در بارگیری - - + + Invalid password رمز عبور نامعتبر - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) آراس‌اس (%1) - + The password is invalid کلمه عبور نامعتبر است - + DL speed: %1 e.g: Download speed: 10 KiB/s سرعت بارگیری: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s سرعت بارگذاری: %1 - + Hide پنهان کردن - + Exiting qBittorrent در حال خروج از کیوبیت‌تورنت - + Open Torrent Files - + Torrent Files پرونده‌های تورنت @@ -5789,47 +5848,47 @@ Minimum requirement: %2. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5871,10 +5930,6 @@ Minimum requirement: %2. RSS RSS - - Web UI - رابط کاربری وب - Advanced @@ -5921,10 +5976,6 @@ Minimum requirement: %2. Downloading torrents: - - Start / Stop Torrent - آغاز / توقف تورنت - @@ -5983,396 +6034,402 @@ Minimum requirement: %2. کیبی‌بایت - + + Show free disk space in status bar + + + + Torrent content layout: چینش محتوای تورنت: - + Original اصلی - + Create subfolder ایجاد زیر پوشه - + Don't create subfolder زیر پوشه ایجاد نکن - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue به ابتدای صف اضافه شود - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... افزودن... - + Options.. - + Remove حذف - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - + حالت ترکیبی - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time از : - + To: To end time به : - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption رمزگذاری مجاز است - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader RSS خوان - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: - - - + + + min minutes حداقل - + Seeding Limits - Pause torrent - توقف تورنت - - - + Remove torrent پاک کردن تورنت - + Remove torrent and its files تورنت و فایل‌های مرتبط همگی پاک شوند - + Enable super seeding for torrent - + When ratio reaches - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + توقف تورنت + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - آدرس: + آدرس: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents فعال کردن بارگیری خودکار تورنت‌های RSS - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: فیلترها: - + Web User Interface (Remote control) - + IP address: آدرس آی‌پی: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never هرگز - + ban for: دلیل مسدودی: - + Session timeout: - + پایان زمان جلسه: - + Disabled غیرفعال شده - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6381,37 +6438,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6423,7 +6480,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - جستجو + جستجو @@ -6524,99 +6581,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent هنگام افزودن تورنت جدید - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management مدیریت ذخیره سازی - + Default Torrent Management Mode: - + Manual دستی - + Automatic خودکار - + When Torrent Category changed: - + Relocate torrent - + جابجایی تورنت - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories - + استفاده از زیر شاخه‌ها - + Default Save Path: مکان ذخیره‌سازی پیش‌فرض: - + Copy .torrent files to: کپی فایل های .torrent به: @@ -6626,26 +6683,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - &Log file - فایل گزارش - - - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files @@ -6740,64 +6793,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.سال - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6817,50 +6870,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None هیچ‌کدام - - + + Metadata received متادیتا دریافت شد - - + + Files checked فایل‌ها بررسی شد - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + از مسیر دیگری برای تورنت های ناقص استفاده کنید: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6877,511 +6930,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver گیرنده - + To: To receiver به: - + SMTP server: سرور SMTP - + Sender ارسال کننده - + From: From sender از: - + This server requires a secure connection (SSL) - - + + Authentication احراز هویت - - - - + + + + Username: نام کاربری: - - - - + + + + Password: کلمه عبور: - + Run external program - + Show console window - + TCP and μTP TCP و μTP - + Listening Port - + پورت گوش‌دادن - + Port used for incoming connections: - + Set to 0 to let your system pick an unused port - + Random بختانه - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits محدودیت‌های اتصال - + Maximum number of connections per torrent: حداکثر تعداد اتصال در هر تورنت: - + Global maximum number of connections: - + Maximum number of upload slots per torrent: - + Global maximum number of upload slots: - + Proxy Server سرور پروکسی - + Type: نوع: - + SOCKS4 ساکس4 - + SOCKS5 ساکس5 - + HTTP HTTP - - + + Host: میزبان: - - - + + + Port: پورت: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - Info: The password is saved unencrypted - اطلاعات: کلمه عبور بدون رمزگذاری ذخیره شده + اطلاعات: کلمه عبور بدون رمزگذاری ذخیره شده - + Filter path (.dat, .p2p, .p2b): - + Reload the filter بارگذاری دوباره فیلتر - + Manually banned IP addresses... - + Apply to trackers - + Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s کیبی‌بایت/ثانیه - - + + Upload: بارگذاری: - - + + Download: بارگیری: - + Alternative Rate Limits - + Start time زمان شروع - + End time زمان پایان - + When: چه زمانی: - + Every day هر روز - + Weekdays روزهای هفته - + Weekends آخر هفته‌ها - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy حریم خصوصی - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: نوع رمزگذاری: - + Require encryption نیاز به رمزگذاری است - + Disable encryption رمزگذاری غیرفعال شود - + Enable when using a proxy or a VPN connection - + Enable anonymous mode فعال کردن حالت ناشناس - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + آستانه نرخ آپلود: - + Download rate threshold: - + آستانه نرخ دانلود: - - - - + + + + sec seconds ثانیه - + Torrent inactivity timer: زمان سنج غیر فعال بودن تورنت: - + then سپس - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: گواهینامه: - + Key: کلید: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password تغییر گذرواژه فعلی - + Files location: محل فایل ها: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security امنیت - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers افزودن هدرهای HTTP سفارشی - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: سرویس: - + Register ثبت نام - + Domain name: نام دامنه: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7391,12 +7443,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7416,183 +7468,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. هیچ شرط توقفی تنظیم نشده است. - - - Torrent will stop after metadata is received. - - - - - Torrent will stop after files are initially checked. - - - This will also download metadata if it wasn't there initially. - + Torrent will stop after metadata is received. + تورنت پس از دریافت ابرداده متوقف می شود. - + + Torrent will stop after files are initially checked. + پس از بررسی اولیه فایل‌ها، تورنت متوقف می‌شود. + + + + This will also download metadata if it wasn't there initially. + اگر در ابتدا فرا‌داده نبود، این هم دانلود می‌کند. + + + %N: Torrent name - + %L: Category - + %L: دسته - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - - - %D: Save path - - - - - %C: Number of files - - - - - %Z: Torrent size (bytes) - - - %T: Current tracker - + %D: Save path + %D: مسیر ذخیره - + + %C: Number of files + %C: تعداد فایلها + + + + %Z: Torrent size (bytes) + %Z: اندازه تورنت (بایت) + + + + %T: Current tracker + %T: ردیاب فعلی + + + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + امتحان ایمیل - + Attempted to send email. Check your inbox to confirm success - + (None) (هیچ کدام) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate گواهینامه - + Select certificate انتخاب گواهینامه - + Private key کلید خصوصی - + Select private key انتخاب کلید خصوصی - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory انتخاب مسیر برای خروجی گرفتن - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7602,69 +7654,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. - + تورنت هایی که در ابتدا دارای ابرداده هستند به عنوان متوقف شده اضافه می شوند. - + Choose an IP filter file - + All supported filters همه فیلترهای پشتیبانی شده - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7675,18 +7727,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not تنظیمات - + Time Error خطا در زمان - + The start time and the end time can't be the same. - - + + Length Error خطا در طول @@ -7777,163 +7829,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region - + کشور/منطقه - + IP/Address - + Port پورت - + Flags علامت‌ها - + Connection اتصال - + Client i.e.: Client application سرویس گیرنده - + Peer ID Client i.e.: Client resolved from Peer ID - + مشتری شناسه همتا - + Progress i.e: % downloaded پیشرفت - + Down Speed i.e: Download speed سرعت بارگیری - + Up Speed i.e: Upload speed سرعت بارگذاری - + Downloaded i.e: total data downloaded بارگیری شده - + Uploaded i.e: total data uploaded آپلود شده - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. ارتباط - + Files i.e. files that are being downloaded right now پرونده‌ها - + Column visibility نمایش ستون - + Resize columns - + تغییر اندازه ستون‌ها - + Resize all non-hidden columns to the size of their contents - + اندازه تمام ستون‌های پنهان را به اندازه محتوای آنها تغییر دهید - + Add peers... - + افزودن همتایان... - - + + Adding peers - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A در دسترس نیست - + Copy IP:port کپی آی‌پی:پروت @@ -7943,7 +7995,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Add Peers - + افزودن همتایان @@ -8214,34 +8266,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - کیوبیت‌تورنت فعال است - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + کیوبیت‌تورنت فعال است @@ -8284,12 +8310,12 @@ Those plugins were disabled. Resize columns - + تغییر اندازه ستون‌ها Resize all non-hidden columns to the size of their contents - + اندازه تمام ستون‌های پنهان را به اندازه محتوای آنها تغییر دهید @@ -8414,7 +8440,7 @@ Those plugins were disabled. Peers: - + همتایان: @@ -8444,12 +8470,12 @@ Those plugins were disabled. Info Hash v1: - + هش اطلاعات ن1: Info Hash v2: - + هش اطلاعات ن2 @@ -8533,124 +8559,124 @@ Those plugins were disabled. مسیر ذخیره سازی: - + Never هرگز - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - + %1 در %2 (%3 دارد) - - + + %1 (%2 this session) - + %1 (%2 در این جلسه) - - + + N/A در دسترس نیست - + Yes - بله + بله - + No - نه + نه - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + % 1 (سید برای %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) - + %1 (حداکثر %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) - + %1 (مجموع %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - + %1 (میانگین %2) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - + Filter files... صافی کردن فایلها... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - + Web seed editing - + Web seed URL: @@ -8658,33 +8684,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. فرمت داده نامعتبر است. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format فرمت داده نامعتبر است. - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8692,22 +8718,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8756,12 +8782,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8783,76 +8809,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. پوشه ریشه را نمی‌توان پاک کرد. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + آدرس: + + + + Refresh interval: + + + + + sec + ثانیه + + + + Default + پیش فرض + + RSSWidget @@ -8952,78 +9019,69 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name لطفا یک نام برای پوشه انتخاب کنید - + Folder name: نام پوشه: - + New folder پوشه جدید - - Please type a RSS feed URL - لطفا آدرس فید را تایپ کنید + لطفا آدرس فید را تایپ کنید - - Feed URL: - آدرس فید: + آدرس فید: - + Deletion confirmation تأیید حذف - + Are you sure you want to delete the selected RSS feeds? برای حذف فید آراس‌اس انتخاب شده مطمئن هستید؟ - + Please choose a new name for this RSS feed لطفا یک نام جدید برای این فید آراس‌اس انتخاب کنید - + New feed name: نام فید جدید: - + Rename failed تغییر نام با شکست مواجه شد - + Date: تاریخ: - + Feed: - + Author: مولف: @@ -9152,17 +9210,13 @@ Those plugins were disabled. Seeders i.e: Number of full sources - + سیدر‌ها Leechers i.e: Number of partial sources - - - - Search engine - موتور جستجو + زالوها @@ -9273,115 +9327,115 @@ Those plugins were disabled. Resize columns - + تغییر اندازه ستون‌ها Resize all non-hidden columns to the size of their contents - + اندازه تمام ستون‌های پنهان را به اندازه محتوای آنها تغییر دهید SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. یک ویرایش تازه تر این افزونه از پیش نصب شده. - + Plugin %1 is not supported. افزونه %1 پشتیبانی نمی‌شود. - - + + Plugin is not supported. افزونه پشتیبانی نمی‌شود. - + Plugin %1 has been successfully updated. افزونه %1 با موفقیت بروزرسانی شد - + All categories همه دسته‌ها - + Movies فیلم - + TV shows برنامه های تلویزیونی - + Music موزیک - + Games بازی - + Anime انیمه - + Software نرم‌افزار - + Pictures عکس - + Books کتاب - + Update server is temporarily unavailable. %1 سرور بروزرسانی موقتا در دسترس نیست. %1 - - + + Failed to download the plugin file. %1 بارگیری فایل افزونه ناموفق بود. %1 - + Plugin "%1" is outdated, updating to version %2 افزونه "%1" قدیمی است، در حال بروزرسانی به نسخه %2 - + Incorrect update info received for %1 out of %2 plugins. اطلاعات نادرست بروزرسانی برای %1 از %2 افزونه دریافت شد. - + Search plugin '%1' contains invalid version string ('%2') @@ -9406,135 +9460,127 @@ Click the "Search plugins..." button at the bottom right of the window جستجوی افزونه ها... - + A phrase to search for. یک عبارت برای جستجو. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example مثال: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins همه افزونه‌ها - + Only enabled فقط فعال شده - - + + Invalid data format. - فرمت داده نامعتبر است. + فرمت داده نامعتبر است. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab بستن زبانه - + Close all tabs بستن همه زبانه‌ها - + Select... انتخاب... - - + + Search Engine موتور جستجو - - + + Please install Python to use the Search Engine. لطفا برای استفاده از موتور جستجو، پایتون را نصب کنید. - + Empty search pattern الگوی جستجوی خالی - + Please type a search pattern first لطفا ابتدا یک الگوی جستجو را وارد کنید - + Stop توقف - - Search has finished - جستجو به پایان رسید - - - Search has failed - جستجو ناموفق بود - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9890,17 +9936,17 @@ Click the "Search plugins..." button at the bottom right of the window All-time upload: - + بارگذاری تمام وقت: Total buffer size: - + اندازه کل بافر: Performance statistics - + آمار عملکرد @@ -9932,67 +9978,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: وضعیت اتصال: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes - + qBittorrent needs to be restarted! کیوبیت‌تورنت نیاز به راه اندازی مجدد دارد! - - + + Connection Status: وضعیت اتصال: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online برخط - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -10023,12 +10079,12 @@ Click the "Search plugins..." button at the bottom right of the window Running (0) - + در‌حال اجرا (0) Stopped (0) - + متوقف (0) @@ -10043,27 +10099,27 @@ Click the "Search plugins..." button at the bottom right of the window Stalled (0) - متوقف شده (0) + متوقف (0) Stalled Uploading (0) - + بارگذاری متوقف‌شده (0) Stalled Downloading (0) - + بارگیری متوقف‌شده (0) Checking (0) - + بررسی (0) Moving (0) - + انتقال دادن (0) @@ -10078,64 +10134,48 @@ Click the "Search plugins..." button at the bottom right of the window Downloading (%1) - در حال دانلود (%1) + در‌حال دانلود (%1) Seeding (%1) - در حال سید کردن (%1) + در‌حال سید کردن (%1) Completed (%1) - کامل شده (%1) + کامل‌شده (%1) Running (%1) - + در‌حال اجرا (%1) Stopped (%1) - + متوقف (%1) Start torrents - + شروع تورنت‌ها Stop torrents - - - - Paused (%1) - متوقف شده (%1) + توقف تورنت‌ها Moving (%1) - - - - Resume torrents - ادامه دانلود تورنتها - - - Pause torrents - توقف دانلود تورنتها + انتقال (%1) Remove torrents حذف تورنت‌‌ها - - Resumed (%1) - ادامه دانلود (%1) - Active (%1) @@ -10154,22 +10194,22 @@ Click the "Search plugins..." button at the bottom right of the window Stalled Uploading (%1) - + بارگذاری متوقف‌شده (%1) Stalled Downloading (%1) - + بارگیری متوقف‌شده (%1) Checking (%1) - + بررسی (%1) Errored (%1) - + خطا (%1) @@ -10207,32 +10247,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags حذف برچسب‌های استفاده نشده - - Resume torrents - ادامه دانلود تورنتها - - - Pause torrents - توقف دانلود تورنتها - Remove torrents حذف تورنت‌‌ها - - New Tag - برچسب جدید - Start torrents - + شروع تورنت‌ها Stop torrents - + توقف تورنت‌ها @@ -10242,7 +10270,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + افزودن برچسب @@ -10280,12 +10308,12 @@ Click the "Search plugins..." button at the bottom right of the window Save path for incomplete torrents: - + مسیر ذخیره برای تورنت‌های ناقص: Use another path for incomplete torrents: - + از مسیر دیگری برای تورنت های ناقص استفاده کنید: @@ -10315,12 +10343,12 @@ Click the "Search plugins..." button at the bottom right of the window Choose save path - انتخاب مسیر ذخیره سازی + انتخاب محل ذخیره Choose download path - + انتخاب محل بارگیری @@ -10337,7 +10365,9 @@ Click the "Search plugins..." button at the bottom right of the window Category name cannot contain '\'. Category name cannot start/end with '/'. Category name cannot contain '//' sequence. - + نام دسته نمی تواند حاوی "\" باشد. +نام دسته نمی تواند با "/" شروع/پایان یابد. +نام دسته نمی تواند حاوی دنباله "//" باشد. @@ -10348,7 +10378,8 @@ Category name cannot contain '//' sequence. Category with the given name already exists. Please choose a different name and try again. - + دسته ای با نام داده شده از قبل وجود دارد. +لطفاً نام دیگری انتخاب و دوباره امتحان کنید. @@ -10479,12 +10510,12 @@ Please choose a different name and try again. Resize columns - + تغییر اندازه ستون‌ها Resize all non-hidden columns to the size of their contents - + اندازه تمام ستون‌های پنهان را به اندازه محتوای آنها تغییر دهید @@ -10494,7 +10525,7 @@ Please choose a different name and try again. Open containing folder - + باز کردن پوشه حاوی @@ -10530,7 +10561,7 @@ Please choose a different name and try again. By shown file order - + با ترتیب فایل نشان داده شده @@ -10550,25 +10581,25 @@ Please choose a different name and try again. Priority by shown file order - + اولویت با ترتیب فایل نشان داده شده TorrentCreatorController - + Too many active tasks - + وظایف فعال بیش از حد - + Torrent creation is still unfinished. - + ایجاد تورنت هنوز ناتمام است. - + Torrent creation failed. - + ایجاد تورنت ناموفق بود. @@ -10638,12 +10669,12 @@ Please choose a different name and try again. Private torrent (Won't distribute on DHT network) - + تورنت خصوصی (در شبکه DHT توزیع نمی شود) Start seeding immediately - + شروع فوری سید‌کردن @@ -10653,12 +10684,12 @@ Please choose a different name and try again. Optimize alignment - + بهینه سازی تراز Align to piece boundary for files larger than: - + تراز کردن مرز برای فایل های بزرگتر از: @@ -10678,17 +10709,17 @@ Please choose a different name and try again. You can separate tracker tiers / groups with an empty line. - + می توانید ردیف ها / گروه های ردیاب را با یک خط خالی جدا کنید. Web seed URLs: - + آدرس‌های سید وب: Tracker URLs: - آدرس‌های ترکر: + آدرس‌های ردیاب: @@ -10719,12 +10750,12 @@ Please choose a different name and try again. Reason: Path to file/folder is not readable. - + دلیل: مسیر فایل/پوشه قابل خواندن نیست. Select where to save the new torrent - + محل ذخیره تورنت جدید را انتخاب کنید @@ -10734,17 +10765,17 @@ Please choose a different name and try again. Add torrent to transfer list failed. - + افزودن تورنت به لیست انتقال ناموفق بود. Reason: "%1" - + دلیل: "%1" Add torrent failed - + تورنت اضافه نشد @@ -10815,14 +10846,7 @@ Please choose a different name and try again. Watching folder: "%1" - - - - - TorrentInfo - - Invalid metadata - متادیتا نامعتبر + پوشه مشاهده‌شده. "%1" @@ -10835,7 +10859,7 @@ Please choose a different name and try again. Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + حالت خودکار به این معنی است که ویژگی‌های تورنت مختلف (مثلاً مسیر ذخیره) توسط دسته مرتبط تعیین می‌شود @@ -10850,7 +10874,7 @@ Please choose a different name and try again. Use another path for incomplete torrent - + برای تورنت ناقص از مسیر دیگری استفاده کنید @@ -10894,14 +10918,6 @@ Please choose a different name and try again. Upload: بارگذاری: - - Set share limit to - تنظیم مقدار اشتراک گذاری به - - - ratio - نسبت - Disable DHT for this torrent @@ -10943,14 +10959,6 @@ Please choose a different name and try again. Not applicable to private torrents - - No share limit method selected - هیچ روشی برای محدودیت به اشتراک گذاری انتخاب نشده است - - - Please select a limit method first - لطفا ابتدا یک روش محدودیت گذاری انتخاب کنید - TorrentShareLimitsWidget @@ -10967,14 +10975,14 @@ Please choose a different name and try again. Unlimited - + نامحدود Set to - + تنظیم کردن @@ -11005,12 +11013,12 @@ Please choose a different name and try again. Stop torrent - + توقف تورنت Remove torrent - پاک کردن تورنت + پاک کردن تورنت @@ -11035,14 +11043,10 @@ Please choose a different name and try again. Torrent Tags - - New Tag - برچسب جدید - Add tag - + افزودن برچسب @@ -11073,78 +11077,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. خطا: '%1' فایل تورنت معتبری نمی‌باشد. - + Priority must be an integer اولویت باید یک عدد صحیح باشد - + Priority is not valid اولویت نامعتبر است - + Torrent's metadata has not yet downloaded - + File IDs must be integers شناسه فایل ها باید یک عدد صحیح باشد - + File ID is not valid شناسه فایل نامعتبر است - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty محل ذخیره نمی‌تواند خالی باشد - - + + Cannot create target directory - - + + Category cannot be empty دسته بندی نمی‌تواند خالی باشد - + Unable to create category نمی‌توان دسته بندی را ایجاد کرد - + Unable to edit category نمی‌توان دسته بندی را ویرایش کرد - + Unable to export torrent file. Error: %1 - + Cannot make save path نمی توان محل ذخیره‌سازی را ایجاد کرد @@ -11164,39 +11168,39 @@ Please choose a different name and try again. پارامتر 'مرتب‌سازی' نامعتبر است - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name نام تورنت نادرست است - - + + Incorrect category name نام دسته‌بندی نادرست است @@ -11259,12 +11263,12 @@ Please choose a different name and try again. Tracker error - + خطای ردیاب Unreachable - + دست‌نیافتنی @@ -11274,7 +11278,7 @@ Please choose a different name and try again. Invalid state! - + حالت نامعتبر! @@ -11284,7 +11288,7 @@ Please choose a different name and try again. BT Protocol - + پروتکل BT @@ -11299,7 +11303,7 @@ Please choose a different name and try again. Tier - + ردیف @@ -11324,7 +11328,7 @@ Please choose a different name and try again. Times Downloaded - + بار دانلود شده @@ -11340,73 +11344,73 @@ Please choose a different name and try again. این تورنت خصوصی است - + Tracker editing ویرایش ترکر - + Tracker URL: آدرس ترکر: - - + + Tracker editing failed ویرایش ترکر با شکست مواجه شد - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker پاک کردن ترکر - + Copy tracker URL - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns - + تغییر اندازه ستون‌ها - + Resize all non-hidden columns to the size of their contents - + اندازه تمام ستون‌های پنهان را به اندازه محتوای آنها تغییر دهید - + Add trackers... - + افزودن ردیاب‌ها... - + Column visibility نمایش ستون @@ -11416,7 +11420,7 @@ Please choose a different name and try again. Add trackers - + اضافه کردن ردیاب @@ -11489,20 +11493,12 @@ Please choose a different name and try again. Start torrents - + شروع تورنت‌ها Stop torrents - - - - Resume torrents - ادامه دانلود تورنتها - - - Pause torrents - توقف دانلود تورنتها + توقف تورنت‌ها @@ -11512,7 +11508,7 @@ Please choose a different name and try again. Removal confirmation - + تأیید حذف @@ -11585,7 +11581,7 @@ Please choose a different name and try again. [F] Downloading metadata Used when forced to load a magnet link. You probably shouldn't translate the F. - + [F] در حال بارگیری فراداده @@ -11624,11 +11620,7 @@ Please choose a different name and try again. Checking resume data Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. - - - - Paused - متوقف شده + بررسی داده های رزومه @@ -11670,21 +11662,16 @@ Please choose a different name and try again. % Done پیشرفت - - Status - Torrent status (e.g. downloading, seeding, paused) - وضعیت - Stopped - + متوقف شده Status Torrent status (e.g. downloading, seeding, stopped) - وضعیت + وضعیت @@ -11719,7 +11706,7 @@ Please choose a different name and try again. Popularity - + محبوبیت @@ -11800,28 +11787,23 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - مدت زمان فعال بودن + مدت زمان فعال بودن Yes - بله + بله No - نه - - - Time Active - Time (duration) the torrent is active (not paused) - مدت زمان فعال بودن + نه Save Path Torrent save path - + مسیر ذخیره @@ -11887,7 +11869,7 @@ Please choose a different name and try again. Private Flags private torrents - + خصوصی @@ -11905,345 +11887,331 @@ Please choose a different name and try again. %1 ago e.g.: 1h 20m ago - + %1 قبل %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + % 1 (سید برای %2) TransferListWidget - + Column visibility نمایش ستون - + Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? - + Rename تغییر نام - + New name: نام جدید: - + Choose save path انتخاب مسیر ذخیره سازی - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + تغییر اندازه ستون‌ها - + Resize all non-hidden columns to the size of their contents - + اندازه تمام ستون‌های پنهان را به اندازه محتوای آنها تغییر دهید - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - افزودن تگ - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags حذف تمامی تگها - + Remove all tags from selected torrents? - + Comma-separated tags: - + برچسب‌های جدا شده با کاما: - + Invalid tag تگ نامعتبر - + Tag name: '%1' is invalid نام برچسب '%1' نامعتبر است - &Resume - Resume/start the torrent - ادامه - - - &Pause - Pause the torrent - توقف - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + نظر - + &Name - + اسم - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + دسته - + &New... New category... - + جدید... - + &Reset Reset category - + بازنشانی - + Ta&gs - + برچسب‌ها - + &Add... Add / assign multiple tags... - + افزودن... - + &Remove All Remove all tags - + حذف همه - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + صف - + &Copy - + رونوشت - + Exported torrent is not necessarily the same as the imported - + Download in sequential order بارگیری به ترتیب پی در پی - + Add tags - + افزودن برچسب - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + شروع - + Sto&p Stop the torrent - + توقف - + Force Star&t Force Resume/start the torrent - + توقف اجباری - + &Remove Remove the torrent - + حذف - + Download first and last pieces first ابتدا قطعه های اول و آخر را بارگیری کن - + Automatic Torrent Management مدیریت خودکار تورنت - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + حالت خودکار به این معنی است که ویژگی‌های تورنت مختلف (مثلاً مسیر ذخیره) توسط دسته مرتبط تعیین می‌شود - + Super seeding mode حالت به اشتراک‌گذاری فوق‌العاده @@ -12253,44 +12221,44 @@ Please choose a different name and try again. UI Theme Configuration - + پیکربندی تم رابط Colors - + رنگ‌ها Color ID - + شناسه رنگ Light Mode - + حالت روشن Dark Mode - + حالت تیره Icons - + نماد‌ها Icon ID - + شناسه نماد UI Theme Configuration. - + پیکربندی تم رابط. @@ -12375,32 +12343,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12438,22 +12406,22 @@ Please choose a different name and try again. Watched Folder Options - + گزینه‌های پوشه مشاهده شده <html><head/><body><p>Will watch the folder and all its subfolders. In Manual torrent management mode it will also add subfolder name to the selected Save path.</p></body></html> - + <html><head/><body><p>پوشه و همه زیرپوشه های آن را تماشا خواهد کرد. در حالت مدیریت تورنت دستی، نام زیرپوشه را نیز به مسیر ذخیره انتخاب شده اضافه می کند.</p></body></html> Recursive mode - + حالت بازگشتی Torrent parameters - + پارامترهای تورنت @@ -12461,7 +12429,7 @@ Please choose a different name and try again. Watched Folder - + پوشه مشاهده شده @@ -12492,52 +12460,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. نوع فایل غیرقابل قبول، فقط فایل معمولی مجاز است. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12595,7 +12563,7 @@ Please choose a different name and try again. Unknown error - خطای ناشناخته + خطای ناشناخته @@ -12658,25 +12626,25 @@ Please choose a different name and try again. %1m e.g: 10 minutes - + %1م %1h %2m e.g: 3 hours 5 minutes - + %1س %2د %1d %2h e.g: 2 days 10 hours - + %1ر %2س %1y %2d e.g: 2 years 10 days - + %1س %2ر @@ -12694,7 +12662,7 @@ Please choose a different name and try again. < 1m < 1 minute - + < 1د diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index 90c339959..563918d06 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -170,10 +170,6 @@ Never show again Älä näytä tätä uudelleen - - Torrent settings - Torrentin asetukset - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrentin asetukset @@ -217,7 +213,7 @@ Click [...] button to add/remove tags. - + Napsauta [...]-painiketta lisätäksesi tai poistaaksesi tunnisteita. @@ -235,25 +231,25 @@ Pysäytysehto: - - + + None Ei mitään - - + + Metadata received Metatiedot vastaanotettu - + Torrents that have metadata initially will be added as stopped. - + Files checked Tiedostot tarkastettu @@ -368,112 +364,112 @@ Tallenna .torrent-tiedostona... - + I/O Error I/O-virhe - + Not Available This comment is unavailable Ei saatavilla - + Not Available This date is unavailable Ei saatavilla - + Not available Ei saatavilla - + Magnet link Magnet-linkki - + Retrieving metadata... Noudetaan metatietoja... - - + + Choose save path Valitse tallennussijainti - + No stop condition is set. Pysäytysehtoa ei ole määritetty. - + Torrent will stop after metadata is received. Torrent pysäytetään, kun metatiedot on vastaanotettu. - + Torrent will stop after files are initially checked. Torrent pysäytetään, kun tiedostojen alkutarkastus on suoritettu. - + This will also download metadata if it wasn't there initially. Tämä myös lataa metatiedot, jos niitä ei alunperin ollut. - + N/A Ei saatavilla - + %1 (Free space on disk: %2) %1 (Vapaata levytilaa: %2) - + Not available This size is unavailable. Ei saatavilla - + Torrent file (*%1) Torrent-tiedosto (*%1) - + Save as torrent file Tallenna torrent-tiedostona - + Couldn't export torrent metadata file '%1'. Reason: %2. Torrentin siirtäminen epäonnistui: '%1'. Syy: %2 - + Cannot create v2 torrent until its data is fully downloaded. Ei voida luoda v2 -torrentia ennen kuin sen tiedot on saatu kokonaan ladattua. - + Filter files... Suodata tiedostoja... - + Parsing metadata... Jäsennetään metatietoja... - + Metadata retrieval complete Metatietojen noutaminen valmis @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Ladataan torrent... Lähde: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Torrentin lisääminen epäonnistui. Lähde: "%1". Syy: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent Seurantapalvelimia ei voida yhdistää, koska torrent on yksityinen - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -556,7 +552,7 @@ Click [...] button to add/remove tags. - + Napsauta [...]-painiketta lisätäksesi tai poistaaksesi tunnisteita. @@ -571,7 +567,7 @@ Start torrent: - + Käynnistä torrent: @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Tarkista torrentit uudelleen niiden valmistuttua - - + + ms milliseconds ms - + Setting Asetus - + Value Value set for this setting Arvo - + (disabled) (ei käytössä) - + (auto) (autom.) - - + + min minutes min - + All addresses Kaikki osoitteet - + qBittorrent Section qBittorrentin asetukset - - + + Open documentation Avaa dokumentaatio - + All IPv4 addresses Kaikki IPv4-osoitteet - + All IPv6 addresses Kaikki IPv6-osoitteet - + libtorrent Section libtorrentin asetukset - + Fastresume files Pikajatka tiedostoja - + SQLite database (experimental) SQLite-tietokanta (kokeellinen) - + Resume data storage type (requires restart) Jatka data-säilötyyppi (vaatii uudelleenkäynnistyksen) - + Normal Normaali - + Below normal Alle normaali - + Medium Keskitaso - + Low Matala - + Very low Erittäin matala - + Physical memory (RAM) usage limit Fyysisen muistin (RAM) käytön rajoitus - + Asynchronous I/O threads Asynkroniset I/O-säikeet - + Hashing threads Tunnisteketjut - + File pool size Tiedostokertymäkoko - + Outstanding memory when checking torrents Muistin varaus tarkistettaessa torrent-tiedostoja - + Disk cache Levyn välimuisti - - - - + + + + + s seconds s - + Disk cache expiry interval Levyn välimuistin päättymisväli - + Disk queue size Levyjonon koko - - + + Enable OS cache Ota käyttöön käyttöjärjestelmän välimuisti - + Coalesce reads & writes Yhdistä luku- ja kirjoitustoimet - + Use piece extent affinity Käytä palasjatkeiden mieluisuustoimintoa - + Send upload piece suggestions Välitä tiedostonlähetysehdotukset - - - - - + + + + + 0 (disabled) - + 0 (ei käytössä) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer Yksittäiselle vertaiselle lähetettyjen odottavien pyyntöjen enimmäismäärä - - - - - + + + + + KiB KiB - + (infinite) - + (system default) (järjestelmän oletus) - + Delete files permanently - + Poista tiedostot pysyvästi - + Move files to trash (if possible) - + Siirrä tiedostot roskakoriin (jos mahdollista) - + Torrent content removing mode - + This option is less effective on Linux Valinnalla on vähemmän vaikutusta Linux-käyttöjärjestelmässä - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Oletus - + Memory mapped files Muistikartoitettu tiedosto - + POSIX-compliant POSIX-määritysten mukainen - + Simple pread/pwrite - + Disk IO type (requires restart) Levyn IO-tyyppi (vaatii uudelleenkäynnistyksen) - - + + Disable OS cache Älä käytä käyttöjärjestelmän välimuistia - + Disk IO read mode Tallennusmedian IO-lukutila - + Write-through Write through on tallennustapa, jossa tiedot kirjoitetaan välimuistiin ja vastaavaan päämuistipaikkaan samanaikaisesti. - + Disk IO write mode Tallennusmedian IO-kirjoitustila - + Send buffer watermark Välitä puskurivesileima - + Send buffer low watermark Välitä alemmantason puskurivesileima - + Send buffer watermark factor Välitä puskurivesileiman määre - + Outgoing connections per second Lähteviä yhteyksiä per sekunti - - + + 0 (system default) 0 (järjestelmän oletus) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Kantakirjausalueen koko - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit .torrent-tiedoston kokoraja - + Type of service (ToS) for connections to peers Palvelun malli (Type of Service / ToS) yhteyksille vertaiskäyttäjiä ajatellen - + Prefer TCP Suosi TCP:tä - + Peer proportional (throttles TCP) Vertaissuhteutus (TCP-kiihdytys) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Kansainvälistetty domain-nimituki (IDN) - + Allow multiple connections from the same IP address Salli useita yhteyksiä samasta IP-osoitteesta - + Validate HTTPS tracker certificates Vahvista HTTPS-trakkereiden varmenteet - + Server-side request forgery (SSRF) mitigation Pyyntötyöstön helpotusmenetelmä palvelinpuolella - (Server-side request forgery / SSRF) - + Disallow connection to peers on privileged ports Evää vertaisyhteydet ensisijaistettuihin portteihin - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates Määrittää sisäisen tilapäivitystiheyden, joka puolestaan vaikuttaa käyttöliittymän päivittymiseen. - + Refresh interval Päivitystiheys - + Resolve peer host names Selvitä vertaisten isäntänimet - + IP address reported to trackers (requires restart) Selonteko IP-osoitteesta seurantatyökaluille (vaatii uudelleenkäynnistyksen) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Julkaise kaikki seurantapalvelimet uudelleen kun IP-osoite tai portti muuttuu - + Enable icons in menus Näytä kuvakkeet valikoissa - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Käytä porttiohjausta sisäiselle trakkerille - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) (Havaitse automaattisesti jos tyhjä) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - s + s - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage Vertaiskierron katkaisuprosentuaali - + Peer turnover threshold percentage Vertaiskierron kynnysprosentuaali - + Peer turnover disconnect interval Vertaiskierron katkaisuväliaika - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Näytä ilmoitukset - + Display notifications for added torrents Näytä ilmoitukset lisätyille torrenteille - + Download tracker's favicon Lataa seurantapalvelimen favicon - + Save path history length Tallennussijaintihistorian pituus - + Enable speed graphs Käytä nopeuskaavioita - + Fixed slots Kiinteät paikat - + Upload rate based Lähetysnopeuteen perustuva - + Upload slots behavior Lähetyspaikkojen käyttäytyminen - + Round-robin Kiertovuorottelu - + Fastest upload Nopein lähetys - + Anti-leech Pelkän latauksen vastainen - + Upload choking algorithm Lähetyksen kuristusalgoritmi - + Confirm torrent recheck Vahvista torrentin uudelleentarkistus - + Confirm removal of all tags Vahvista kaikkien tunnisteiden poisto - + Always announce to all trackers in a tier Julkaise aina kaikille seuraimille tasollisesti - + Always announce to all tiers Julkaise aina kaikille tasoille - + Any interface i.e. Any network interface Mikä tahansa liitäntä - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP sekoitetun mallin algoritmi - + Resolve peer countries Selvitä vertaisten maat - + Network interface Verkkosovitin - + Optional IP address to bind to Vaihtoehtoinen IP-osoite, johon sitoutua - + Max concurrent HTTP announces Samanaikaisten HTTP-julkistusten enimmäismäärä - + Enable embedded tracker Ota käyttöön upotettu seurantapalvelin - + Embedded tracker port Upotetun seurantapalvelimen portti @@ -1387,7 +1394,7 @@ Directory does not exist - + Kansiota ei ole olemassa @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Käytetään kanettavassa tilassa. Profiilikansion sijainniksi tunnistettiin automaattisesti: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Havaittiin tarpeeton komentorivin lippu: "%1". Kannettava tila viittaa suhteelliseen pikajatkoon. - + Using config directory: %1 Käytetään asetuskansiota: %1 - + Torrent name: %1 Torrentin nimi: %1 - + Torrent size: %1 Torrentin koko: %1 - + Save path: %1 Tallennussijainti: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrentin lataus kesti %1. - - + + Thank you for using qBittorrent. Kiitos kun käytit qBittorrentia. - + Torrent: %1, sending mail notification Torrentti: %1, lähetetään sähköposti-ilmoitus - + Add torrent failed Torrentin lisääminen epäonnistui - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` Suoritetaan uilkoista sovellusta. Torrent: "%1". Komento: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torrentin "%1" lataus on valmistunut - + WebUI will be started shortly after internal preparations. Please wait... Verkkokäyttöliittymä käynnistyy pian sisäisten valmistelujen jälkeen. Odota... - - + + Loading torrents... Torrenteja ladataan... - + E&xit Sulje - + I/O Error i.e: Input/Output Error I/O-virhe - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ Syy: %2 - + Torrent added Torrent lisättiin - + '%1' was added. e.g: xxx.avi was added. "% 1" lisättiin. - + Download completed Lataus on valmis - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + Testisähköposti - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. "%1" lataus on valmis. - + Information Tiedot - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 Avaa selainkäyttöliittymä ohjataksesi qBittorrentia: %1 - + Exit Sulje - + Recursive download confirmation Rekursiivisen latauksen vahvistus - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrentti '%1' sisältää .torrent-tiedostoja, haluatko jatkaa niiden latausta? - + Never Ei koskaan - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Torrentin sisältämän .torrent-tiedoston rekursiivinen lataus. Lähdetorrent: "%1". Tiedosto: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Fyysisen muistin (RAM) rajoituksen asetus epäonnistui. Virhekoodi: %1. Virheviesti: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated qBittorentin sulku on aloitettu - + qBittorrent is shutting down... qBittorrentia suljetaan... - + Saving torrent progress... Tallennetaan torrentin edistymistä... - + qBittorrent is now ready to exit qBittorrent on valmis suljettavaksi @@ -1766,263 +1773,263 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo &Vie... - + Matches articles based on episode filter. Täsmää nimikkeisiin jotka perustuvat jaksosuodattimeen. - + Example: Esimerkki: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match poimii 2, 5, 8 ja läpi 15, 30 sekä jaksot siitä eteenpäin kaudesta yksi - + Episode filter rules: Jaksosuodattimen säännöt: - + Season number is a mandatory non-zero value Tuotantokauden numero on oltava enemmän kuin nolla - + Filter must end with semicolon Suodattimen on päätyttävä puolipisteeseen - + Three range types for episodes are supported: Jaksoille tuetaan kolmea aluetyyppiä: - + Single number: <b>1x25;</b> matches episode 25 of season one Yksi numero: <b>1x25;</b> vastaa ensimmäisen kauden jaksoa 25 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normaali jakauma: <b>1x25-40;</b> vastaa ensimmäisen kauden jaksoja 25-40 - + Episode number is a mandatory positive value Jakson numero on oltava positiivinen arvo - + Rules Säännöt - + Rules (legacy) Säännöt (perinteiset) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Rajoittamaton alue: <b>1x25-;</b> poimii jaksot 25 ja siitä ylöspäin kaudesta yksi, myös kaikki jaksot myöhemmistä kausista - + Last Match: %1 days ago Viimeisin täsmäys: %1 päivää sitten - + Last Match: Unknown Viimeisin täsmäys: ei tiedossa - + New rule name Uuden säännön nimi - + Please type the name of the new download rule. Anna uuden lataussäännön nimi. - - + + Rule name conflict Ristiriita säännön nimessä - - + + A rule with this name already exists, please choose another name. Samalla nimellä oleva sääntö on jo olemassa, valitse toinen nimi. - + Are you sure you want to remove the download rule named '%1'? Haluatko varmasti poistaa lataussäännön '%1'? - + Are you sure you want to remove the selected download rules? Haluatko varmasti poistaa valitut lataussäännöt? - + Rule deletion confirmation Säännön poistamisen vahvistus - + Invalid action Virheellinen toiminto - + The list is empty, there is nothing to export. Luettelo on tyhjä, ei mitään vietävää. - + Export RSS rules Vie RSS-säännöt - + I/O Error I/O-virhe - + Failed to create the destination file. Reason: %1 Kohdetiedoston luominen epäonnistui. Syy: %1 - + Import RSS rules Tuo RSS-säännöt - + Failed to import the selected rules file. Reason: %1 Valitun sääntöluettelon tuonti epäonnistui. Syy: %1 - + Add new rule... Lisää uusi sääntö... - + Delete rule Poista sääntö - + Rename rule... Nimeä sääntö uudelleen... - + Delete selected rules Poista valitut säännöt - + Clear downloaded episodes... Tyhjennä ladatut jaksot... - + Rule renaming Säännön nimeäminen uudelleen - + Please type the new rule name Anna uusi säännön nimi - + Clear downloaded episodes Tyhjennä ladatut jaksot - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Oletko varma että haluat tyhjentää ladattujen jaksojen luettelon valitulle säännölle? - + Regex mode: use Perl-compatible regular expressions Regex-tila: käytä Perl-yhteensopivia säännöllisiä lausekkeita - - + + Position %1: %2 Sijainti %1: %2 - + Wildcard mode: you can use Jokerimerkkitila: voit käyttää - - + + Import error - + Failed to read the file. %1 Tiedoston lukeminen epäonnistui. %1 - + ? to match any single character ? vastaamaan mitä tahansa yksittäistä merkkiä - + * to match zero or more of any characters * vastaamaan nolla tai enemmän mitä tahansa merkkiä - + Whitespaces count as AND operators (all words, any order) Tyhjät välit lasketaan JA toimintoina (kaikki sanat, mikä tahansa järjestys) - + | is used as OR operator | käytetään OR-operaattorina - + If word order is important use * instead of whitespace. Jos sanajärjestys on tärkeä, käytä * välilyönnin sijaan. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Pyyntö tyhjällä %1 lausekkeella (esim. %2) - + will match all articles. tulee täsmäämään kaikkien nimikkeiden kanssa. - + will exclude all articles. Sulkee pois kaikki artikkelit. @@ -2074,28 +2081,38 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Jatkotietoja ei voida jäsentää: virheellinen muoto - - + + Cannot parse torrent info: %1 Torrentin tietoja ei voida jäsentää: %1 - + Cannot parse torrent info: invalid format Torrentin tietoja ei voida jäsentää: virheellinen muoto - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Torrentin sisäisdataa ei saatu tallennettua '%1'. Virhe: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Torrentin jatkotietoja ei voitu tallentaa kohteeseen '%1'. Virhe: %2. @@ -2106,16 +2123,17 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo + Cannot parse resume data: %1 Jatkotietoja ei voida jäsentää: %1 - + Resume data is invalid: neither metadata nor info-hash was found Jatkotiedot ovat virheelliset: metatietoja tai tietojen hajautusarvoa ei löytynyt - + Couldn't save data to '%1'. Error: %2 Dataa ei saatu tallennettua '%1'. Virhe: %2 @@ -2123,38 +2141,60 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo BitTorrent::DBResumeDataStorage - + Not found. Ei löydy. - + Couldn't load resume data of torrent '%1'. Error: %2 Torrentin '%1' jatkotietoja ei voitu ladata. Virhe: %2 - - + + Database is corrupted. Tietokanta on turmeltunut. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Write-Ahead Logging (WAL) -päiväkirjaustilaa ei voitu ottaa käyttöön. Virhe: %1. - + Couldn't obtain query result. Kyselyn tulosta ei voitu saada. - + WAL mode is probably unsupported due to filesystem limitations. WAL-tilaa ei luultavasti tueta tiedostojärjestelmän rajoitusten vuoksi. - + + + Cannot parse resume data: %1 + Jatkotietoja ei voida jäsentää: %1 + + + + + Cannot parse torrent info: %1 + Torrentin tietoja ei voida jäsentää: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2202,22 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Torrentin sisäistä dataa ei saatu tallennettua. Virhe: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Torrentin '%1' jatkotietoja ei voitu säilyttää. Virhe: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Torrentin '%1' jatkotietoja ei voitu tallentaa. Virhe: %2 - + Couldn't store torrents queue positions. Error: %1 Torrent-jonopaikkoja ei saatu säilytettyä. Virhe: %1 @@ -2185,526 +2225,503 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Distributed Hash Table (DHT) -tuki: %1 - - - - - - - - - + + + + + + + + + ON KÄYTÖSSÄ - - - - - - - - - + + + + + + + + + OFF EI KÄYTÖSSÄ - - + + Local Peer Discovery support: %1 Local Peer Discovery -tuki: %1 - + Restart is required to toggle Peer Exchange (PeX) support Peer Exchange (PeX) -tuen kytkentä edellyttää uudelleenkäynnistystä - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrentin jatko epäonnistui. Torrent: "%1". Syy: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrentin jatko epäonnistui: havaittiin yhteensopimaton torrentin ID. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Havaittiin yhteensopimattomia tietoja: kategoria puuttuu asetustiedostosta. Kategoria palautetaan, mutta sen asetukset palautetaan oletuksiin. Torrent: "%1". Kategoria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Havaittiin yhteensopimattomia tietoja: virheellinen kategoria. Torrent: "%1". Kategoria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Palautetun kategorian ja torrentin nykyisen tallennussijainnin välillä havaittiin ristiriita. Torrent on nyt vaihdettu manuaaliseen tilaan. Torrent: "%1". Kategoria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Havaittiin yhteensopimattomia tietoja: tunniste puuttuu asetustiedostosta. Tunniste palautetaan. Torrent: "%1". Tunniste: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Havaittiin yhteensopimattomia tietoja: virheellinen tunniste. Torrent: "%1". Tunniste: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" Vertais-ID: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Peer Exchange (PeX) -tuki: %1 - - + + Anonymous mode: %1 Nimetön tila: %1 - - + + Encryption support: %1 Salauksen tuki: %1 - - + + FORCED PAKOTETTU - + Could not find GUID of network interface. Interface: "%1" Verkkosovittimen GUID-tunnistetta ei löytynyt. Sovitin: "%1" - + Trying to listen on the following list of IP addresses: "%1" Pyritään kuuntelemaan seuraavaa IP-osoiteluetteloa: "%1" - + Torrent reached the share ratio limit. Torrent saavutti jakosuhderajoituksen. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent poistettiin. - - - Removed torrent and deleted its content. - Torrent sisältöineen poistettiin. - - - Torrent paused. - Torrent tauotettiin. - - - + Super seeding enabled. Superlähetys käynnissä. - + Torrent reached the seeding time limit. Torrent saavutti jakoaikarajoituksen. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Torrentin lataus epäonnistui. Syy: "%1" - + I2P error. Message: "%1". I2P-virhe. Viesti: "%1". - + UPnP/NAT-PMP support: ON UPnP-/NAT-PMP-tuki: KÄYTÖSSÄ - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent pysäytetty. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - + Torrent poistettu. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - Seurantapalvelimia ei voida yhdistää, koska torrent on yksityinen + Seurantapalvelimia ei voida yhdistää, koska torrent on yksityinen - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF UPnP-/NAT-PMP-tuki: EI KÄYTÖSSÄ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Torrentin vienti epäonnistui. Torrent: "%1". Kohde: "%2". Syy: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Jatkotietojen tallennus keskeutettiin. Jäljellä olevien torrentien määrä: %1 - + The configured network address is invalid. Address: "%1" Määritetty verkko-osoite on virheellinen. Osoite: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Kuuntelemaan määritettyä verkko-osoitetta ei löytynyt. Osoite 1" - + The configured network interface is invalid. Interface: "%1" Määritetty verkkosovitin on virheellinen. Sovitin: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Virheellinen IP-osoite hylättiin sovellettaessa estettyjen IP-osoitteiden listausta. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Torrentille lisättiin seurantapalvelin. Torrentti: %1". Seurantapalvelin: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Torrentilta poistettiin seurantapalvelin. Torrentti: %1". Seurantapalvelin: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Torrentille lisättiin URL-jako. Torrent: %1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Torrentilta poistettiin URL-jako. Torrent: %1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent tauotettiin. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrentia jatkettiin. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrentin lataus valmistui. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrentin siirto peruttiin: Torrent: "%1". Lähde: "%2". Kohde: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Torrentin siirron lisäys jonoon epäonnistui. Torrent: "%1". Lähde: "%2". Kohde: "%3". Syy: torrentia siirretään kohteeseen parhaillaan - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Torrentin siirron lisäys jonoon epäonnistui. Torrent: "%1". Lähde: "%2" Kohde: "%3". Syy: molemmat tiedostosijainnit osoittavat samaan kohteeseen - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrentin siirto lisättiin jonoon. Torrent: "%1". Lähde: "%2". Kohde: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Torrentin siirto aloitettiin. Torrent: "%1". Kohde: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Kategoriamääritysten tallennus epäonnistui. Tiedosto: "%1". Virhe: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Kategoriamääritysten jäsennys epäonnistui. Tiedosto: "%1". Virhe: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IP-suodatintiedoston jäsennys onnistui. Sovellettujen sääntöjen määrä: %1 - + Failed to parse the IP filter file IP-suodatintiedoston jäsennys epäonnistui - + Restored torrent. Torrent: "%1" Torrent palautettiin. Torrent: "%1" - + Added new torrent. Torrent: "%1" Uusi torrent lisättiin. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent kohtasi virheen. Torrent: "%1". Virhe: "%2" - Removed torrent. Torrent: "%1" - Torrent poistettiin. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent sisältöineen poistettiin. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Varoitus tiedostovirheestä. Torrent: "%1". Tiedosto: "%2". Syy: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP-/NAT-PMP-porttien määritys epäonnistui. Viesti: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP-/NAT-PMP-porttien määritys onnistui. Viesti: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP-suodatin - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). suodatettu portti (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 sekoitetun mallin rajoitukset - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 ei ole käytössä - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 ei ole käytössä - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL-jaon DNS-selvitys epäonnistui. Torrent: "%1". URL: "%2". Virhe: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" URL-jaolta vastaanotettiin virheilmoitus. Torrent: "%1". URL: "%2". Viesti: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" IP-osoitteen kuuntelu onnistui. IP: "%1". Portti: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" IP-osoitteen kuuntelu epäonnistui. IP: "%1". Portti: "%2/%3". Syy: "%4" - + Detected external IP. IP: "%1" Havaittiin ulkoinen IP-osoite. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Virhe: Sisäinen hälytysjono on täynnä ja hälytyksiä tulee lisää, jonka seurauksena voi ilmetä heikentynyttä suorituskykyä. Halytyksen tyyppi: "%1". Viesti: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrentin siirto onnistui. Torrent: "%1". Kohde: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrentin siirto epäonnistui. Torrent: "%1". Lähde: "%2". Kohde: "%3". Syy: "%4" @@ -2714,7 +2731,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Failed to start seeding. - + Jakamisen aloittaminen epäonnistui. @@ -2754,47 +2771,47 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Tiedostoa ei voitu tallentaa. Syy: "%1". Torrent on nyt "vain lähetys" -tilassa. - + Download first and last piece first: %1, torrent: '%2' Lataa ensimmäinen ja viimeinen osa ensin: %1, torrent: '%2' - + On Päällä - + Off Pois päältä - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Jatkotietojen luonti epäonnistui. Torrent: "%1". Syy: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrentin palautus epäonnistui. Tiedostot on luultavasti siirretty tai tallennusmedia ei ole käytettävissä. Torrent: "%1". Syy: "%2" - + Missing metadata Metatietoja puuttuu - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Tiedoston nimeäminen uudelleen epäonnistui. Torrent: "%1", tiedosto: "%2", syy: "%3" - + Performance alert: %1. More info: %2 Suorituskykyvaroitus: %1. Lisätietoja: %2 @@ -2961,10 +2978,6 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Add torrents as running or stopped - - Add torrents as started or paused - Lisää torrent käynnistettynä tai pysäytettynä - Skip hash check @@ -3054,20 +3067,12 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Start torrents - + Käynnistä torrentit Stop torrents - - - - Resume torrents - Jatka torrentteja - - - Pause torrents - Pysäytä torrentit + Pysäytä torrentit @@ -3090,7 +3095,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo System - + Järjestelmä @@ -3165,11 +3170,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Also remove the content files - - - - Also permanently delete the files - Poista myös tiedostot pysyvästi + Poista myös sisältötiedostot @@ -3396,32 +3397,28 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Regular expression - + Säännöllinen lauseke GUIAddTorrentManager - + Downloading torrent... Source: "%1" Ladataan torrent... Lähde: "%1" - Trackers cannot be merged because it is a private torrent - Seurantapalvelimia ei voida yhdistää, koska torrent on yksityinen - - - + Torrent is already present Torrent on jo olemassa - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' on jo siirtolistalla. Haluatko yhdistää seurantapalvelimet uudesta lähteestä? @@ -3539,6 +3536,40 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Tuetut kuvatiedostot + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3680,10 +3711,6 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo &Options... &Asetukset... - - &Resume - &Jatka - &Remove @@ -3753,7 +3780,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Sh&utdown System - + Samm&uta järjestelmä @@ -3765,10 +3792,6 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Close Window Sulje ikkuna - - R&esume All - J&atka kaikkia - Manage Cookies... @@ -3807,22 +3830,22 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Sta&rt - + &Käynnistä Sto&p - + &Pysäytä R&esume Session - + &Palauta istunto Pau&se Session - + &Keskeytä istunto @@ -3884,10 +3907,6 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo &Hibernate System &Aseta tietokone horrostilaan - - S&hutdown System - &Sammuta tietokone - &Statistics @@ -3908,14 +3927,6 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo &About &Tietoja - - &Pause - &Pysäytä - - - P&ause All - Py&säytä kaikki - &Add Torrent File... @@ -3949,12 +3960,12 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo - + Show Näytä - + Check for program updates Tarkista sovelluspäivitykset @@ -3969,386 +3980,380 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Jos pidät qBittorrentista, lahjoita! - + Execution Log Suoritusloki - + Clear the password Poista salasana - + &Set Password &Aseta salasana - + Preferences Asetukset - + &Clear Password &Poista salasana - + Transfers Siirrot - - + + qBittorrent is minimized to tray qBittorrent on pienennetty ilmoitusalueelle - - - + + + This behavior can be changed in the settings. You won't be reminded again. Tätä toimintaa voi muuttaa asetuksista. Sinua ei muistuteta uudelleen. - + Icons Only Vain kuvakkeet - + Text Only Vain teksti - + Text Alongside Icons Teksti kuvakkeiden vieressä - + Text Under Icons Teksti kuvakkeiden alla - + Follow System Style Seuraa järjestelmän tyyliä - - + + UI lock password Käyttöliittymän lukitussalasana - - + + Please type the UI lock password: Anna käyttöliittymän lukitussalasana: - + Are you sure you want to clear the password? Haluatko varmasti poistaa salasanan? - + Use regular expressions Käytä säännöllisiä lausekkeita - - + + Search Engine - Hakukone + Hakukone - + Search has failed - Haku epäonnistui + Haku epäonnistui - + Search has finished - + Haku on päättynyt - + Search Etsi - + Transfers (%1) Siirrot (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent päivitettiin juuri ja se on käynnistettävä uudelleen, jotta muutokset tulisivat voimaan. - + qBittorrent is closed to tray qBittorrent on suljettu ilmoitusalueelle - + Some files are currently transferring. Joitain tiedostosiirtoja on vielä meneillään. - + Are you sure you want to quit qBittorrent? Haluatko varmasti lopettaa qBittorrentin? - + &No &Ei - + &Yes &Kyllä - + &Always Yes &Aina kyllä - + Options saved. Valinnat tallennettu. - + [PAUSED] %1 %1 is the rest of the window title - + [KESKEYTETTY] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Python-asennus onnistui. - + Exit code: %1. - + Reason: installer crashed. - + Syy: asennusohjelma kaatui. - + Python installation failed. - + Python-asennus epäonnistui. - + Launching Python installer. File: "%1". - + Käynnistetään Python-asennusohjelma. Tiedosto: "%1". - - + + Missing Python Runtime Puuttuva Python-suoritusympäristö - + qBittorrent Update Available qBittorrentin päivitys saatavilla - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Käyttääksesi hakukonetta, sinun täytyy asentaa Python. Haluatko asentaa sen nyt? - + Python is required to use the search engine but it does not seem to be installed. Käyttääksesi hakukonetta, sinun täytyy asentaa Python. - - + + Old Python Runtime Vanha Python-suoritusympäristö - + A new version is available. Uusi versio on saatavilla. - + Do you want to download %1? Haluatko ladata %1? - + Open changelog... Avaa muutosloki... - + No updates available. You are already using the latest version. Päivityksiä ei ole saatavilla. Käytät jo uusinta versiota. - + &Check for Updates &Tarkista päivitykset - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Käyttämäsi Python-versio (%1) on vanhentunut. Vähimmäisvaatimus: %2. Haluatko asentaa uudemman version nyt? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Keskeytetty + Pysäytetty - + Checking for Updates... Tarkistetaan päivityksiä... - + Already checking for program updates in the background Sovelluspäivityksiä tarkistetaan jo taustalla - + Python installation in progress... - + Python-asennus on meneillään... - + Failed to open Python installer. File: "%1". - + Python-asennusohjelman avaaminen epäonnistui. Tiedosto: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Lataamisvirhe - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python-asennuksen lataaminen epäonnistui, syy: %1. -Python täytyy asentaa manuaalisesti. - - - - + + Invalid password Virheellinen salasana - + Filter torrents... Suodata torrentteja... - + Filter by: Suodatin: - + The password must be at least 3 characters long Salasanan tulee olla vähintään 3 merkkiä pitkä - - - + + + RSS (%1) RSS (%1) - + The password is invalid Salasana on virheellinen - + DL speed: %1 e.g: Download speed: 10 KiB/s Latausnopeus: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Lähetysnopeus: %1 - + Hide Piilota - + Exiting qBittorrent Suljetaan qBittorrent - + Open Torrent Files Avaa torrent-tiedostot - + Torrent Files Torrent-tiedostot @@ -5842,47 +5847,47 @@ Python täytyy asentaa manuaalisesti. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 Todennus epäonnistui, viesti: %1 - + <mail from> was rejected by server, msg: %1 Palvelin hylkäsi lähettäjän <mail from>, viesti: %1 - + <Rcpt to> was rejected by server, msg: %1 Palvelin hylkäsi vastaanottajan <Rcpt to>, viesti: %1 - + <data> was rejected by server, msg: %1 Palvelin hylkäsi tiedon <data>, viesti: %1 - + Message was rejected by the server, error: %1 Palvelin hylkäsi viestin, virhe: %1 - + Both EHLO and HELO failed, msg: %1 Sekä EHLO, että HELO epäonnistui, viesti: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 Sähköposti-ilmoitusvirhe: %1 @@ -5924,10 +5929,6 @@ Python täytyy asentaa manuaalisesti. RSS RSS - - Web UI - Selainkäyttö - Advanced @@ -5936,7 +5937,7 @@ Python täytyy asentaa manuaalisesti. Customize UI Theme... - + Mukauta käyttöliittymän teemaa... @@ -5964,10 +5965,6 @@ Python täytyy asentaa manuaalisesti. Always Aina - - Paused torrents only - Vain pysäytetyt torrentit - Action on double-click @@ -5978,10 +5975,6 @@ Python täytyy asentaa manuaalisesti. Downloading torrents: Torrentteja ladatessa: - - Start / Stop Torrent - Aloita / pysäytä torrent - @@ -6040,175 +6033,175 @@ Python täytyy asentaa manuaalisesti. Kt - + + Show free disk space in status bar + + + + Torrent content layout: Torrentin sisällön asettelu: - + Original Alkuperäinen - + Create subfolder Luo alikansio - + Don't create subfolder Älä luo alikansiota - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue Lisää jonon kärkeen - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Lisää... - + Options.. Asetukset... - + Remove Poista - + Email notification &upon download completion Sähköposti-ilmoitus latauksen valmistuttua - + Send test email - + Lähetä testisähköposti - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Vertaisyhteyksien protokolla: - + Any - + I2P (experimental) I2P (kokeellinen) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy RSS-syötteet käyttävät välityspalvelinta - + Use proxy for RSS purposes Käytä välityspalvelinta RSS-tarkoituksiin - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering &IP-suodatus - + Schedule &the use of alternative rate limits Aseta aikataulu vaihtoehtoisille nopeusrajoituksille - + From: From start time Alkaa: - + To: To end time Päättyy: - + Find peers on the DHT network Etsi vertaisia DHT-verkosta - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6217,188 +6210,190 @@ Vaadi salaus: Yhdistä vain salattua protokollaa käyttäviin vertaisiin Älä käytä salausta: Yhdistä vain vertaisiin, jotka eivät käytä salattua protokollaa - + Allow encryption Salli salaus - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Lisätietoja</a>) - + Maximum active checking torrents: - + &Torrent Queueing Torrentien &jonotus - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - Lisää nämä seurantapalvelimet uusille latauksille automaattisesti: - - - + RSS Reader RSS-lukija - + Enable fetching RSS feeds Ota käyttöön RSS-syötteiden haku - + Feeds refresh interval: RSS-syötteen päivitystiheys: - + Same host request delay: - + Maximum number of articles per feed: Artikkeleiden enimmäismäärä syötettä kohden: - - - + + + min minutes min - + Seeding Limits Jakorajoitukset - Pause torrent - Pysäytä torrent - - - + Remove torrent Poista torrentti - + Remove torrent and its files Poista torrentti ja sen tiedostot - + Enable super seeding for torrent Käytä torrentille superjakoa - + When ratio reaches Jakosuhteen muuttuessa - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + Pysäytä torrent + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + Historian pituus - + RSS Torrent Auto Downloader RSS-torrenttien automaattinen lataaja - + Enable auto downloading of RSS torrents Ota käyttöön RSS-torrenttien automaattinen lataus - + Edit auto downloading rules... Muokkaa automaattisten latausten sääntöjä... - + RSS Smart Episode Filter Älykäs RSS-jaksosuodatin - + Download REPACK/PROPER episodes Lataa REPACK/PROPER-jaksot - + Filters: Suodattimet: - + Web User Interface (Remote control) Web-käyttöliittymä (Etäohjaus) - + IP address: IP-osoite: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6406,41 +6401,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv Määritä IPv4- tai IPv6-osoite. Voit käyttää '0.0.0.0' kaikille IPv4-, '::' kaikille IPv6- tai '*' kaikille iPV4- ja IPv6-osoitteille. - + Ban client after consecutive failures: Estä asiakas perättäisistä epäonnistumissista: - + Never Ei koskaan - + ban for: eston kesto: - + Session timeout: Istunnon aikakatkaisu: - + Disabled Ei käytössä - Enable cookie Secure flag (requires HTTPS) - Käytä evästeen Secure-lippua (vaatii HTTPS:n) - - - + Server domains: Palvelimen verkkotunnukset: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6449,37 +6440,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP Käytä HTTPS:ää HTTP:n sijaan - + Bypass authentication for clients on localhost Ohita tunnistautuminen localhostista saapuvien asiakkaiden kohdalla - + Bypass authentication for clients in whitelisted IP subnets Ohita tunnistautuminen valkolistattujen IP-aliverkkojen asiakkaiden kohdalla - + IP subnet whitelist... IP-aliverkkojen valkolista... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Päivitä dynaamisen verkkotunnukseni nimi @@ -6491,7 +6482,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Etsi + Etsi @@ -6511,12 +6502,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + Tyyli: Color scheme: - + Väriteema: @@ -6527,7 +6518,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start / stop torrent - + Käynnistä/pysäytä torrent @@ -6592,99 +6583,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Poista varmuuskopiot, jotka ovat vanhempia kuin: - + Show external IP in status bar - + Näytä ulkoinen IP tilarivillä - + When adding a torrent Kun lisätään torrent-tiedostoa - + Bring torrent dialog to the front Tuo torrent-ikkuna päällimmäiseksi - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Poista myös torrent-tiedostot, joiden lisääminen peruutettiin - + Also when addition is cancelled Myös silloin, kun lisäys peruutetaan - + Warning! Data loss possible! Varoitus! Tietojen menetys on mahdollista! - + Saving Management Tallennuksen hallinta - + Default Torrent Management Mode: Torrentien oletusarvoinen hallintatila: - + Manual Manuaalinen - + Automatic Automaattinen - + When Torrent Category changed: Kun torrentin kategoria muutetaan: - + Relocate torrent Uudelleensijoita torrentti - + Switch torrent to Manual Mode Vaihda torrent manuaaliseen tilaan - - + + Relocate affected torrents Uudelleensijoita vaikuttuneet torrentit - - + + Switch affected torrents to Manual Mode Vaihda vaikuttuneet torrentit manuaaliseen tilaan - + Use Subcategories Käytä alikategorioita - + Default Save Path: Tallennuksen oletussijainti: - + Copy .torrent files to: Kopioi .torrent-tiedostot kohteeseen: @@ -6694,26 +6685,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Näytä &qBittorrent ilmoitusalueella - &Log file - &Lokitiedosto - - - + Display &torrent content and some options Näytä &torrentin sisältö ja joitakin valintoja - + De&lete .torrent files afterwards Poista .torrent-tiedostot &lisäämisen jälkeen - + Copy .torrent files for finished downloads to: Kopioi valmistuneiden latausten .torrent-tiedostot kohteeseen: - + Pre-allocate disk space for all files Varaa kaikille tiedostoille levytila ennakkoon @@ -6743,10 +6730,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Esikatsele tiedosto, muuten avaa kohdekansio - - Show torrent options - Näytä torrentin asetukset - Shows a confirmation dialog when exiting with active torrents @@ -6812,69 +6795,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.vuotta - + Log performance warnings Lokita suorituskykyvaroitukset - The torrent will be added to download list in a paused state - Torrent lisätään latauksiin pysäytetynä - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Älä aloita lataamista automaattisesti - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Varaa tiedostojen vaatima tallennustila ennen latauksen aloitusta levyn pirstaloitumisen vähentämiseksi. Hyödyllinnen vain mekaanisille kiintolevyille. - + Append .!qB extension to incomplete files Lisää .!qB pääte keskeneräisille tiedostoille - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Kun torrentti on ladattu, ehdota sen sisältämien .torrent-tiedostojen lisäystä - + Enable recursive download dialog Käytä rekursiivista latausikkunaa - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automaattinen: Monet torrenttien määritykset, kuten tallennussijainti, asetetaan liitetyn kategorian perusteella Manuaalinen: Monet torrenttien määritykset, kuten tallennussijainti, on asetettava manuaalisesti - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: Kategorian tallennussijainnin muuttuessa: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one Selvitä suhteellinen tallennussijainti tallennuksen oletussijainnin sijaan sopivan kategorian sijainnilla @@ -6894,50 +6873,50 @@ Manuaalinen: Monet torrenttien määritykset, kuten tallennussijainti, on asetet - + Torrent stop condition: Torrentin pysäytysehto: - - + + None Ei mitään - - + + Metadata received Metatiedot vastaanotettu - - + + Files checked Tiedostot tarkastettu - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Käytä keskeneräisille torrenteille eri sijaintia: - + Automatically add torrents from: Lisää torrentit automaattisesti kohteesta: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6954,523 +6933,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Vastaanottaja - + To: To receiver Vastaanottaja: - + SMTP server: SMTP-palvelin: - + Sender Lähettäjä - + From: From sender Lähettäjä: - + This server requires a secure connection (SSL) Tämä palvelin vaatii suojatun yhteyden (SSL) - - + + Authentication Tunnistautuminen - - - - + + + + Username: Käyttäjänimi: - - - - + + + + Password: Salasana: - + Run external program Suorita ulkoinen ohjelma - Run on torrent added - Suorita kun torrent lisätään - - - Run on torrent finished - Suorita kun torrent valmistuu - - - + Show console window Näytä konsoli-ikkuna - + TCP and μTP TCP ja μTP - + Listening Port Kuunteluportti - + Port used for incoming connections: Portti sisääntuleville yhteyksille: - + Set to 0 to let your system pick an unused port - + Random Satunnainen - + Use UPnP / NAT-PMP port forwarding from my router Käytä UPnP-/NAT-PMP-portinohjausta reitittimeltä - + Connections Limits Yhteyksien rajat - + Maximum number of connections per torrent: Yhteyksien enimmäismäärä torrenttia kohden: - + Global maximum number of connections: Kaikkien yhteyksien enimmäismäärä: - + Maximum number of upload slots per torrent: Lähetyspaikkojen enimmäismäärä torrentia kohden: - + Global maximum number of upload slots: Kaikkien lähetyspaikkojen enimmäismäärä: - + Proxy Server Välityspalvelin - + Type: Tyyppi: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Isäntä: - - - + + + Port: Portti: - + Otherwise, the proxy server is only used for tracker connections Muussa tapauksessa välityspalvelinta käytetään vain seurantapalvelimen yhteyksiin - + Use proxy for peer connections Käytä välityspalvelinta vertaisyhteyksille - + A&uthentication T&unnistautuminen - Info: The password is saved unencrypted - Tärkeää: Salasana tallennetaan salaamattomana + Tärkeää: Salasana tallennetaan salaamattomana - + Filter path (.dat, .p2p, .p2b): Suodatustiedoston sijainti (.dat, .p2p, p2b): - + Reload the filter Lataa suodatin uudelleen - + Manually banned IP addresses... Manuaalisesti estetyt IP-osoitteet... - + Apply to trackers Käytä seurantapalvelimille - + Global Rate Limits Yleiset nopeusrajoitukset - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s Kt/s - - + + Upload: Lähetys: - - + + Download: Lataus: - + Alternative Rate Limits Vaihtoehtoiset nopeusrajoitukset - + Start time Aloitusaika - + End time Päättymisaika - + When: Ajankohta: - + Every day Joka päivä - + Weekdays Arkisin - + Weekends Viikonloppuisin - + Rate Limits Settings Nopeusrajoitusasetukset - + Apply rate limit to peers on LAN Käytä nopeusrajoitusta paikallisverkossa (LAN) oleviin vertaisiin - + Apply rate limit to transport overhead Käytä nopeusrajoitusta siirron rasiteliikenteelle - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Käytä nopeusrajoitusta µTP-protokollaan - + Privacy Yksityisyys - + Enable DHT (decentralized network) to find more peers Käytä vertaishakuun hajautettua DHT (distributed hash table) -protokollaa - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Vaihda vertaisia yhteensopivien BitTorrent-päätteiden (µTorrent, Vuze...) kanssa - + Enable Peer Exchange (PeX) to find more peers Käytä vertaishakuun PeX (Peer Exchange) -protokollaa - + Look for peers on your local network Etsi vertaisia lähiverkosta - + Enable Local Peer Discovery to find more peers Käytä vertaishakuun Local Peer Discovery -protokollaa - + Encryption mode: Salaustila: - + Require encryption Vaadi salaus - + Disable encryption Ei salausta - + Enable when using a proxy or a VPN connection Ota käyttöön välityspalvelinta tai VPN-yhteyttä käytettäessä - + Enable anonymous mode Käytä anonyymitilaa - + Maximum active downloads: Aktiivisia latauksia enintään: - + Maximum active uploads: Aktiivisia lähetyksiä enintään: - + Maximum active torrents: Aktiivisia torrentteja enintään: - + Do not count slow torrents in these limits Älä laske hitaita torrenteja näihin rajoituksiin - + Upload rate threshold: Lähetysnopeuden raja: - + Download rate threshold: Latausnopeuden raja: - - - - + + + + sec seconds s - + Torrent inactivity timer: - + then sitten - + Use UPnP / NAT-PMP to forward the port from my router Käytä UPnP:tä / NAT-PMP:tä porttiohjaukseen reitittimeltä - + Certificate: Varmenne: - + Key: Avain: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Tietoa varmenteista</a> - + Change current password Vaihda nykyinen salasana - Use alternative Web UI - Käytä vaihtoehtoista selainkäyttölittymän ulkoasua - - - + Files location: Tiedostojen sijainti: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Tietoturva - + Enable clickjacking protection Käytä clickjacking-suojausta - + Enable Cross-Site Request Forgery (CSRF) protection Käytä Cross-Site Request Forgery (CSRF) -suojausta - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Käytä Host-otsakkeen validointia - + Add custom HTTP headers Lisää mukautetut HTTP-otsakkeet - + Header: value pairs, one per line - + Enable reverse proxy support Käytä käänteisen välityspalvelimen tukea - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Palvelu: - + Register Rekisteröidy - + Domain name: Verkkotunnuksen nimi: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Ottamalla nämä asetukset käyttöön, voit <strong>peruuttamattomasti menettää</strong> torrent-tiedostosi! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7480,12 +7446,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Valitse qBittorrentin käyttöliittymäteeman tiedosto - + Choose Alternative UI files location - + Supported parameters (case sensitive): Tuetut parametrit (kirjainkoolla on merkitystä): @@ -7505,183 +7471,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. Pysäytysehtoa ei ole määritetty. - + Torrent will stop after metadata is received. Torrent pysäytetään, kun metatiedot on vastaanotettu. - + Torrent will stop after files are initially checked. Torrent pysäytetään, kun tiedostojen alkutarkastus on suoritettu. - + This will also download metadata if it wasn't there initially. Tämä myös lataa metatiedot, jos niitä ei alunperin ollut. - + %N: Torrent name %N: Torrentin nimi - + %L: Category %L: Kategoria - + %F: Content path (same as root path for multifile torrent) %F: Sisällön sijainti (vastaa monitiedostoisen torrentin juurikansiota) - + %R: Root path (first torrent subdirectory path) %R: Juurisijainti (torrentin ensimmäisen alihakemiston polku) - + %D: Save path %D: Tallennussijainti - + %C: Number of files %C: Tiedostojen määrä - + %Z: Torrent size (bytes) %Z: Torrenin koko (tavua) - + %T: Current tracker %T: Nykyinen seurantapalvelin - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Testisähköposti - + Attempted to send email. Check your inbox to confirm success - + (None) (Ei mikään) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrentti tulkitaan hitaaksi, jos sen lataus- ja lähetysnopeudet pysyvät "Torrentin passiivisuusaika" -arvojen alla - + Certificate Varmenne - + Select certificate Valitse varmenne - + Private key Yksityinen avain - + Select private key Valitse yksityinen avain - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Järjestelmä - + Let Qt decide the style for this system - + Dark Dark color scheme - + Tumma - + Light Light color scheme - + Vaalea - + System System color scheme - + Järjestelmä - + Select folder to monitor Valitse valvottava kansio - + Adding entry failed Merkinnän llsääminen epäonnistui - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Sijaintivirhe - - + + Choose export directory Valitse vientihakemisto - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Kun nämä asetukset ovat käytössä, qBittorrent <strong>poistaa</strong>.torrent-tiedostot sen jälkeen kun niiden lisäys latausjonoon onnistui (ensimmäinen valinta) tai ei onnistunut (toinen valinta). Tätä <strong>ei käytetä pelkästään</strong> &rdquo;Lisää torrentti&rdquo; -valinnan kautta avattuihin tiedostoihin, vaan myös <strong>tiedostotyypin kytkennän</strong> kautta avattuihin teidostoihin. @@ -7691,69 +7657,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not qBittorrentin käyttöliittymän teematiedosto (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Tunnisteet (pilkuin eroteltuna) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Valitse tallennushakemisto - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Valitse IP-suodatustiedosto - + All supported filters Kaikki tuetut suodattimet - + The alternative WebUI files location cannot be blank. - + Parsing error Jäsennysvirhe - + Failed to parse the provided IP filter Annetun IP-suodattimen jäsentäminen epäonnistui - + Successfully refreshed Päivitetty onnistuneesti - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Annetun IP-suodattimen jäsentäminen onnistui: %1 sääntöä otettiin käyttöön. @@ -7764,18 +7730,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Asetukset - + Time Error Aikavirhe - + The start time and the end time can't be the same. Aloitus- ja päättymisaika eivät voi olla samoja. - - + + Length Error Pituusvirhe @@ -7866,163 +7832,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Maa/Alue - + IP/Address IP/Osoite - + Port Portti - + Flags Liput - + Connection Yhteys - + Client i.e.: Client application Asiakassovellus - + Peer ID Client i.e.: Client resolved from Peer ID Vertaisen asiakassovelluksen tunniste - + Progress i.e: % downloaded Edistyminen - + Down Speed i.e: Download speed Latausnopeus - + Up Speed i.e: Upload speed Lähetysnopeus - + Downloaded i.e: total data downloaded Ladattu - + Uploaded i.e: total data uploaded Lähetetty - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Merkityksellisyys - + Files i.e. files that are being downloaded right now Tiedostot - + Column visibility Sarakkeen näkyvyys - + Resize columns Muuta sarakkeiden kokoa - + Resize all non-hidden columns to the size of their contents Sovita kaikkien piilottamattomien sarakkeiden koko niiden sisältöön - + Add peers... Lisää vertaisia... - - + + Adding peers Lisätään vertaisia - + Some peers cannot be added. Check the Log for details. Joitain vertaisia ei voi lisätä. Katso lokista lisätietoja. - + Peers are added to this torrent. Vertaiset lisätään tähän torrentiin. - - + + Ban peer permanently Estä vertainen pysyvästi - + Cannot add peers to a private torrent Vertaisia ei voida lisätä yksityiseen torrentiin - + Cannot add peers when the torrent is checking Vertaisia ei voida lisätä tarkistettaessa torrentia - + Cannot add peers when the torrent is queued Vertaisia ei voida lisätä torrentin ollessa jonossa - + No peer was selected Vertaisia ei valittu - + Are you sure you want to permanently ban the selected peers? Haluatko varmasti estää valitut vertaiset pysyvästi? - + Peer "%1" is manually banned Vertainen "%1" on estetty manuaalisesti - + N/A Ei saatavilla - + Copy IP:port Kopioi IP:portti @@ -8303,34 +8269,8 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. PowerManagement - qBittorrent is active - qBittorrent on käynnissä - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent on käynnissä @@ -8579,7 +8519,7 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Popularity: - + Suosio: @@ -8614,7 +8554,7 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Private: - + Yksityinen: @@ -8622,153 +8562,124 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Tallennussijainti: - + Never Ei koskaan - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (hallussa %3) - - + + %1 (%2 this session) %1 (tässä istunnossa %2) - - + + N/A Ei saatavilla - + Yes - Kyllä + Kyllä - + No - Ei + Ei - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (jaettu %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (enintään %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 yhteensä) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (keskimäärin %2) - + Add web seed Add HTTP source - + Lisää web-jako - + Add web seed: - + Lisää web-jako: - - + + This web seed is already in the list. - New Web seed - Uusi web-jako - - - Remove Web seed - Poista web-jako - - - Copy Web seed URL - Kopioi web-jaon URL-osoite - - - Edit Web seed URL - Muokkaa web-jaon URL-osoitetta - - - + Filter files... Suodata tiedostot... - + Add web seed... - + Lisää web-jako... - + Remove web seed - + Poista web-jako - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - Uusi URL-jako - - - New URL seed: - Uusi URL-jako: - - - This URL seed is already in the list. - URL-jako on jo listalla. - - - + Web seed editing Web-jaon muokkaus - + Web seed URL: Web-jaon URL-osoite @@ -8776,33 +8687,33 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format Virheellinen tietomuoto - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... Rss-artikkeli '%1' on hyväksytty säännöllä '%2'. Yritetään lisätä torrenttia... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8810,22 +8721,22 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 RSS-syötteen lataaminen osoitteesta '%1' epäonnistui. Syy: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-syöte päivitetty osoitteesta '%1'. Lisättiin %2 uutta artikkelia. - + Failed to parse RSS feed at '%1'. Reason: %2 RSS-syötteen jäsentäminen osoitteesta '%1' epäonnistui. Syy: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-syötteen lataaminen osoitteesta '%1' onnistui. Aloitetaan sen jäsentäminen. @@ -8874,12 +8785,12 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8901,76 +8812,117 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. - + Item doesn't exist: %1. Tietuetta ei ole olemassa: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Juurikansiota ei voi poistaa. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. RSS-syötettä ei voitu ladata. Syöte: "%1". Syy: osoite vaaditaan. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. RSS-syötettä ei voitu ladata. Syöte: "%1". Syy: Virheellinen UID. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Väärä RSS-kohteen sijainti: %1. - + RSS item with given path already exists: %1. RSS-kohde ilmoitetulla sijainnilla on jo olemassa: %1. - + Parent folder doesn't exist: %1. Ylemmän tason kansiota ei ole olemassa: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Syötettä ei ole olemassa: %1 + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + s + + + + Default + Oletus + + RSSWidget @@ -9070,78 +9022,77 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. + Feed options... + + + Edit feed URL... - Muokkaa syötteen osoitetta... + Muokkaa syötteen osoitetta... - Edit feed URL - Muokkaa syötteen osoitetta + Muokkaa syötteen osoitetta - + Please choose a folder name Valitse kansion nimi - + Folder name: Kansion nimi: - + New folder Uusi kansio - - Please type a RSS feed URL - Anna RSS-syötteen verkko-osoite. + Anna RSS-syötteen verkko-osoite. - - Feed URL: - Syötteen osoite: + Syötteen osoite: - + Deletion confirmation Poistamisen vahvistus - + Are you sure you want to delete the selected RSS feeds? Haluatko varmasti poistaa valitut RSS-syötteet? - + Please choose a new name for this RSS feed Valitse uusi nimi tälle RSS-syötteelle - + New feed name: Uusi syötteen nimi: - + Rename failed Uudelleennimeäminen epäonnistui - + Date: Päiväys: - + Feed: Syöte: - + Author: Tekijä: @@ -9278,10 +9229,6 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. i.e: Number of partial sources Lataajia - - Search engine - Hakukone - Filter search results... @@ -9381,7 +9328,7 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Published On - + Julkaistu @@ -9402,104 +9349,104 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. SearchPluginManager - + Unknown search engine plugin file format. Tuntematon hakukoneliitännäisen tiedostomuoto. - + Plugin already at version %1, which is greater than %2 Liitännäinen on jo versiossa %1, mikä on suurempi kuin %2 - + A more recent version of this plugin is already installed. Uudempi versio tästä liitännäisestä on jo asennettu. - + Plugin %1 is not supported. Liitännäinen %1 ei ole tuettu. - - + + Plugin is not supported. Liitännäinen ei ole tuettu. - + Plugin %1 has been successfully updated. Liitännäinen %1 on päivitetty onnistuneesti. - + All categories Kaikki kategoriat - + Movies Elokuvat - + TV shows TV-ohjelmat - + Music Musiikki - + Games Pelit - + Anime Anime - + Software Ohjelmat - + Pictures Kuvat - + Books Kirjat - + Update server is temporarily unavailable. %1 Päivityspalvelin ei ole juuri nyt käytettävissä. %1 - - + + Failed to download the plugin file. %1 Liitännäistiedoston lataus epäonnistui. %1 - + Plugin "%1" is outdated, updating to version %2 Liitännäinen "%1" on vanhentunut, päivitetään versioon %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9525,135 +9472,127 @@ Napsauta "Hakuliitännäiset"-painiketta ikkunan oikeasta alakulmasta Hakuliitännäiset - + A phrase to search for. Haku fraasi. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example Esimerkki: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins Kaikki liitännäiset - + Only enabled Vain käytössä olevat - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Päivitä - + Close tab Sulje välilehti - + Close all tabs Sulje kaikki välilehdet - + Select... Valitse... - - + + Search Engine Hakukone - - + + Please install Python to use the Search Engine. Asenna Python käyttääksesi hakukonetta. - + Empty search pattern Tyhjä hakulauseke - + Please type a search pattern first Kirjoita ensin hakulauseke - + Stop Pysäytä - - Search has finished - Haku valmis - - - Search has failed - Haku epäonnistui - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10051,67 +9990,77 @@ Napsauta "Hakuliitännäiset"-painiketta ikkunan oikeasta alakulmasta StatusBar - + Connection status: Yhteyden tila: - - + + No direct connections. This may indicate network configuration problems. Ei suoria yhteyksiä. Tämä voi olla merkki verkko-ongelmista. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 solmua - + qBittorrent needs to be restarted! qBittorrent pitää käynnistää uudelleen! - - + + Connection Status: Yhteyden tila: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Ei yhteyttä. Yleensä tämä tarkoittaa, että qBittorrent ei pystynyt kuuntelemaan sisääntulevien yhteyksien porttia. - + Online Verkkoyhteydessä - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Ulkoiset IP:t: %1, %2 + + + + External IP: %1%2 + Ulkoinen IP: %1%2 + + + Click to switch to alternative speed limits Napsauta vaihtaaksesi vaihtoehtoisiin nopeusrajoituksiin - + Click to switch to regular speed limits Napsauta vaihtaaksesi tavallisiin nopeusrajoituksiin @@ -10139,23 +10088,15 @@ Napsauta "Hakuliitännäiset"-painiketta ikkunan oikeasta alakulmasta Completed (0) Valmistunut (0) - - Resumed (0) - Jatkettu (0) - - - Paused (0) - Pysäytetty (0) - Running (0) - + Käynnissä (0) Stopped (0) - + Pysäytetty (0) @@ -10220,49 +10161,33 @@ Napsauta "Hakuliitännäiset"-painiketta ikkunan oikeasta alakulmasta Running (%1) - + Käynnissä (%1) Stopped (%1) - + Pysäytetty (%1) Start torrents - + Käynnistä torrentit Stop torrents - - - - Paused (%1) - Pysäytetty (%1) + Pysäytä torrentit Moving (%1) Siirretään (%1) - - Resume torrents - Käynnistä torrentit - - - Pause torrents - Pysäytä torrentit - Remove torrents Poista torrentit - - Resumed (%1) - Jatkettu (%1) - Active (%1) @@ -10334,32 +10259,20 @@ Napsauta "Hakuliitännäiset"-painiketta ikkunan oikeasta alakulmasta Remove unused tags Poista käyttämättömät tunnisteet - - Resume torrents - Käynnistä torrentit - - - Pause torrents - Pysäytä torrentit - Remove torrents Poista torrentit - - New Tag - Uusi tunniste - Start torrents - + Käynnistä torrentit Stop torrents - + Pysäytä torrentit @@ -10369,7 +10282,7 @@ Napsauta "Hakuliitännäiset"-painiketta ikkunan oikeasta alakulmasta Add tag - + Lisää tunniste @@ -10684,17 +10597,17 @@ Valitse toinen nimi ja yritä uudelleen. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. Torrentin luonti epäonnistui. @@ -10943,14 +10856,7 @@ Valitse toinen nimi ja yritä uudelleen. Watching folder: "%1" - - - - - TorrentInfo - - Invalid metadata - Virheellinen metadata + Tarkkaillaan kansiota: "%1" @@ -10988,11 +10894,7 @@ Valitse toinen nimi ja yritä uudelleen. Torrent Share Limits - - - - Torrent speed limits - Torrentin nopeusrajoitukset + Torrent-jakorajoitukset @@ -11008,7 +10910,7 @@ Valitse toinen nimi ja yritä uudelleen. Torrent Speed Limits - + Torrent-nopeusrajoitukset @@ -11026,34 +10928,6 @@ Valitse toinen nimi ja yritä uudelleen. Upload: Lähetys: - - Torrent share limits - Torrentin jakorajoitukset - - - Use global share limit - Käytä yleistä jako rajoitusta - - - Set no share limit - Älä aseta jakorajoitusta - - - Set share limit to - Aseta jakorajoitukseksi - - - ratio - Jakosuhde - - - total minutes - yhteensä minuutteja - - - inactive minutes - Passiiviset minuutit - Disable DHT for this torrent @@ -11149,27 +11023,27 @@ Valitse toinen nimi ja yritä uudelleen. Stop torrent - + Pysäytä torrent Remove torrent - Poista torrentti + Poista torrentti Remove torrent and its content - + Poista torrent ja sen sisältö Enable super seeding for torrent - Käytä torrentille superjakoa + Käytä torrentille superjakoa Ratio: - + Jakosuhde: @@ -11179,14 +11053,10 @@ Valitse toinen nimi ja yritä uudelleen. Torrent Tags Torrentin tunnisteet - - New Tag - Uusi tunniste - Add tag - + Lisää tunniste @@ -11201,7 +11071,7 @@ Valitse toinen nimi ja yritä uudelleen. Tag name '%1' is invalid. - + Tunnisteen nimi '%1' on virheellinen. @@ -11217,78 +11087,78 @@ Valitse toinen nimi ja yritä uudelleen. TorrentsController - + Error: '%1' is not a valid torrent file. Virhe: '%1' ei ole kelvollinen torrent-tiedosto. - + Priority must be an integer Ensisijaisuuden on oltava kokonaisluku - + Priority is not valid Ensisijaisuus on virheellinen - + Torrent's metadata has not yet downloaded Torrentin metatietoja ei ole vielä ladattu - + File IDs must be integers Tiedoston ID:n on oltava kokonaisluku - + File ID is not valid Tiedoston ID on virheellinen - - - - + + + + Torrent queueing must be enabled Torrentien jonotus tulee olla käytössä - - + + Save path cannot be empty Tallennussijainti ei voi olla tyhjä - - + + Cannot create target directory - - + + Category cannot be empty Kategoria ei voi olla tyhjä - + Unable to create category Kategorian luominen ei onnistu - + Unable to edit category Kategorian muokkaaminen ei onnistu - + Unable to export torrent file. Error: %1 - + Cannot make save path Tallennusijainnin luonti ei onnistu @@ -11308,39 +11178,39 @@ Valitse toinen nimi ja yritä uudelleen. 'sort'-parametri on virheellinen - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Kansioon ei voi kirjoittaa - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name Torrentin nimi on virheellinen - - + + Incorrect category name Väärä kategorian nimi @@ -11484,73 +11354,73 @@ Valitse toinen nimi ja yritä uudelleen. Torrent on yksityinen - + Tracker editing Seurantapalvelimen muokkaus - + Tracker URL: Seurantapalvelimen osoite: - - + + Tracker editing failed Seurantapalvelimen muokkaaminen epäonnistui - + The tracker URL entered is invalid. Kirjoitettu seurantapalvelimen osoite on virheellinen. - + The tracker URL already exists. Seurantapalvelimen osoite on jo olemassa. - + Edit tracker URL... Muokkaa seurantapalvelimen osoitetta... - + Remove tracker Poista seurantapalvelin - + Copy tracker URL Kopioi seurantapalvelimen osoite - + Force reannounce to selected trackers Pakota uudelleenjulkaisu valituille seurantapalvelimille - + Force reannounce to all trackers Pakota uudelleenjulkaisu kaikille seurantapalvelimille - + Resize columns Muuta sarakkeiden kokoa - + Resize all non-hidden columns to the size of their contents Sovita kaikkien piilottamattomien sarakkeiden koko niiden sisältöön - + Add trackers... Lisää seurantapalvelimia... - + Column visibility Sarakkeen näkyvyys @@ -11633,20 +11503,12 @@ Valitse toinen nimi ja yritä uudelleen. Start torrents - + Käynnistä torrentit Stop torrents - - - - Resume torrents - Jatka torrentteja - - - Pause torrents - Pysäytä torrentit + Pysäytä torrentit @@ -11770,10 +11632,6 @@ Valitse toinen nimi ja yritä uudelleen. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Tarkistetaan jatkotietoja - - Paused - Keskeytetty - Completed @@ -11814,21 +11672,16 @@ Valitse toinen nimi ja yritä uudelleen. % Done Edistyminen - - Status - Torrent status (e.g. downloading, seeding, paused) - Tila - Stopped - + Pysäytetty Status Torrent status (e.g. downloading, seeding, stopped) - Tila + Tila @@ -11863,7 +11716,7 @@ Valitse toinen nimi ja yritä uudelleen. Popularity - + Suosio @@ -11944,22 +11797,17 @@ Valitse toinen nimi ja yritä uudelleen. Time Active Time (duration) the torrent is active (not stopped) - Aktiivisena + Aktiivisena Yes - Kyllä + Kyllä No - Ei - - - Time Active - Time (duration) the torrent is active (not paused) - Aktiivisena + Ei @@ -12031,7 +11879,7 @@ Valitse toinen nimi ja yritä uudelleen. Private Flags private torrents - + Yksityinen @@ -12061,354 +11909,319 @@ Valitse toinen nimi ja yritä uudelleen. TransferListWidget - + Column visibility Sarakkeen näkyvyys - + Recheck confirmation Uudelleentarkistuksen vahvistus - + Are you sure you want to recheck the selected torrent(s)? Haluatko varmasti tarkistaa uudelleen valitut torrentit? - + Rename Nimeä uudelleen - + New name: Uusi nimi: - + Choose save path Valitse tallennussijainti - Confirm pause - Vahvista pysäytys - - - Would you like to pause all torrents? - Haluatko pysäyttää kaikki torrentit? - - - Confirm resume - Vahvista jatkaminen - - - Would you like to resume all torrents? - Haluatko jatkaa kaikkia torrenteja? - - - + Unable to preview Esikatselu ei onnistu - + The selected torrent "%1" does not contain previewable files Valittu torrent "%1" ei sisällä esikatseluun soveltuvia tiedostoja - + Resize columns Muuta sarakkeiden kokoa - + Resize all non-hidden columns to the size of their contents Sovita kaikkien piilottamattomien sarakkeiden koko niiden sisältöön - + Enable automatic torrent management - + Käytä torrentien automaattista hallintaa - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Lisää tunnisteita - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists Tiedosto samalla nimellä on jo olemassa - + Export .torrent file error - + Remove All Tags Poista kaikki tunnisteet - + Remove all tags from selected torrents? Poistetaanko valituista torrenteista kaikki tunnisteet? - + Comma-separated tags: Pilkulla erotetut tunnisteet: - + Invalid tag Virheellinen tunniste - + Tag name: '%1' is invalid Tunnisteen nimi '%1' ei kelpaa - &Resume - Resume/start the torrent - &Jatka - - - &Pause - Pause the torrent - &Pysäytä - - - Force Resu&me - Force Resume/start the torrent - Pakota jatka&minen - - - + Pre&view file... &Esikatsele tiedosto... - + Torrent &options... Torrentin &asetukset... - + Open destination &folder Avaa kohde&kansio - + Move &up i.e. move up in the queue Siirrä &ylös - + Move &down i.e. Move down in the queue Siirrä &alas - + Move to &top i.e. Move to top of the queue Siirrä &kärkeen - + Move to &bottom i.e. Move to bottom of the queue Siirrä &viimeiseksi - + Set loc&ation... Aseta sij&ainti... - + Force rec&heck Pakota uudelleen&tarkastus - + Force r&eannounce Pakota uudelleen&julkaisu - + &Magnet link &Magnet-linkki - + Torrent &ID - + &Comment &Kommentti - + &Name &Nimi - + Info &hash v1 - + Info h&ash v2 - + Re&name... Ni&meä uudelleen... - + Edit trac&kers... Muokkaa seuranta&palvelimia - + E&xport .torrent... &Vie .torrent... - + Categor&y Kategori&a - + &New... New category... &Uusi... - + &Reset Reset category &Palauta - + Ta&gs &Tunnisteet - + &Add... Add / assign multiple tags... &Lisää... - + &Remove All Remove all tags &Poista kaikki - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Jono - + &Copy &Kopioi - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Lataa järjestyksessä - + Add tags - + Lisää tunnisteita - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + &Käynnistä - + Sto&p Stop the torrent - + &Pysäytä - + Force Star&t Force Resume/start the torrent - + Pakota aloi&tus - + &Remove Remove the torrent &Poista - + Download first and last pieces first Lataa ensin ensimmäinen ja viimeinen osa - + Automatic Torrent Management Automaattinen torrentien hallintatila - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automaattisessa tilassa monet torrenttien määritykset, kuten tallennussijainti, asetetaan liitetyn kategorian perusteella - + Super seeding mode Superjako-tila @@ -12455,7 +12268,7 @@ Valitse toinen nimi ja yritä uudelleen. UI Theme Configuration. - + Käyttöliittymän teeman määritys. @@ -12471,7 +12284,7 @@ Valitse toinen nimi ja yritä uudelleen. Couldn't remove icon file. File: %1. - + Kuvaketiedostoa ei voitu poistaa. Tiedosto: %1. @@ -12540,32 +12353,32 @@ Valitse toinen nimi ja yritä uudelleen. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Python-suoritustiedosto löydetty. Nimi: "%1". Versio: "%2" - + Failed to find Python executable. Path: "%1". Python-suoritustiedoston paikantaminen epäonnistui. Polku: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable Python-suoritustiedoston paikantaminen epäonnistui @@ -12575,7 +12388,7 @@ Valitse toinen nimi ja yritä uudelleen. File open error. File: "%1". Error: "%2" - + Tiedoston avausvirhe. Tiedosto: "%1". Virhe: "%2" @@ -12590,7 +12403,7 @@ Valitse toinen nimi ja yritä uudelleen. File read error. File: "%1". Error: "%2" - + Tiedoston lukuvirhe. Tiedosto: "%1". Virhe: "%2" @@ -12657,54 +12470,54 @@ Valitse toinen nimi ja yritä uudelleen. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Epäkelpo tiedostotyyppi. Vain tavallinen tiedosto sallitaan. - + Symlinks inside alternative UI folder are forbidden. Symboliset linkit ovat kiellettyjä vaihtoehtoisen UI:n kansiossa. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Verkkokäyttöliittymän mukautetusta HTTP-otsikosta puuttuu ':'-erotin: "%1" - + Web server error. %1 - + Web-palvelimen virhe. %1 - + Web server error. Unknown error. - + Web-palvelimen virhe. Tuntematon virhe. @@ -12760,7 +12573,7 @@ Valitse toinen nimi ja yritä uudelleen. Unknown error - Tuntematon virhe + Tuntematon virhe diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index d2555db10..e104b42e4 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -6,7 +6,7 @@ About qBittorrent - À propos de qBittorrent + À propos de qBitTorrent @@ -79,7 +79,7 @@ qBittorrent was built with the following libraries: - qBittorrent a été conçu à l'aide des bibliothèques logicielles suivantes : + qBitTorrent a été conçu à l'aide des bibliothèques logicielles suivantes : @@ -94,7 +94,7 @@ Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 Le projet qBittorrent + Copyright %1 2006-2024 Le projet qBitTorrent @@ -170,10 +170,6 @@ Never show again Ne plus afficher - - Torrent settings - Paramètres du torrent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Options du torrent @@ -235,25 +231,25 @@ Condition d'arrêt : - - + + None Aucun - - + + Metadata received Métadonnées reçues - + Torrents that have metadata initially will be added as stopped. Les torrents qui ont initialement des métadonnées seront ajoutés comme arrêtés. - + Files checked Fichiers vérifiés @@ -368,112 +364,112 @@ Enregistrer le fichier .torrent sous… - + I/O Error Erreur E/S - + Not Available This comment is unavailable Non disponible - + Not Available This date is unavailable Non disponible - + Not available Non disponible - + Magnet link Lien magnet - + Retrieving metadata... Récupération des métadonnées… - - + + Choose save path Choisir un répertoire de destination - + No stop condition is set. Aucune condition d'arrêt n'est définie. - + Torrent will stop after metadata is received. Le torrent s'arrêtera après la réception des métadonnées. - + Torrent will stop after files are initially checked. Le torrent s'arrêtera après la vérification initiale des fichiers. - + This will also download metadata if it wasn't there initially. Cela téléchargera également les métadonnées si elles n'y étaient pas initialement. - + N/A N/D - + %1 (Free space on disk: %2) %1 (Espace libre sur le disque : %2) - + Not available This size is unavailable. Non disponible - + Torrent file (*%1) Fichier torrent (*%1) - + Save as torrent file Enregistrer le fichier torrent sous - + Couldn't export torrent metadata file '%1'. Reason: %2. Impossible d'exporter le fichier de métadonnées du torrent '%1'. Raison : %2. - + Cannot create v2 torrent until its data is fully downloaded. Impossible de créer un torrent v2 tant que ses données ne sont pas entièrement téléchargées. - + Filter files... Filtrer les fichiers… - + Parsing metadata... Analyse syntaxique des métadonnées... - + Metadata retrieval complete Récuperation des métadonnées terminée @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Téléchargement du torrent ... Source : "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Échec de l'ajout du torrent. Source : "%1". Raison : "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Détection d'une tentative d'ajouter un torrent en double. Source : %1. Torrent existant : %2. Résultat : %3 + Détection d'une tentative d'ajouter un torrent en double. Source : %1. Torrent existant : %2. Résultat : %3 - + Merging of trackers is disabled fusion de trackers désactivé - + Trackers cannot be merged because it is a private torrent Les trackers ne peuvent pas être fusionnés car le torrent est privé - + Trackers are merged from new source Les trackers ont fusionné depuis la nouvelle source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,718 @@ AdvancedSettings - - - - + + + + MiB Mio - + Recheck torrents on completion Revérifier les torrents lorsqu'ils sont terminés - - + + ms milliseconds ms - + Setting Paramètre - + Value Value set for this setting Valeur - + (disabled) (désactivé) - + (auto) (automatique) - - + + min minutes min - + All addresses Toutes les adresses - + qBittorrent Section - Section qBittorrent + Section qBitTorrent - - + + Open documentation Ouvrir la documentation - + All IPv4 addresses Toutes les adresses IPv4 - + All IPv6 addresses Toutes les adresses IPv6 - + libtorrent Section Section libtorrent - + Fastresume files Fichiers de reprise rapide - + SQLite database (experimental) Base de données SQLite (expérimental) - + Resume data storage type (requires restart) Type de stockage des données de reprise (redémarrage requis) - + Normal Normale - + Below normal Sous la normale - + Medium Moyenne - + Low Basse - + Very low Très basse - + Physical memory (RAM) usage limit Limite d’utilisation de la mémoire physique (RAM) - + Asynchronous I/O threads Fils d'E/S asynchrones - + Hashing threads Fils de hachage - + File pool size Taille du pool de fichiers - + Outstanding memory when checking torrents Mémoire en suspens lors de la vérification des torrents : - + Disk cache Cache disque - - - - + + + + + s seconds s - + Disk cache expiry interval Intervalle de l'expiration du cache disque - + Disk queue size Taille de la file d’attente du disque - - + + Enable OS cache Activer le cache du système d’exploitation - + Coalesce reads & writes Fusionner les lectures et écritures - + Use piece extent affinity Utiliser l'affinité par extension de morceau - + Send upload piece suggestions Envoyer des suggestions de morceaux de téléversement - - - - - + + + + + 0 (disabled) 0 (désactivé) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Intervalle de sauvegarde des données de reprise [0: désactivé] - + Outgoing ports (Min) [0: disabled] Ports de sortie (Min.) [0: désactivé] - + Outgoing ports (Max) [0: disabled] Ports de sortie (Max.) [0: désactivé] - + 0 (permanent lease) 0 (allocation permanente) - + UPnP lease duration [0: permanent lease] Durée de l'allocation UPnP [0: allocation permanente] - + Stop tracker timeout [0: disabled] Délai d'attente lors de l’arrêt du tracker [0: désactivé] - + Notification timeout [0: infinite, -1: system default] Délai de notification [0 : infini, -1 : valeur par défaut] - + Maximum outstanding requests to a single peer Requêtes en suspens maximales vers un seul pair - - - - - + + + + + KiB Kio - + (infinite) (infini) - + (system default) (valeur par défaut) - + Delete files permanently - + Supprimer les fichiers définitivement - + Move files to trash (if possible) - + Déplacer dans la corbeille (si possible) - + Torrent content removing mode - + Mode de retrait de contenu du Torrent - + This option is less effective on Linux Cette option est moins efficace sous Linux - + Process memory priority Priorité de la mémoire de processus - + Bdecode depth limit Limite de la profondeur pour Bdecode - + Bdecode token limit Limite de jetons pour Bdecode - + Default Par défaut - + Memory mapped files Fichiers mappés en mémoire - + POSIX-compliant Compatible POSIX - + Simple pread/pwrite - + Pread/pwrite simple - + Disk IO type (requires restart) Type d'E/S du disque (redémarrage requis) - - + + Disable OS cache Désactiver le cache du système d’exploitation - + Disk IO read mode Mode de lecture des E/S du disque - + Write-through Double écriture - + Disk IO write mode Mode d'écriture des E/S du disque - + Send buffer watermark Filigrane pour le tampon d'envoi - + Send buffer low watermark Filigrane faible pour le tampon d'envoi - + Send buffer watermark factor Facteur du filigrane pour le tampon d'envoi - + Outgoing connections per second Connexions sortantes par seconde - - + + 0 (system default) 0 (valeur par défaut) - + Socket send buffer size [0: system default] Taille du cache d'envoi au Socket [0: valeur par défaut] - + Socket receive buffer size [0: system default] Taille du cache de réception du Socket [0: valeur par défaut] - + Socket backlog size Taille de la liste des tâches du socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Intervalle de sauvegarde des données [0: désactivé] - + .torrent file size limit Limite de la taille d'un fichier .torrent - + Type of service (ToS) for connections to peers Type de service (ToS) pour les connexions aux pairs - + Prefer TCP Préférer les connexions TCP - + Peer proportional (throttles TCP) Proportionnel par pair (limite les connexions TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Support des noms de domaines internationalisés (IDN) - + Allow multiple connections from the same IP address Permettre des connexions multiples depuis la même adresse IP - + Validate HTTPS tracker certificates Valider les certificats HTTPS des trackers - + Server-side request forgery (SSRF) mitigation Atténuation de la falsification des demandes côté serveur (SSRF) - + Disallow connection to peers on privileged ports Interdire la connexion à des pairs sur des ports privilégiés - + It appends the text to the window title to help distinguish qBittorent instances - Cela ajoute le texte au titre de la fenêtre pour aider à distinguer les instances de qBittorent + Cela ajoute le texte au titre de la fenêtre pour aider à distinguer les instances de qBitTorent - + Customize application instance name Personnaliser le nom de l'instance d'application - + It controls the internal state update interval which in turn will affect UI updates Ceci contrôle l'intervalle de mise à jour de l'état interne qui, à son tour, affectera les mises à jour de l'IU - + Refresh interval Intervalle d'actualisation - + Resolve peer host names Afficher le nom d'hôte des pairs - + IP address reported to trackers (requires restart) Adresse IP annoncée aux trackers (redémarrage requis) - + Port reported to trackers (requires restart) [0: listening port] - + Port annoncé aux trackers (redémarrage requis) +[0 : port d'écoute] - + Reannounce to all trackers when IP or port changed Réannoncer à tous les trackers lorsque l'IP ou le port a changé - + Enable icons in menus Activer les icônes dans les menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Activer la redirection de port pour le tracker intégré - + Enable quarantine for downloaded files Activer la quarantaine pour les fichiers téléchargés - + Enable Mark-of-the-Web (MOTW) for downloaded files Activer Mark-of-the-Web (MOTW) pour les fichiers téléchargés - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Affecte la validation des certificats et les activités du protocole non torrent (p. ex. les flux RSS, les mises à jour de programmes, les fichiers torrent, la base de données geoip, etc.) - + Ignore SSL errors - + Ignorer les erreurs SSL - + (Auto detect if empty) (Détection automatique si vide) - + Python executable path (may require restart) Chemin de l’exécutable Python (peut nécessiter un redémarrage) - + Start BitTorrent session in paused state - + Démarrer la session BitTorrent en pause - + sec seconds - sec. + sec. - + -1 (unlimited) - + -1 (Illimité) - + BitTorrent session shutdown timeout [-1: unlimited] - + Temps maximal de fermeture de BitTorrent [-1: illimité] - + Confirm removal of tracker from all torrents Confirmer le retrait du tracker de tous les torrents - + Peer turnover disconnect percentage Pourcentage de déconnexion par roulement de pair - + Peer turnover threshold percentage Pourcentage de seuil de roulement de pair - + Peer turnover disconnect interval Intervalle de déconnexion par roulement de pair - + Resets to default if empty Réinitialise aux valeurs par défaut si vide - + DHT bootstrap nodes Nœud d’amorçage DHT - + I2P inbound quantity Quantité entrante sur I2P - + I2P outbound quantity Quantité sortante sur I2P - + I2P inbound length Longueur entrante sur I2P - + I2P outbound length Longueur sortante sur I2P - + Display notifications Afficher les notifications - + Display notifications for added torrents Afficher les notifications pour les torrents ajoutés - + Download tracker's favicon Télécharger les favicon des trackers - + Save path history length Enregistrer la longueur de l'historique des répertoires - + Enable speed graphs Activer les graphiques de vitesse - + Fixed slots Emplacements fixes - + Upload rate based Basé sur la vitesse d'envoi - + Upload slots behavior Comportement des emplacements d'envoi - + Round-robin Répartition de charge - + Fastest upload Envoi le plus rapide - + Anti-leech Anti-leech - + Upload choking algorithm Envoyer l'algorithme d'étouffement - + Confirm torrent recheck Confirmer la revérification du torrent - + Confirm removal of all tags Confirmer la suppression de toutes les étiquettes - + Always announce to all trackers in a tier Toujours annoncer à tous les trackers d'un niveau - + Always announce to all tiers Toujours annoncer à tous les niveaux - + Any interface i.e. Any network interface N'importe quelle interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algorithme du mode mixte %1-TCP - + Resolve peer countries Déterminer les pays des pairs - + Network interface Interface réseau - + Optional IP address to bind to Adresse IP optionnelle à laquelle se relier - + Max concurrent HTTP announces Nombre maximal d'annonces HTTP simultanées - + Enable embedded tracker Activer le tracker intégré - + Embedded tracker port Port du tracker intégré @@ -1382,142 +1394,142 @@ Invalid directory path - + Chemin de dossier invalide Directory does not exist - + Dossier inexistant Invalid mode, allowed values: %1 - + Mode invalide, valeurs autorisées : %1 cookies must be array - + Les cookies doivent être des tableaux Application - + Running in portable mode. Auto detected profile folder at: %1 Fonctionnement en mode portable. Dossier de profil détecté automatiquement : %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Indicateur de ligne de commandes redondant détecté : « %1 ». Le mode portable implique une reprise relativement rapide. - + Using config directory: %1 Utilisation du dossier de configuration : %1 - + Torrent name: %1 Nom du torrent : %1 - + Torrent size: %1 Taille du torrent : %1 - + Save path: %1 Répertoire de destination : %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Le torrent a été téléchargé dans %1. - - + + Thank you for using qBittorrent. - Merci d'utiliser qBittorrent. + Merci d'utiliser qBitTorrent. - + Torrent: %1, sending mail notification Torrent : %1, envoi du courriel de notification - + Add torrent failed Échec de l'ajout du torrent - + Couldn't add torrent '%1', reason: %2. N'a pas pu ajouter le torrent "%1", raison : %2 - + The WebUI administrator username is: %1 Le nom d'utilisateur de l'administrateur de l'IU Web est : %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Le mot de passe de l'administrateur de l'IU Web n'a pas été défini. Un mot de passe temporaire est fourni pour cette session : %1 - + You should set your own password in program preferences. Vous devriez définir votre propre mot de passe dans les préférences du programme. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. L'interface web est désactivée ! Pour activer l'interface web, éditer le fichier de configuration manuellement. - + Running external program. Torrent: "%1". Command: `%2` Exécution d'un programme externe en cours. Torrent : « %1 ». Commande : `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Échec de l’exécution du programme externe. Torrent : « %1 ». Commande : '%2' - + Torrent "%1" has finished downloading Le téléchargement du torrent « %1 » est terminé - + WebUI will be started shortly after internal preparations. Please wait... L'IU Web sera lancé peu de temps après les préparatifs internes. Veuillez patienter… - - + + Loading torrents... Chargement des torrents en cours… - + E&xit &Quitter - + I/O Error i.e: Input/Output Error Erreur d'E/S - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,112 +1538,112 @@ Raison : %2 - + Torrent added Torrent ajouté - + '%1' was added. e.g: xxx.avi was added. '%1' a été ajouté. - + Download completed Téléchargement complété - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - qBittorrent %1 a démarré. ID de processus : %2 + qBitTorrent %1 a démarré. ID de processus : %2 - + This is a test email. - + Ceci est un courriel test. - + Test email - + Courriel test - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Le téléchargement du torrent '%1' est terminé. - + Information Information - + To fix the error, you may need to edit the config file manually. Pour réparer cette erreur, vous aurez peut-être besoin d'éditer le fichier de configuration manuellement. - + To control qBittorrent, access the WebUI at: %1 - Pour contrôler qBittorrent, accédez à l’IU Web à : %1 + Pour contrôler qBitTorrent, accédez à l’IU Web à : %1 - + Exit Quitter - + Recursive download confirmation Confirmation pour téléchargement récursif - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Le torrent « %1 » contient des fichiers .torrent, voulez-vous poursuivre avec leurs téléchargements? - + Never Jamais - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Téléchargement récursif du fichier .torrent dans le torrent. Torrent source : « %1 ». Fichier : « %2 » - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Échec lors de la définition de la limite d’utilisation de la mémoire physique (RAM). Code d'erreur : %1. Message d'erreur : « %2 » - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Échec lors de la définition de la limite d’utilisation de la mémoire physique (RAM). Taille demandée : %1. Limite du système : %2. Code d’erreur : %3. Message d’erreur : « %4 » - + qBittorrent termination initiated - Arrêt de qBittorrent initié + Arrêt de qBitTorrent initié - + qBittorrent is shutting down... - qBittorrent s'arrête… + qBitTorrent s'arrête… - + Saving torrent progress... Sauvegarde de l'avancement du torrent. - + qBittorrent is now ready to exit - qBittorrent est maintenant prêt à quitter + qBitTorrent est maintenant prêt à quitter @@ -1766,263 +1778,263 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Exporter... - + Matches articles based on episode filter. Articles correspondants basés sur le filtrage épisode - + Example: Exemple : - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match correspondra aux épisodes 2, 5, 8 et 15-30 et supérieurs de la saison 1 - + Episode filter rules: Règles de filtrage d'épisodes : - + Season number is a mandatory non-zero value Le numéro de saison est une valeur obligatoire différente de zéro - + Filter must end with semicolon Le filtre doit se terminer avec un point-virgule - + Three range types for episodes are supported: Trois types d'intervalles d'épisodes sont pris en charge : - + Single number: <b>1x25;</b> matches episode 25 of season one Nombre simple : <b>1×25;</b> correspond à l'épisode 25 de la saison 1 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Intervalle standard : <b>1×25-40;</b> correspond aux épisodes 25 à 40 de la saison 1 - + Episode number is a mandatory positive value Le numéro d'épisode est une valeur obligatoire positive - + Rules Règles - + Rules (legacy) Règles (héritées) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Intervalle infini : <b>1x25-;</b> correspond aux épisodes 25 et suivants de la saison 1, et tous les épisodes des saisons postérieures - + Last Match: %1 days ago Dernière correspondance : il y a %1 jours - + Last Match: Unknown Dernière correspondance : inconnu - + New rule name Nouveau nom pour la règle - + Please type the name of the new download rule. Veuillez entrer le nom de la nouvelle règle de téléchargement. - - + + Rule name conflict Conflit dans les noms de règle - - + + A rule with this name already exists, please choose another name. Une règle avec ce nom existe déjà, veuillez en choisir un autre. - + Are you sure you want to remove the download rule named '%1'? Êtes vous certain de vouloir supprimer la règle de téléchargement '%1' - + Are you sure you want to remove the selected download rules? Voulez-vous vraiment supprimer les règles sélectionnées ? - + Rule deletion confirmation Confirmation de la suppression - + Invalid action Action invalide - + The list is empty, there is nothing to export. La liste est vide, il n'y a rien à exporter. - + Export RSS rules Exporter les règles RSS - + I/O Error Erreur d'E/S - + Failed to create the destination file. Reason: %1 Erreur lors de la création du fichier de destination. Raison : %1 - + Import RSS rules Importer des règles RSS - + Failed to import the selected rules file. Reason: %1 Impossible d'importer le fichier sélectionné des règles. Raison : %1 - + Add new rule... Ajouter une nouvelle règle… - + Delete rule Supprimer la règle - + Rename rule... Renommer la règle… - + Delete selected rules Supprimer les règles sélectionnées - + Clear downloaded episodes... Effacer les épisodes téléchargés… - + Rule renaming Renommage de la règle - + Please type the new rule name Veuillez enter le nouveau nom pour la règle - + Clear downloaded episodes Effacer les épisodes téléchargés - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Êtes-vous sûr de vouloir effacer la liste des épisodes téléchargés pour la règle sélectionnée ? - + Regex mode: use Perl-compatible regular expressions Mode Regex : utiliser des expressions régulières compatibles à celles de Perl - - + + Position %1: %2 Position %1 : %2 - + Wildcard mode: you can use Mode caractère de remplacement : vous pouvez utiliser - - + + Import error Erreur d'importation - + Failed to read the file. %1 Échec de lecture du fichier : %1 - + ? to match any single character ? pour correspondre à n'importe quel caractère - + * to match zero or more of any characters * pour correspondre à aucun caractère ou davantage - + Whitespaces count as AND operators (all words, any order) Les espaces comptent comme des opérateurs ET (tous les mots, dans n'importe quel ordre) - + | is used as OR operator | est utilisé comme opérateur OU - + If word order is important use * instead of whitespace. Si l'ordre des mots est important, utilisez * au lieu d'un espace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Une expression avec une clause vide %1 (p. ex. %2) - + will match all articles. va correspondre à tous les articles. - + will exclude all articles. va exclure tous les articles. @@ -2074,28 +2086,38 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Impossible d'analyser les données de reprise : format invalide - - + + Cannot parse torrent info: %1 Impossible d'analyser l'information du torrent : %1 - + Cannot parse torrent info: invalid format Impossible d'analyser l'information du torrent : format invalide - + Mismatching info-hash detected in resume data Info hash incompatible détecté dans les données de reprise - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Impossible d'enregistrer les métadonnées du torrent dans '%1'. Erreur : %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Impossible d'enregistrer les données de reprise du torrent vers '%1'. Erreur : %2. @@ -2106,16 +2128,17 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date + Cannot parse resume data: %1 Impossible d'analyser les données de reprise : %1 - + Resume data is invalid: neither metadata nor info-hash was found Les données de reprise sont invalides : ni les métadonnées ni l'info-hash n'ont été trouvés - + Couldn't save data to '%1'. Error: %2 Impossible d’enregistrer les données dans '%1'. Erreur : %2 @@ -2123,38 +2146,60 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date BitTorrent::DBResumeDataStorage - + Not found. Introuvable. - + Couldn't load resume data of torrent '%1'. Error: %2 Impossible de charger les données de reprise du torrent « %1 ». Erreur : %2 - - + + Database is corrupted. La base de données est corrompue. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Impossible d'activer le mode de journalisation Write-Ahead Logging (WAL). Erreur : %1. - + Couldn't obtain query result. Impossible d'obtenir le résultat de la requête. - + WAL mode is probably unsupported due to filesystem limitations. Le mode WAL n'est probablement pas pris en charge en raison des limitations du système de fichiers. - + + + Cannot parse resume data: %1 + Impossible d'analyser les données de reprise : %1 + + + + + Cannot parse torrent info: %1 + Impossible d'analyser l'information du torrent : %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Début de transaction impossible. Erreur: %1 @@ -2162,22 +2207,22 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Impossible d'enregistrer les métadonnées du torrent. Erreur : %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Impossible de stocker les données de reprise pour le torrent « %1 ». Erreur : %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Impossible de supprimer les données de reprise du torrent « %1 ». Erreur : %2 - + Couldn't store torrents queue positions. Error: %1 Impossible de stocker les positions de la file d’attente des torrents. Erreur : %1 @@ -2185,530 +2230,507 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Prise en charge de la table de hachage distribuée (DHT) : %1 - - - - - - - - - + + + + + + + + + ON ACTIVÉE - - - - - - - - - + + + + + + + + + OFF DÉSACTIVÉE - - + + Local Peer Discovery support: %1 Prise en charge de la découverte de pairs sur le réseau local : %1 - + Restart is required to toggle Peer Exchange (PeX) support Un redémarrage est nécessaire pour basculer la prise en charge des échanges entre pairs (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Échec de la reprise du torrent. Torrent : « %1 ». Raison : « %2 » - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Échec de la reprise du torrent : un ID de torrent incohérent a été détecté. Torrent : « %1 » - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Données incohérentes détectées : la catégorie est absente du fichier de configuration. La catégorie sera récupérée, mais ses paramètres seront réinitialisés par défaut. Torrent : « %1 ». Catégorie : « %2 » - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Données incohérentes détectées : catégorie invalide. Torrent : « %1 ». Catégorie : « %2 » - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Incompatibilité détectée entre les répertoires de destination de la catégorie récupérée et le répertoire de destination actuel du torrent. Le torrent est maintenant passé en mode manuel. Torrent : « %1 ». Catégorie : « %2 » - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Données incohérentes détectées : l'étiquette est manquante dans le fichier de configuration. L'étiquette sera restaurée. Torrent : « %1 ». Étiquette : « %2 » - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Données incohérentes détectées : étiquette invalide. Torrent : « %1 ». Étiquette : « %2 » - + System wake-up event detected. Re-announcing to all the trackers... Événement de réveil du système détecté. Réannonce à tous les trackers en cours… - + Peer ID: "%1" ID du pair : « %1 » - + HTTP User-Agent: "%1" Agent utilisateur HTTP : « %1 » - + Peer Exchange (PeX) support: %1 Prise en charge des échanges entre pairs (PeX) : %1 - - + + Anonymous mode: %1 Mode anonyme : %1 - - + + Encryption support: %1 Prise en charge du chiffrement : %1 - - + + FORCED FORCÉE - + Could not find GUID of network interface. Interface: "%1" Impossible de trouver le GUID de l’interface réseau. Interface : « %1 » - + Trying to listen on the following list of IP addresses: "%1" Tentative d’écoute sur la liste d’adresses IP suivante : « %1 » - + Torrent reached the share ratio limit. Le torrent a atteint la limite du ratio de partage. - + Torrent: "%1". Torrent : « %1 ». - Removed torrent. - Torrent retiré. - - - Removed torrent and deleted its content. - Torrent retiré et son contenu supprimé. - - - Torrent paused. - Torrent mis en pause. - - - + Super seeding enabled. Super partage activé. - + Torrent reached the seeding time limit. Le torrent a atteint la limite de temps de partage. - + Torrent reached the inactive seeding time limit. Le torrent a atteint la limite de temps de partage inactif. - + Failed to load torrent. Reason: "%1" Échec du chargement du torrent. Raison : « %1 » - + I2P error. Message: "%1". Erreur I2P. Message : "%1". - + UPnP/NAT-PMP support: ON Prise en charge UPnP/NAT-PMP : ACTIVÉE - + Saving resume data completed. - + Sauvegarde des données de reprise complétée. - + BitTorrent session successfully finished. - + Session BitTorrent correctement terminée. - + Session shutdown timed out. - + Temps de fermeture de session dépassé. - + Removing torrent. - + Retrait du torrent. - + Removing torrent and deleting its content. - + Retrait du torrent et suppression de son contenu. - + Torrent stopped. - + Torrent arrêté. - + Torrent content removed. Torrent: "%1" - + Contenu du torrent retiré. Torrent : "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Échec du retrait du contenu du torrent. Torrent : "%1". Erreur : "%2" - + Torrent removed. Torrent: "%1" - + Torrent retiré. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Détection d'une tentative d'ajouter un torrent en double. Torrent existant : %1. Résultat : %2 - + Merging of trackers is disabled - fusion de trackers désactivé + fusion de trackers désactivé - + Trackers cannot be merged because it is a private torrent - Les trackers ne peuvent pas être fusionnés car le torrent est privé + Les trackers ne peuvent pas être fusionnés car le torrent est privé - + Trackers are merged from new source - Les trackers ont fusionné depuis la nouvelle source + Les trackers ont fusionné depuis la nouvelle source - + UPnP/NAT-PMP support: OFF Prise en charge UPnP/NAT-PMP : DÉSACTIVÉE - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Échec de l’exportation du torrent. Torrent : « %1 ». Destination : « %2 ». Raison : « %3 » - + Aborted saving resume data. Number of outstanding torrents: %1 Annulation de l’enregistrement des données de reprise. Nombre de torrents en suspens : %1 - + The configured network address is invalid. Address: "%1" L’adresse réseau configurée est invalide. Adresse : « %1 » - - + + Failed to find the configured network address to listen on. Address: "%1" Échec de la recherche de l’adresse réseau configurée pour l’écoute. Adresse : « %1 » - + The configured network interface is invalid. Interface: "%1" L’interface réseau configurée est invalide. Interface : « %1 » - + Tracker list updated - + La liste des trackers a été mise a jour - + Failed to update tracker list. Reason: "%1" - + Échec de la mise à jour de la liste des trackers. Raison : "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Adresse IP invalide rejetée lors de l’application de la liste des adresses IP bannies. IP : « %1 » - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Tracker ajouté au torrent. Torrent : « %1 ». Tracker : « %2 » - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Tracker retiré du torrent. Torrent : « %1 ». Tracker : « %2 » - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Ajout de l'URL de la source au torrent. Torrent : « %1 ». URL : « %2 » - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Retrait de l'URL de la source au torrent. Torrent : « %1 ». URL : « %2 » - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Échec de la suppression du partfile. Torrent : "%1". Raison : "%2". - Torrent paused. Torrent: "%1" - Torrent mis en pause. Torrent : « %1 » - - - + Torrent resumed. Torrent: "%1" Reprise du torrent. Torrent : « %1 » - + Torrent download finished. Torrent: "%1" Téléchargement du torrent terminé. Torrent : « %1 » - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Déplacement du torrent annulé. Torrent : « %1 ». Source : « %2 ». Destination : « %3 » - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent arrêté. Torrent : « %1 » + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Échec de la mise en file d’attente du déplacement du torrent. Torrent : « %1 ». Source : « %2 ». Destination : « %3 ». Raison : le torrent est actuellement en cours de déplacement vers la destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Échec de la mise en file d’attente du déplacement du torrent. Torrent : « %1 ». Source : « %2 ». Destination : « %3 ». Raison : les deux chemins pointent vers le même emplacement - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Mise en file d’attente du déplacement du torrent. Torrent : « %1 ». Source : « %2 ». Destination : « %3 ». - + Start moving torrent. Torrent: "%1". Destination: "%2" Démarrer le déplacement du torrent. Torrent : « %1 ». Destination : « %2 » - + Failed to save Categories configuration. File: "%1". Error: "%2" Échec de l’enregistrement de la configuration des catégories. Fichier : « %1 ». Erreur : « %2 » - + Failed to parse Categories configuration. File: "%1". Error: "%2" Échec de l’analyse de la configuration des catégories. Fichier : « %1 ». Erreur : « %2 » - + Successfully parsed the IP filter file. Number of rules applied: %1 Analyse réussie du fichier de filtre IP. Nombre de règles appliquées : %1 - + Failed to parse the IP filter file Échec de l’analyse du fichier de filtre IP - + Restored torrent. Torrent: "%1" Torrent restauré. Torrent : « %1 » - + Added new torrent. Torrent: "%1" Ajout d’un nouveau torrent. Torrent : « %1 » - + Torrent errored. Torrent: "%1". Error: "%2" Torrent erroné. Torrent : « %1 ». Erreur : « %2 » - Removed torrent. Torrent: "%1" - Torrent retiré. Torrent : « %1 » - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent retiré et son contenu supprimé. Torrent : « %1 » - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Des paramètres SSL dans le torrent sont manquants. Torrent : « %1 ». Message : « %2 » - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Alerte d’erreur d’un fichier. Torrent : « %1 ». Fichier : « %2 ». Raison : « %3 » - + UPnP/NAT-PMP port mapping failed. Message: "%1" Échec du mappage du port UPnP/NAT-PMP. Message : « %1 » - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Le mappage du port UPnP/NAT-PMP a réussi. Message : « %1 » - + IP filter this peer was blocked. Reason: IP filter. Filtre IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). port filtré (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). port privilégié (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + La connexion à l'URL seed a échouée. Torrent : « %1 ». URL : « %2 ». Erreur : « %3 » - + BitTorrent session encountered a serious error. Reason: "%1" La session BitTorrent a rencontré une erreur sérieuse. Raison : "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Erreur du proxy SOCKS5. Adresse : %1. Message : « %2 ». - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 restrictions du mode mixte - + Failed to load Categories. %1 Échec du chargement des Catégories : %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Échec du chargement de la configuration des Catégories. Fichier : « %1 ». Erreur : « Format de données invalide » - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent supprimé, mais la suppression de son contenu et/ou de ses fichiers .parts a échoué. Torrent : « %1 ». Erreur : « %2 » - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 est désactivé - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 est désactivé - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Échec de la recherche DNS de l’URL de la source. Torrent : « %1 ». URL : « %2 ». Erreur : « %3 » - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Message d’erreur reçu de l’URL de la source. Torrent : « %1 ». URL : « %2 ». Message : « %3 » - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Écoute réussie sur l’IP. IP : « %1 ». Port : « %2/%3 » - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Échec de l’écoute sur l’IP. IP : « %1 ». Port : « %2/%3 ». Raison : « %4 » - + Detected external IP. IP: "%1" IP externe détectée. IP : « %1 » - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Erreur : la file d’attente d’alertes internes est pleine et des alertes sont supprimées, vous pourriez constater une dégradation des performances. Type d'alerte supprimée : « %1 ». Message : « %2 » - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Déplacement du torrent réussi. Torrent : « %1 ». Destination : « %2 » - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Échec du déplacement du torrent. Torrent : « %1 ». Source : « %2 ». Destination : « %3 ». Raison : « %4 » @@ -2758,47 +2780,47 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Échec de l'écriture dans le fichier. Raison : « %1 ». Le torrent est maintenant en mode « envoi seulement ». - + Download first and last piece first: %1, torrent: '%2' Télécharger d'abord le premier et le dernier morceau : %1, torrent : %2 - + On Activé - + Off Désactivé - + Failed to reload torrent. Torrent: %1. Reason: %2 Échec du rechargement du torrent. Torrent : « %1 ». Raison : « %2 » - + Generate resume data failed. Torrent: "%1". Reason: "%2" Échec de la génération des données de reprise. Torrent : « %1 ». Raison : « %2 » - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Échec de la restauration du torrent. Les fichiers ont probablement été déplacés ou le stockage n’est pas accessible. Torrent : « %1 ». Raison : « %2 » - + Missing metadata Métadonnées manquantes - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Renommage du fichier échoué. Torrent : « %1 », fichier : « %2 », raison : « %3 » - + Performance alert: %1. More info: %2 Alerte de performance : %1. Plus d’informations : %2 @@ -2835,11 +2857,6 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Expected integer number in environment variable '%1', but got '%2' Nombre entier attendu dans la variable d'environnement '%1', mais '%2' reçu - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Le paramètre '%1' doit suivre la syntaxe '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2897,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Le paramètre '%1' doit suivre la syntaxe '%1=%2' + Le paramètre '%1' doit suivre la syntaxe '%1=%2' @@ -2933,7 +2950,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Store configuration files in directories qBittorrent_<name> - Stocker les fichiers de configuration dans les répertoires qBittorrent_<name> + Stocker les fichiers de configuration dans les répertoires qBitTorrent_<name> @@ -2968,11 +2985,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Add torrents as running or stopped - - - - Add torrents as started or paused - Ajouter les torrents comme démarrés ou mis en pause + Ajouter les torrents comme en cours ou arrêtés. @@ -3063,20 +3076,12 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Start torrents - + Démarrer les torrents Stop torrents - - - - Resume torrents - Reprendre les torrents - - - Pause torrents - Mettre les torrents en pause + Arrêter les torrents @@ -3099,7 +3104,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date System - + Système @@ -3174,11 +3179,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Also remove the content files - - - - Also permanently delete the files - Supprimer également les fichiers de manière définitive + Retirer également les fichiers de contenu @@ -3390,47 +3391,43 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Pattern Format - + Format du modèle Plain text - + Texte plein Wildcards - + Jokers Regular expression - + Expression régulière GUIAddTorrentManager - + Downloading torrent... Source: "%1" Téléchargement du torrent ... Source : "%1" - Trackers cannot be merged because it is a private torrent - Les trackers ne peuvent pas être fusionnés car le torrent est privé - - - + Torrent is already present Le torrent existe déjà - + Trackers cannot be merged because it is a private torrent. - + Les trackers ne peuvent pas être fusionnés car le torrent est privé - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Le torrent '%1' est déjà dans la liste des transferts. Voulez-vous fusionner les trackers de la nouvelle source ? @@ -3548,6 +3545,40 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Formats d'image supportés + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + La gestion de l'alimentation a trouvé une interface D-Bus approprié. Interface : %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Erreur de la gestion de l'alimentation. Action : %1. Erreur : %2 + + + + Power management unexpected error. State: %1. Error: %2 + Erreur Inattendue de la gestion de l'alimentation. Etat : %1. Erreur : %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3558,7 +3589,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date qBittorrent is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. - qBittorrent est un logiciel de partage de fichiers. Lorsque vous ajoutez un torrent, ses données sont mises à la disposition des autres pour leur envoyer. Tout contenu que vous partagez est de votre unique responsabilité. + qBitTorrent est un logiciel de partage de fichiers. Lorsque vous ajoutez un torrent, ses données sont mises à la disposition des autres pour leur envoyer. Tout contenu que vous partagez est de votre unique responsabilité. @@ -3629,22 +3660,22 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date qBittorrent has encountered an unrecoverable error. - qBittorrent a rencontré une erreur irrécupérable. + qBitTorrent a rencontré une erreur irrécupérable. You cannot use %1: qBittorrent is already running. - Vous ne pouvez pas utiliser %1 : qBittorrent est déjà en cours d'exécution. + Vous ne pouvez pas utiliser %1 : qBitTorrent est déjà en cours d'exécution. Another qBittorrent instance is already running. - Une autre instance de qBittorrent est déjà en cours d'exécution. + Une autre instance de qBitTorrent est déjà en cours d'exécution. Found unexpected qBittorrent instance. Exiting this instance. Current process ID: %1. - Instance qBittorrent inattendue trouvée. Fermeture de cette instance. ID de processus actuel : %1. + Instance qBitTorrent inattendue trouvée. Fermeture de cette instance. ID de processus actuel : %1. @@ -3689,10 +3720,6 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Options... &Options... - - &Resume - &Démarrer - &Remove @@ -3762,7 +3789,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Sh&utdown System - + É&teindre le système @@ -3774,10 +3801,6 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Close Window Fermer la fenêtre - - R&esume All - Tout Dé&marrer - Manage Cookies... @@ -3816,22 +3839,22 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Sta&rt - + Déma&rrer Sto&p - + Arrê&ter R&esume Session - + R&elancer la session Pau&se Session - + Mettre en pause @@ -3893,10 +3916,6 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &Hibernate System &Mettre en veille prolongée le système - - S&hutdown System - É&teindre le système - &Statistics @@ -3917,14 +3936,6 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date &About &À propos - - &Pause - Mettre en &pause - - - P&ause All - Tout &mettre en pause - &Add Torrent File... @@ -3958,12 +3969,12 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date - + Show Afficher - + Check for program updates Vérifier la disponibilité de mises à jour du logiciel @@ -3978,388 +3989,383 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Si vous aimez qBittorrent, faites un don ! - + Execution Log Journal d'exécution - + Clear the password Effacer le mot de passe - + &Set Password &Définir le mot de pass - + Preferences Préférences - + &Clear Password &Supprimer le mot de pass - + Transfers Transferts - - + + qBittorrent is minimized to tray - qBittorrent est réduit dans la barre des tâches + qBitTorrent est réduit dans la barre des tâches - - - + + + This behavior can be changed in the settings. You won't be reminded again. Ce comportement peut être modifié dans les réglages. Il n'y aura plus de rappel. - + Icons Only Icônes seulement - + Text Only Texte seulement - + Text Alongside Icons Texte à côté des Icônes - + Text Under Icons Texte sous les Icônes - + Follow System Style Suivre le style du système - - + + UI lock password Mot de passe de verrouillage - - + + Please type the UI lock password: Veuillez entrer le mot de passe de verrouillage : - + Are you sure you want to clear the password? Êtes vous sûr de vouloir effacer le mot de passe ? - + Use regular expressions Utiliser les expressions régulières - - + + Search Engine - Moteur de recherche + Moteur de recherche - + Search has failed - La recherche a échoué + La recherche a échoué - + Search has finished - + La recherche est terminée - + Search Recherche - + Transfers (%1) Transferts (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - qBittorrent vient d'être mis à jour et doit être redémarré pour que les changements soient pris en compte. + qBitTorrent vient d'être mis à jour et doit être redémarré pour que les changements soient pris en compte. - + qBittorrent is closed to tray qBittorrent est fermé dans la barre des tâches - + Some files are currently transferring. Certains fichiers sont en cours de transfert. - + Are you sure you want to quit qBittorrent? Êtes-vous sûr de vouloir quitter qBittorrent ? - + &No &Non - + &Yes &Oui - + &Always Yes &Oui, toujours - + Options saved. Options enregistrées. - + [PAUSED] %1 %1 is the rest of the window title - + [EN PAUSE] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [R : %1, E : %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + L’installateur Python ne peut pas être téléchargé. Erreur : %1. +Veuillez l’installer manuellement. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Le renommage du programme d'installation Python a échoué. Source : "%1". Destination : "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + L'installation de Python est réussie. + Exit code: %1. + Code de fin d’exécution: %1. + + + + Reason: installer crashed. + Raison : l'installateur a planté. + + + Python installation failed. - + Échec de l'installation de Python. - + Launching Python installer. File: "%1". - + Lancement de l'installateur Python. Fichier : "%1". - - + + Missing Python Runtime L'environnement d'exécution Python est manquant - + qBittorrent Update Available Mise à jour de qBittorrent disponible - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python est nécessaire afin d'utiliser le moteur de recherche mais il ne semble pas être installé. Voulez-vous l'installer maintenant ? - + Python is required to use the search engine but it does not seem to be installed. Python est nécessaire afin d'utiliser le moteur de recherche mais il ne semble pas être installé. - - + + Old Python Runtime L'environnement d'exécution Python est obsolète - + A new version is available. Une nouvelle version est disponible. - + Do you want to download %1? Voulez-vous télécharger %1 ? - + Open changelog... Ouvrir le journal des modifications… - + No updates available. You are already using the latest version. Pas de mises à jour disponibles. Vous utilisez déjà la dernière version. - + &Check for Updates &Vérifier les mises à jour - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Votre version de Python (%1) est obsolète. Configuration minimale requise : %2. Voulez-vous installer une version plus récente maintenant ? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Votre version de Python (%1) est obsolète. Veuillez la mettre à niveau à la dernière version pour que les moteurs de recherche fonctionnent. Configuration minimale requise : %2. - + Paused - En pause + En pause - + Checking for Updates... Vérification des mises à jour… - + Already checking for program updates in the background Recherche de mises à jour déjà en cours en tâche de fond - + Python installation in progress... - + Installation de Python en cours... - + Failed to open Python installer. File: "%1". - + Échec à l'ouverture de l'installateur Python. Fichier : "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Échec de la vérification du hachage MD5 pour l'installateur Python. Fichier : "%1". Résultat du hachage : "%2". Hachage attendu : "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Échec de la vérification du hachage SHA3-512 pour l'installateur Python. Fichier : "%1". Résultat du hachage : "%2". Hachage attendu : "%3". - + Download error Erreur de téléchargement - Python setup could not be downloaded, reason: %1. -Please install it manually. - L’installateur Python ne peut pas être téléchargé pour la raison suivante : %1. -Veuillez l’installer manuellement. - - - - + + Invalid password Mot de passe invalide - + Filter torrents... Filtrer les torrents… - + Filter by: Filtrer par: - + The password must be at least 3 characters long Le mot de passe doit comporter au moins 3 caractères - - - + + + RSS (%1) RSS (%1) - + The password is invalid Le mot de passe fourni est invalide - + DL speed: %1 e.g: Download speed: 10 KiB/s Vitesse de réception : %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Vitesse d'envoi : %1 - + Hide Cacher - + Exiting qBittorrent Fermeture de qBittorrent - + Open Torrent Files Ouvrir fichiers torrent - + Torrent Files Fichiers torrent @@ -4389,7 +4395,7 @@ Veuillez l’installer manuellement. Dynamic DNS error: qBittorrent was blacklisted by the service, please submit a bug report at https://bugs.qbittorrent.org. - Erreur du DNS dynamique : qBittorrent a été mis sur liste noire par le service, veuillez soumettre un rapport de bogue sur https://bugs.qbittorrent.org. + Erreur du DNS dynamique : qBitTorrent a été mis sur liste noire par le service, veuillez soumettre un rapport de bogue sur https://bugs.qbittorrent.org. @@ -4556,7 +4562,7 @@ Veuillez l’installer manuellement. SSL error, URL: "%1", errors: "%2" - + Erreur SSL, URL : « %1 », erreurs : « %2 » @@ -5853,47 +5859,47 @@ Veuillez l’installer manuellement. Net::Smtp - + Connection failed, unrecognized reply: %1 Échec de la connexion, réponse non reconnue : %1 - + Authentication failed, msg: %1 Échec de l’authentification, message : %1 - + <mail from> was rejected by server, msg: %1 <mail from> a été rejeté par le serveur, message : %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> a été rejeté par le serveur, message : %1 - + <data> was rejected by server, msg: %1 <data> a été rejeté par le serveur, message : %1 - + Message was rejected by the server, error: %1 Le message a été rejeté par le serveur, erreur : %1 - + Both EHLO and HELO failed, msg: %1 Échec d’EHLO et HELO, message : %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Le serveur SMTP ne semble prendre en charge aucun des modes d’authentification que nous prenons en charge [CRAM-MD5|PLAIN|LOGIN], authentification ignorée, sachant qu’elle risque d’échouer… Modes d’authentification du serveur : %1 - + Email Notification Error: %1 Erreur de la notification par courriel : %1 @@ -5935,10 +5941,6 @@ Veuillez l’installer manuellement. RSS RSS - - Web UI - IU Web - Advanced @@ -5959,14 +5961,6 @@ Veuillez l’installer manuellement. Confirm when deleting torrents Confirmer la suppression des torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Affiche une boîte de dialogue de confirmation lors de la pause/reprise de tous les torrents - - - Confirm "Pause/Resume all" actions - Confirmer les actions "Suspendre/Reprendre tout" - Use alternating row colors @@ -5983,10 +5977,6 @@ Veuillez l’installer manuellement. Always Toujours - - Paused torrents only - Seulement les torrents en pause - Action on double-click @@ -5997,10 +5987,6 @@ Veuillez l’installer manuellement. Downloading torrents: Torrents en téléchargement : - - Start / Stop Torrent - Démarrer/Arrêter le torrent - @@ -6051,7 +6037,7 @@ Veuillez l’installer manuellement. <html><head/><body><p>To set qBittorrent as default program for .torrent files and/or Magnet links<br/>you can use <span style=" font-weight:600;">Default Programs</span> dialog from <span style=" font-weight:600;">Control Panel</span>.</p></body></html> - <html><head/><body><p>Pour définir qBittorrent comme programme par défaut pour les fichiers .torrent et/ou les liens Magnet<br/>vous pouvez utiliser la page<span style=" font-weight:600;">Applications par défaut</span> des <span style=" font-weight:600;">Paramêtres</span>.</p></body></html> + <html><head/><body><p>Pour définir qBitTorrent comme programme par défaut pour les fichiers .torrent et/ou les liens Magnet<br/>vous pouvez utiliser la page<span style=" font-weight:600;">Applications par défaut</span> des <span style=" font-weight:600;">Paramêtres</span>.</p></body></html> @@ -6059,179 +6045,179 @@ Veuillez l’installer manuellement. Kio - + + Show free disk space in status bar + + + + Torrent content layout: Agencement du contenu du torrent : - + Original Original - + Create subfolder Créer un sous-dossier - + Don't create subfolder Ne pas créer de sous-dossier - + The torrent will be added to the top of the download queue Le torrent sera ajouté en haut de la file d'attente de téléchargement - + Add to top of queue The torrent will be added to the top of the download queue Ajouter en haut de la file d'attente - + When duplicate torrent is being added Lorsqu'un torrent doublon est ajouté - + Merge trackers to existing torrent Fusionner les trackers avec le torrent existant - + Keep unselected files in ".unwanted" folder Conserver les fichiers non sélectionnés dans le dossier « .unwanted » - + Add... Ajouter… - + Options.. Options.. - + Remove Retirer - + Email notification &upon download completion Notifier par courriel &une fois le téléchargement complété - + Send test email - + Envoyer un courriel test - + Run on torrent added: - + Exécution sur torrent ajoutée : - + Run on torrent finished: - + Exécuter à la complétion d'un torrent: - + Peer connection protocol: Protocole de connexion au pair : - + Any N'importe quel - + I2P (experimental) Activer I2P (expérimental) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Si &quot;mode mixte&quot; est activé, les torrents I2P sont autorisés a obtenir des pairs venant d'autres sources que le tracker et a se connecter à des IPs classiques sans fournir d'anonymisation. Cela peut être utile si l'utilisateur n'est pas intéressé par l'anonymisation de I2P mais veux tout de même être capable de se connecter à des pairs I2P.</p></body></html> - - - + Mixed mode Mode mixte - Some options are incompatible with the chosen proxy type! - Certaines options sont incompatibles avec le type de proxy choisi ! + Certaines options sont incompatibles avec le type de proxy choisi ! - + If checked, hostname lookups are done via the proxy Si cochée, les recherches de nom d'hôte sont effectuées via le proxy - + Perform hostname lookup via proxy Recherche du nom d'hôte via un proxy - + Use proxy for BitTorrent purposes Utiliser un proxy à des fins BitTorrent - + RSS feeds will use proxy Les flux RSS utiliseront un proxy - + Use proxy for RSS purposes Utiliser un proxy à des fins RSS - + Search engine, software updates or anything else will use proxy Le moteur de recherche, les mises à jour logicielles ou toute autre chose utiliseront le proxy - + Use proxy for general purposes Utiliser un proxy à des fins générales - + IP Fi&ltering Fi&ltrage IP - + Schedule &the use of alternative rate limits Planifier &l'utilisation des limites de vitesse alternatives - + From: From start time De : - + To: To end time À : - + Find peers on the DHT network Trouver des pairs sur le réseau DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6226,190 @@ Exiger le chiffrement : Se connecter uniquement aux pairs avec protocole de chif Désactiver le chiffrement : Se connecter uniquement aux pairs sans protocole de chiffrement - + Allow encryption Autoriser le chiffrement - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Plus d'informations</a>) - + Maximum active checking torrents: Torrents actifs maximum en vérification : - + &Torrent Queueing File d'attente des &torrents - + When total seeding time reaches Lorsque la durée totale de partage atteint - + When inactive seeding time reaches Lorsque la durée de partage inactif atteint - A&utomatically add these trackers to new downloads: - Ajo&uter automatiquement ces trackers aux nouveaux téléchargements : - - - + RSS Reader Lecteur RSS - + Enable fetching RSS feeds Active la réception de flux RSS - + Feeds refresh interval: Intervalle de rafraîchissement des flux : - + Same host request delay: Délai de la requête au même hôte : - + Maximum number of articles per feed: Nombre maximum d'articles par flux : - - - + + + min minutes min - + Seeding Limits Limites de partage - Pause torrent - Mettre en pause le torrent - - - + Remove torrent Retirer le torrent - + Remove torrent and its files Retirer le torrent et ses fichiers - + Enable super seeding for torrent Activer le super partage pour ce torrent - + When ratio reaches Lorsque le ratio atteint - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Arrêter les torrents - + A&utomatically append these trackers to new downloads: - + Ajouter automatiquement ces trackers aux nouveaux téléchargements : - + Automatically append trackers from URL to new downloads: - + Ajouter automatiquement les trackeurs de l'URL aux nouveaux téléchargements : - + URL: - URL : + URL : - + Fetched trackers - + Trackeurs récupérés - + Search UI - + Recherche UI - + Store opened tabs - + Enregistrer les onglets ouverts - + Also store search results - + Enregistrer aussi les résultats de recherche - + History length - + Durée de l'historique - + RSS Torrent Auto Downloader Téléchargeur automatique de torrents RSS - + Enable auto downloading of RSS torrents Active le téléchargement automatique des torrents par RSS - + Edit auto downloading rules... Éditer les règles de téléchargement automatique… - + RSS Smart Episode Filter Filtre d'épisode intelligent par RSS - + Download REPACK/PROPER episodes Télécharger les épisodes REPACK/PROPER - + Filters: Filtres : - + Web User Interface (Remote control) Activer l'interface utilisateur Web (contrôle distant) - + IP address: Adresse IP : - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6418,37 @@ Renseignez une adresse IPv4 ou IPv6. Vous pouvez renseigner « 0.0.0.0 » pour n « :: » pour n'importe quelle adresse IPv6, ou bien « * » pour l'IPv4 et l'IPv6. - + Ban client after consecutive failures: Bannir le client suite à des échecs consécutifs : - + Never Jamais - + ban for: Banni pour : - + Session timeout: Expiration de la session : - + Disabled Désactivé - Enable cookie Secure flag (requires HTTPS) - Activer l'indicateur de sécurité des cookies (nécessite HTTPS) - - - + Server domains: Domaines de serveur : - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6476,54 +6460,54 @@ Afin de se défendre contre les attaques par DNS rebinding, vous devez consigner Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut être utilisé. - + &Use HTTPS instead of HTTP &Utiliser HTTPS au lieu de HTTP - + Bypass authentication for clients on localhost Ignorer l'authentification pour les clients locaux - + Bypass authentication for clients in whitelisted IP subnets Ignorer l'authentification pour les clients de sous-réseaux en liste blanche - + IP subnet whitelist... Liste blanche des sous-réseaux IP… - + Use alternative WebUI - + Utiliser l'IU Web alternative - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Spécifier les adresses IP du proxy inverse (ou les sous-réseaux, p. ex. 0.0.0.0/24) afin d'utiliser l'adresse client transférée (attribut X-Forwarded-For). Utiliser ';' pour séparer plusieurs entrées. - + Upda&te my dynamic domain name Met&tre à jour mon nom de domaine dynamique Minimize qBittorrent to notification area - Réduire qBittorrent dans la zone de notification + Réduire qBitTorrent dans la zone de notification Search - + Rechercher WebUI - + IU Web @@ -6538,29 +6522,29 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu Style: - + Style : Color scheme: - + Modèle de couleur : Stopped torrents only - + Seulement les torrents stoppés Start / stop torrent - + Démarrer / Arrêter le torrent Open torrent options dialog - + Ouvrir la boîte de dialogue des options du torrent @@ -6581,12 +6565,12 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu Use qBittorrent for .torrent files - Utiliser qBittorrent pour les fichiers .torrent + Utiliser qBitTorrent pour les fichiers .torrent Use qBittorrent for magnet links - Utiliser qBittorrent pour les liens magnet + Utiliser qBitTorrent pour les liens magnet @@ -6601,7 +6585,7 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu &Log Files - + &Fichier journal @@ -6619,128 +6603,124 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu Supprimer les journaux antérieurs à : - + Show external IP in status bar - + Afficher l'adresse IP externe dans la barre d'état - + When adding a torrent À l'ajout d'un torrent - + Bring torrent dialog to the front Mettre la boite de dialogue du torrent en avant-plan - + The torrent will be added to download list in a stopped state - + Le torrent sera ajouté à la liste de téléchargement en étant arrêté - + Also delete .torrent files whose addition was cancelled Supprimer également les fichiers .torrent dont l'ajout a été annulé - + Also when addition is cancelled Aussi quand l'ajout est annulé - + Warning! Data loss possible! Avertissement ! Perte de données possible ! - + Saving Management Gestion de la sauvegarde - + Default Torrent Management Mode: Mode de gestion de torrent par défaut : - + Manual Manuel - + Automatic Automatique - + When Torrent Category changed: Quand la catégorie du torrent change : - + Relocate torrent Relocaliser le torrent - + Switch torrent to Manual Mode Basculer le torrent en mode manuel - - + + Relocate affected torrents Relocaliser les torrents affectés - - + + Switch affected torrents to Manual Mode Basculer les torrents affectés en mode manuel - + Use Subcategories Utiliser les sous-catégories - + Default Save Path: Chemin de sauvegarde par défaut : - + Copy .torrent files to: Copier les fichiers .torrent dans : Show &qBittorrent in notification area - Afficher l'icône de &qBittorrent dans la zone de notification + Afficher l'icône de &qBitTorrent dans la zone de notification - &Log file - Créer un fichier journa&l - - - + Display &torrent content and some options Afficher le contenu du &torrent et quelques options - + De&lete .torrent files afterwards Supprimer &les fichiers .torrent par la suite - + Copy .torrent files for finished downloads to: Copier les fichiers .torrent des téléchargements terminés dans : - + Pre-allocate disk space for all files Préallouer l'espace disque pour tous les fichiers @@ -6770,10 +6750,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu Preview file, otherwise open destination folder Afficher un aperçu du fichier, sinon ouvrir le dossier de destination - - Show torrent options - Afficher les options du torrent - Shows a confirmation dialog when exiting with active torrents @@ -6793,7 +6769,7 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu Close qBittorrent to notification area The systray icon will still be visible when closing the main window - Conserver dans la zone de notification à la fermeture + Fermer qBitTorrent dans la zone de notification @@ -6839,69 +6815,65 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère génériqu années - + Log performance warnings Journaliser les avertissements de performances - The torrent will be added to download list in a paused state - Le torrent sera ajouté à la file de téléchargement en état de pause - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Ne pas démarrer le téléchargement automatiquement - + Whether the .torrent file should be deleted after adding it Si le fichier .torrent devrait être supprimé après l'avoir ajouté - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Allouer les tailles entières des fichiers sur le disque avant de commencer les téléchargements, afin de minimiser la fragmentation. Utile uniquement pour les disques durs HDDs. - + Append .!qB extension to incomplete files Ajouter l'extension .!qB aux noms des fichiers incomplets - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Lorsqu'un torrent est téléchargé, proposer d'ajouter les torrents depuis les fichiers .torrent trouvés à l'intérieur de celui-ci - + Enable recursive download dialog Activer les fenêtres de téléchargement récursif - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatique : Certaines propriétés du torrent (p. ex. le répertoire de destination) seront décidées par la catégorie associée Manuel : Certaines propriétés du torrent (p. ex. le répertoire de destination) devront être saisies manuellement - + When Default Save/Incomplete Path changed: Lorsque le répertoire de destination/incomplet par défaut a été modifié : - + When Category Save Path changed: Lorsque le répertoire de destination de la catégorie change : - + Use Category paths in Manual Mode Utiliser les chemins des catégories en mode manuel - + Resolve relative Save Path against appropriate Category path instead of Default one Résoudre le répertoire de destination relatif par rapport au chemin de la catégorie approprié au lieu de celui par défaut @@ -6918,53 +6890,53 @@ Manuel : Certaines propriétés du torrent (p. ex. le répertoire de destination qBittorrent window state on start up - État de la fenêtre qBittorrent au démarrage + État de la fenêtre qBitTorrent au démarrage - + Torrent stop condition: Condition d'arrêt du torrent : - - + + None Aucun - - + + Metadata received Métadonnées reçues - - + + Files checked Fichiers vérifiés - + Ask for merging trackers when torrent is being added manually Demander une fusion des trackers lorsque le torrent est ajouté manuellement - + Use another path for incomplete torrents: Utiliser un autre répertoire pour les torrents incomplets : - + Automatically add torrents from: Ajouter automatiquement les torrents présents sous : - + Excluded file names Exclure les noms de fichiers - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6993,538 +6965,525 @@ readme.txt : filtre le nom exact du fichier. readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mais pas 'readme10.txt'. - + Receiver Destinataire - + To: To receiver À : - + SMTP server: Serveur SMTP : - + Sender Émetteur - + From: From sender De : - + This server requires a secure connection (SSL) Nécessite une connexion sécurisée (SSL) - - + + Authentication Authentification - - - - + + + + Username: Nom d'utilisateur : - - - - + + + + Password: Mot de passe : - + Run external program Exécuter un programme externe - Run on torrent added - Exécuter à l'ajout d'un torrent - - - Run on torrent finished - Exécuter à la complétion d'un torrent - - - + Show console window Afficher la fenêtre de la console - + TCP and μTP TCP et μTP - + Listening Port Port d'écoute - + Port used for incoming connections: Port pour les connexions entrantes : - + Set to 0 to let your system pick an unused port Régler sur 0 pour laisser votre système choisir un port inutilisé - + Random Aléatoire - + Use UPnP / NAT-PMP port forwarding from my router Utiliser la redirection de port sur mon routeur via UPnP/NAT-PMP - + Connections Limits Limites de connexions - + Maximum number of connections per torrent: Nombre maximum de connexions par torrent : - + Global maximum number of connections: Nombre maximum global de connexions : - + Maximum number of upload slots per torrent: Nombre maximum d'emplacements d'envoi par torrent : - + Global maximum number of upload slots: Nombre maximum global d'emplacements d'envoi : - + Proxy Server Serveur proxy - + Type: Type : - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Hôte : - - - + + + Port: Port : - + Otherwise, the proxy server is only used for tracker connections Dans le cas contraire, le proxy sera uniquement utilisé pour contacter les trackers - + Use proxy for peer connections Utiliser le proxy pour se connecter aux pairs - + A&uthentication A&uthentification - Info: The password is saved unencrypted - Info : le mot de passe est enregistré en texte clair + Info : le mot de passe est enregistré en texte clair - + Filter path (.dat, .p2p, .p2b): Chemin du filtre (.dat, .p2p, .p2b) : - + Reload the filter Recharger le filtre - + Manually banned IP addresses... Adresses IP bannies manuellement… - + Apply to trackers Appliquer aux trackers - + Global Rate Limits Limites de vitesse globales - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s Kio/s - - + + Upload: Envoi : - - + + Download: Réception : - + Alternative Rate Limits Limites de vitesse alternatives - + Start time Heure de début - + End time Heure de fin - + When: Quand : - + Every day Tous les jours - + Weekdays Jours ouvrés - + Weekends Week-ends - + Rate Limits Settings Paramètres des limites de vitesse - + Apply rate limit to peers on LAN Appliquer les limites de vitesse sur le réseau local - + Apply rate limit to transport overhead Appliquer les limites de vitesse au surplus généré par le protocole - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Si le « mode mixte » est activé, les torrents I2P sont également autorisés à obtenir des pairs provenant d'autres sources que le trackeur et à se connecter à des IP normales, sans fournir d'anonymisation. Cela peut être utile si l'utilisateur n'est pas intéressé par l'anonymisation de l'I2P, mais souhaite tout de même pouvoir se connecter à des pairs I2P</p></body></html> - + Apply rate limit to µTP protocol Appliquer les limites de vitesse au protocole µTP - + Privacy Vie privée - + Enable DHT (decentralized network) to find more peers Activer le DHT (réseau décentralisé) pour trouver plus de pairs - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Échanger des pairs avec les applications compatibles (µTorrent, Vuze…) - + Enable Peer Exchange (PeX) to find more peers Activer l'échange de pairs (PeX) avec les autres utilisateurs - + Look for peers on your local network Rechercher des pairs sur votre réseau local - + Enable Local Peer Discovery to find more peers Activer la découverte de sources sur le réseau local - + Encryption mode: Mode de chiffrement : - + Require encryption Chiffrement requis - + Disable encryption Chiffrement désactivé - + Enable when using a proxy or a VPN connection Activer lors de l'utilisation d'un proxy ou d'une connexion VPN - + Enable anonymous mode Activer le mode anonyme - + Maximum active downloads: Nombre maximum de téléchargements actifs : - + Maximum active uploads: Nombre maximum d'envois actifs : - + Maximum active torrents: Nombre maximum de torrents actifs : - + Do not count slow torrents in these limits Ne pas compter les torrents lents dans ces limites - + Upload rate threshold: Limite de vitesse d'envoi : - + Download rate threshold: Limite de vitesse de téléchargement : - - - - + + + + sec seconds sec. - + Torrent inactivity timer: Minuterie d'inactivité du torrent : - + then alors - + Use UPnP / NAT-PMP to forward the port from my router Utiliser la redirection de port sur mon routeur via UPnP/NAT-PMP - + Certificate: Certificat : - + Key: Clé : - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information sur les certificats</a> - + Change current password Changer le mot de passe actuel - Use alternative Web UI - Utiliser l'IU Web alternative - - - + Files location: Emplacement des fichiers : - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Liste des WebUI alternatives</a> - + Security Sécurité - + Enable clickjacking protection Activer la protection contre le détournement de clic - + Enable Cross-Site Request Forgery (CSRF) protection Activer la protection contre la falsification de requêtes intersites (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Activer le cookie "Secure flag" (nécessite une connexion HTTPS ou Localhost) - + Enable Host header validation Activer la validation de l'en-tête hôte - + Add custom HTTP headers Ajouter des en-têtes HTTP personnalisées - + Header: value pairs, one per line En-tête : paires clé-valeur, une par ligne - + Enable reverse proxy support Activer la prise en charge du proxy inverse - + Trusted proxies list: Liste des proxys de confiance : - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Exemples de configuration de proxy inverse</a> - + Service: Service : - + Register S'inscrire - + Domain name: Nom de domaine : - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! En activant ces options, vous pouvez <strong>perdre à tout jamais</strong> vos fichiers .torrent ! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Si vous activez la seconde option (&ldquo;également lorsque l'ajout est annulé&rdquo;) le fichier .torrent <strong>sera supprimé</strong> même si vous pressez &ldquo;<strong>Annuler</strong>&rdquo; dans la boîte de dialogue &ldquo;Ajouter un torrent&rdquo; Select qBittorrent UI Theme file - Sélectionner le fichier de thème d'lU qBittorrent + Sélectionner le fichier de thème d'lU qBitTorrent - + Choose Alternative UI files location Choisir l'emplacement des fichiers d'IU alternatives - + Supported parameters (case sensitive): Paramètres supportés (sensible à la casse) : @@ -7544,255 +7503,255 @@ readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mai Désactivé en raison de l'échec de la détection d'une présence dans la barre des tâches - + No stop condition is set. Aucune condition d'arrêt n'est définie. - + Torrent will stop after metadata is received. Le torrent s'arrêtera après la réception des métadonnées. - + Torrent will stop after files are initially checked. Le torrent s'arrêtera après la vérification initiale des fichiers. - + This will also download metadata if it wasn't there initially. Cela téléchargera également les métadonnées si elles n'y étaient pas initialement. - + %N: Torrent name %N : Nom du torrent - + %L: Category %L : Catégorie - + %F: Content path (same as root path for multifile torrent) %F : Répertoire du contenu (le même que le répertoire racine pour les torrents composés de plusieurs fichiers) - + %R: Root path (first torrent subdirectory path) %R : Répertoire racine (premier répertoire du sous-dossier du torrent) - + %D: Save path %D : Répertoire de destination - + %C: Number of files %C : Nombre de fichiers - + %Z: Torrent size (bytes) %Z : Taille du torrent (en octets) - + %T: Current tracker %T : Tracker actuel - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Astuce : Encapsuler le paramètre entre guillemets pour éviter que le texte soit coupé au niveau des espaces (p. ex. "%N") - + Test email - + Courriel test - + Attempted to send email. Check your inbox to confirm success - + Tentative d'envoi d'un courriel. Vérifiez votre boîte de réception pour confirmer la réussite - + (None) (Aucun) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Un torrent sera considéré comme lent si ses vitesses de réception et d'envoi restent en dessous des valeurs en secondes du « Minuteur d'inactivité du torrent » - + Certificate Certificat - + Select certificate Sélectionner un certificat - + Private key Clé privée - + Select private key Sélectionner une clé privée - + WebUI configuration failed. Reason: %1 La configuration de l'IU Web a échoué. Raison : %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 est recommandé pour une meilleure compatibilité avec le mode sombre de Windows - + System System default Qt style - + Système - + Let Qt decide the style for this system - + Laisser Qt décider du style pour ce système - + Dark Dark color scheme - + Sombre - + Light Light color scheme - + Clair - + System System color scheme - + Système - + Select folder to monitor Sélectionner un dossier à surveiller - + Adding entry failed Impossible d'ajouter l'entrée - + The WebUI username must be at least 3 characters long. Le nom d'utilisateur pour l'IU Web doit comporter au moins 3 caractères. - + The WebUI password must be at least 6 characters long. Le mot de passe pour l'IU Web doit comporter au moins 6 caractères. - + Location Error Erreur d'emplacement - - + + Choose export directory Choisir un dossier pour l'exportation - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well - Lorsque ces options sont actives, qBittorrent va <strong>supprimer</strong> les fichiers .torrent après qu'ils aient été ajoutés à la file d’attente de téléchargement avec succès (première option) ou non (seconde option). Ceci sera appliqué <strong>non seulement</strong> aux fichiers ouverts via l'action du menu &ldquo;Ajouter un torrent&rdquo; mais également à ceux ouverts via <strong>l'association de types de fichiers</strong> + Lorsque ces options sont actives, qBitTorrent va <strong>supprimer</strong> les fichiers .torrent après qu'ils aient été ajoutés à la file d’attente de téléchargement avec succès (première option) ou non (seconde option). Ceci sera appliqué <strong>non seulement</strong> aux fichiers ouverts via l'action du menu &ldquo;Ajouter un torrent&rdquo; mais également à ceux ouverts via <strong>l'association de types de fichiers</strong> qBittorrent UI Theme file (*.qbtheme config.json) - Fichier de thème d'IU qBittorrent (*.qbtheme config.json) + Fichier de thème d'IU qBitTorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G : Étiquettes (séparées par des virgules) - + %I: Info hash v1 (or '-' if unavailable) %I : Info hash v1 (ou '-' si indisponible) - + %J: Info hash v2 (or '-' if unavailable) %J : info hash v2 (ou '-' si indisponible) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K : ID du torrent (soit l'info hash SHA-1 pour un torrent v1 ou l'info hash tronquée SHA-256 pour un torrent v2/hybride) - - + + Choose a save directory Choisir un dossier de sauvegarde - + Torrents that have metadata initially will be added as stopped. Les torrents qui ont initialement des métadonnées seront ajoutés comme arrêtés. - + Choose an IP filter file Choisissez un fichier de filtre IP - + All supported filters Tous les filtres supportés - + The alternative WebUI files location cannot be blank. L'emplacement des fichiers pour l'IU Web alternative ne peut pas être vide. - + Parsing error Erreur lors de l'analyse syntaxique - + Failed to parse the provided IP filter Impossible de charger le filtre IP fourni - + Successfully refreshed Actualisation réussie - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Le filtre IP a été correctement chargé : %1 règles ont été appliquées. @@ -7803,18 +7762,18 @@ readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mai Préférences - + Time Error Erreur de temps - + The start time and the end time can't be the same. Les heures de début et de fin ne peuvent pas être identiques. - - + + Length Error Erreur de longueur @@ -7899,169 +7858,169 @@ readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mai Peer is using NAT hole punching - + le pair utilise le hole punching NAT PeerListWidget - + Country/Region Pays/Région - + IP/Address IP/Adresse - + Port Port - + Flags Indicateurs - + Connection Connexion - + Client i.e.: Client application Logiciel - + Peer ID Client i.e.: Client resolved from Peer ID ID du pair - + Progress i.e: % downloaded Progression - + Down Speed i.e: Download speed Vitesse DL - + Up Speed i.e: Upload speed Vitesse UP - + Downloaded i.e: total data downloaded Téléchargé - + Uploaded i.e: total data uploaded Envoyé - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Pertinence - + Files i.e. files that are being downloaded right now Fichiers - + Column visibility Visibilité de la colonne - + Resize columns Redimensionner les colonnes - + Resize all non-hidden columns to the size of their contents Redimensionner toutes les colonnes non masquées à la taille de leur contenu - + Add peers... Ajouter des pairs… - - + + Adding peers Ajout de pairs - + Some peers cannot be added. Check the Log for details. Certains pairs n'ont pas pu être ajoutés. Consultez le Journal pour plus d'informations. - + Peers are added to this torrent. Les pairs sont ajoutés à ce torrent. - - + + Ban peer permanently Bloquer le pair indéfiniment - + Cannot add peers to a private torrent Impossible d'ajouter des pairs à un torrent privé - + Cannot add peers when the torrent is checking Impossible d'ajouter des pairs quand le torrent est en cours de vérification - + Cannot add peers when the torrent is queued Impossible d'ajouter des pairs quand le torrent est en file d'attente - + No peer was selected Aucun pair n'a été sélectionné - + Are you sure you want to permanently ban the selected peers? Êtes-vous sûr de vouloir bannir les pairs sélectionnés de façon permanente ? - + Peer "%1" is manually banned Le pair « %1 » est banni manuellement - + N/A N/D - + Copy IP:port Copier l'IP:port @@ -8232,7 +8191,8 @@ readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mai Some plugins could not be uninstalled because they are included in qBittorrent. Only the ones you added yourself can be uninstalled. Those plugins were disabled. - Certains greffons n'ont pas pu être désinstallés car ils sont inclus dans qBittorrent. Seulement ceux que vous avez vous-même ajoutés peuvent être désinstallés. Ces derniers ont été désactivés. + Certains greffons n'ont pas pu être désinstallés car ils sont inclus dans qBitTorrent. Seulement ceux que vous avez vous-même ajoutés peuvent être désinstallés. +Ces derniers ont été désactivés. @@ -8287,7 +8247,7 @@ Those plugins were disabled. qBittorrent search plugin - Greffon de recherche de qBittorrent + Greffon de recherche de qBitTorrent @@ -8341,34 +8301,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent est actif + qBitTorrent est actif PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - La gestion de l'alimentation a trouvé une interface D-Bus approprié. Interface : %1 + La gestion de l'alimentation a trouvé une interface D-Bus approprié. Interface : %1 - Power management error. Did not found suitable D-Bus interface. - Erreur de la gestion de l'alimentation. Interface D-Bus appropriée non trouvée. + Erreur de la gestion de l'alimentation. Interface D-Bus appropriée non trouvée. - - - Power management error. Action: %1. Error: %2 - Erreur de la gestion de l'alimentation. Action : %1. Erreur : %2 + Erreur de la gestion de l'alimentation. Action : %1. Erreur : %2 - Power management unexpected error. State: %1. Error: %2 - Erreur Inattendue de la gestion de l'alimentation. Etat : %1. Erreur : %2 + Erreur Inattendue de la gestion de l'alimentation. Etat : %1. Erreur : %2 @@ -8612,12 +8565,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Temps Actif (en mois), indique la popularité du torrent Popularity: - + Popularité : @@ -8652,7 +8605,7 @@ Those plugins were disabled. Private: - + Privé : @@ -8660,153 +8613,124 @@ Those plugins were disabled. Chemin de sauvegarde : - + Never Jamais - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 × %2 (a %3) - - + + %1 (%2 this session) %1 (%2 cette session) - - + + N/A N/D - + Yes - Oui + Oui - + No - Non + Non - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (partagé pendant %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maximum) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 en moyenne) - + Add web seed Add HTTP source - + Ajouter une source web - + Add web seed: - + Ajouter une source web: - - + + This web seed is already in the list. - + Cette source web est déjà dans la liste. - New Web seed - Nouvelle source web - - - Remove Web seed - Supprimer la source web - - - Copy Web seed URL - Copier l'URL de la source web - - - Edit Web seed URL - Modifier l'URL de la source web - - - + Filter files... Filtrer les fichiers… - + Add web seed... - + Ajouter une source web... - + Remove web seed - + Supprimer la source web - + Copy web seed URL - + Copier l'URL de la source web - + Edit web seed URL... - + Modifier l'URL de la source web - + Speed graphs are disabled Les graphiques de vitesse sont désactivés - + You can enable it in Advanced Options Vous pouvez l'activer sous Options Avancées - New URL seed - New HTTP source - Nouvelle source URL - - - New URL seed: - Nouvelle source URL : - - - This URL seed is already in the list. - Cette source URL est déjà sur la liste. - - - + Web seed editing Modification de la source web - + Web seed URL: URL de la source web : @@ -8814,33 +8738,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Format de données invalide. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Impossible d'enregistrer les données de téléchargement automatique RSS vers %1. Erreur : %2 - + Invalid data format Format de données invalide - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... Le flux RSS '%1' est accepté par la règle '%2'. Tentative d'ajout du torrent en cours... - + Failed to read RSS AutoDownloader rules. %1 Échec de la lecture des règles de téléchargement automatique RSS. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Impossible de charger les règles de téléchargement automatique RSS. Raison : %1 @@ -8848,22 +8772,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Échec de téléchargement du flux RSS à '%1'. Raison : %2 - + RSS feed at '%1' updated. Added %2 new articles. Flux RSS à '%1' mis à jour. %2 nouveaux articles ajoutés. - + Failed to parse RSS feed at '%1'. Reason: %2 Échec de l'analyse du flux RSS à '%1'. Raison : %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Le flux RSS %1 a été téléchargé avec succès. Lancement de l'analyse. @@ -8912,12 +8836,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Impossible d’enregistrer la configuration de la session RSS. Fichier : « %1 ». Erreur : « %2 » - + Couldn't save RSS session data. File: "%1". Error: "%2" Impossible d’enregistrer les données de la session RSS. Fichier : « %1 ». Erreur : « %2 » @@ -8939,76 +8863,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. L'élément n'existe pas : %1. - Couldn't move folder into itself. - Impossible de déplacer le dossier vers lui-même. + Impossible de déplacer le dossier vers lui-même. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Ne peut pas supprimer le dossier racine. - + Failed to read RSS session data. %1 Échec de la lecture des données de session RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Échec de l'analyse des données de session RSS. Fichier : « %1 ». Erreur : « %2 » - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Échec du chargement des données de session RSS. Fichier : « %1 ». Erreur : « Format de données invalide. » - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Impossible de charger le flux RSS. Flux : « %1 ». Raison : l’URL est requise. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Impossible de charger le flux RSS. Flux : « %1 ». Raison : l’UID est invalide. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Doublon du flux RSS trouvé. UID : « %1 ». Erreur : La configuration semble être corrompue. - + Couldn't load RSS item. Item: "%1". Invalid data format. Impossible de charger l’élément RSS. Élément : « %1 ». Format de données invalide. - + Corrupted RSS list, not loading it. Liste RSS corrompue, chargement annulé. - + Incorrect RSS Item path: %1. Chemin d'article RSS Incorrect : %1. - + RSS item with given path already exists: %1. L'article RSS avec le chemin donné existe déjà : %1. - + Parent folder doesn't exist: %1. Le dossier parent n'existe pas : %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Flux inexistant : %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL : + + + + Refresh interval: + + + + + sec + sec. + + + + Default + Par défaut + + RSSWidget @@ -9108,78 +9077,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Éditer l'URL du flux… + Éditer l'URL du flux… - Edit feed URL - Éditer l'URL du flux + Éditer l'URL du flux - + Please choose a folder name Veuillez choisir un nouveau nom de dossier - + Folder name: Nom du dossier : - + New folder Nouveau dossier - - Please type a RSS feed URL - Veuillez entrer une URL de flux RSS + Veuillez entrer une URL de flux RSS - - Feed URL: - URL du flux : + URL du flux : - + Deletion confirmation Confirmation de la suppression - + Are you sure you want to delete the selected RSS feeds? Voulez-vous vraiment supprimer les flux RSS sélectionnés ? - + Please choose a new name for this RSS feed Veuillez choisir un nouveau nom pour ce flux RSS - + New feed name: Nouveau nom du flux : - + Rename failed Échec du renommage - + Date: Date : - + Feed: Flux : - + Author: Auteur : @@ -9316,10 +9284,6 @@ Those plugins were disabled. i.e: Number of partial sources Sources partielles - - Search engine - Moteur de recherche - Filter search results... @@ -9409,17 +9373,17 @@ Those plugins were disabled. Engine - + Moteur Engine URL - + URL du moteur Published On - + Publié sur @@ -9440,104 +9404,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Format de fichier du greffon de recherche inconnu. - + Plugin already at version %1, which is greater than %2 Le greffon est déjà à la version %1, qui est plus récente que la %2 - + A more recent version of this plugin is already installed. Une version plus récente de ce greffon est déjà installée. - + Plugin %1 is not supported. Le greffon %1 n'est pas supporté. - - + + Plugin is not supported. Greffon non supporté. - + Plugin %1 has been successfully updated. Le greffon %1 a été correctement mis à jour. - + All categories Toutes les catégories - + Movies Films - + TV shows Émissions de télévision - + Music Musique - + Games Jeux - + Anime Animes - + Software Logiciels - + Pictures Photos - + Books Livres - + Update server is temporarily unavailable. %1 Serveur de mise à jour temporairement indisponible. %1 - - + + Failed to download the plugin file. %1 Échec du téléchargement du fichier du greffon. %1 - + Plugin "%1" is outdated, updating to version %2 Le greffon « %1 » est obsolète, mise à jour vers la version %2 - + Incorrect update info received for %1 out of %2 plugins. Informations de mise à jour incorrectes reçues de %1 greffons sur %2. - + Search plugin '%1' contains invalid version string ('%2') Le numéro de version ('%2') du greffon de recherche '%1' est invalide @@ -9563,137 +9527,129 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen Greffons de recherche... - + A phrase to search for. Une phrase à rechercher. - + Spaces in a search term may be protected by double quotes. Les espaces dans un terme de recherche peuvent être protégés par des guillemets. - + Example: Search phrase example Exemple : - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b> : rechercher <b>foo bar</b> - + All plugins Tous les greffons - + Only enabled Greffons activés - - + + Invalid data format. - Format de données invalide. + Format de données invalide. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: rechercher <b>foo</b> et <b>bar</b> - + Refresh - + Rafraichir - + Close tab Fermer l'onglet - + Close all tabs Fermer tous les onglets - + Select... Sélectionner… - - + + Search Engine Moteur de recherche - - + + Please install Python to use the Search Engine. Veuillez installer Python afin d'utiliser le moteur de recherche. - + Empty search pattern Motif de recherche vide - + Please type a search pattern first Veuillez entrer un motif de recherche - + Stop Arrêter - - Search has finished - Recherche terminée - - - Search has failed - La recherche a échoué - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Échec du chargement des données d'état enregistrées de l'interface utilisateur de recherche. Fichier : "%1". Erreur : "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Échec du chargement des résultats de recherche enregistrés. Onglet : "%1". Fichier : "%2". Erreur : "%3". - + Failed to save Search UI state. File: "%1". Error: "%2" - + Échec de l'enregistrement de l'état de l'interface de recherche. Fichier : "%1". Erreur : "%2". - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Échec de l'enregistrement des résultats de recherche. Onglet : "%1". Fichier : "%2". Erreur : "%3". - + Failed to load Search UI history. File: "%1". Error: "%2" - + Échec du chargement de l'historique de l'interface de recherche. Fichier : "%1". Erreur : "%2". - + Failed to save search history. File: "%1". Error: "%2" - + Échec de l'enregistrement de l'historique de recherche. Fichier : "%1". Erreur : "%2" @@ -9729,7 +9685,7 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen qBittorrent will now exit. - qBittorent va se fermer. + qBitTorent va se fermer. @@ -10089,67 +10045,77 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen StatusBar - + Connection status: Statut de la connexion : - - + + No direct connections. This may indicate network configuration problems. Aucune connexion directe. Ceci peut être signe d'une mauvaise configuration réseau. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + IP externe : N/A + + + + DHT: %1 nodes DHT : %1 nœuds - + qBittorrent needs to be restarted! - qBittorrent doit être redémarré ! + qBitTorrent doit être redémarré ! - - + + Connection Status: État de la connexion : - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Hors ligne. Ceci signifie généralement que qBittorrent s'a pas pu se mettre en écoute sur le port défini pour les connexions entrantes. - + Online Connecté - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + IPs externes : %1, %2 + + + + External IP: %1%2 + IP externe : %1%2 + + + Click to switch to alternative speed limits Cliquez ici pour utiliser les limites de vitesse alternatives - + Click to switch to regular speed limits Cliquez ici pour utiliser les limites de vitesse normales @@ -10177,23 +10143,15 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen Completed (0) Complétés (0) - - Resumed (0) - Repris (0) - - - Paused (0) - En pause (0) - Running (0) - + En cours (0) Stopped (0) - + Arrêtés (0) @@ -10258,49 +10216,33 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen Running (%1) - + En cours (%1) Stopped (%1) - + Arrêtés (%1) Start torrents - + Démarrer les torrents Stop torrents - - - - Paused (%1) - En pause (%1) + Arrêter les torrents Moving (%1) En déplacement (%1) - - Resume torrents - Reprendre les torrents - - - Pause torrents - Mettre en pause les torrents - Remove torrents Retirer les torrents - - Resumed (%1) - Repris (%1) - Active (%1) @@ -10372,32 +10314,20 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen Remove unused tags Retirer les étiquettes inutilisées - - Resume torrents - Reprendre les torrents - - - Pause torrents - Mettre en pause les torrents - Remove torrents Retirer les torrents - - New Tag - Nouvelle étiquette - Start torrents - + Démarrer les torrents Stop torrents - + Arrêter les torrents @@ -10407,7 +10337,7 @@ Cliquez sur le bouton « Recherche de greffons… » en bas à droite de la fen Add tag - + Ajouter une étiquette @@ -10724,17 +10654,17 @@ Veuillez en choisir un autre. TorrentCreatorController - + Too many active tasks Trop de tâches actives - + Torrent creation is still unfinished. La création de torrent est encore inachevée. - + Torrent creation failed. Échec de la création du torrent. @@ -10986,17 +10916,6 @@ Veuillez en choisir un autre. Dossier de surveillance : %1 - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Impossible d'allouer de la mémoire lors de la lecture du fichier. Fichier : « %1 ». Erreur : « %2 » - - - Invalid metadata - Métadonnées invalides - - TorrentOptionsDialog @@ -11032,11 +10951,7 @@ Veuillez en choisir un autre. Torrent Share Limits - - - - Torrent speed limits - Limites de vitesse du torrent + Limites de partage du torrent @@ -11052,7 +10967,7 @@ Veuillez en choisir un autre. Torrent Speed Limits - + Limites de vitesse du torrent @@ -11070,34 +10985,6 @@ Veuillez en choisir un autre. Upload: Envoi : - - Torrent share limits - Limites de partage du torrent - - - Use global share limit - Utiliser la limite de partage globale - - - Set no share limit - Définir aucune limite de partage - - - Set share limit to - Définir la limite de partage à - - - ratio - ratio - - - total minutes - minutes totales - - - inactive minutes - minutes inactives - Disable DHT for this torrent @@ -11139,14 +11026,6 @@ Veuillez en choisir un autre. Not applicable to private torrents Non applicable aux torrents privés - - No share limit method selected - Aucune méthode de limite de partage sélectionnée - - - Please select a limit method first - Merci de sélectionner d'abord un méthode de limite - TorrentShareLimitsWidget @@ -11196,27 +11075,27 @@ Veuillez en choisir un autre. Action when the limit is reached: - + Action lorsque la limite est atteinte : Stop torrent - + Arrêter le torrent Remove torrent - Retirer le torrent + Retirer le torrent Remove torrent and its content - + Retiré les torrent et son contenu Enable super seeding for torrent - Activer le super partage pour ce torrent + Activer le super partage pour ce torrent @@ -11231,14 +11110,10 @@ Veuillez en choisir un autre. Torrent Tags Étiquettes du torrent - - New Tag - Nouvelle étiquette - Add tag - + Ajouter une étiquette @@ -11269,90 +11144,90 @@ Veuillez en choisir un autre. TorrentsController - + Error: '%1' is not a valid torrent file. Erreur : '%1' n'est pas un fichier torrent valide. - + Priority must be an integer La priorité doit être un nombre - + Priority is not valid Priorité invalide - + Torrent's metadata has not yet downloaded Les métadonnées du torrent n’ont pas encore été téléchargées - + File IDs must be integers Les identifiants de fichier doivent être des entiers - + File ID is not valid L'ID du fichier n'est pas valide - - - - + + + + Torrent queueing must be enabled La mise en file d'attente du torrent doit être activée - - + + Save path cannot be empty Le répertoire de destination ne peut être vide - - + + Cannot create target directory Impossible de créer le répertoire cible - - + + Category cannot be empty La catégorie ne peut être vide - + Unable to create category Impossible de créer la catégorie - + Unable to edit category Impossible d'éditer la catégorie - + Unable to export torrent file. Error: %1 Échec de l’exportation du fichier torrent. Erreur : %1 - + Cannot make save path Impossible de créer le répertoire de destination "%1" is not a valid URL - + "%1" n'est pas une URL valide URL scheme must be one of [%1] - + Le schéma d'URL doit être l'un des [%1] @@ -11360,39 +11235,39 @@ Veuillez en choisir un autre. Le paramètre de tri 'sort' est invalide - + "%1" is not an existing URL - + "%1" n'est pas une URL existante - + "%1" is not a valid file index. « %1 » n’est pas un index de fichier valide. - + Index %1 is out of bounds. L’index %1 est hors limites. - - + + Cannot write to directory Impossible d'écrire dans le répertoire - + WebUI Set location: moving "%1", from "%2" to "%3" Définir l'emplacement de l'IU Web: déplacement de « %1 », de « %2 » vers « %3 » - + Incorrect torrent name Nom de torrent incorrect - - + + Incorrect category name Nom de catégorie incorrect @@ -11475,45 +11350,33 @@ Veuillez en choisir un autre. Invalid state! - + État invalide ! URL/Announce Endpoint - + URL/Announce Endpoint BT Protocol - + Protocole BT Next Announce - + Prochaine Annonce Min Announce - - - - Invalid status! - État invalide ! - - - URL/Announce endpoint - URL/Terminaison de l'annonce + Annonce minimum Tier Niveau - - Protocol - Protocole - Status @@ -11544,18 +11407,6 @@ Veuillez en choisir un autre. Message Message - - Next announce - Annonce suivante - - - Min announce - Annonce minimum - - - v%1 - v%1 - TrackerListWidget @@ -11565,73 +11416,73 @@ Veuillez en choisir un autre. Ce torrent est privé - + Tracker editing Édition du tracker - + Tracker URL: URL du tracker : - - + + Tracker editing failed Échec de l’édition du tracker - + The tracker URL entered is invalid. L'URL du tracker saisie est invalide. - + The tracker URL already exists. L'URL du tracker existe déjà. - + Edit tracker URL... Éditer l'URL du tracker… - + Remove tracker Retirer le tracker - + Copy tracker URL Copier l'URL du tracker - + Force reannounce to selected trackers Forcer la réannonce aux trackers sélectionnés - + Force reannounce to all trackers Forcer la réannonce à tous les trackers - + Resize columns Redimensionner les colonnes - + Resize all non-hidden columns to the size of their contents Redimensionner toutes les colonnes non masquées à la taille de leur contenu - + Add trackers... Ajouter des trackers… - + Column visibility Visibilité de la colonne @@ -11714,20 +11565,12 @@ Veuillez en choisir un autre. Start torrents - + Démarrer les torrents Stop torrents - - - - Resume torrents - Démarrer les torrents - - - Pause torrents - Mettre en pause les torrents + Arrêter les torrents @@ -11851,10 +11694,6 @@ Veuillez en choisir un autre. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Vérification des données de reprise - - Paused - En pause - Completed @@ -11895,21 +11734,16 @@ Veuillez en choisir un autre. % Done Progression - - Status - Torrent status (e.g. downloading, seeding, paused) - État - Stopped - + Arrêté Status Torrent status (e.g. downloading, seeding, stopped) - + Statut @@ -11944,7 +11778,7 @@ Veuillez en choisir un autre. Popularity - + Popularité @@ -12025,22 +11859,17 @@ Veuillez en choisir un autre. Time Active Time (duration) the torrent is active (not stopped) - Actif pendant + Temps actif Yes - Oui + Oui No - Non - - - Time Active - Time (duration) the torrent is active (not paused) - Actif pendant + Non @@ -12112,12 +11941,12 @@ Veuillez en choisir un autre. Private Flags private torrents - + Privé Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Temps Actif (en mois), indique la popularité du torrent @@ -12142,358 +11971,319 @@ Veuillez en choisir un autre. TransferListWidget - + Column visibility Visibilité des colonnes - + Recheck confirmation Revérifier la confirmation - + Are you sure you want to recheck the selected torrent(s)? Êtes-vous sur de vouloir revérifier le ou les torrent(s) sélectionné(s) ? - + Rename Renommer - + New name: Nouveau nom : - + Choose save path Choix du répertoire de destination - Confirm pause - Confirmer la mise en pause - - - Would you like to pause all torrents? - Souhaitez-vous mettre en pause tous les torrents ? - - - Confirm resume - Confirmer la reprise - - - Would you like to resume all torrents? - Souhaitez-vous reprendre tous les torrents ? - - - + Unable to preview Impossible de prévisualiser - + The selected torrent "%1" does not contain previewable files Le torrent sélectionné « %1 » ne contient pas de fichier prévisualisable - + Resize columns Redimensionner les colonnes - + Resize all non-hidden columns to the size of their contents Redimensionner toutes les colonnes non masquées à la taille de leur contenu - + Enable automatic torrent management Activer la gestion de torrent automatique - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Êtes-vous certain de vouloir activer la gestion de torrent automatique pour le(s) torrent(s) sélectionné(s) ? Ils pourraient être déplacés. - Add Tags - Ajouter des étiquettes - - - + Choose folder to save exported .torrent files Choisir le dossier pour enregistrer les fichiers .torrent exportés - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Échec de l'exportation du fichier .torrent. Torrent : « %1 ». Répertoire de destination : « %2 ». Raison : « %3 » - + A file with the same name already exists Un fichier du même nom existe déjà - + Export .torrent file error Erreur d’exportation du fichier .torrent - + Remove All Tags Retirer toutes les étiquettes - + Remove all tags from selected torrents? Retirer toutes les étiquettes des torrents sélectionnés ? - + Comma-separated tags: Étiquettes séparées par des virgules : - + Invalid tag Étiquette invalide - + Tag name: '%1' is invalid Nom d'étiquette : '%1' est invalide - &Resume - Resume/start the torrent - &Reprendre - - - &Pause - Pause the torrent - Mettre en &pause - - - Force Resu&me - Force Resume/start the torrent - &Forcer la reprise - - - + Pre&view file... Pré&visualiser le fichier… - + Torrent &options... &Options du torrent… - + Open destination &folder Ouvrir le répertoire de &destination - + Move &up i.e. move up in the queue Déplacer vers le &haut - + Move &down i.e. Move down in the queue Déplacer vers le &bas - + Move to &top i.e. Move to top of the queue Déplacer au hau&t - + Move to &bottom i.e. Move to bottom of the queue Déplacer au &bas - + Set loc&ation... Définir l’emp&lacement… - + Force rec&heck For&cer une revérification - + Force r&eannounce Forcer une réannonc&e - + &Magnet link Lien &magnet - + Torrent &ID &ID du torrent - + &Comment &Commentaire - + &Name &Nom - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Re&nommer… - + Edit trac&kers... Éditer les trac&kers… - + E&xport .torrent... E&xporter le .torrent… - + Categor&y Catégor&ie - + &New... New category... &Nouvelle… - + &Reset Reset category &Réinitialiser - + Ta&gs Éti&quettes - + &Add... Add / assign multiple tags... &Ajouter… - + &Remove All Remove all tags &Retirer tout - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Impossible de forcer la réannonce si le torrent est arrêté / en file d’attente / en erreur / en cours de vérification - + &Queue &File d’attente - + &Copy &Copier - + Exported torrent is not necessarily the same as the imported Le torrent exporté n'est pas nécessairement le même que celui importé - + Download in sequential order Télécharger dans l'ordre séquentiel - + Add tags - + Ajouter des étiquettes - + Errors occurred when exporting .torrent files. Check execution log for details. Des erreurs se sont produites lors de l’exportation des fichiers .torrent. Consultez le journal d’exécution pour plus de détails. - + &Start Resume/start the torrent - + &Démarrer - + Sto&p Stop the torrent - + Arrê&ter - + Force Star&t Force Resume/start the torrent - + &Forcer le démarrage - + &Remove Remove the torrent &Retirer - + Download first and last pieces first Télécharger les premiers et derniers morceaux en premier - + Automatic Torrent Management Gestion de torrent automatique - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Le mode automatique signifie que diverses propriétés du torrent (p. ex. le répertoire de destination) seront décidées par la catégorie associée - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Impossible de forcer la réannonce si le torrent est en pause / file d’attente / erroné / cours de vérification - - - + Super seeding mode Mode de super-partage @@ -12569,7 +12359,7 @@ Veuillez en choisir un autre. Set app style failed. Unknown style: "%1" - + Échec de la définition du style de l'application. Style inconnu : « %1 » @@ -12625,32 +12415,32 @@ Veuillez en choisir un autre. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Exécutable Python trouvé. Nom : "%1". Version : "%2" - + Failed to find Python executable. Path: "%1". Exécutable Python non trouvé. Chemin : "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Exécutable 'python3' non trouvé dans la variable d'environnement PATH. PATH : "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Exécutable 'python' non trouvé dans la variable d'environnement PATH. PATH : "%1" - + Failed to find `python` executable in Windows Registry. Exécutable 'python' non trouvé dans le registre Windows. - + Failed to find Python executable Exécutable Python non trouvé @@ -12742,52 +12532,52 @@ Veuillez en choisir un autre. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Un nom de cookie de session inacceptable est spécifié : '%1'. Celui par défaut est utilisé. - + Unacceptable file type, only regular file is allowed. Type de fichier inacceptable, seul un fichier normal est autorisé. - + Symlinks inside alternative UI folder are forbidden. Les liens symboliques sont interdits dans les dossiers d'IU alternatives. - + Using built-in WebUI. Utilisation de l'IU Web intégrée. - + Using custom WebUI. Location: "%1". Utilisation d'une IU Web personnalisée. Emplacement : « %1 ». - + WebUI translation for selected locale (%1) has been successfully loaded. La traduction de l'IU Web pour les paramètres régionaux sélectionnés (%1) a été chargée avec succès. - + Couldn't load WebUI translation for selected locale (%1). Impossible de charger la traduction de l'IU Web pour les paramètres régionaux sélectionnés (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Séparateur ':' manquant dans l'en-tête HTTP personnalisé de l'IU Web : « %1 » - + Web server error. %1 Erreur du serveur Web. %1 - + Web server error. Unknown error. Erreur de serveur Web. Erreur inconnue. @@ -12845,7 +12635,7 @@ Veuillez en choisir un autre. Unknown error - Erreur inconnue + Erreur inconnue diff --git a/src/lang/qbittorrent_gl.ts b/src/lang/qbittorrent_gl.ts index a35d756ba..37b0ec368 100644 --- a/src/lang/qbittorrent_gl.ts +++ b/src/lang/qbittorrent_gl.ts @@ -170,10 +170,6 @@ Never show again Non mostrar de novo - - Torrent settings - Opcións torrent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Opcións de torrent @@ -235,25 +231,25 @@ Condición de parada: - - + + None Ningún - - + + Metadata received Metadatos recibidos - + Torrents that have metadata initially will be added as stopped. Os torrents que teñan metadatos inicialmente engadiranse como parados. - + Files checked Ficheiros comprobados @@ -368,112 +364,112 @@ Gardar como ficheiro .torrent... - + I/O Error Erro de E/S - + Not Available This comment is unavailable Non dispoñíbel - + Not Available This date is unavailable Non dispoñíbel - + Not available Non dispoñíbel - + Magnet link Ligazón magnet - + Retrieving metadata... Recuperando os metadatos... - - + + Choose save path Seleccionar a ruta onde gardar - + No stop condition is set. Non se establece ningunha condición de parada. - + Torrent will stop after metadata is received. O torrent deterase despois de recibir os metadatos. - + Torrent will stop after files are initially checked. O torrent deterase despois de que se comproben inicialmente os ficheiros. - + This will also download metadata if it wasn't there initially. Isto tamén descargará metadatos se non estaban alí inicialmente. - + N/A N/D - + %1 (Free space on disk: %2) %1 (espazo libre no disco: %2) - + Not available This size is unavailable. Non dispoñíbel - + Torrent file (*%1) Ficheiro torrent (*%1) - + Save as torrent file Gardar como ficheiro torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Non foi posíbel exportar os metadatos do torrent: «%1». Razón: %2. - + Cannot create v2 torrent until its data is fully downloaded. Non é posíbel crear torrent v2 ata que se descarguen todos os datos. - + Filter files... Filtrar ficheiros... - + Parsing metadata... Analizando os metadatos... - + Metadata retrieval complete Completouse a recuperación dos metadatos @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Descargando torrent... Fonte: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Produciuse un erro ao engadir o torrent. Fonte: "%1". Motivo: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detectouse un intento de engadir un torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 + Detectouse un intento de engadir un torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 - + Merging of trackers is disabled A combinación de rastrexadores está desactivada - + Trackers cannot be merged because it is a private torrent Non se poden combinar os rastrexadores porque é un torrent privado - + Trackers are merged from new source Os rastreadores combínanse desde unha nova fonte + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Volver comprobar os torrents ao rematar - - + + ms milliseconds ms - + Setting Configuración - + Value Value set for this setting Valor - + (disabled) (desactivado) - + (auto) (auto) - - + + min minutes min. - + All addresses Todos os enderezos - + qBittorrent Section Sección qBittorrent - - + + Open documentation Abrir a documentación - + All IPv4 addresses Todos os enderezos IPv4 - + All IPv6 addresses Todos os enderezos IPv6 - + libtorrent Section Sección libtorrent - + Fastresume files Ficheiros de continuación rápida - + SQLite database (experimental) Base de datos SQLite (experimental) - + Resume data storage type (requires restart) Tipo de almacenaxe dos datos de continuación (necesita reiniciar) - + Normal Normal - + Below normal Inferior ao normal - + Medium Medio - + Low Baixo - + Very low Moi baixo - + Physical memory (RAM) usage limit Límite de uso de memoria física (RAM) - + Asynchronous I/O threads Supbrocesos de E/S asíncronos - + Hashing threads Fíos do hash - + File pool size Tamaño da agrupación de ficheiros - + Outstanding memory when checking torrents Memoria adicional na comprobación dos torrents - + Disk cache Caché do disco - - - - + + + + + s seconds s - + Disk cache expiry interval Intervalo de caducidade da caché do disco - + Disk queue size Tamaño da cola en disco - - + + Enable OS cache Activar a caché do SO - + Coalesce reads & writes Fusionar lecturas e escrituras - + Use piece extent affinity Usar similitude no tamaño dos anacos - + Send upload piece suggestions Enviar suxestións de anacos para subida - - - - - + + + + + 0 (disabled) 0 (desactivado) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Intervalo de gardado de datos de reanudación [0: desactivado] - + Outgoing ports (Min) [0: disabled] Portos de saída (mínimo) [0: desactivado] - + Outgoing ports (Max) [0: disabled] Portos de saída (máx.) [0: desactivado] - + 0 (permanent lease) 0 (concesión permanente) - + UPnP lease duration [0: permanent lease] Duración da concesión UPnP [0: concesión permanente] - + Stop tracker timeout [0: disabled] Deter o tempo de espera do rastrexador [0: desactivado] - + Notification timeout [0: infinite, -1: system default] Tempo de espera da notificación [0: infinito, -1: predeterminado do sistema] - + Maximum outstanding requests to a single peer Límite de peticións extraordinarias por par - - - - - + + + + + KiB KiB - + (infinite) (infinito) - + (system default) (predeterminado do sistema) - + Delete files permanently - + Eliminar ficheiros permanentemente - + Move files to trash (if possible) - + Mover ficheiros á papeleira (se é posible) - + Torrent content removing mode - + Modo de eliminación de contido de torrent - + This option is less effective on Linux Esta opción é menos importante en Linux - + Process memory priority Prioridade da memoria do proceso - + Bdecode depth limit Límite de profundidade de Bdecode - + Bdecode token limit Límite de token Bdecode - + Default Predeterminado - + Memory mapped files Ficheiros cargados en memoria - + POSIX-compliant Compatible coa POSIX - + Simple pread/pwrite - + pread/pwrite simple - + Disk IO type (requires restart) Tipo de E/S de disco (precisarase reiniciar) - - + + Disable OS cache Desactivar a caché do SO - + Disk IO read mode Modo de lectura en disco - + Write-through Escritura simultánea - + Disk IO write mode Modo de escritura en disco - + Send buffer watermark Nivel do búfer de envío - + Send buffer low watermark Nivel baixo do búfer de envío - + Send buffer watermark factor Factor do nivel do búfer de envío - + Outgoing connections per second Conexións saíntes por segundo - - + + 0 (system default) 0 (predeterminado do sistema) - + Socket send buffer size [0: system default] Tamaño do búfer de envío do socket [0: predeterminado do sistema] - + Socket receive buffer size [0: system default] Tamaño do búfer de recepción do socket [0: predeterminado do sistema] - + Socket backlog size Tamaño dos traballos pendentes do socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Intervalo para gardar as estatísticas [0: desactivado] - + .torrent file size limit Límite de tamaño do ficheiro .torrent - + Type of service (ToS) for connections to peers Tipo de servizo (TdS) para as conexións cos pares - + Prefer TCP Preferir TCP - + Peer proportional (throttles TCP) Par proporcional (compensa a velocidade do TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Admisión de nomes de dominio internacionalizados (IDN) - + Allow multiple connections from the same IP address Permitir múltiples conexións desde a mesma IP - + Validate HTTPS tracker certificates Validar os certificados HTTPS dos localizadores - + Server-side request forgery (SSRF) mitigation Mitigación da falsificación de solicitudes do lado do servidor (SSRF) - + Disallow connection to peers on privileged ports Non permitir conexións con pares en portos privilexiados - + It appends the text to the window title to help distinguish qBittorent instances Engade o texto ao título da xanela para axudar a distinguir as instancias de qBittorent - + Customize application instance name Personaliza o nome da instancia da aplicación - + It controls the internal state update interval which in turn will affect UI updates Controla a frecuencia de actualización do estado interno, o que afecta a frecuencia de actualización da interface - + Refresh interval Intervalo de actualización - + Resolve peer host names Mostrar os servidores dos pares - + IP address reported to trackers (requires restart) Enderezo IP informada aos localizadores (necesita reiniciar) - + Port reported to trackers (requires restart) [0: listening port] - + Porto informado aos rastrexadores (require reinicio) [0: porto de escoita] - + Reannounce to all trackers when IP or port changed Anunciar de novo a todos os localizadores cando a IP ou o porto cambien - + Enable icons in menus Activar iconas nos menús - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Activa o reenvío de portos para o rastrexador incorporado - + Enable quarantine for downloaded files Activar corentena para os ficheiros descargados - + Enable Mark-of-the-Web (MOTW) for downloaded files Activa a marca da web (MOTW) para os ficheiros descargados - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Afecta á validación de certificados e ás actividades de protocolos non-torrent (por exemplo, feeds RSS, actualizacións do programa, ficheiros torrent, base de datos geoip, etc). - + Ignore SSL errors - + Ignorar erros SSL - + (Auto detect if empty) (Detección automática se está baleiro) - + Python executable path (may require restart) Camiño do executable de Python (pode requirir reinicio) - + Start BitTorrent session in paused state - + Inicia a sesión de BitTorrent en estado de pausa - + sec seconds - s + s - + -1 (unlimited) - + -1 (ilimitado) - + BitTorrent session shutdown timeout [-1: unlimited] - + Tempo de espera de apagado da sesión de BitTorrent [-1: ilimitado] - + Confirm removal of tracker from all torrents Confirmar a eliminación do rastrexador de todos os torrents - + Peer turnover disconnect percentage Porcentaxe de desconexión da rotación de pares - + Peer turnover threshold percentage Porcentaxe límite de desconexión da rotación de pares - + Peer turnover disconnect interval Intervalo de desconexión da rotación de pares - + Resets to default if empty Restablece aos valores predeterminados se está baleiro - + DHT bootstrap nodes Nodos de arranque DHT - + I2P inbound quantity Cantidade de conexións entrantes I2P - + I2P outbound quantity Cantidade de conexións saintes I2P - + I2P inbound length Duración das conexións entrantes I2P - + I2P outbound length Duración das conexións saintes I2P - + Display notifications Mostrar as notificacións - + Display notifications for added torrents Mostrar as notificacións dos torrents engadidos - + Download tracker's favicon Descargar iconas dos localizadores - + Save path history length Gardar o tamaño do historial de rutas - + Enable speed graphs Activar gráficos de velocidade - + Fixed slots Slots fixos - + Upload rate based Baseado na velocidade de envío - + Upload slots behavior Comportamento dos slots de envío - + Round-robin Round-robin - + Fastest upload Envío máis rápido - + Anti-leech Anti-samesugas - + Upload choking algorithm Algoritmo de rexeitamento de envíos - + Confirm torrent recheck Confirmar nova comprobación do torrent - + Confirm removal of all tags Confirmar a eliminación de todas as etiquetas - + Always announce to all trackers in a tier Anunciar sempre a todos os localizadores dun nivel - + Always announce to all tiers Anunciar sempre a todos os niveis - + Any interface i.e. Any network interface Calquera interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algoritmo modo mixto %1-TCP - + Resolve peer countries Mostrar os países dos pares - + Network interface Interface de rede - + Optional IP address to bind to Enderezo IP opcional ao que ligar - + Max concurrent HTTP announces Anuncios HTTP simultáneos máximos - + Enable embedded tracker Activar o localizador integrado - + Embedded tracker port Porto do localizador integrado @@ -1382,142 +1393,142 @@ Invalid directory path - + Ruta de directorio non válida Directory does not exist - + O directorio non existe Invalid mode, allowed values: %1 - + Modo non válido, valores permitidos: %1 cookies must be array - + As cookies deben ser un array Application - + Running in portable mode. Auto detected profile folder at: %1 Executándose en modo portátil. Cartafol do perfil detectado automaticamente en: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Detectouse unha marca en liña de ordes redundante: «%1». O modo portátil implica continuacións rápidas relativas. - + Using config directory: %1 Usando o cartafol de configuración: %1 - + Torrent name: %1 Nome do torrent: %1 - + Torrent size: %1 Tamaño do torrent: %1 - + Save path: %1 Ruta onde gardar: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds O torrent descargouse en %1. - - + + Thank you for using qBittorrent. Grazas por usar o qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, enviando notificación por correo electrónico - + Add torrent failed Engadir torrent fallou - + Couldn't add torrent '%1', reason: %2. Non se puido engadir o torrent '%1', razón: %2. - + The WebUI administrator username is: %1 O nome de usuario do administrador da WebUI é: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Non se fixou un contrasinal para o administrador da WebUI. Proporcionase un contrasinal temporal para esta sesión: %1 - + You should set your own password in program preferences. Deberías establecer o teu propio contrasinal nas preferencias do programa. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. A WebUI (interface de usuario web) está desactivada! Para habilitar a WebUI, edita manualmente o ficheiro de configuración. - + Running external program. Torrent: "%1". Command: `%2` Executar programa externo. Torrent: «%1». Orde: «%2» - + Failed to run external program. Torrent: "%1". Command: `%2` Fallou ao executar o programa externo. Torrent: '%1'. Comando: `%2` - + Torrent "%1" has finished downloading Rematou a descarga do torrent «%1» - + WebUI will be started shortly after internal preparations. Please wait... A interface web iniciarase tras unha breve preparación. Agarde... - - + + Loading torrents... Cargando torrents... - + E&xit &Saír - + I/O Error i.e: Input/Output Error Fallo de E/S - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Razón: %2 - + Torrent added Engadiuse o torrent - + '%1' was added. e.g: xxx.avi was added. Engadiuse «%1». - + Download completed Descarga completada - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 iniciado. Identificador do proceso: %2 - + This is a test email. - + Este é un correo electrónico de proba. - + Test email - + Correo electrónico de proba - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Rematou a descarga de «%1» - + Information Información - + To fix the error, you may need to edit the config file manually. Para solucionar o erro, pode que necesites editar manualmente o ficheiro de configuración. - + To control qBittorrent, access the WebUI at: %1 Para controlar o qBittorrent, acceda á interface web en : %1 - + Exit Saír - + Recursive download confirmation Confirmación de descarga recursiva - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? O torrent '%1' contén arquivos .torrent. Queres continuar coas súas descargas? - + Never Nunca - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Descarga recursiva dun ficheiro .torrent dentro do torrent. Torrent fonte: '%1'. Ficheiro: '%2' - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Non se puido limitar o uso de memoria física (RAM). Código de fallo: %1. Mensaxe de fallo: «%2» - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Fallou ao establecer o límite máximo de uso de memoria física (RAM). Tamaño solicitado: %1. Límite máximo do sistema: %2. Código de erro: %3. Mensaxe de erro: '%4' - + qBittorrent termination initiated Inicializado qBittorrent - + qBittorrent is shutting down... O qBittorrent vai pechar... - + Saving torrent progress... Gardando o progreso do torrent... - + qBittorrent is now ready to exit qBittorrent está preparado para o apagado @@ -1766,263 +1777,263 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d &Exportar... - + Matches articles based on episode filter. Resultados co filtro de episodios. - + Example: Exemplo: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match son os episodios 2, 5 e 8 até o 15, e do 30 en adiante da primeira tempada - + Episode filter rules: Regras do filtro de episodios: - + Season number is a mandatory non-zero value O número da tempada non pode ser cero - + Filter must end with semicolon O filtro debe rematar con punto e coma - + Three range types for episodes are supported: Acéptanse tres tipos de intervalo para os episodios: - + Single number: <b>1x25;</b> matches episode 25 of season one Número simple: <b>1x25;</b> é o episodio 25 da primeira tempada - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Intervalo normal: <b>1x25-40;</b> son os episodios 25 ao 40 da primeira tempada - + Episode number is a mandatory positive value O número de episodio debe ser un número positivo - + Rules Regras - + Rules (legacy) Regras (herdadas) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Intervalo infinito: <b>1x25-;</b> son os episodios do 25 en diante da primeira tempada e todos os episodios das tempadas seguintes - + Last Match: %1 days ago Último resultado: hai %1 días - + Last Match: Unknown Último resultado: descoñecido - + New rule name Nome da regra nova - + Please type the name of the new download rule. Escriba o nome da regra de descarga nova. - - + + Rule name conflict Conflito co nome da regra - - + + A rule with this name already exists, please choose another name. Xa existe unha regra con este nome. Escolla un diferente. - + Are you sure you want to remove the download rule named '%1'? Confirma a eliminación da regra de descarga chamada %1? - + Are you sure you want to remove the selected download rules? Confirma a eliminación das regras de descarga seleccionadas? - + Rule deletion confirmation Confirmación de eliminación da regra - + Invalid action Acción non válida - + The list is empty, there is nothing to export. A lista está baleira, non hai nada que exportar. - + Export RSS rules Exportar regras do RSS - + I/O Error Erro de E/S - + Failed to create the destination file. Reason: %1 Produciuse un fallo creando o ficheiro de destino. Razón: %1 - + Import RSS rules Importar regras do RSS - + Failed to import the selected rules file. Reason: %1 Produciuse un fallo ao importar o ficheiro de regras seleccionado. Razón: %1 - + Add new rule... Engadir unha regra nova... - + Delete rule Eliminar a regra - + Rename rule... Cambiar o nome da regra... - + Delete selected rules Eliminar as regras seleccionadas - + Clear downloaded episodes... Limpar episodios descargados... - + Rule renaming Cambio do nome da regra - + Please type the new rule name Escriba o nome da regra nova - + Clear downloaded episodes Limpar episodios descargados - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Confirma a eliminación da lista de episodios descargados pola regra seleccionada? - + Regex mode: use Perl-compatible regular expressions Modo Regex: usar expresións regulares compatíbeis con Perl - - + + Position %1: %2 Posición %1: %2 - + Wildcard mode: you can use Modo comodín: pode usar - - + + Import error Erro ao importar - + Failed to read the file. %1 Produciuse un erro ao ler o ficheiro. %1 - + ? to match any single character ? para substituír calquera carácter - + * to match zero or more of any characters * para substituír cero ou máis caracteres calquera - + Whitespaces count as AND operators (all words, any order) Os espazos en branco contan como operadores AND (todas as palabras, en calquera orde) - + | is used as OR operator | úsase como operador OR - + If word order is important use * instead of whitespace. Se a orde das palabras importa, use * no canto dun espazo en branco. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Unha expresión cunha condición baleira %1 (p.e.: %2) - + will match all articles. incluirá todos os artigos. - + will exclude all articles. excluirá todos os artigos. @@ -2074,28 +2085,38 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Non se puideron entender os datos de continuación: formato inválido - - + + Cannot parse torrent info: %1 Non se puido entender a información do torrent: %1 - + Cannot parse torrent info: invalid format Non se puido entender a información do torrent: formato inválido - + Mismatching info-hash detected in resume data Detectouse un info-hash non coincidente nos datos de reanudación - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Non foi posíbel gardar os metadatos do torrent en «%1». Erro: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Non foi posíbel gardar os datos de continuación do torrent en «%1». Erro: %2. @@ -2106,16 +2127,17 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d + Cannot parse resume data: %1 Non se puideron entender os datos de continuación: %1 - + Resume data is invalid: neither metadata nor info-hash was found Os datos de retorno son inválidos: non se atoparon nin metadatos nin hash de información - + Couldn't save data to '%1'. Error: %2 Non foi posíbel gardar os datos en «%1». Erro: %2 @@ -2123,38 +2145,60 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d BitTorrent::DBResumeDataStorage - + Not found. Non atopado - + Couldn't load resume data of torrent '%1'. Error: %2 Non foi posíbel cargar os datos de continuación do torrent «%1». Erro: %2 - - + + Database is corrupted. A base de datos está corrompida. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Non se puido activar o modo de rexistro de rexistro de escritura anticipada (WAL). Erro: %1. - + Couldn't obtain query result. Non se puido obter o resultado da consulta. - + WAL mode is probably unsupported due to filesystem limitations. O modo WAL probablemente non sexa compatible debido ás limitacións do sistema de ficheiros. - + + + Cannot parse resume data: %1 + Non se puideron entender os datos de continuación: %1 + + + + + Cannot parse torrent info: %1 + Non se puido entender a información do torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Non se puido comezar a transacción. Erro: %1 @@ -2162,22 +2206,22 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Non foi posíbel gardar os metadatos do torrent. Erro: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Non foi posíbel gardar os datos de continuación do torrent «%1». Erro: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Non foi posíbel eliminar os datos de continuación do torrent «%1». Erro: %2 - + Couldn't store torrents queue positions. Error: %1 Non foi posíbel gardar as posicións na cola de torrents. Erro: %1 @@ -2185,530 +2229,507 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Compatible con Táboa de Hash Distribuída (DHT): %1 - - - - - - - - - + + + + + + + + + ON ACTIVADO - - - - - - - - - + + + + + + + + + OFF DESACTIVADO - - + + Local Peer Discovery support: %1 Compatible coa busca de pares locais: %1 - + Restart is required to toggle Peer Exchange (PeX) support Precísase reiniciar para activar ou desactivar o intercambio de pares (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Non se puido continuar co torrent. Torrent: «%1». Motivo: «%2» - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Non se puido continuar co torrent: Detectado identificador do torrent inconsistente. Torrent: «%1» - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Detectados datos inconsistentes: non hai categoría no ficheiro de configuración. Recuperarase a categoría, pero coa configuración predeterminada. Torrent: «%1». Categoría: «%2» - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Detectados datos inconsistentes: categoría inválida. Torrent: «%1». Categoría: «%2» - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" A ruta onde gardar o torrent actual e o da categoría recuperada non coinciden. O torrent pasará a modo Manual. Torrent: «%1». Categoría: «%2» - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Datos inconsistentes: non se atopou etiqueta no ficheiro de configuración. A etiqueta recuperarase. Torrent: «%1». Etiqueta: «%2» - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Detectáronse datos incoherentes: etiqueta non válida. Torrent: "%1". Etiqueta: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Detectouse un evento de activación do sistema. Volve a anunciar a todos os rastrexadores... - + Peer ID: "%1" ID do par: "%1" - + HTTP User-Agent: "%1" Axente de usuario HTTP: "%1" - + Peer Exchange (PeX) support: %1 Soporte para intercambio de pares (PeX): %1 - - + + Anonymous mode: %1 Modo anónimo: %1 - - + + Encryption support: %1 Compatibilidade co cifrado: %1 - - + + FORCED FORZADO - + Could not find GUID of network interface. Interface: "%1" Non foi posíbel atopar o GUID da interface de rede. Interface: «%1» - + Trying to listen on the following list of IP addresses: "%1" Tentando escoitar a seguinte lista de enderezos IP: "%1" - + Torrent reached the share ratio limit. O torrent alcanzou o límite de proporción de compartición. - + Torrent: "%1". Torrent: «%1». - Removed torrent. - Torrent retirado. - - - Removed torrent and deleted its content. - Eliminouse o torrent e o seu contido. - - - Torrent paused. - Torrent detido - - - + Super seeding enabled. Modo super-sementeira activado. - + Torrent reached the seeding time limit. Torrent chegou ao límite de tempo de sementeira. - + Torrent reached the inactive seeding time limit. Torrent alcanzou o límite de tempo de semente inactivo. - + Failed to load torrent. Reason: "%1" Produciuse un erro ao cargar o torrent. Motivo: "%1" - + I2P error. Message: "%1". Erro I2P. Mensaxe: "%1". - + UPnP/NAT-PMP support: ON Soporte UPnP/NAT-PMP: ACTIVADO - + Saving resume data completed. - + Gardado dos datos de reanudación completado. - + BitTorrent session successfully finished. - + A sesión de BitTorrent rematou correctamente. - + Session shutdown timed out. - + Esgotouse o tempo de apagado da sesión. - + Removing torrent. - + Eliminando torrent. - + Removing torrent and deleting its content. - + Eliminando torrent e eliminando o seu contido. - + Torrent stopped. - + Torrent parou. - + Torrent content removed. Torrent: "%1" - + Eliminouse o contido do torrent. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Produciuse un erro ao eliminar o contido do torrent. Torrent: "%1". Erro: "%2" - + Torrent removed. Torrent: "%1" - + Eliminouse o torrent. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Detectouse un intento de engadir un torrent duplicado. Torrent existente: %1. Resultado: %2 - + Merging of trackers is disabled - A combinación de rastrexadores está desactivada + A combinación de rastrexadores está desactivada - + Trackers cannot be merged because it is a private torrent - Non se poden combinar os rastrexadores porque é un torrent privado + Non se poden combinar os rastrexadores porque é un torrent privado - + Trackers are merged from new source - Os rastreadores combínanse desde unha nova fonte + Os rastreadores combínanse desde unha nova fonte - + UPnP/NAT-PMP support: OFF Soporte UPnP/NAT-PMP: DESACTIVADO - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Produciuse un erro ao exportar o torrent. Torrent: "%1". Destino: "%2". Motivo: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Cancelouse o gardado dos datos de reanudación. Número de torrents pendentes: %1 - + The configured network address is invalid. Address: "%1" O enderezo de rede configurado non é válido. Enderezo: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Produciuse un erro ao atopar o enderezo de rede configurado para escoitar. Enderezo: "%1" - + The configured network interface is invalid. Interface: "%1" A interface de rede configurada non é válida. Interface: "%1" - + Tracker list updated - + Lista de rastrexadores actualizada - + Failed to update tracker list. Reason: "%1" - + Fallou a actualización da lista de rastrexadores. Razón: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Rexeitouse unha dirección IP non válida ao aplicar a lista de enderezos IP bloqueados. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Engadiuse un rastrexador ao torrent. Torrent: "%1". Rastrexador: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Eliminouse o rastrexador do torrent. Torrent: "%1". Rastrexador: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Engadiuse a semente de URL ao torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Eliminouse a semente URL do torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Produciuse un erro ao eliminar o ficheiro parcial. Torrent: "%1". Motivo: "%2". - Torrent paused. Torrent: "%1" - Torrent en pausa. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent reanudado. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Rematou a descarga do torrent. Torrent: "% 1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Cancelouse o traslado do torrent. Torrent: "%1". Orixe: "%2". Destino: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent parou. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Fallou ao engadir o traslado do torrent á cola. Torrent: "%1". Orixe: "%2". Destino: "%3". Razón: o torrent está actualmente en proceso de traslado ao destino - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Fallou ao engadir o traslado do torrent á cola. Torrent: "%1". Orixe: "%2". Destino: "%3". Razón: ambos camiños apuntan á mesma ubicación - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Traslado do torrent engadido á cola. Torrent: "%1". Orixe: "%2". Destino: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Comezar a mover o torrent. Torrent: "%1". Destino: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Produciuse un erro ao gardar a configuración das categorías. Ficheiro: "%1". Erro: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Produciuse un erro ao analizar a configuración das categorías. Ficheiro: "%1". Erro: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Analizouse correctamente o ficheiro de filtro IP. Número de regras aplicadas: %1 - + Failed to parse the IP filter file Produciuse un erro ao analizar o ficheiro do filtro IP - + Restored torrent. Torrent: "%1" Torrent restaurado. Torrent: "%1" - + Added new torrent. Torrent: "%1" Engadiuse un novo torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Erro no torrent. Torrent: "%1". Erro: "%2" - Removed torrent. Torrent: "%1" - Eliminouse o torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Eliminouse o torrent e o seu contido. Torrent: "% 1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Faltan parámetros SSL ao torrent. Torrent: "%1". Mensaxe: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Alerta de erro do ficheiro. Torrent: "%1". Ficheiro: "%2". Motivo: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Produciuse un erro na asignación de portos UPnP/NAT-PMP. Mensaxe: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" A asignación de portos UPnP/NAT-PMP realizouse correctamente. Mensaxe: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtro IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). porto filtrado (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). porto privilexiado (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Fallou a conexión do seed de URL. Torrent: "%1". URL: "%2". Erro: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" A sesión de BitTorrent atopou un erro grave. Motivo: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Erro de proxy SOCKS5. Enderezo: %1. Mensaxe: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. Restricións no modo mixto %1 - + Failed to load Categories. %1 Produciuse un erro ao cargar as categorías. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Produciuse un erro ao cargar a configuración das categorías. Ficheiro: "%1". Erro: "Formato de datos non válido" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Eliminouse o torrent pero fallou ao intentar borrar o seu contido e/ou ficheiro de parte. Torrent: "%1". Erro: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 está desactivado - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 está desactivado - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Produciuse un erro na busca de DNS de semente de URL. Torrent: "%1". URL: "%2". Erro: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Recibiuse unha mensaxe de erro da semente de URL. Torrent: "%1". URL: "%2". Mensaxe: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Escoitando con éxito en IP. IP: "%1". Porto: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Produciuse un erro ao escoitar en IP. IP: "%1". Porto: "%2/%3". Motivo: "%4" - + Detected external IP. IP: "%1" IP externa detectada. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Erro: a cola de alertas internas está chea e as alertas quítanse, é posible que vexa un rendemento degradado. Tipo de alerta eliminada: "%1". Mensaxe: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Moveuse o torrent correctamente. Torrent: "%1". Destino: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Produciuse un erro ao mover o torrent. Torrent: "%1". Orixe: "%2". Destino: "%3". Motivo: "%4" @@ -2758,47 +2779,47 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Non se puido escribir no ficheiro. Razón: "%1". O torrent agora está en modo "só carga". - + Download first and last piece first: %1, torrent: '%2' Descargar primeiro os anacos inicial e final: %1, torrent: «%2» - + On Activado - + Off Desactivado - + Failed to reload torrent. Torrent: %1. Reason: %2 Fallou ao recargar o torrent. Torrent: %1. Razón: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Fallou ao xerar datos de reanudación. Torrent: "%1". Razón: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Fallou ao restaurar o torrent. Probablemente, os ficheiros foron movidos ou o almacenamento non está accesible. Torrent: "%1". Razón: "%2" - + Missing metadata Faltan metadatos - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Produciuse un fallo renomeando o ficheiro. Torrent: «%1», ficheiro: «%2», razón: «%3» - + Performance alert: %1. More info: %2 Alerta de rendemento: %1. Máis información: %2 @@ -2835,11 +2856,6 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Expected integer number in environment variable '%1', but got '%2' Agardábase un número enteiro na variábel de contorno «%1» pero obtívose o «%2» - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - O parámetro «%1» deber seguir a sintaxe «%1=%2» - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - O parámetro «%1» deber seguir a sintaxe «%1=%2» + O parámetro «%1» deber seguir a sintaxe «%1=%2» @@ -2968,11 +2984,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Add torrents as running or stopped - - - - Add torrents as started or paused - Engadir torrents como iniciados ou detidos + Engadir torrents como activos ou detidos @@ -3063,20 +3075,12 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Continuar os torrents - - - Pause torrents - Deter os torrents + Deter torrents @@ -3099,7 +3103,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d System - + Sistema @@ -3174,11 +3178,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Also remove the content files - - - - Also permanently delete the files - Tamén elimina permanentemente os ficheiros + Elimina tamén os ficheiros de contido @@ -3390,47 +3390,43 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Pattern Format - + Formato do patrón Plain text - + Texto simple Wildcards - + Comodíns Regular expression - + Expresión regular GUIAddTorrentManager - + Downloading torrent... Source: "%1" Descargando torrent... Fonte: "% 1" - Trackers cannot be merged because it is a private torrent - Non se poden combinar os rastrexadores porque é un torrent privado - - - + Torrent is already present O torrent xa existe - + Trackers cannot be merged because it is a private torrent. - + Non se poden combinar os trackers porque é un torrent privado. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? O torrent «%1» xa está na lista de transferencias. Quere combinar os localizadores da nova fonte? @@ -3548,6 +3544,40 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Ficheiros de imaxe compatibles + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + A xestión de enerxía atopou a interface D-Bus adecuada. Interface: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Erro de xestión de enerxía. Acción: %1. Erro: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Erro inesperado na xestión de enerxía. Estado: %1. Erro: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d &Options... &Opcións... - - &Resume - Continua&r - &Remove @@ -3762,7 +3788,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Sh&utdown System - + A&pagar o sistema @@ -3774,10 +3800,6 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Close Window Pechar xanela - - R&esume All - Co&ntinuar todo - Manage Cookies... @@ -3816,22 +3838,22 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Sta&rt - + Comeza&r Sto&p - + De&ter R&esume Session - + R&eanudar a sesión Pau&se Session - + Poñer en pau&sa a sesión @@ -3893,10 +3915,6 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d &Hibernate System &Hibernar o sistema - - S&hutdown System - Pe&char o sistema - &Statistics @@ -3917,14 +3935,6 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d &About &Sobre - - &Pause - &Deter - - - P&ause All - D&eter todo - &Add Torrent File... @@ -3958,12 +3968,12 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d - + Show Mostrar - + Check for program updates Buscar actualizacións do programa @@ -3978,388 +3988,382 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Se lle gusta o qBittorrent, por favor faga unha doazón! - + Execution Log Rexistro de execución - + Clear the password Limpar o contrasinal - + &Set Password E&stabelecer o contrasinal - + Preferences Preferencias - + &Clear Password &Limpar o contrasinal - + Transfers Transferencias - - + + qBittorrent is minimized to tray O qBittorrent está minimizado na bandexa - - - + + + This behavior can be changed in the settings. You won't be reminded again. Pode cambiar este comportamento nos axustes. Non será avisado de novo. - + Icons Only Só iconas - + Text Only Só texto - + Text Alongside Icons Texto e iconas - + Text Under Icons Texto debaixo das iconas - + Follow System Style Seguir o estilo do sistema - - + + UI lock password Contrasinal de bloqueo da interface - - + + Please type the UI lock password: Escriba un contrasinal para bloquear a interface: - + Are you sure you want to clear the password? Confirma a eliminación do contrasinal? - + Use regular expressions Usar expresións regulares - - + + Search Engine - Buscador + Motor de busca - + Search has failed - A busca fallou + A busca fallou - + Search has finished - A busca rematou + A busca rematou - + Search Buscar - + Transfers (%1) Transferencias (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. O qBittorrent foi actualizado e necesita reiniciarse para que os cambios sexan efectivos. - + qBittorrent is closed to tray O qBittorrent está pechado na bandexa - + Some files are currently transferring. Neste momento estanse transferindo algúns ficheiros. - + Are you sure you want to quit qBittorrent? Confirma que desexa saír do qBittorrent? - + &No &Non - + &Yes &Si - + &Always Yes &Sempre si - + Options saved. Opcións gardadas. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSADO] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Non se puido descargar o instalador de Python. Erro: %1. Por favor, instálao manualmente. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Fallou o cambio de nome do instalador de Python. Fonte: "%1". Destino: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Instalación de Python completada con éxito. + Exit code: %1. + Código de saída: %1. + + + + Reason: installer crashed. + Razón: o instalador fallou. + + + Python installation failed. - + A instalación de Python fallou. - + Launching Python installer. File: "%1". - + Iniciando o instalador de Python. Ficheiro: "%1". - - + + Missing Python Runtime Falta o tempo de execución do Python - + qBittorrent Update Available Hai dipoñíbel unha actualización do qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Precísase Python para usar o motor de busca pero non parece que estea instalado. Desexa instalalo agora? - + Python is required to use the search engine but it does not seem to be installed. Precísase Python para usar o motor de busca pero non parece que estea instalado. - - + + Old Python Runtime Tempo de execución de Python antigo - + A new version is available. Hai dispoñíbel unha nova versión. - + Do you want to download %1? Desexa descargar %1? - + Open changelog... Abrir o rexistro de cambios... - + No updates available. You are already using the latest version. Non hai actualizacións dispoñíbeis. Xa usa a última versión. - + &Check for Updates Buscar a&ctualizacións - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? A versión do Python (%1) non está actualizada. Requerimento mínimo: %2 Desexa instalar unha versión máis recente? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. A súa versión de Python (%1) non está actualizada. Anove á última versión para que os motores de busca funcionen. Requirimento mínimo: %2. - + Paused - Detidos + Detido - + Checking for Updates... Buscando actualizacións... - + Already checking for program updates in the background Xa se están buscando actualizacións do programa en segundo plano - + Python installation in progress... - + Instalación de Python en progreso... - + Failed to open Python installer. File: "%1". - + Non se puido abrir o instalador de Python. Ficheiro: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Fallou a verificación do hash MD5 para o instalador de Python. Ficheiro: "%1". Hash resultante: "%2". Hash esperado: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Fallou a verificación do hash SHA3-512 para o instalador de Python. Ficheiro: "%1". Hash resultante: "%2". Hash esperado: "%3". - + Download error Erro de descarga - Python setup could not be downloaded, reason: %1. -Please install it manually. - Non foi posíbel descargar a configuración de Python, razón:%1. -Instálea manualmente. - - - - + + Invalid password Contrasinal incorrecto - + Filter torrents... Filtrar torrents... - + Filter by: Filtrar por: - + The password must be at least 3 characters long O contrasinal debe ter polo menos 3 caracteres. - - - + + + RSS (%1) RSS (%1) - + The password is invalid O contrasinal é incorrecto - + DL speed: %1 e.g: Download speed: 10 KiB/s Vel. de descarga: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Vel. de envío: %1 - + Hide Ocultar - + Exiting qBittorrent Saíndo do qBittorrent - + Open Torrent Files Abrir os ficheiros torrent - + Torrent Files Ficheiros torrent @@ -4556,7 +4560,7 @@ Instálea manualmente. SSL error, URL: "%1", errors: "%2" - + Erro SSL, URL: "%1", erros: "%2" @@ -5853,47 +5857,47 @@ Instálea manualmente. Net::Smtp - + Connection failed, unrecognized reply: %1 Fallou a conexión, resposta non recoñecida: %1 - + Authentication failed, msg: %1 Fallou a autenticación, mensaxe: %1 - + <mail from> was rejected by server, msg: %1 <mail from> foi rexeitado polo servidor, mensaxe: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> foi rexeitado polo servidor, mensaxe: %1 - + <data> was rejected by server, msg: %1 <data> foi rexeitado polo servidor, mensaxe: %1 - + Message was rejected by the server, error: %1 O servidor rexeitou a mensaxe, erro: %1 - + Both EHLO and HELO failed, msg: %1 Tanto EHLO como HELO fallaron, mensaxe: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Parece que o servidor SMTP non admite ningún dos modos de autenticación que admitimos [CRAM-MD5|PLAIN|LOGIN], omitindo a autenticación, sabendo que é probable que falle... Modos de autenticación do servidor: %1 - + Email Notification Error: %1 Erro de notificación por correo electrónico: %1 @@ -5935,10 +5939,6 @@ Instálea manualmente. RSS RSS - - Web UI - Interface web - Advanced @@ -5959,14 +5959,6 @@ Instálea manualmente. Confirm when deleting torrents Confirmar a eliminación dos torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Mostra un diálogo de confirmación ao pausar/retomar todos os torrents - - - Confirm "Pause/Resume all" actions - Confirmar as accións de "Pausar/Reanudar todo" - Use alternating row colors @@ -5983,10 +5975,6 @@ Instálea manualmente. Always Sempre - - Paused torrents only - Só os torrents detidos - Action on double-click @@ -5997,10 +5985,6 @@ Instálea manualmente. Downloading torrents: Descargando os torrents: - - Start / Stop Torrent - Iniciar / Parar o torrent - @@ -6059,179 +6043,179 @@ Instálea manualmente. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Disposición do contido torrent: - + Original Orixinal - + Create subfolder Crear subcartafol - + Don't create subfolder Non crear subcartafol - + The torrent will be added to the top of the download queue O torrent será engadido á parte superior da cola de descargas - + Add to top of queue The torrent will be added to the top of the download queue Engadir á parte superior da cola - + When duplicate torrent is being added Cando se engade torrent duplicado - + Merge trackers to existing torrent Combina rastrexadores co torrent existente - + Keep unselected files in ".unwanted" folder Manteña os ficheiros non seleccionados no cartafol ".unwanted". - + Add... Engadir... - + Options.. Opcións... - + Remove Eliminar - + Email notification &upon download completion Enviar unha notificación por &correo-e ao rematar a descarga - + Send test email - + Enviar correo electrónico de proba - + Run on torrent added: - + Executar no torrent engadido: - + Run on torrent finished: - + Execucutar no torrent rematado: - + Peer connection protocol: Protocolo de conexión de pares: - + Any Calquera - + I2P (experimental) I2P (experimental) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Se o &quot;modo mixto&quot; está activado. Os torrents I2P tamén poden obter pares doutras fontes que non sexan o rastrexador e conectarse a IPs habituais, sen proporcionar ningún anonimato. Isto pode ser útil se o usuario non está interesado na anonimización de I2P, pero aínda así quere poder conectarse a pares I2P.</p></body></html> - - - + Mixed mode Modo mixto - Some options are incompatible with the chosen proxy type! - Algunhas opcións son incompatibles co tipo de proxy escollido! + Algunhas opcións son incompatibles co tipo de proxy escollido! - + If checked, hostname lookups are done via the proxy Se está marcado, as buscas de nomes de host realízanse a través do proxy - + Perform hostname lookup via proxy Realizar a busca do nome de host a través do proxy - + Use proxy for BitTorrent purposes Use proxy para propósitos de BitTorrent - + RSS feeds will use proxy As fontes RSS usarán un proxy - + Use proxy for RSS purposes Use proxy para propósitos RSS - + Search engine, software updates or anything else will use proxy O buscador, as actualizacións de software ou calquera outra cousa usarán proxy - + Use proxy for general purposes Use proxy para fins xerais - + IP Fi&ltering Fi&ltrado de IPs - + Schedule &the use of alternative rate limits Programar o uso de lími&tes alternativos de velocidade - + From: From start time De: - + To: To end time A: - + Find peers on the DHT network Buscar pares na rede DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6224,190 @@ Requirir cifrado: conectarse só cos pares con protocolo de cifrado. Desactivar cifrado: conectarse só cos pares sen protocolo de cifrado. - + Allow encryption Permitir cifrado - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Máis información</a>) - + Maximum active checking torrents: Número máximo de torrents en comprobación activa: - + &Torrent Queueing &Cola de torrents - + When total seeding time reaches Cando o tempo total de compartición alcance - + When inactive seeding time reaches Cando o tempo de compartición inactiva alcance - A&utomatically add these trackers to new downloads: - Engadir &automaticamente estes localizadores ás novas descargas: - - - + RSS Reader Lector RSS - + Enable fetching RSS feeds Activar a busca de fontes RSS - + Feeds refresh interval: Intervalo de actualización de fontes: - + Same host request delay: Retraso na solicitude ao mesmo anfitrión: - + Maximum number of articles per feed: Número máximo de artigos por fonte: - - - + + + min minutes min. - + Seeding Limits Límites da sementeira - Pause torrent - Deter o torrent - - - + Remove torrent Retirar o torrent - + Remove torrent and its files Eliminar o torrent e os ficheiros - + Enable super seeding for torrent Activar a supersementeira para o torrent - + When ratio reaches Cando a taxa alcance - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Deter torrent - + A&utomatically append these trackers to new downloads: - + Engade a&utomaticamente estes rastrexadores ás novas descargas: - + Automatically append trackers from URL to new downloads: - + Engadir automaticamente os rastreadores desde a URL ás novas descargas: - + URL: - URL: + URL: - + Fetched trackers - + Rastrexadores obtidos - + Search UI - + Interfaz de busca - + Store opened tabs - + Gardar as pestanas abertas - + Also store search results - + Tamén gardar os resultados da busca - + History length - + Lonxitude do historial - + RSS Torrent Auto Downloader Xestor de descargas automático de torrents por RSS - + Enable auto downloading of RSS torrents Activar a descarga automática dos torrents do RSS - + Edit auto downloading rules... Editar as regras da descarga automática... - + RSS Smart Episode Filter Filtro intelixente de episodios RSS - + Download REPACK/PROPER episodes Descargar episodios con novas versións - + Filters: Filtros: - + Web User Interface (Remote control) Interface de usuario web (control remoto) - + IP address: Enderezo IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6431,41 +6417,37 @@ Especificar un enderezo IPv4 ou IPv6. Pode especificar «0.0.0.0» IPv6 ou «*» para ambos os IPv4 e IPv6. - + Ban client after consecutive failures: Prohibir clientes despois de fallos sucesivos: - + Never Nunca - + ban for: prohibir durante: - + Session timeout: Tempo límite da sesión: - + Disabled Desactivado - Enable cookie Secure flag (requires HTTPS) - Activar o indicador de seguranza para cookies (require HTTPS) - - - + Server domains: Dominios do servidor: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6478,37 +6460,37 @@ deberia poñer nomes de dominios usados polo servidor WebUI. Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». - + &Use HTTPS instead of HTTP &Usar HTTPS no canto de HTTP - + Bypass authentication for clients on localhost Omitir autenticación para clientes no servidor local - + Bypass authentication for clients in whitelisted IP subnets Omitir a autenticación para clientes nas subredes con IP incluídas na lista branca - + IP subnet whitelist... Lista branca de subredes con IP... - + Use alternative WebUI - + Use unha WebUI alternativa - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Especifica as IPs do proxy inverso (ou subredes, por exemplo, 0.0.0.0/24) para usar a dirección do cliente reencamiñada (cabeceira X-Forwarded-For). Usa ';' para separar varias entradas. - + Upda&te my dynamic domain name Actualizar o no&me do dominio dinámico @@ -6520,12 +6502,12 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Search - Buscar + Buscar WebUI - + WebUI @@ -6540,29 +6522,29 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Style: - + Estilo: Color scheme: - + Esquema de cores: Stopped torrents only - + Só torrents detidos Start / stop torrent - + Iniciar/deter o torrent Open torrent options dialog - + Abrir o diálogo de opcións de torrent @@ -6603,7 +6585,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». &Log Files - + &Ficheiros de rexistro @@ -6621,99 +6603,99 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Eliminar rexistros das copias de seguranza con máis de: - + Show external IP in status bar - + Mostra a IP externa na barra de estado - + When adding a torrent Cando engada un torrent - + Bring torrent dialog to the front Traer ao primeiro plano o diálogo torrent - + The torrent will be added to download list in a stopped state - + O torrent engadirase á lista de descargas no estado detido - + Also delete .torrent files whose addition was cancelled Eliminar tamén os ficheiros .torrent cando se cancele a adición - + Also when addition is cancelled Tamén cando se cancele a adición - + Warning! Data loss possible! Aviso! É posíbel que se perdan datos. - + Saving Management Xestión de gardar no disco - + Default Torrent Management Mode: Modo de xestión de torrents predeterminado: - + Manual Manual - + Automatic Automático - + When Torrent Category changed: Cando a categoría do torrent cambiou: - + Relocate torrent Mover o torrent - + Switch torrent to Manual Mode Cambiar o torrent a modo manual - - + + Relocate affected torrents Mover os torrents afectados - - + + Switch affected torrents to Manual Mode Cambiar os torrents afectados ao modo manual - + Use Subcategories Usar subcategorías - + Default Save Path: Ruta de gardado predeterminada: - + Copy .torrent files to: Copiar os ficheiros torrent a: @@ -6723,26 +6705,22 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Mostrar o &qBittorrent na área de notificacións - &Log file - &Ficheiro do rexistro - - - + Display &torrent content and some options Mostrar o contido do &torrent e algunhas opcións - + De&lete .torrent files afterwards E&liminar os ficheiros .torrent despois - + Copy .torrent files for finished downloads to: Copiar os ficheiros torrent das descargas rematadas a: - + Pre-allocate disk space for all files Pre-asignar espazo no disco a todos os ficheiros @@ -6772,10 +6750,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Preview file, otherwise open destination folder Previsualizar ficheiro, do contrario abrir o cartafol de destino - - Show torrent options - Mostrar as opcións de torrent - Shows a confirmation dialog when exiting with active torrents @@ -6841,69 +6815,65 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».anos - + Log performance warnings Rexistrar avisos de rendemento - The torrent will be added to download list in a paused state - O torrent engadirase á lista e descarga en estado detido - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Non iniciar a descarga automaticamente - + Whether the .torrent file should be deleted after adding it Indica se se debe eliminar o ficheiro .torrent despois de engadilo - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Asignar os tamaños completos dos ficheiros no disco antes de iniciar as descargas para minimizar así a fragmentación. Só útil para HDD. - + Append .!qB extension to incomplete files Anexar a extensión !qB aos nomes dos ficheiros incompletos - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Descargado un torrent, ofrecer engadir torrents de calquera ficheiro .torrent atopado dentro del. - + Enable recursive download dialog Activar o diálogo de descarga recursiva - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automático: varias propiedades do torrent (p.e: a ruta de gardado) serán decididas pola categoría asociada. Manual: varias propiedades do torrent (p.e: a ruta de gardado) deben asignarse manualmente. - + When Default Save/Incomplete Path changed: Cando se cambie a Ruta de Gardado/ Incompleta por Defecto: - + When Category Save Path changed: Cando a ruta de gardado da categoría cambiou: - + Use Category paths in Manual Mode Usar as rutas de Categoría no modo manual - + Resolve relative Save Path against appropriate Category path instead of Default one Determinar a Ruta Onde Gardar relativa segundo a ruta da Categoría apropiada no canto da predeterminada. @@ -6923,50 +6893,50 @@ Manual: varias propiedades do torrent (p.e: a ruta de gardado) deben asignarse m Estado da xanela de qBittorrent ao iniciar - + Torrent stop condition: Condición de parada do torrent: - - + + None Ningún - - + + Metadata received Metadatos recibidos - - + + Files checked Ficheiros comprobados - + Ask for merging trackers when torrent is being added manually Solicitar a combinación de rastrexadores cando se engade o torrent manualmente - + Use another path for incomplete torrents: Usar outra ruta para os torrents incompletos: - + Automatically add torrents from: Engadir automaticamente os torrents desde: - + Excluded file names Nomes de ficheiros excluídos - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6995,523 +6965,510 @@ readme.txt: filtra o nome do ficheiro exacto. readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero non 'readme10.txt'. - + Receiver Receptor - + To: To receiver A: - + SMTP server: Servidor SMTP: - + Sender Remitente - + From: From sender De: - + This server requires a secure connection (SSL) Este servidor require unha conexión segura (SSL) - - + + Authentication Autenticación - - - - + + + + Username: Nome do usuario: - - - - + + + + Password: Contrasinal: - + Run external program Executar programa externo - Run on torrent added - Executar ao engadir o torrent - - - Run on torrent finished - Executar ao rematar o torrent - - - + Show console window Mostrar a xanela da consola - + TCP and μTP TCP e μTP - + Listening Port Porto de escoita - + Port used for incoming connections: Porto usado para as conexións entrantes: - + Set to 0 to let your system pick an unused port Estabelézao en 0 para que o seu sistema escolla un porto non utilizado - + Random Aleatorio - + Use UPnP / NAT-PMP port forwarding from my router Usar un porto UPnP / NAT-PMP para reencamiñar desde o router - + Connections Limits Límites da conexión - + Maximum number of connections per torrent: Número máximo de conexións por torrent: - + Global maximum number of connections: Número máximo global de conexións: - + Maximum number of upload slots per torrent: Número máximo de slots de envío por torrent: - + Global maximum number of upload slots: Número máximo global de slots de envío: - + Proxy Server Servidor proxy - + Type: Tipo: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Servidor: - - - + + + Port: Porto: - + Otherwise, the proxy server is only used for tracker connections Doutro xeito, o servidor proxy usarase unicamente para conexións co localizador - + Use proxy for peer connections Usar o proxy para conexións cos pares - + A&uthentication A&utenticación - Info: The password is saved unencrypted - Información: o contrasinal gárdase sen cifrar + Información: o contrasinal gárdase sen cifrar - + Filter path (.dat, .p2p, .p2b): Ruta do filtro (.dat, .p2p, .p2b): - + Reload the filter Recargar o filtro - + Manually banned IP addresses... Enderezos IP bloqueados manualmente... - + Apply to trackers Aplicar aos localizadores - + Global Rate Limits Límites globais de velocidade - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Enviar: - - + + Download: Descargar: - + Alternative Rate Limits Límites alternativos de velocidade - + Start time Hora de inicio - + End time Hora de remate - + When: Cando: - + Every day Todos os días - + Weekdays Entresemana - + Weekends Fins de semana - + Rate Limits Settings Axustes dos límites de velocidade - + Apply rate limit to peers on LAN Aplicar o límite de velocidade aos pares da LAN - + Apply rate limit to transport overhead Aplicar os límites de velocidade ás sobrecargas do transporte - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Se o "modo mixto" está activado, os torrents I2P tamén poden obter pares doutras fontes que non sexan o rastrexador e conectarse a IPs habituais, sen proporcionar ningún anonimato. Isto pode ser útil se o usuario non está interesado na anonimización de I2P, pero aínda así quere poder conectarse a pares I2P.</p></body></html> - + Apply rate limit to µTP protocol Aplicar o límite de velocidade ao protocolo uTP - + Privacy Confidencialidade - + Enable DHT (decentralized network) to find more peers Activar o DHT (rede descentralizada) para encontrar máis pares - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Clientes de bittorrent compatíbeis co intercambio de pares (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Activar o intercambio de pares (PeX) para buscar máis pares - + Look for peers on your local network Buscar pares na súa rede local - + Enable Local Peer Discovery to find more peers Activar a busca de pares locais (LPD) para encontrar máis pares - + Encryption mode: Modo cifrado: - + Require encryption Precisa cifrado - + Disable encryption Desactivar o cifrado - + Enable when using a proxy or a VPN connection Activar cando se use unha conexión proxy ou VPN - + Enable anonymous mode Activar o modo anónimo - + Maximum active downloads: Descargas activas máximas: - + Maximum active uploads: Envíos activos máximos: - + Maximum active torrents: Torrents activos máximos: - + Do not count slow torrents in these limits Non ter en conta os torrents lentos nestes límites - + Upload rate threshold: Límite da velocidade de envío: - + Download rate threshold: Límite da velocidade de descarga: - - - - + + + + sec seconds s - + Torrent inactivity timer: Temporizador de inactividade do torrent: - + then despois - + Use UPnP / NAT-PMP to forward the port from my router Usar un porto UPnP / NAT-PMP para reencamiñar desde o router - + Certificate: Certificado: - + Key: Chave: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Información sobre certificados</a> - + Change current password Cambiar o contrasinal actual - Use alternative Web UI - Usar a interface web alternativa - - - + Files location: Localización dos ficheiros: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Lista de WebUI alternativos </a> - + Security Seguranza - + Enable clickjacking protection Activar a protección contra clics enganosos - + Enable Cross-Site Request Forgery (CSRF) protection Activar a protección contra falsificacións de peticións entre sitios web (CSRF). - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Activar a marca de cookies segura (require HTTPS ou conexión localhost) - + Enable Host header validation Activar a validación da cabeceira do servidor - + Add custom HTTP headers Engadir cabeceiras HTTP personalizadas - + Header: value pairs, one per line Cabeceira: pares de valores, un por liña - + Enable reverse proxy support Activar a compatibilidade co proxy inverso - + Trusted proxies list: Lista de proxys de confiaza: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Exemplos de configuración de proxy inverso</a> - + Service: Servizo: - + Register Rexistro - + Domain name: Nome do dominio: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Activando estas opcións, pode <strong>perder definitivamente</strong> os seus ficheiros .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Se activa a segunda opción (&ldquo;Tamén cando se cancele a edición&rdquo;) o ficheiro .torrent <strong>eliminarase</strong> incluso se vostede preme &ldquo;<strong>Cancelar</strong>&rdquo; no diálogo &ldquo;Engadir torrent&rdquo; @@ -7521,12 +7478,12 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Seleccionar o tema da interface para qBittorrent - + Choose Alternative UI files location Seleccione localización alternativa dos ficheiros da interface de usuario - + Supported parameters (case sensitive): Parámetros aceptados (sensíbel ás maiúsc.) @@ -7546,183 +7503,183 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Desactivado debido a que non se puido detectar a presenza da bandexa do sistema - + No stop condition is set. Non se establece ningunha condición de parada. - + Torrent will stop after metadata is received. O torrent deterase despois de recibir os metadatos. - + Torrent will stop after files are initially checked. O torrent deterase despois de que se comproben inicialmente os ficheiros. - + This will also download metadata if it wasn't there initially. Isto tamén descargará metadatos se non estaban alí inicialmente. - + %N: Torrent name %N: Nome do torrent - + %L: Category %L: Categoría - + %F: Content path (same as root path for multifile torrent) %F: Ruta ao contido (igual á ruta raíz pero para torrents de varios ficheiros) - + %R: Root path (first torrent subdirectory path) %R: Ruta raíz (ruta ao subcartafol do primeiro torrent) - + %D: Save path %D: Ruta onde gardar - + %C: Number of files %C: Número de ficheiros - + %Z: Torrent size (bytes) %Z: Tamaño do torrent (bytes) - + %T: Current tracker %T: Localizador actual - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Consello: escriba o parámetro entre comiñas para evitar que o texto se corte nos espazos en branco (p.e: "%N") - + Test email - + Correo electrónico de proba - + Attempted to send email. Check your inbox to confirm success - + Tentouse enviar correo electrónico. Comprobe a súa caixa de entrada para confirmar o éxito - + (None) (Ningún) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Un torrent considerarase lento se a descarga e o envío se manteñen por debaixo dos valores do «Temporizador de inactividade do torrent» en segundos. - + Certificate Certificado - + Select certificate Seleccionar certificado - + Private key Chave privada - + Select private key Seleccionar a chave privada - + WebUI configuration failed. Reason: %1 Fallou a configuración da WebUI. Motivo: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + Recoméndase %1 para a mellor compatibilidade co modo escuro de Windows. - + System System default Qt style - + Sistema - + Let Qt decide the style for this system - + Deixar que Qt decida o estilo para este sistema - + Dark Dark color scheme - + Escuro - + Light Light color scheme - + Claro - + System System color scheme - + Sistema - + Select folder to monitor Seleccionar o cartafol a monitorizar - + Adding entry failed Produciuse un fallo engadindo a entrada - + The WebUI username must be at least 3 characters long. O nome de usuario da WebUI debe ter polo menos 3 caracteres. - + The WebUI password must be at least 6 characters long. O contrasinal da WebUI debe ter polo menos 6 caracteres. - + Location Error Erro de localización - - + + Choose export directory Seleccionar un cartafol de exportación - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Cando estas opcións están activadas, o qBittorent <strong>elimina</strong> os ficheiros .torrent despois de seren engadidos correctamente (primeira opción) ou non (segunda opción) á cola de descargas. Isto aplicarase <strong>non só</strong> aos ficheiros abertos desde o menú &ldquo;Engadir torrent&rdquo; senón tamén a aqueles abertos vía <strong>asociación co tipo de ficheiro</strong> @@ -7732,69 +7689,69 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Ficheiro co tema da interface do qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiquetas (separadas por coma) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (ou '-' se non está dispoñíbel) - + %J: Info hash v2 (or '-' if unavailable) %I: Info hash v2 (ou '-' se non está dispoñíbel) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) % K: ID do torrent (hash de información sha-1 para torrent v1 ou hash de información sha-256 truncado para v2 / torrent híbrido) - - + + Choose a save directory Seleccionar un cartafol onde gardar - + Torrents that have metadata initially will be added as stopped. Os torrents que teñan metadatos inicialmente engadiranse como parados. - + Choose an IP filter file Seleccionar un ficheiro cos filtros de ip - + All supported filters Todos os ficheiros compatíbeis - + The alternative WebUI files location cannot be blank. A localización alternativa dos ficheiros WebUI non pode estar en branco. - + Parsing error Erro de análise - + Failed to parse the provided IP filter Produciuse un fallo ao analizar o filtro Ip indicado - + Successfully refreshed Actualizado correctamente - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Analizouse correctamente o filtro IP indicado: aplicáronse %1 regras. @@ -7805,18 +7762,18 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Preferencias - + Time Error Erro de hora - + The start time and the end time can't be the same. A hora de inicio e de remate teñen que ser distintas. - - + + Length Error Erro de lonxitude @@ -7901,169 +7858,169 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no Peer is using NAT hole punching - + O par está a usar NAT hole punching PeerListWidget - + Country/Region País/Rexión - + IP/Address IP/Enderezo - + Port Porto - + Flags Marcas - + Connection Conexión - + Client i.e.: Client application Cliente - + Peer ID Client i.e.: Client resolved from Peer ID Cliente de identificación de pares - + Progress i.e: % downloaded Progreso - + Down Speed i.e: Download speed Vel. de descarga - + Up Speed i.e: Upload speed V. de envío - + Downloaded i.e: total data downloaded Descargado - + Uploaded i.e: total data uploaded Enviado - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevancia - + Files i.e. files that are being downloaded right now Ficheiros - + Column visibility Visibilidade da columna - + Resize columns Redimensionar columnas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as columnas visíbeis ao tamaño dos contidos - + Add peers... Engadir pares... - - + + Adding peers Engadindo pares - + Some peers cannot be added. Check the Log for details. Non foi posíbel engadir algúns pares. Mira o rexistro para obter máis información. - + Peers are added to this torrent. Os pares son engadidos a este torrent. - - + + Ban peer permanently Bloquear este par pemanentemente - + Cannot add peers to a private torrent Non é posíbel engadir pares a un torrent privado - + Cannot add peers when the torrent is checking Non é posíbel engadir pares cando o torrent está en comprobación - + Cannot add peers when the torrent is queued Non é posíbel engadir pares cando o torrent está na cola - + No peer was selected Non se seleccionou ningún par - + Are you sure you want to permanently ban the selected peers? Confirma o bloqueo permantemente dos pares seleccionados? - + Peer "%1" is manually banned O par «%1» está expulsado manualmente - + N/A N/D - + Copy IP:port Copiar IP:porto @@ -8345,34 +8302,27 @@ Desactiváronse estes engadidos. PowerManagement - qBittorrent is active - O qBittorrent está activo + O qBittorrent está activo PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - A xestión de enerxía atopou a interface D-Bus adecuada. Interface: %1 + A xestión de enerxía atopou a interface D-Bus adecuada. Interface: %1 - Power management error. Did not found suitable D-Bus interface. - Erro de xestión de enerxía. Non se atopou a interface D-Bus adecuada. + Erro de xestión de enerxía. Non se atopou a interface D-Bus adecuada. - - - Power management error. Action: %1. Error: %2 - Erro de xestión de enerxía. Acción: %1. Erro: %2 + Erro de xestión de enerxía. Acción: %1. Erro: %2 - Power management unexpected error. State: %1. Error: %2 - Erro inesperado na xestión de enerxía. Estado: %1. Erro: %2 + Erro inesperado na xestión de enerxía. Estado: %1. Erro: %2 @@ -8616,12 +8566,12 @@ Desactiváronse estes engadidos. Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Tempo activo (en meses), indica a popularidade do torrent Popularity: - + Popularidade: @@ -8656,7 +8606,7 @@ Desactiváronse estes engadidos. Private: - + Privado: @@ -8664,153 +8614,124 @@ Desactiváronse estes engadidos. Ruta: - + Never Nunca - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ten %3) - - + + %1 (%2 this session) %1 (%2 nesta sesión) - - + + N/A N/D - + Yes - Si + Si - + No - Non + Non - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (sementou durante %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 máx.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 de media) - + Add web seed Add HTTP source - + Engade semente web - + Add web seed: - + Engade semente web: - - + + This web seed is already in the list. - + Esta semente web xa está na lista. - New Web seed - Nova semente web - - - Remove Web seed - Retirar semente web - - - Copy Web seed URL - Copiar URL da semente web - - - Edit Web seed URL - Editar URL da semente web - - - + Filter files... Ficheiros dos filtros... - + Add web seed... - + Engadir semente web... - + Remove web seed - + Elimina a semente web - + Copy web seed URL - + Copiar o URL de semente web - + Edit web seed URL... - + Editar URL de semente web... - + Speed graphs are disabled Os gráficos de velocidade están desactivados - + You can enable it in Advanced Options Pode activalo nas opcións avanzadas - New URL seed - New HTTP source - Nova semente desde unha url - - - New URL seed: - Nova semente desde unha url: - - - This URL seed is already in the list. - Esta semente desde unha url xa está na lista. - - - + Web seed editing Edición da semente web - + Web seed URL: URL da semente web: @@ -8818,33 +8739,33 @@ Desactiváronse estes engadidos. RSS::AutoDownloader - - + + Invalid data format. O formato dos datos non é válido. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Non foi posíbel gardar os datos do descargador automátido de RSS en %1. Erro: %2 - + Invalid data format O formato dos datos non é válido - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... O artigo RSS '%1' é aceptado pola regra '%2'. Tentando engadir torrent... - + Failed to read RSS AutoDownloader rules. %1 Produciuse un erro ao ler as regras de descarga automática de RSS. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Non foi posíbel cargar as regras do descargador automático de RSS. Razón: %1 @@ -8852,22 +8773,22 @@ Desactiváronse estes engadidos. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Produciuse un fallo descargando a fonte RSS en: %1. Razón: %2 - + RSS feed at '%1' updated. Added %2 new articles. Actualizouse a fonte RSS de «%1». Engadidos %2 artigos novos. - + Failed to parse RSS feed at '%1'. Reason: %2 Produciuse un fallo analizando a fonte RSS de «%1». Razón: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Descargouse correctamente a fonte RSS en «%1». Iniciando a análise. @@ -8916,12 +8837,12 @@ Desactiváronse estes engadidos. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Non se puido gardar a configuración da sesión RSS. Ficheiro: "%1". Erro: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Non se puideron gardar os datos da sesión RSS. Ficheiro: "%1". Erro: "%2" @@ -8943,76 +8864,121 @@ Desactiváronse estes engadidos. - + Item doesn't exist: %1. O elemento non existe: %1. - Couldn't move folder into itself. - Non se puido mover o cartafol dentro de si mesmo. + Non se puido mover o cartafol dentro de si mesmo. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Non é posíbel eliminar o cartafol raíz. - + Failed to read RSS session data. %1 Produciuse un erro ao ler os datos da sesión RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Produciuse un erro ao analizar os datos da sesión RSS. Ficheiro: "%1". Erro: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Produciuse un erro ao cargar os datos da sesión RSS. Ficheiro: "%1". Erro: "Formato de datos non válido". - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Non se puido cargar o feed RSS. Feed: "%1". Motivo: o URL é necesario. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Non se puido cargar o feed RSS. Feed: "%1". Motivo: o UID non é válido. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Atopouse un feed RSS duplicado. UID: "%1". Erro: a configuración parece estar danada. - + Couldn't load RSS item. Item: "%1". Invalid data format. Non se puido cargar o elemento RSS. Elemento: "%1". Formato de datos non válido. - + Corrupted RSS list, not loading it. Lista RSS danada, sen cargala. - + Incorrect RSS Item path: %1. Ruta incorrecta ao elemento do RSS: %1 - + RSS item with given path already exists: %1. Xa existe un elemento RSS con esa ruta: %1 - + Parent folder doesn't exist: %1. O cartafol pai non existe: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + O feed non existe: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + s + + + + Default + Predeterminado + + RSSWidget @@ -9112,78 +9078,77 @@ Desactiváronse estes engadidos. + Feed options... + + + Edit feed URL... - Editar URL do feed... + Editar URL do feed... - Edit feed URL - Editar URL do feed + Editar URL do feed - + Please choose a folder name Seleccione un nome de cartafol - + Folder name: Nome do cartafol: - + New folder Cartafol novo - - Please type a RSS feed URL - Escriba unha URL de fonte RSS + Escriba unha URL de fonte RSS - - Feed URL: - URL da fonte: + URL da fonte: - + Deletion confirmation Confirmación da eliminación - + Are you sure you want to delete the selected RSS feeds? Confirma a eliminación das fontes RSS seleccionadas? - + Please choose a new name for this RSS feed Escolla un nome novo para esta fonte RSS - + New feed name: Nome novo da fonte: - + Rename failed O cambio de nome fallou - + Date: Data: - + Feed: Feed: - + Author: Autor: @@ -9320,10 +9285,6 @@ Desactiváronse estes engadidos. i.e: Number of partial sources Pares incompletos - - Search engine - Motor de busca - Filter search results... @@ -9413,17 +9374,17 @@ Desactiváronse estes engadidos. Engine - + Motor Engine URL - + URL do motor Published On - + Publicado o @@ -9444,104 +9405,104 @@ Desactiváronse estes engadidos. SearchPluginManager - + Unknown search engine plugin file format. Formato descoñecido do ficheiro co engadido do motor de busca. - + Plugin already at version %1, which is greater than %2 O engadido xa está na versión %1, a cal é máis recente que %2 - + A more recent version of this plugin is already installed. Xa está instalada unha versión máis recente do engadido. - + Plugin %1 is not supported. Engadido: %1 non é compatíbel. - - + + Plugin is not supported. O engadido non é compatíbel. - + Plugin %1 has been successfully updated. O engadido %1 actualizouse correctamente. - + All categories Todas as categorías - + Movies Películas - + TV shows Programas de TV - + Music Música - + Games Xogos - + Anime Anime - + Software Software - + Pictures Imaxes - + Books Libros - + Update server is temporarily unavailable. %1 O servidor de actualizacións non está dispoñíbel temporalmente. %1 - - + + Failed to download the plugin file. %1 Produciuse un fallo ao descargar o ficheiro do engadido. %1 - + Plugin "%1" is outdated, updating to version %2 O engadido «%1» non está actualizado, actualizando á versión %2 - + Incorrect update info received for %1 out of %2 plugins. A información recibida sobre a actualización é incorrecta para %1 dos %2 engadidos. - + Search plugin '%1' contains invalid version string ('%2') O engadido de busca «%1» contén unha cadea incorrecta da versión («%2») @@ -9567,137 +9528,129 @@ Prema no botón «Engadidos de busca...» na parte inferior dereita da xanela pa Engadidos de busca - + A phrase to search for. Unha frase que buscar. - + Spaces in a search term may be protected by double quotes. Os espazos nos termos de busca poden protexerse con comiñas. - + Example: Search phrase example Exemplo: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: buscar <b>foo bar</b> - + All plugins Todos os engadidos - + Only enabled Activados - - + + Invalid data format. - O formato dos datos non é válido. + O formato dos datos non é válido. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: buscar <b>foo</b> e <b>bar</b> - + Refresh - + Actualizar - + Close tab Pechar lapela - + Close all tabs Pechar todas as lapelas - + Select... Seleccionar... - - + + Search Engine Buscador - - + + Please install Python to use the Search Engine. Instale Python para usar o motor de busca. - + Empty search pattern Patrón de busca baleiro - + Please type a search pattern first Escriba primeiro o patrón de busca - + Stop Parar - - Search has finished - A busca rematou - - - Search has failed - A busca fallou - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Produciuse un erro ao cargar os datos de estado gardados da IU de busca. Ficheiro: "% 1". Erro: "% 2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Produciuse un erro ao cargar os resultados da busca gardados. Pestana: "% 1". Ficheiro: "% 2". Erro: "% 3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Produciuse un erro ao gardar o estado da IU de busca. Ficheiro: "% 1". Erro: "% 2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Produciuse un erro ao gardar os resultados da busca. Pestana: "% 1". Ficheiro: "% 2". Erro: "% 3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Produciuse un erro ao cargar o historial da IU de busca. Ficheiro: "% 1". Erro: "% 2" - + Failed to save search history. File: "%1". Error: "%2" - + Produciuse un erro ao gardar o historial de busca. Ficheiro: "% 1". Erro: "% 2" @@ -10093,67 +10046,77 @@ Prema no botón «Engadidos de busca...» na parte inferior dereita da xanela pa StatusBar - + Connection status: Estado da conexión: - - + + No direct connections. This may indicate network configuration problems. Non hai conexións directas. Isto pode significar que hai problemas na configuración da rede. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + IP externa: N/A + + + + DHT: %1 nodes DHT: %1 nodos - + qBittorrent needs to be restarted! É necesario reiniciar o qBittorrent - - + + Connection Status: Estado da conexión: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Desconectado. Isto significa, normalmente, que o programa fallou ao escoitar o porto seleccionado para conexións entrantes. - + Online Conectado - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + IPs externas: % 1, % 2 + + + + External IP: %1%2 + IP externa: % 1% 2 + + + Click to switch to alternative speed limits Prema para cambiar aos límites alternativos de velocidade - + Click to switch to regular speed limits Prema para cambiar aos límites normais de velocidade @@ -10181,23 +10144,15 @@ Prema no botón «Engadidos de busca...» na parte inferior dereita da xanela pa Completed (0) Completados (0) - - Resumed (0) - Continuado (0) - - - Paused (0) - Detidos (0) - Running (0) - + En execución (0) Stopped (0) - + Detido (0) @@ -10262,49 +10217,33 @@ Prema no botón «Engadidos de busca...» na parte inferior dereita da xanela pa Running (%1) - + En execución (%1) Stopped (%1) - + Detido (%1) Start torrents - + Iniciar torrents Stop torrents - - - - Paused (%1) - Detidos (%1) + Deter torrents Moving (%1) Movendo (%1) - - Resume torrents - Continuar os torrents - - - Pause torrents - Deter os torrents - Remove torrents Eliminar torrents - - Resumed (%1) - Retomados (%1) - Active (%1) @@ -10376,32 +10315,20 @@ Prema no botón «Engadidos de busca...» na parte inferior dereita da xanela pa Remove unused tags Eliminar as etiquetas non usadas - - Resume torrents - Continuar os torrents - - - Pause torrents - Deter os torrents - Remove torrents Eliminar torrents - - New Tag - Etiqueta nova - Start torrents - + Iniciar torrents Stop torrents - + Deter torrents @@ -10411,7 +10338,7 @@ Prema no botón «Engadidos de busca...» na parte inferior dereita da xanela pa Add tag - + Engadir etiqueta @@ -10728,17 +10655,17 @@ Seleccione un nome diferente e ténteo de novo. TorrentCreatorController - + Too many active tasks Demasiadas tarefas activas - + Torrent creation is still unfinished. A creación do torrente aínda está sen rematar. - + Torrent creation failed. Produciuse un erro ao crear o torrent. @@ -10990,17 +10917,6 @@ Seleccione un nome diferente e ténteo de novo. Cartafol observado: «%1» - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Produciuse un erro ao asignar memoria ao ler o ficheiro. Ficheiro: "%1". Erro: "%2" - - - Invalid metadata - Metadatos incorrectos - - TorrentOptionsDialog @@ -11036,11 +10952,7 @@ Seleccione un nome diferente e ténteo de novo. Torrent Share Limits - - - - Torrent speed limits - Límites de velocidade do torrent + Límites compartidos de torrent @@ -11056,7 +10968,7 @@ Seleccione un nome diferente e ténteo de novo. Torrent Speed Limits - + Límites de velocidade do torrent @@ -11074,34 +10986,6 @@ Seleccione un nome diferente e ténteo de novo. Upload: Enviar: - - Torrent share limits - Límites de compartición do torrent - - - Use global share limit - Usar o límite de compartición global - - - Set no share limit - Non estabelecer límite - - - Set share limit to - Estabelecer o límite de compartición en - - - ratio - taxa - - - total minutes - minutos totais - - - inactive minutes - minutos inactivos - Disable DHT for this torrent @@ -11143,14 +11027,6 @@ Seleccione un nome diferente e ténteo de novo. Not applicable to private torrents Non aplicábel a torrents privados - - No share limit method selected - Non se seleccionou ningún método de límite de compartición - - - Please select a limit method first - Seleccione primeiro un método para os límites - TorrentShareLimitsWidget @@ -11200,27 +11076,27 @@ Seleccione un nome diferente e ténteo de novo. Action when the limit is reached: - + Acción cando se alcance o límite: Stop torrent - + Deter torrent Remove torrent - Retirar o torrent + Retirar o torrent Remove torrent and its content - + Eliminar o torrent e o seu contido Enable super seeding for torrent - Activar a supersementeira para o torrent + Activar a supersementeira para o torrent @@ -11235,14 +11111,10 @@ Seleccione un nome diferente e ténteo de novo. Torrent Tags Etiquetas de torrent - - New Tag - Etiqueta nova - Add tag - + Engadir etiqueta @@ -11273,90 +11145,90 @@ Seleccione un nome diferente e ténteo de novo. TorrentsController - + Error: '%1' is not a valid torrent file. Erro: «%1» non é un ficheiro torrent correcto. - + Priority must be an integer A prioridade debe ser un enteiro - + Priority is not valid A prioridade non é correcta - + Torrent's metadata has not yet downloaded Aínda non se descargaron os metadatos do torrent - + File IDs must be integers Os identificadores de ficheiro deben ser enteiros - + File ID is not valid O identificador de ficheiro non é correcto - - - - + + + + Torrent queueing must be enabled A cola de torrents debe estar activada - - + + Save path cannot be empty A ruta de gardado non pode estar baleira - - + + Cannot create target directory Non é posíbel crear o cartafol de destino - - + + Category cannot be empty A categoría non pode estar baleira - + Unable to create category Non é posíbel crear unha categoría - + Unable to edit category Non é posíbel editar a categoría - + Unable to export torrent file. Error: %1 Non se puido exportar o ficheiro torrent. Erro: %1 - + Cannot make save path Non é posíbel facer unha ruta de gardado "%1" is not a valid URL - + "% 1" non é un URL válido URL scheme must be one of [%1] - + O esquema de URL debe ser un dos seguintes: [%1] @@ -11364,39 +11236,39 @@ Seleccione un nome diferente e ténteo de novo. O parámetro «sort» é incorrecto - + "%1" is not an existing URL - + "% 1" non é un URL existente - + "%1" is not a valid file index. «%1» non é un índice de ficheiro correcto. - + Index %1 is out of bounds. O índice %1 está fóra dos límites. - - + + Cannot write to directory Non é posíbel escribir no cartafol - + WebUI Set location: moving "%1", from "%2" to "%3" Localización da interface web: movendo «%1» de «%2» a «%3» - + Incorrect torrent name Nome incorrecto de torrent - - + + Incorrect category name Nome incorrecto de categoría @@ -11479,45 +11351,33 @@ Seleccione un nome diferente e ténteo de novo. Invalid state! - + Estado non válido! URL/Announce Endpoint - + URL/Anunciar punto final BT Protocol - + Protocolo BT Next Announce - + Próximo anuncio Min Announce - - - - Invalid status! - Estado non válido! - - - URL/Announce endpoint - URL/Anunciar punto final + Anuncio mínimo Tier Nivel - - Protocol - Protocolo - Status @@ -11548,18 +11408,6 @@ Seleccione un nome diferente e ténteo de novo. Message Mensaxe - - Next announce - Seguinte anuncio - - - Min announce - Anuncio mínimo - - - v%1 - v%1 - TrackerListWidget @@ -11569,73 +11417,73 @@ Seleccione un nome diferente e ténteo de novo. Este torrent é privado - + Tracker editing Edición do localizador - + Tracker URL: URL do localizador: - - + + Tracker editing failed Fallou a edición do localizador - + The tracker URL entered is invalid. A URL introducida para o localizador non é correcta. - + The tracker URL already exists. A URL do localizador xa existe. - + Edit tracker URL... Editar URL do localizador - + Remove tracker Eliminar o localizador - + Copy tracker URL Copiar url dos localizadores - + Force reannounce to selected trackers Forzar outro anuncio nos localizadores seleccionados - + Force reannounce to all trackers Forzar outro anuncio en todos os localizadores - + Resize columns Redimensionar columnas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as columnas visíbeis ao tamaño dos contidos - + Add trackers... Engadir rastrexadores... - + Column visibility Visibilidade da columna @@ -11718,20 +11566,12 @@ Seleccione un nome diferente e ténteo de novo. Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Continuar os torrents - - - Pause torrents - Deter os torrents + Deter torrents @@ -11855,10 +11695,6 @@ Seleccione un nome diferente e ténteo de novo. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Comprobando os datos de continuación - - Paused - Detidos - Completed @@ -11899,21 +11735,16 @@ Seleccione un nome diferente e ténteo de novo. % Done Progreso - - Status - Torrent status (e.g. downloading, seeding, paused) - Estado - Stopped - + Parado Status Torrent status (e.g. downloading, seeding, stopped) - Estado + Estado @@ -11948,7 +11779,7 @@ Seleccione un nome diferente e ténteo de novo. Popularity - + Popularidade @@ -12029,22 +11860,17 @@ Seleccione un nome diferente e ténteo de novo. Time Active Time (duration) the torrent is active (not stopped) - Tempo en activo + Tempo en activo Yes - Si + Si No - Non - - - Time Active - Time (duration) the torrent is active (not paused) - Tempo en activo + Non @@ -12116,12 +11942,12 @@ Seleccione un nome diferente e ténteo de novo. Private Flags private torrents - + Privado Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Tempo activo (en meses), indica a popularidade do torrent @@ -12146,358 +11972,319 @@ Seleccione un nome diferente e ténteo de novo. TransferListWidget - + Column visibility Visibilidade da columna - + Recheck confirmation Confirmación da nova comprobación - + Are you sure you want to recheck the selected torrent(s)? Desexa unha nova comprobación dos torrents seleccionados? - + Rename Cambiar o nome - + New name: Nome novo: - + Choose save path Seleccionar unha ruta onde gardar - Confirm pause - Confirmar pausa - - - Would you like to pause all torrents? - Queres poñer en pausa todos os torrents? - - - Confirm resume - Confirmar reanudación - - - Would you like to resume all torrents? - Queres retomar todos os torrents? - - - + Unable to preview Non é posíbel a previsualización - + The selected torrent "%1" does not contain previewable files O torrent «%1» seleccionado non contén ficheiros previsualizábeis - + Resize columns Redimensionar columnas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as columnas visíbeis ao tamaño dos contidos - + Enable automatic torrent management Activar a xestión automática dos torrents - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Confirma a activación do Xestor Automático de Torrents para os torrents seleccionado(s)? Poden ser resituados. - Add Tags - Engadir etiquetas - - - + Choose folder to save exported .torrent files Escolla o cartafol para gardar os ficheiros .torrent exportados - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Produciuse un erro ao exportar o ficheiro .torrent. Torrente: "%1". Gardar o camiño: "%2". Motivo: "%3" - + A file with the same name already exists Xa existe un ficheiro co mesmo nome - + Export .torrent file error Erro ao exportar o ficheiro .torrent - + Remove All Tags Eliminar todas as etiquetas - + Remove all tags from selected torrents? Desexa eliminar todas as etiquetas dos torrents seleccionados? - + Comma-separated tags: Etiquetas separadas por comas: - + Invalid tag Etiqueta incorrecta - + Tag name: '%1' is invalid O nome da etiqueta: «%1» non é válido - &Resume - Resume/start the torrent - Continua&r - - - &Pause - Pause the torrent - &Deter - - - Force Resu&me - Force Resume/start the torrent - Forzar reanudació&n - - - + Pre&view file... Pre&visualizar ficheiro... - + Torrent &options... &Opcións de torrent... - + Open destination &folder Abre o &cartafol de destino - + Move &up i.e. move up in the queue Mover &arriba - + Move &down i.e. Move down in the queue Mover a&baixo - + Move to &top i.e. Move to top of the queue Mover o &comezo - + Move to &bottom i.e. Move to bottom of the queue Mover ao &derradeiro - + Set loc&ation... Definir loc&alización... - + Force rec&heck Forzar a rec&omprobación - + Force r&eannounce Forzar r&eanunciar - + &Magnet link Enlace &Magnet - + Torrent &ID &ID do torrent - + &Comment &Comentario - + &Name &Nome - + Info &hash v1 &Hash de información v1 - + Info h&ash v2 H&ash de información v2 - + Re&name... Re&nomear... - + Edit trac&kers... Editar ras&trexadores... - + E&xport .torrent... E&xportar .torrent... - + Categor&y Categor&ía - + &New... New category... &Novo... - + &Reset Reset category &Restablecer - + Ta&gs Eti&quetas - + &Add... Add / assign multiple tags... &Engadir... - + &Remove All Remove all tags &Eliminar todo - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Non se pode forzar a reanuncio se o torrent está Detido/En cola/Con erro/En comprobación - + &Queue C&ola - + &Copy &Copia - + Exported torrent is not necessarily the same as the imported O torrent exportado non é necesariamente o mesmo co importado - + Download in sequential order Descargar en orde secuencial - + Add tags - + Engadir etiquetas - + Errors occurred when exporting .torrent files. Check execution log for details. Producíronse erros ao exportar ficheiros .torrent. Consulte o rexistro de execución para obter máis detalles. - + &Start Resume/start the torrent - + &Comezar - + Sto&p Stop the torrent - + Dete&r - + Force Star&t Force Resume/start the torrent - + Forzar inici&o - + &Remove Remove the torrent Elimina&r - + Download first and last pieces first Descargar primeiro os anacos inicial e final - + Automatic Torrent Management Xestión automática dos torrents - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category O modo automático significa que varias propiedades dos torrents (p.e: ruta onde gardar) decidiraas a categoría asociada - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Non se pode forzar a reanunciar se o torrent está en pausa/en cola/erro/comprobando - - - + Super seeding mode Modo super-sementeira @@ -12573,7 +12360,7 @@ Seleccione un nome diferente e ténteo de novo. Set app style failed. Unknown style: "%1" - + Non se pudo establecer o estilo da app. Estilo descoñecido: "%1" @@ -12630,32 +12417,32 @@ erro: «%2» Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Atopouse o executable de Python. Nome: "%1". Versión: "%2" - + Failed to find Python executable. Path: "%1". Produciuse un erro ao atopar o executable de Python. Camiño: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Non se atendeu o executábel `python3` na variable de entorno PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Non se atendeu o executábel `python` na variable de entorno PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Produciuse un erro ao atopar o executable `python` no Rexistro de Windows. - + Failed to find Python executable Produciuse un erro ao atopar o executable de Python @@ -12747,53 +12534,53 @@ erro: «%2» WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Especificouse un nome de cookie de sesión inaceptable: '%1'. Úsase un predeterminado. - + Unacceptable file type, only regular file is allowed. Tipo de ficheiro non permitido, só se permite o ficheiro normal. - + Symlinks inside alternative UI folder are forbidden. As ligazóns simbólicas están prohibidas dentro do cartafol da interface de usuario alternativa. - + Using built-in WebUI. Usando WebUI incorporado. - + Using custom WebUI. Location: "%1". Usando WebUI personalizado. Localización: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. A tradución da WebUI para a configuración rexional seleccionada (%1) foi cargada correctamente. - + Couldn't load WebUI translation for selected locale (%1). Non se puido cargar a tradución da WebUI para a configuración rexional seleccionada (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1"   Falta o separador «:» na cabeceira HTTP personalizada de WebUI: «% 1» - + Web server error. %1 Erro do servidor web. %1 - + Web server error. Unknown error. Erro do servidor web. Erro descoñecido. @@ -12851,7 +12638,7 @@ Falta o separador «:» na cabeceira HTTP personalizada de WebUI: «% 1» Unknown error - Erro descoñecido + Erro descoñecido diff --git a/src/lang/qbittorrent_he.ts b/src/lang/qbittorrent_he.ts index 1a727f362..64d6aa2f4 100644 --- a/src/lang/qbittorrent_he.ts +++ b/src/lang/qbittorrent_he.ts @@ -170,10 +170,6 @@ Never show again אל תראה שוב אף פעם - - Torrent settings - הגדרות טורנט - Set as default category @@ -235,25 +231,25 @@ תנאי עצירה : - - + + None ללא - - + + Metadata received מטא־נתונים התקבלו - + Torrents that have metadata initially will be added as stopped. - + Files checked קבצים שנבדקו @@ -368,112 +364,112 @@ שמור כקובץ torrent… - + I/O Error שגיאת ק/פ - + Not Available This comment is unavailable לא זמין - + Not Available This date is unavailable לא זמין - + Not available לא זמין - + Magnet link קישור מגנט - + Retrieving metadata... מאחזר מטא־נתונים… - - + + Choose save path בחירת נתיב שמירה - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A לא זמין - + %1 (Free space on disk: %2) %1 (שטח פנוי בדיסק: %2) - + Not available This size is unavailable. לא זמין - + Torrent file (*%1) קובץ טורנט (*%1) - + Save as torrent file שמור כקובץ טורנט - + Couldn't export torrent metadata file '%1'. Reason: %2. לא היה ניתן לייצא קובץ מטא־נתונים של טורנט '%1'. סיבה: %2. - + Cannot create v2 torrent until its data is fully downloaded. לא ניתן ליצור טורנט גרסה 2 עד שהנתונים שלו מוקדים באופן מלא. - + Filter files... סנן קבצים… - + Parsing metadata... מאבחן מטא־נתונים… - + Metadata retrieval complete אחזור מטא־נתונים הושלם @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" מוריד טורנט… מקור: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - ניסיון להוסיף טורנט כפול התגלה. מקור: %1. טורנט קיים: %2. תוצאה: %3 + ניסיון להוסיף טורנט כפול התגלה. מקור: %1. טורנט קיים: %2. תוצאה: %3 - + Merging of trackers is disabled מיזוג עוקבנים מושבת - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB מ״ב - + Recheck torrents on completion בדוק מחדש טורנטים בעת השלמה - - + + ms milliseconds מילי שנייה - + Setting הגדרה - + Value Value set for this setting ערך - + (disabled) (מושבת) - + (auto) (אוטומטי) - - + + min minutes דק' - + All addresses כל הכתובות - + qBittorrent Section קטע qBittorrent - - + + Open documentation פתח תיעוד - + All IPv4 addresses כל כתובות IPv4 - + All IPv6 addresses כל כתובות IPv6 - + libtorrent Section קטע libtorrent - + Fastresume files קבצי המשכה מהירה - + SQLite database (experimental) מסד נתונים SQLite (ניסיוני) - + Resume data storage type (requires restart) סוג אחסון של נתוני המשכה (דורש הפעלה מחדש) - + Normal רגילה - + Below normal מתחת לרגילה - + Medium בינונית - + Low נמוכה - + Very low נמוכה מאוד - + Physical memory (RAM) usage limit מגבלת שימוש בזיכרון פיזי (RAM) - + Asynchronous I/O threads תהליכוני ק/פ אי־סינכרוניים - + Hashing threads תהליכוני גיבוב - + File pool size גודל בריכת קבצים - + Outstanding memory when checking torrents זיכרון חריג בעת בדיקת טורנטים - + Disk cache מטמון דיסק - - - - + + + + + s seconds ש' - + Disk cache expiry interval מרווח תפוגת מטמון דיסק - + Disk queue size גודל תור בדיסק - - + + Enable OS cache אפשר מטמון מערכת הפעלה - + Coalesce reads & writes לכד קריאות וכתיבות - + Use piece extent affinity השתמש במידת קירבה של חתיכות - + Send upload piece suggestions שלח הצעות של חתיכות העלאה - - - - - + + + + + 0 (disabled) 0 (מושבת) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer בקשות חריגות מרביות אל עמית יחיד - - - - - + + + + + KiB ק״ב - + (infinite) (אין־סופי) - + (system default) (ברירת מחדל) - + Delete files permanently - + מחק קבצים לצמיתות - + Move files to trash (if possible) - + העבר קבצים אל סל המיחזור (אם אפשרי) - + Torrent content removing mode - + מצב הסרת תכני טורנטים - + This option is less effective on Linux אפשרות זו פחות יעילה על Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default ברירת מחדל - + Memory mapped files קבצים ממופי זיכרון - + POSIX-compliant תואם POSIX - + Simple pread/pwrite - + Disk IO type (requires restart) סוג ק/פ של דיסק (דורש הפעלה מחדש) - - + + Disable OS cache השבת מטמון OS - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark שלח סימן מים של חוצץ - + Send buffer low watermark שלח סימן מים נמוך של חוצץ - + Send buffer watermark factor שלח גורם סימן מים של חוצץ - + Outgoing connections per second חיבורים יוצאים לשנייה - - + + 0 (system default) 0 (ברירת מחדל) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size גודל מצבור תושבת - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit מגבלת גודל של קובץ טורנט - + Type of service (ToS) for connections to peers סוג של שירות (ToS) עבור חיבורים אל עמיתים - + Prefer TCP העדף TCP - + Peer proportional (throttles TCP) יַחֲסִי עמית (משנקי TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) תמוך בשם בינלאומי של תחום (IDN) - + Allow multiple connections from the same IP address התר חיבורים רבים מאותה כתובת IP - + Validate HTTPS tracker certificates וודא תעודות עוקבן מסוג HTTPS - + Server-side request forgery (SSRF) mitigation שיכוך של זיוף בקשות צד־שרת (SSRF) - + Disallow connection to peers on privileged ports אל תתיר חיבור אל עמיתים על פתחות בעלות זכויות - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval מרווח ריענון - + Resolve peer host names פתור שמות מארחי עמיתים - + IP address reported to trackers (requires restart) כתובת IP דווחה אל עוקבנים (דורש הפעלה מחדש) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed הכרז מחדש אל כל העוקבנים כאשר IP או פתחה השתנו - + Enable icons in menus אפשר איקונים בתפריטים - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files אפשר הסגר עבור קבצים מורדים - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + התעלם משגיאות SSL - + (Auto detect if empty) (גילוי אוטומטי אם ריק) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - שניות + שניות - + -1 (unlimited) - + -1 (בלתי מוגבל) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents אפשר הסרה של עוקבן מכל הטורנטים - + Peer turnover disconnect percentage אחוז של ניתוק תחלופת עמיתים - + Peer turnover threshold percentage אחוז של סף תחלופת עמיתים - + Peer turnover disconnect interval מרווח ניתוק תחלופת עמיתים - + Resets to default if empty מתאפס אל ברירת מחדל אם זה ריק - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications הצג התראות - + Display notifications for added torrents הצג התראות עבור טורנטים שהתווספו - + Download tracker's favicon הורד איקון של עוקבן - + Save path history length אורך היסטורית שמירת נתיבים - + Enable speed graphs אפשר גרפי מהירות - + Fixed slots חריצים מקובעים - + Upload rate based מבוסס קצב העלאה - + Upload slots behavior העלה התנהגות חריצים - + Round-robin סבב־רובין - + Fastest upload ההעלאה הכי מהירה - + Anti-leech נגד־עלוקה - + Upload choking algorithm אלגוריתם מחנק העלאה - + Confirm torrent recheck אשר בדיקה מחדש של טורנט - + Confirm removal of all tags אשר הסרת כל התגיות - + Always announce to all trackers in a tier הכרז תמיד לכל העוקבנים בנדבך - + Always announce to all tiers הכרז תמיד לכל הנדבכים - + Any interface i.e. Any network interface כל ממשק שהוא - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm אלגוריתם של מצב מעורבב %1-TCP - + Resolve peer countries פתור מדינות עמיתים - + Network interface ממשק רשת - + Optional IP address to bind to כתובת IP רשותית לחבור אליה - + Max concurrent HTTP announces הכרזות HTTP מרביות במקביל - + Enable embedded tracker אפשר עוקבן משובץ - + Embedded tracker port פתחת עוקבן משובץ @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 מריץ במצב נייד. תיקיית פרופילים מזוהה־אוטומטית ב: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. דגל עודף של שורת הפקודה התגלה: "%1". מצב נייד מרמז על המשכה מהירה קשורה. - + Using config directory: %1 משתמש בתיקיית תיצור: %1 - + Torrent name: %1 שם טורנט: %1 - + Torrent size: %1 גודל טורנט: %1 - + Save path: %1 נתיב שמירה: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds הטורנט ירד תוך %1 - - + + Thank you for using qBittorrent. תודה על השימוש ב־qBittorrent. - + Torrent: %1, sending mail notification טורנט: %1, שולח התראת דוא״ל - + Add torrent failed הוספת טורנט נכשלה - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... טוען טורנטים… - + E&xit &צא - + I/O Error i.e: Input/Output Error שגיאת ק/פ - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ סיבה: %2 - + Torrent added טורנט התווסף - + '%1' was added. e.g: xxx.avi was added. '%1' התווסף. - + Download completed הורדה הושלמה - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + זהו דוא״ל בחינה. - + Test email - + בחן דוא״ל - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. ההורדה של %1 הסתיימה. - + Information מידע - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 כדי לשלוט ב־qBittorrent, השג גישה אל WebUI ב: %1 - + Exit צא - + Recursive download confirmation אישור הורדה נסיגתית - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? הטורנט '%1' מכיל קבצי טורנט, האם אתה רוצה להמשיך עם הורדותיהם? - + Never אף פעם - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" הורדה נסיגתית של קובץ .torrent בתוך טורנט. טורנט מקור: "%1". קובץ: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" הגדרת מגבלת שימוש בזיכרון פיזי (RAM) נכשלה. קוד שגיאה: %1. הודעת שגיאה: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... qBittorrent מתכבה… - + Saving torrent progress... שומר התקדמות טורנט… - + qBittorrent is now ready to exit @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &ייצא… - + Matches articles based on episode filter. מתאים מאמרים על סמך מסנן פרקים. - + Example: דוגמה: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match יתאים את פרקים 2, 5, 8 עד 15, 30 והלאה של עונה ראשונה - + Episode filter rules: כללי מסנן פרקים: - + Season number is a mandatory non-zero value מספר עונה הוא ערך בלתי אפסי הכרחי - + Filter must end with semicolon מסנן חייב להסתיים בנקודה ופסיק - + Three range types for episodes are supported: שלושה סוגי טווח נתמכים עבור פרקים: - + Single number: <b>1x25;</b> matches episode 25 of season one מספר יחיד: <b>1x25;</b> מתאים פרק 25 של עונה ראשונה - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one טווח רגיל: <b>1x25-40;</b> מתאים פרקים 25 עד 40 של עונה ראשונה - + Episode number is a mandatory positive value מספר פרק הוא ערך חיובי הכרחי - + Rules כללים - + Rules (legacy) כללים (מורשת) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons טווח אינסופי: <b>1x25-;</b> מתאים פרקים 25 ומעלה של עונה ראשונה, וכל הפרקים של העונות הבאות - + Last Match: %1 days ago התאמה אחרונה: לפני %1 ימים - + Last Match: Unknown התאמה אחרונה: בלתי ידוע - + New rule name שם של כלל חדש - + Please type the name of the new download rule. אנא הקלד את השם של כלל ההורדה החדש. - - + + Rule name conflict סתירת שם כלל - - + + A rule with this name already exists, please choose another name. כלל עם שם זה כבר קיים, אנא בחר שם אחר. - + Are you sure you want to remove the download rule named '%1'? האם אתה בטוח שאתה רוצה למחוק את כלל ההורדה בשם '%1'? - + Are you sure you want to remove the selected download rules? האם אתה בטוח שאתה רוצה להסיר את כללי ההורדה הנבחרים? - + Rule deletion confirmation אישור מחיקת כלל - + Invalid action פעולה בלתי תקפה - + The list is empty, there is nothing to export. הרשימה ריקה, אין מה לייצא. - + Export RSS rules ייצא כללי RSS - + I/O Error שגיאת ק/פ - + Failed to create the destination file. Reason: %1 יצירת קובץ היעד נכשלה. סיבה: %1 - + Import RSS rules ייבא כללי RSS - + Failed to import the selected rules file. Reason: %1 יבוא קובץ הכללים הנבחר נכשל. סיבה: %1 - + Add new rule... הוסף כלל חדש… - + Delete rule מחק כלל - + Rename rule... שנה שם כלל… - + Delete selected rules מחק כללים נבחרים - + Clear downloaded episodes... נקה פרקים שירדו… - + Rule renaming שינוי שם כלל - + Please type the new rule name אנא הקלד את השם של הכלל החדש - + Clear downloaded episodes נקה פרקים שירדו - + Are you sure you want to clear the list of downloaded episodes for the selected rule? האם אתה בטוח שאתה רוצה לנקות את רשימת הפרקים שירדו עבור הכלל הנבחר? - + Regex mode: use Perl-compatible regular expressions מצב Regex: השתמש בביטויים רגולריים תואמי Perl - - + + Position %1: %2 מיקום %1: %2 - + Wildcard mode: you can use מצב תו כללי: אתה יכול להשתמש ב - - + + Import error שגיאת יבוא - + Failed to read the file. %1 כישלון בקריאת הקובץ. %1 - + ? to match any single character ? כדי להתאים תו יחיד כלשהו - + * to match zero or more of any characters * כדי להתאים אפס או יותר מתווים כלשהם - + Whitespaces count as AND operators (all words, any order) רווחים לבנים נחשבים כאופרטורי AND (כל המילים, כל סדר שהוא) - + | is used as OR operator | משמש כאופרטור OR - + If word order is important use * instead of whitespace. אם סדר מילים חשוב, השתמש ב־* במקום רווח לבן. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) ביטוי עם סעיף %1 ריק (לדוגמה %2) - + will match all articles. יתאים את כל המאמרים. - + will exclude all articles. יחריג את כל המאמרים. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. לא היה ניתן לשמור מטא־נתונים של טורנט אל '%1'. שגיאה: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. לא היה ניתן לשמור נתוני המשכה של טורנט אל '%1'. שגיאה: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 לא היה ניתן לשמור נתונים אל '%1'. שגיאה: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. לא נמצא. - + Couldn't load resume data of torrent '%1'. Error: %2 לא היה ניתן לטעון נתוני המשכה של הטורנט '%1'. שגיאה: %2 - - + + Database is corrupted. בסיס הנתונים פגום. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. לא היה ניתן לשמור מטא־נתונים של טורנט. שגיאה: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 לא היה ניתן לאחסן נתוני המשכה עבור הטורנט '%1'. שגיאה: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 לא היה ניתן למחוק נתוני המשכה של הטורנט '%1'. שגיאה: %2 - + Couldn't store torrents queue positions. Error: %1 לא היה ניתן לאחסן מיקומי תור של טורנטים. שגיאה: %1 @@ -2185,526 +2229,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 תמיכה בטבלת גיבוב מבוזרת (DHT): %1 - - - - - - - - - + + + + + + + + + ON מופעל - - - - - - - - - + + + + + + + + + OFF כבוי - - + + Local Peer Discovery support: %1 תמיכה בגילוי עמיתים מקומיים: %1 - + Restart is required to toggle Peer Exchange (PeX) support הפעלה מחדש נדרשת כדי לעורר תמיכה בחילוף עמיתים (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" המשכת טורנט נכשלה: זהות טורנט אי־עקבית התגלתה. טורנט: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" נתונים בלתי עקביים התגלו: קטגוריה חסרה בקובץ התצורה. הקטגוריה תושב אבל ההגדרות שלה יאופסו אל ברירת מחדל. טורנט: "%1". קטגוריה: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" נתונים בלתי עקביים התגלו: קטגוריה בלתי תקפה. טורנט: "%1". קטגוריה: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" אי־התאמה התגלתה בין נתיבי השמירה של הקטגוריה המושבת ונתיב השמירה הנוכחי של הטורנט. הטורנט מוחלף כעת אל מצב ידני. טורנט: "%1". קטגוריה: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" זהות עמית: "%1" - + HTTP User-Agent: "%1" סוכן־משתמש HTTP: "%1" - + Peer Exchange (PeX) support: %1 תמיכה בחילוף עמיתים (PeX): %1 - - + + Anonymous mode: %1 מצב אלמוני: %1 - - + + Encryption support: %1 תמיכה בהצפנה: %1 - - + + FORCED מאולץ - + Could not find GUID of network interface. Interface: "%1" לא היה ניתן למצוא GUID של ממשק רשת. ממשק: "%1" - + Trying to listen on the following list of IP addresses: "%1" מנסה להאזין על הרשימה הבאה של כתובת IP: "%1" - + Torrent reached the share ratio limit. טורנט הגיע אל מגבלת יחס השיתוף. - + Torrent: "%1". טורנט: "%1". - Removed torrent. - טורנט הוסר. - - - Removed torrent and deleted its content. - טורנט הוסר ותוכנו נמחק. - - - Torrent paused. - טורנט הושהה. - - - + Super seeding enabled. זריעת־על אופשרה. - + Torrent reached the seeding time limit. טורנט הגיע אל מגבלת יחס הזריעה. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" טעינת טורנט נכשלה. סיבה: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON תמיכה ב־UPnP/NAT-PMP: מופעלת - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + מסיר טורנט. - + Removing torrent and deleting its content. - + Torrent stopped. - + טורנט נעצר. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - + טורנט הוסר. טורנט: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - מיזוג עוקבנים מושבת + מיזוג עוקבנים מושבת - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF תמיכה ב־UPnP/NAT-PMP: כבויה - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" יצוא טורנט נכשל. טורנט: "%1". יעד: "%2". סיבה: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 שמירת נתוני המשכה בוטלה. מספר של טורנטים חריגים: %1 - + The configured network address is invalid. Address: "%1" הכתובת המתוצרת של הרשת בלתי תקפה. כתובת: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" כישלון במציאה של כתובת מתוצרת של רשת להאזין עליה. כתובת: "%1" - + The configured network interface is invalid. Interface: "%1" ממשק הרשת המתוצר בלתי תקף. ממשק: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" כתובת IP בלתי תקפה סורבה בזמן החלת הרשימה של כתובות IP מוחרמות. IP הוא: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" עוקבן התווסף אל טורנט. טורנט: "%1". עוקבן: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" עוקבן הוסר מטורנט. טורנט: "%1". עוקבן: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" מען זריעה התווסף אל טורנט. טורנט: "%1". מען: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" מען זריעה הוסר מטורנט. טורנט: "%1". מען: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - טורנט הושהה. טורנט: "%1" - - - + Torrent resumed. Torrent: "%1" טורנט הומשך. טורנט: "%1" - + Torrent download finished. Torrent: "%1" הורדת טורנט הסתיימה. טורנט: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" העברת טורנט בוטלה. טורנט: "%1". מקור: "%2". יעד: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + טורנט נעצר. טורנט: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination הוספה אל תור של העברת טורנט נכשלה. טורנט: "%1". מקור: "%2". יעד: "%3". סיבה: הטורנט מועבר כרגע אל היעד - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location הוספה אל תור של העברת טורנט נכשלה. טורנט: "%1". מקור: "%2". יעד: "%3". סיבה: שני הנתיבים מצביעים על אותו מיקום - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" העברת טורנט התווספה אל תור. טורנט: "%1". מקור: "%2". יעד: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" העברת טורנט התחילה. טורנט: "%1". יעד: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" שמירת תצורת קטגוריות נכשלה. קובץ: "%1". שגיאה: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" ניתוח תצורת קטגוריות נכשל. קובץ: "%1". שגיאה: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 ניתוח של קובץ מסנני IP הצליח. מספר של כללים מוחלים: %1 - + Failed to parse the IP filter file ניתוח של קובץ מסנני IP נכשל - + Restored torrent. Torrent: "%1" טורנט שוחזר. טורנט: "%1" - + Added new torrent. Torrent: "%1" טורנט חדש התווסף. טורנט: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" טורנט נתקל בשגיאה: "%1". שגיאה: "%2" - Removed torrent. Torrent: "%1" - טורנט הוסר. טורנט: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - טורנט הוסר ותוכנו נמחק. טורנט: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" התרעת שגיאת קובץ. טורנט: "%1". קובץ: "%2". סיבה: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" מיפוי פתחת UPnP/NAT-PMP נכשל. הודעה: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" מיפוי פתחת UPnP/NAT-PMP הצליח. הודעה: "%1" - + IP filter this peer was blocked. Reason: IP filter. מסנן IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 מגבלות מצב מעורבב - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 מושבת - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 מושבת - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - חיפוש מען DNS של זריעה נכשל. טורנט: "%1". מען: "%2". שגיאה: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" הודעת שגיאה התקבלה ממען זריעה. טורנט: "%1". מען: "%2". הודעה: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" מאזין בהצלחה על כתובת IP. כתובת IP: "%1". פתחה: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" האזנה על IP נכשלה. IP הוא: "%1". פתחה: "%2/%3". סיבה: "%4" - + Detected external IP. IP: "%1" IP חיצוני זוהה. IP הוא: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" שגיאה: התרעה פנימית של תור מלא והתרעות מושמטות, ייתכן שתחווה ביצוע ירוד. סוג התרעה מושמטת: "%1". הודעה: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" טורנט הועבר בהצלחה. טורנט: "%1". יעד: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" העברת טורנט נכשלה. טורנט: "%1". מקור: "%2". יעד: "%3". סיבה: "%4" @@ -2754,47 +2775,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also לא היה ניתן לכתוב אל קובץ. סיבה: "%1". הטורנט נמצא עכשיו במצב "העלאה בלבד". - + Download first and last piece first: %1, torrent: '%2' הורד חתיכה ראשונה ואחרונה תחילה: %1, טורנט: '%2' - + On מופעל - + Off כבוי - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" כישלון בשחזור טורנט. הקבצים כנראה הועברו או האחסון בלתי נגיש. טורנט: "%1". סיבה: "%2" - + Missing metadata מטא־נתונים חסרים - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" שינוי שם קובץ נכשל. טורנט: "%1", קובץ: "%2", סיבה: "%3" - + Performance alert: %1. More info: %2 התרעת ביצוע: %1. עוד מידע: %2 @@ -2831,11 +2852,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' מספר שלם צפוי במשתנה סביבה '%1', אך התקבל '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - הפרמטר '%1' חייב לעקוב אחר התחביר '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2876,7 +2892,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - הפרמטר '%1' חייב לעקוב אחר התחביר '%1=%2' + הפרמטר '%1' חייב לעקוב אחר התחביר '%1=%2' @@ -2966,10 +2982,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - הוסף טורנטים כמותחלים או מושהים - Skip hash check @@ -3059,20 +3071,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + התחל טורנטים Stop torrents - - - - Resume torrents - המשך טורנטים - - - Pause torrents - השהה טורנטים + עצור טורנטים @@ -3095,7 +3099,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + מערכת @@ -3170,11 +3174,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - בנוסף מחק את הקבצים לצמיתות + הסר גם את קבצי התוכן @@ -3386,43 +3386,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + תסדיר דפוס Plain text - + מלל פשוט Wildcards - + תווים כלליים Regular expression - + ביטוי רגולרי GUIAddTorrentManager - + Downloading torrent... Source: "%1" מוריד טורנט… מקור: "%1" - + Torrent is already present טורנט נוכח כבר - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3540,6 +3540,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also קבצי תמונה נתמכים + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3681,10 +3715,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &אפשרויות… - - &Resume - &המשך - &Remove @@ -3766,10 +3796,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window סגור חלון - - R&esume All - ה&משך הכול - Manage Cookies... @@ -3808,12 +3834,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + התח&ל Sto&p - + עצ&ור @@ -3823,7 +3849,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pau&se Session - + הש&הה שיח @@ -3885,10 +3911,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &חרוף מערכת - - S&hutdown System - &כבה מערכת - &Statistics @@ -3909,14 +3931,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &אודות - - &Pause - ה&שהה - - - P&ause All - השהה ה&כל - &Add Torrent File... @@ -3950,12 +3964,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show הראה - + Check for program updates בדוק אחר עדכוני תוכנה @@ -3970,388 +3984,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also אם אתה אוהב את qBittorrent, אנא תרום! - + Execution Log דוח ביצוע - + Clear the password נקה את הסיסמה - + &Set Password &הגדר סיסמה - + Preferences העדפות - + &Clear Password &נקה סיסמה - + Transfers העברות - - + + qBittorrent is minimized to tray qBittorrent ממוזער למגש - - - + + + This behavior can be changed in the settings. You won't be reminded again. התנהגות זו יכולה להשתנות דרך ההגדרות. לא תתוזכר שוב. - + Icons Only צלמיות בלבד - + Text Only מלל בלבד - + Text Alongside Icons מלל לצד צלמיות - + Text Under Icons מלל מתחת לצלמיות - + Follow System Style עקוב אחר סגנון מערכת - - + + UI lock password סיסמת נעילת UI - - + + Please type the UI lock password: אנא הקלד את סיסמת נעילת ה־UI: - + Are you sure you want to clear the password? האם אתה בטוח שאתה רוצה לנקות את הסיסמה? - + Use regular expressions השתמש בביטויים רגולריים - - + + Search Engine - מנוע חיפוש + מנוע חיפוש - + Search has failed - החיפוש נכשל + החיפוש נכשל - + Search has finished - החיפוש הסתיים + החיפוש הסתיים - + Search חיפוש - + Transfers (%1) העברות (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent עודכן כרגע וצריך להיפעל מחדש כדי שהשינויים יחולו. - + qBittorrent is closed to tray qBittorrent סגור למגש - + Some files are currently transferring. מספר קבצים מועברים כרגע. - + Are you sure you want to quit qBittorrent? האם אתה בטוח שאתה רוצה לצאת מ־qBittorrent? - + &No &לא - + &Yes &כן - + &Always Yes &תמיד כן - + Options saved. אפשרויות נשמרו. - + [PAUSED] %1 %1 is the rest of the window title - + [מושהה] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [הורדה: %1, העלאה: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime זמן ריצה חסר של פייתון - + qBittorrent Update Available זמין qBittorent עדכון - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? פייתון נדרש כדי להשתמש במנוע החיפוש אבל נראה שהוא אינו מותקן. האם אתה רוצה להתקין אותו כעת? - + Python is required to use the search engine but it does not seem to be installed. פייתון נדרש כדי להשתמש במנוע החיפוש אבל נראה שהוא אינו מותקן. - - + + Old Python Runtime זמן ריצה ישן של פייתון - + A new version is available. גרסה חדשה זמינה. - + Do you want to download %1? האם אתה רוצה להוריד את %1? - + Open changelog... פתיחת יומן השינויים… - + No updates available. You are already using the latest version. אין עדכונים זמינים. אתה משתמש כבר בגרסה האחרונה. - + &Check for Updates &בדוק אחר עדכונים - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? גרסת פייתון שלך (%1) אינה עדכנית. דרישת מיזער: %2. האם אתה רוצה להתקין גרסה חדשה יותר עכשיו? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. גרסת פייתון שלך (%1) אינה עדכנית. אנא שדרג אל הגרסה האחרונה כדי שמנועי חיפוש יעבדו. דרישת מיזער: %2. - + Paused - מושהה + מושהה - + Checking for Updates... בודק אחר עדכונים… - + Already checking for program updates in the background בודק כבר אחר עדכוני תוכנה ברקע - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error שגיאת הורדה - Python setup could not be downloaded, reason: %1. -Please install it manually. - התקנת פייתון לא יכלה לרדת, סיבה: %1. -אנא התקן אותו באופן ידני. - - - - + + Invalid password סיסמה בלתי תקפה - + Filter torrents... סנן טורנטים… - + Filter by: סנן לפי: - + The password must be at least 3 characters long הסיסמה חייבת להיות באורך 3 תווים לפחות - - - + + + RSS (%1) RSS (%1) - + The password is invalid הסיסמה אינה תקפה - + DL speed: %1 e.g: Download speed: 10 KiB/s מהירות הורדה: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s מהירות העלאה: %1 - + Hide הסתר - + Exiting qBittorrent יוצא מ־qBittorrent - + Open Torrent Files פתיחת קבצי טורנט - + Torrent Files קבצי טורנט @@ -5845,47 +5853,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 חיבור נכשל, תשובה בלתי מזוהה: %1 - + Authentication failed, msg: %1 אימות נכשל, הודעה: %1 - + <mail from> was rejected by server, msg: %1 <mail from> סורב על ידי השרת, הודעה: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> סורב על ידי השרת, הודעה: %1 - + <data> was rejected by server, msg: %1 <data> סורב על ידי השרת, הודעה: %1 - + Message was rejected by the server, error: %1 הודעה סורבה על ידי השרת, שגיאה: %1 - + Both EHLO and HELO failed, msg: %1 גם EHLO וגם HELO נכשלו, הודעה: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 נראה כי שרת SMTP אינו תומך במצבי אימות כלשהם שאנחנו תומכים בהם [CRAM-MD5|PLAIN|LOGIN], מדלג על אימות, בידיעה שהוא קרוב לוודאי ייכשל… מצבי אימות שרת: %1 - + Email Notification Error: %1 שגיאת התראת דוא״ל: %1 @@ -5927,10 +5935,6 @@ Please install it manually. RSS RSS - - Web UI - ממשק רשת - Advanced @@ -5967,10 +5971,6 @@ Please install it manually. Always תמיד - - Paused torrents only - טורנטים מושהים בלבד - Action on double-click @@ -5981,10 +5981,6 @@ Please install it manually. Downloading torrents: טורנטים בהורדה: - - Start / Stop Torrent - התחל / עצור טורנט - @@ -6043,175 +6039,175 @@ Please install it manually. ק״ב - + + Show free disk space in status bar + + + + Torrent content layout: סידור תוכן של טורנט: - + Original מקורי - + Create subfolder צור תת־תיקייה - + Don't create subfolder אל תיצור תת־תיקייה - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue הוסף לראש התור - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... הוסף… - + Options.. אפשרויות… - + Remove הסר - + Email notification &upon download completion שלח בדוא״ל התראה בעת השלמת הורדה - + Send test email - + שלח דוא״ל בחינה - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: פרוטוקול חיבור עמיתים: - + Any כל דבר - + I2P (experimental) I2P (ניסיוני) - + Mixed mode מצב מעורבב - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering &סינון IP - + Schedule &the use of alternative rate limits תזמן את ה&שימוש במגבלות קצב חלופיות - + From: From start time מן: - + To: To end time אל: - + Find peers on the DHT network מצא עמיתים על רשת DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6220,188 +6216,190 @@ Disable encryption: Only connect to peers without protocol encryption השבת הצפנה: התחבר רק אל עמיתים בלי הצפנת פרוטוקול - + Allow encryption התר הצפנה - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">עוד מידע</a>) - + Maximum active checking torrents: טורנטים נבדקים פעילים מרביים: - + &Torrent Queueing תור &טורנטים - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - הוסף באופן &אוטומטי עוקבנים אלו להורדות חדשות: - - - + RSS Reader קורא RSS - + Enable fetching RSS feeds אפשר משיכת הזנות RSS - + Feeds refresh interval: מרווח ריענון הזנות: - + Same host request delay: - + Maximum number of articles per feed: מספר מרבי של מאמרים להזנה: - - - + + + min minutes דק' - + Seeding Limits מגבלות זריעה - Pause torrent - השהה טורנט - - - + Remove torrent הסר טורנט - + Remove torrent and its files הסר טורנט ואת קבציו - + Enable super seeding for torrent אפשר זריעת־על עבור טורנט - + When ratio reaches כאשר יחס מגיע אל - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + עצור טורנט + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - כתובת: + כתובת: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader מורידן אוטומטי של טורנטי RSS - + Enable auto downloading of RSS torrents אפשר הורדה אוטומטית של טורנטי RSS - + Edit auto downloading rules... ערוך כללי הורדה אוטומטית… - + RSS Smart Episode Filter מסנן פרקים חכם RSS - + Download REPACK/PROPER episodes הורד פרקי REPACK/PROPER - + Filters: מסננים: - + Web User Interface (Remote control) ממשק משתמש של רשת (שלט רחוק) - + IP address: כתובת IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6409,41 +6407,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv ציין כתובת IPv4 או כתובת IPv6. אתה יכול לציין "0.0.0.0" עבור כתובת IPv4 כלשהי, "::" עבור כתובת IPv6 כלשהי, או "*" עבור IPv4 וגם IPv6. - + Ban client after consecutive failures: החרם לקוח לאחר כישלונות רצופים: - + Never אף פעם - + ban for: החרם למשך: - + Session timeout: פסק זמן של שיח: - + Disabled מושבת - Enable cookie Secure flag (requires HTTPS) - אפשר דגל של עוגייה מאובטחת (דורש HTTPS) - - - + Server domains: תחומי שרת: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6456,37 +6450,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &השתמש ב־HTTPS במקום ב־HTTP - + Bypass authentication for clients on localhost עקוף אימות עבור לקוחות על localhost - + Bypass authentication for clients in whitelisted IP subnets עקוף אימות עבור לקוחות אשר בתת־רשתות IP ברשימה לבנה - + IP subnet whitelist... רשימה לבנה של תת־רשתות IP… - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name &עדכן את השם של התחום הדינמי שלי @@ -6498,7 +6492,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - + חיפוש @@ -6518,7 +6512,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + סגנון: @@ -6599,99 +6593,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.מחק יומני גיבוי שישנים יותר מן: - + Show external IP in status bar - + When adding a torrent בעת הוספת טורנט - + Bring torrent dialog to the front הבא את דו שיח הטורנט לחזית - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled מחק גם קבצי טורנט שהוספתם בוטלה - + Also when addition is cancelled גם כאשר הוספה מבוטלת - + Warning! Data loss possible! אזהרה! אבדן נתונים אפשרי! - + Saving Management ניהול שמירה - + Default Torrent Management Mode: מצב ברירת מחדל של ניהול טורנטים: - + Manual ידני - + Automatic אוטומטי - + When Torrent Category changed: כאשר קטגורית טורנט השתנתה: - + Relocate torrent מקם מחדש טורנט - + Switch torrent to Manual Mode החלף טורנט למצב ידני - - + + Relocate affected torrents מקם מחדש טורנטים מושפעים - - + + Switch affected torrents to Manual Mode החלף טורנטים מושפעים למצב ידני - + Use Subcategories השתמש בתת־קטגוריות - + Default Save Path: נתיב ברירת מחדל של שמירה: - + Copy .torrent files to: העתק קבצי torrent. אל: @@ -6701,26 +6695,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.הראה את &qBittorrent באזור ההתראות - &Log file - קובץ &יומן - - - + Display &torrent content and some options הצג תוכן &טורנט ומספר אפשרויות - + De&lete .torrent files afterwards מ&חק קבצי .torrent לאחר מכן - + Copy .torrent files for finished downloads to: העתק קבצי torrent. עבור הורדות שהסתיימו אל: - + Pre-allocate disk space for all files הקצה מראש מקום בכונן עבור כל הקבצים @@ -6750,10 +6740,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder הצג מראש קובץ, אחרת פתח תיקיית יעד - - Show torrent options - הראה אפשרויות טורנט - Shows a confirmation dialog when exiting with active torrents @@ -6819,69 +6805,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.שנים - + Log performance warnings כתוב ביומן אזהרות ביצוע - The torrent will be added to download list in a paused state - הטורנט יתווסף אל רשימת ההורדות במצב מושהה - - - + Do not start the download automatically The torrent will be added to download list in a stopped state אל תתחיל את ההורדה באופן אוטומטי - + Whether the .torrent file should be deleted after adding it האם על קובץ הטורנט להימחק לאחר הוספתו - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. הקצה גדלי קובץ מלאים בכונן לפני התחלת הורדות, כדי למזער קיטוע. שימושי רק עבור כוננים קשיחים. - + Append .!qB extension to incomplete files הוסף סיומת .!qB אל קבצים בלתי שלמים - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it כאשר טורנט מורד, הצע להוסיף טורנטים מקבצי .torrent כלשהם שנמצאים בתוכו - + Enable recursive download dialog אפשר דו־שיח של הורדה נסיגתית - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually אוטומטי: קניניי טורנט שונים (לדוג' נתיב שמירה) יוחלטו ע״י הקטגוריה המשויכת ידני: קניניי טורנט שונים (לדוג' נתיב שמירה) חייבים להיקצות באופן ידני - + When Default Save/Incomplete Path changed: כאשר נתיב ברירת מחדל של שמירה/אי־שלמות השתנה: - + When Category Save Path changed: כאשר נתיב שמירת קטגוריה השתנה: - + Use Category paths in Manual Mode השתמש בנתיבי קטגוריה במצב ידני - + Resolve relative Save Path against appropriate Category path instead of Default one פתור נתיב שמירה קשור משפחה כנגד נתיב קטגוריה הולם במקום נתיב ברירת המחדל @@ -6901,50 +6883,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: תנאי עצירה : - - + + None (כלום) - - + + Metadata received מטא־נתונים התקבלו - - + + Files checked קבצים שנבדקו - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: השתמש בנתיב אחר עבור טורנטים בלתי שלמים: - + Automatically add torrents from: הוסף טורנטים באופן אוטומטי מן: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6961,515 +6943,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver מקבל - + To: To receiver אל: - + SMTP server: שרת SMTP: - + Sender שולח - + From: From sender מאת: - + This server requires a secure connection (SSL) שרת זה דורש חיבור מאובטח (SSL) - - + + Authentication אימות - - - - + + + + Username: שם משתמש: - - - - + + + + Password: סיסמה: - + Run external program הרץ תוכנית חיצונית - + Show console window הראה חלון מסוף - + TCP and μTP TCP ו־μTP - + Listening Port פתחת האזנה - + Port used for incoming connections: פתחה המשמשת לחיבורים נכנסים: - + Set to 0 to let your system pick an unused port הגדר אל 0 כדי לתת למערכת שלך לבחור פתחה שאינה בשימוש - + Random אקראי - + Use UPnP / NAT-PMP port forwarding from my router השתמש בקידום פתחות UPnP / NAT-PMP מהנתב שלי - + Connections Limits מגבלות חיבורים - + Maximum number of connections per torrent: מספר מרבי של חיבורים לכל טורנט: - + Global maximum number of connections: מספר מרבי כללי של חיבורים: - + Maximum number of upload slots per torrent: מספר מרבי של חריצי העלאה לכל טורנט: - + Global maximum number of upload slots: מספר מרבי כללי של חריצי העלאה: - + Proxy Server שרת ייפוי כוח - + Type: סוג: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: מארח: - - - + + + Port: פתחה: - + Otherwise, the proxy server is only used for tracker connections אחרת, שרת ייפוי הכוח משמש רק לחיבורי עוקבנים - + Use proxy for peer connections השתמש בייפוי כוח עבור חיבורי עמיתים - + A&uthentication &אימות - Info: The password is saved unencrypted - מידע: הסיסמה נשמרת באופן בלתי מוצפן + מידע: הסיסמה נשמרת באופן בלתי מוצפן - + Filter path (.dat, .p2p, .p2b): נתיב מסנן (.dat, .p2p, .p2b): - + Reload the filter טען מחדש את המסנן - + Manually banned IP addresses... כתובות IP מוחרמות באופן ידני… - + Apply to trackers החל על עוקבנים - + Global Rate Limits מגבלות קצב כלליות - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s ק״ב/ש - - + + Upload: העלאה: - - + + Download: הורדה: - + Alternative Rate Limits מגבלות קצב חלופיות - + Start time זמן התחלה - + End time זמן סוף - + When: מתי: - + Every day כל יום - + Weekdays ימי חול - + Weekends סופי שבוע - + Rate Limits Settings הגדרות מגבלות קצב - + Apply rate limit to peers on LAN החל מגבלת קצב על עמיתים ב־LAN - + Apply rate limit to transport overhead החל מגבלת קצב על תקורת תעבורה - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol החל מגבלת קצב על פרוטוקול µTP - + Privacy פרטיות - + Enable DHT (decentralized network) to find more peers אפשר DHT (רשת מבוזרת) כדי למצוא יותר עמיתים - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) החלף עמיתים עם לקוחות ביטורנט תואמים (µTorrent, Vuze, …) - + Enable Peer Exchange (PeX) to find more peers אפשר החלפת עמיתים (PeX) כדי למצוא יותר עמיתים - + Look for peers on your local network חפש עמיתים על הרשת המקומית שלך - + Enable Local Peer Discovery to find more peers אפשר גילוי עמיתים מקומיים כדי למצוא יותר עמיתים - + Encryption mode: מצב הצפנה: - + Require encryption דרוש הצפנה - + Disable encryption השבת הצפנה - + Enable when using a proxy or a VPN connection אפשר בעת שימוש בחיבור ייפוי כוח או בחיבור VPN - + Enable anonymous mode אפשר מצב אלמוני - + Maximum active downloads: הורדות פעילות מרביות: - + Maximum active uploads: העלאות פעילות מרביות: - + Maximum active torrents: טורנטים פעילים מרביים: - + Do not count slow torrents in these limits אל תחשיב טורנטים איטיים במגבלות אלו - + Upload rate threshold: סף קצב העלאה: - + Download rate threshold: סף קצב הורדה: - - - - + + + + sec seconds שניות - + Torrent inactivity timer: קוצב־זמן של אי־פעילות טורנט: - + then לאחר מכן - + Use UPnP / NAT-PMP to forward the port from my router השתמש ב־UPnP / NAT-PMP כדי להעביר הלאה את הפתחה מהנתב שלי - + Certificate: תעודה: - + Key: מפתח: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>מידע אודות תעודות</a> - + Change current password שנה סיסמה נוכחית - Use alternative Web UI - השתמש בממשק רשת חלופי - - - + Files location: מיקום קבצים: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security אבטחה - + Enable clickjacking protection אפשר הגנה מפני מחטף לחיצה - + Enable Cross-Site Request Forgery (CSRF) protection אפשר הגנה מפני זיוף בקשות חוצות־אתרים (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation אפשר תיקוף של כותרת מארח - + Add custom HTTP headers הוסף כותרות HTTP מותאמות אישית - + Header: value pairs, one per line כותרת: זוגות ערכים, אחד לשורה - + Enable reverse proxy support אפשר תמיכה בייפוי כוח מהופך - + Trusted proxies list: רשימת ייפויי כוח מהימנים: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: שירות: - + Register הירשם - + Domain name: שם תחום: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! על ידי אפשור אפשרויות אלו, אתה יכול <strong>לאבד בצורה בלתי הפיכה</strong> את קבצי הטורנט שלך! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog אם תאפשר את האפשרות השנייה (&ldquo;גם כאשר הוספה מבוטלת &rdquo;) קובץ הטורנט <strong>יימחק</strong> אפילו אם תלחץ על &ldquo;<strong>ביטול</strong>&rdquo; בדו־שיח &ldquo;הוספת טורנט&rdquo; @@ -7479,12 +7456,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not בחר קובץ ערכת נושא UI של qBittorrent - + Choose Alternative UI files location בחר מיקום של קבצי ממשק חלופי - + Supported parameters (case sensitive): פרמטרים נתמכים (תלוי רישיות): @@ -7504,183 +7481,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: שם טורנט - + %L: Category %L: קטגוריה - + %F: Content path (same as root path for multifile torrent) %F: נתיב תוכן (זהה לנתיב שורש עבור טורנט מרובה קבצים) - + %R: Root path (first torrent subdirectory path) %R: נתיב שורש (תחילה נתיב תיקיית משנה של טורנט) - + %D: Save path %D: נתיב שמירה - + %C: Number of files %C: מספר קבצים - + %Z: Torrent size (bytes) %Z: גודל טורנט (בתים) - + %T: Current tracker %T: עוקבן נוכחי - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") עצה: תמצת פרמטר בעזרת סימני ציטוט כדי למנוע ממלל להיחתך בשטח לבן (לדוגמה, "%N") - + Test email - + בחן דוא״ל - + Attempted to send email. Check your inbox to confirm success - + (None) (כלום) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds טורנט ייחשב איטי אם הקצבים של הורדתו והעלאתו נשארים מתחת לערכים אלו עבור שניות "קוצב־זמן של אי־פעילות טורנט" - + Certificate תעודה - + Select certificate בחר תעודה - + Private key מפתח פרטי - + Select private key בחר מפתח פרטי - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + מערכת - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + מערכת - + Select folder to monitor בחר תיקייה לניטור - + Adding entry failed הוספת כניסה נכשלה - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error שגיאת מיקום - - + + Choose export directory בחר תיקיית ייצוא - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well כאשר אפשרויות אלו מאופשרות, qBittorrent <strong>ימחק</strong> קבצי טורנט לאחר שהם התווספו בהצלחה (האפשרות הראשונה) או לא (האפשרות השנייה) לתור ההורדות. זה יחול <strong>לא רק</strong> על הקבצים שנפתחו דרך פעולת התפריט &ldquo;הוספת טורנט&rdquo; אלא גם על אלו שנפתחו דרך <strong>שיוך סוג קובץ</strong> @@ -7690,69 +7667,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not qBittorrent UI קובץ (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: תגיות (מופרדות ע״י פסיק) - + %I: Info hash v1 (or '-' if unavailable) %I: גיבוב מידע גרסה 1 (או '-' אם לא זמין) - + %J: Info hash v2 (or '-' if unavailable) %J: גיבוב מידע גרסה 2 (או '-' אם לא זמין) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: זהות טורנט (או גיבוב מידע SHA-1 עבור טורנט גרסה 1 או גיבוב מידע SHA-256 קטום עבור טורנט גרסה 2/היברידי) - - + + Choose a save directory בחירת תיקיית שמירה - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file בחר קובץ מסנן IP - + All supported filters כל המסננים הנתמכים - + The alternative WebUI files location cannot be blank. - + Parsing error שגיאת ניתוח - + Failed to parse the provided IP filter ניתוח מסנן ה־IP שסופק נכשל. - + Successfully refreshed רוענן בהצלחה - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number ניתח בהצלחה את מסנן ה־IP שסופק: %1 כללים הוחלו. @@ -7763,18 +7740,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not העדפות - + Time Error שגיאת זמן - + The start time and the end time can't be the same. זמן ההתחלה וזמן הסוף אינם יכולים להיות אותו הדבר. - - + + Length Error שגיאת אורך @@ -7865,163 +7842,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region מדינה/אזור - + IP/Address IP/כתובת - + Port פתחה - + Flags דגלים - + Connection חיבור - + Client i.e.: Client application לקוח - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded התקדמות - + Down Speed i.e: Download speed מהירות הורדה - + Up Speed i.e: Upload speed מהירות העלאה - + Downloaded i.e: total data downloaded ירד - + Uploaded i.e: total data uploaded הועלה - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. רלוונטיות - + Files i.e. files that are being downloaded right now קבצים - + Column visibility נראות עמודות - + Resize columns שנה גודל עמודות - + Resize all non-hidden columns to the size of their contents שנה גודל של כל העמודות הבלתי מוסתרות אל הגודל של התכנים שלהן - + Add peers... הוסף עמיתים… - - + + Adding peers מוסיף עמיתים - + Some peers cannot be added. Check the Log for details. מספר עמיתים אינם יכולים להתווסף. בדוק את היומן לפרטים. - + Peers are added to this torrent. עמיתים מתווספים אל טורנט זה. - - + + Ban peer permanently החרם עמית לצמיתות - + Cannot add peers to a private torrent לא ניתן להוסיף עמיתים אל טורנט פרטי - + Cannot add peers when the torrent is checking לא ניתן להוסיף עמיתים כאשר הטורנט נבדק - + Cannot add peers when the torrent is queued לא ניתן להוסיף עמיתים כאשר הטורנט בתור - + No peer was selected עמית לא נבחר - + Are you sure you want to permanently ban the selected peers? האם אתה בטוח שאתה רוצה להחרים לצמיתות את העמיתים הנבחרים? - + Peer "%1" is manually banned עמית "%1" מוחרם באופן ידני - + N/A לא זמין - + Copy IP:port העתק IP:פתחה @@ -8302,34 +8279,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent פעיל - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent פעיל @@ -8578,7 +8529,7 @@ Those plugins were disabled. Popularity: - + פופולריות: @@ -8613,7 +8564,7 @@ Those plugins were disabled. Private: - + פרטי: @@ -8621,153 +8572,124 @@ Those plugins were disabled. נתיב שמירה: - + Never אף פעם - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (יש %3) - - + + %1 (%2 this session) %1 (%2 שיח נוכחי) - - + + N/A לא זמין - + Yes - כן + כן - + No - לא + לא - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (נזרע למשך %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 מרב) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 סה״כ) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 ממוצע) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - זורע רשת חדש - - - Remove Web seed - הסר זורע רשת - - - Copy Web seed URL - העתק כתובת זורע רשת - - - Edit Web seed URL - ערוך כתובת זורע רשת - - - + Filter files... סנן קבצים… - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled גרפי מהירות מושבתים - + You can enable it in Advanced Options אתה יכול לאפשר את זה באפשרויות מתקדמות - New URL seed - New HTTP source - זורע כתובת חדש - - - New URL seed: - זורע כתובת חדש: - - - This URL seed is already in the list. - זורע כתובת זה נמצא כבר ברשימה. - - - + Web seed editing עריכת זורע רשת - + Web seed URL: כתובת זורע רשת: @@ -8775,33 +8697,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. תסדיר נתונים בלתי תקף. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 לא היה ניתן לשמור נתוני מורידן אוטומטי RSS ב־%1. שגיאה: %2 - + Invalid data format תסדיר נתונים בלתי תקף - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 לא היה ניתן לטעון כללי מורידן אוטומטי RSS. סיבה: %1 @@ -8809,22 +8731,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 כישלון בהורדת הזנת RSS ב־'%1'. סיבה: %2 - + RSS feed at '%1' updated. Added %2 new articles. הזנת RSS ב־'%1' עודכנה. %2 מאמרים חדשים התווספו. - + Failed to parse RSS feed at '%1'. Reason: %2 כישלון בניתוח הזנת RSS ב־'%1'. סיבה: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. הזנת RSS ב-'%1' ירדה בהצלחה. אבחון שלה מתחיל. @@ -8873,12 +8795,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" לא היה ניתן לשמור תצורת שיח RSS. קובץ: "%1". שגיאה: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" לא היה ניתן לשמור נתוני שיח RSS. קובץ: "%1". שגיאה: "%2" @@ -8900,76 +8822,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. פריט אינו קיים: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. לא ניתן למחוק תיקיית שורש. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. לא היה ניתן לטעון הזנת RSS. הזנה: "%1". סיבה: מען נדרש. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. לא היה ניתן לטעון הזנת RSS. הזנה: "%1". סיבה: מזהה משתמש בלתי תקף. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. הזנת RSS כפולה התגלתה. מזהה משתמש: "%1". שגיאה: התצורה נראית פגומה. - + Couldn't load RSS item. Item: "%1". Invalid data format. לא היה ניתן לטעון פריט RSS. פריט: "%1". תסדיר נתונים בלתי תקף. - + Corrupted RSS list, not loading it. רשימת RSS פגומה, בלתי אפשרי לטעון אותה. - + Incorrect RSS Item path: %1. נתיב שגוי של פריט RSS: %1. - + RSS item with given path already exists: %1. פריט RSS עם הנתיב שניתן קיים כבר: %1. - + Parent folder doesn't exist: %1. תיקיית הורה אינה קיימת: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + כתובת: + + + + Refresh interval: + + + + + sec + שניות + + + + Default + ברירת מחדל + + RSSWidget @@ -9069,78 +9032,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - ערוך כתובת הזנה… + ערוך כתובת הזנה… - Edit feed URL - ערוך כתובת הזנה + ערוך כתובת הזנה - + Please choose a folder name אנא בחר שם תיקייה - + Folder name: שם תיקייה: - + New folder תיקייה חדשה - - Please type a RSS feed URL - אנא הקלד כתובת של הזנת RSS + אנא הקלד כתובת של הזנת RSS - - Feed URL: - כתובת הזנה: + כתובת הזנה: - + Deletion confirmation אישור מחיקה - + Are you sure you want to delete the selected RSS feeds? האם אתה בטוח שאתה רוצה למחוק את הזנות ה־RSS הנבחרות? - + Please choose a new name for this RSS feed אנא בחר שם חדש עבור הזנת RSS זו - + New feed name: שם הזנה חדשה: - + Rename failed שינוי שם נכשל - + Date: תאריך: - + Feed: הזנה: - + Author: מחבר: @@ -9277,10 +9239,6 @@ Those plugins were disabled. i.e: Number of partial sources עלוקות - - Search engine - מנוע חיפוש - Filter search results... @@ -9370,17 +9328,17 @@ Those plugins were disabled. Engine - + מנוע Engine URL - + כתובת מנוע Published On - + פורסם @@ -9401,104 +9359,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. תסדיר בלתי ידוע של קובץ מתקע של מנוע חיפוש. - + Plugin already at version %1, which is greater than %2 מתקע כבר בגרסה %1, שהיא גדולה יותר מן %2 - + A more recent version of this plugin is already installed. גרסה חדשה יותר של מתקע זה מותקנת כבר. - + Plugin %1 is not supported. המתקע %1 אינו נתמך. - - + + Plugin is not supported. המתקע אינו נתמך. - + Plugin %1 has been successfully updated. המתקע %1 עודכן בהצלחה. - + All categories כל הקטגוריות - + Movies סרטים - + TV shows סדרות - + Music מוזיקה - + Games משחקים - + Anime אנימה - + Software תוכנות - + Pictures תמונות - + Books ספרים - + Update server is temporarily unavailable. %1 שרת העדכון אינו זמין זמנית. %1 - - + + Failed to download the plugin file. %1 כישלון בהורדת קובץ המתקע. %1 - + Plugin "%1" is outdated, updating to version %2 המתקע "%1" מיושן, מעדכן אל גרסה %2 - + Incorrect update info received for %1 out of %2 plugins. מידע שגוי של עדכון התקבל עבור %1 מתוך %2 מתקעים. - + Search plugin '%1' contains invalid version string ('%2') מתקע החיפוש '%1' מכיל מחרוזת של גרסה בלתי תקפה ('%2') @@ -9524,135 +9482,127 @@ Click the "Search plugins..." button at the bottom right of the window מתקעי חיפוש… - + A phrase to search for. ביטוי לחפש אחריו. - + Spaces in a search term may be protected by double quotes. רווחים במונח חיפוש יכולים להתמגן ע״י מרכאות כפולות. - + Example: Search phrase example דוגמה: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: חפש אחר <b>foo bar</b> - + All plugins כל המתקעים - + Only enabled רק מאופשרים - - + + Invalid data format. - תסדיר נתונים בלתי תקף. + תסדיר נתונים בלתי תקף. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: חפש אחר <b>foo</b> ו־<b>bar</b> - + Refresh - + Close tab סגור לשונית - + Close all tabs סגור את כל הלשוניות - + Select... בחר… - - + + Search Engine מנוע חיפוש - - + + Please install Python to use the Search Engine. אנא התקן פייתון כדי להשתמש במנוע החיפוש. - + Empty search pattern תבנית חיפוש ריקה - + Please type a search pattern first אנא הקלד תבנית חיפוש תחילה - + Stop עצור - - Search has finished - החיפוש הסתיים - - - Search has failed - החיפוש נכשל - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10050,67 +10000,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: מעמד חיבור: - - + + No direct connections. This may indicate network configuration problems. אין חיבורים ישירים. זה עלול להעיד על בעיות בתצורת הרשת. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 צמתים - + qBittorrent needs to be restarted! qBittorrent צריך להיפעל מחדש! - - + + Connection Status: מעמד חיבור: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. לא מקוון. זה אומר בד״כ ש־qBittorrent נכשל להאזין אל הפתחה הנבחרת עבור חיבורים נכנסים. - + Online מקוון - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits לחץ כדי להחליף אל מגבלות מהירות חלופיות - + Click to switch to regular speed limits לחץ כדי להחליף אל מגבלות מהירות רגילה @@ -10138,23 +10098,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) הושלם (0) - - Resumed (0) - מומשך (0) - - - Paused (0) - מושהה (0) - Running (0) - + רץ (0) Stopped (0) - + נעצר (0) @@ -10219,49 +10171,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + רץ (%1) Stopped (%1) - + נעצר (%1) Start torrents - + התחל טורנטים Stop torrents - - - - Paused (%1) - מושהה (%1) + עצור טורנטים Moving (%1) מעביר (%1) - - Resume torrents - המשך טורנטים - - - Pause torrents - השהה טורנטים - Remove torrents הסר טורנטים - - Resumed (%1) - מומשך (%1) - Active (%1) @@ -10333,32 +10269,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags הסר תגיות שאינן בשימוש - - Resume torrents - המשך טורנטים - - - Pause torrents - השהה טורנטים - Remove torrents הסר טורנטים - - New Tag - תגית חדשה - Start torrents - + התחל טורנטים Stop torrents - + עצור טורנטים @@ -10685,17 +10609,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10947,13 +10871,6 @@ Please choose a different name and try again. מעקב אחר תיקייה: "%1" - - TorrentInfo - - Invalid metadata - מטא־נתונים בלתי תקפים - - TorrentOptionsDialog @@ -10991,10 +10908,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - מגבלות מהירות של טורנט - Download: @@ -11027,26 +10940,6 @@ Please choose a different name and try again. Upload: העלאה: - - Torrent share limits - מגבלות שיתוף של טורנט - - - Use global share limit - השתמש במגבלת שיתוף כללית - - - Set no share limit - אל תגדיר מגבלת שיתוף - - - Set share limit to - הגדר מגבלת שיתוף אל - - - ratio - יחס - Disable DHT for this torrent @@ -11088,14 +10981,6 @@ Please choose a different name and try again. Not applicable to private torrents בלתי ישים על טורנטים פרטיים - - No share limit method selected - שיטת מגבלת שיתוף לא נבחרה - - - Please select a limit method first - אנא בחר תחילה שיטת מגבלה - TorrentShareLimitsWidget @@ -11150,12 +11035,12 @@ Please choose a different name and try again. Stop torrent - + עצור טורנט Remove torrent - הסר טורנט + הסר טורנט @@ -11165,7 +11050,7 @@ Please choose a different name and try again. Enable super seeding for torrent - אפשר זריעת־על עבור טורנט + אפשר זריעת־על עבור טורנט @@ -11180,10 +11065,6 @@ Please choose a different name and try again. Torrent Tags - - New Tag - תגית חדשה - Add tag @@ -11218,78 +11099,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. שגיאה: '%1' הוא אינו קובץ תקף של טורנט. - + Priority must be an integer עדיפות חייבת להיות מספר שלם - + Priority is not valid עדיפות אינה תקפה - + Torrent's metadata has not yet downloaded מטא־נתונים של טורנט עדין לא ירדו - + File IDs must be integers זהויות קובץ חייבות להיות מספר שלם - + File ID is not valid זהות קובץ אינה תקפה - - - - + + + + Torrent queueing must be enabled תור טורנטים חייב להיות מאופשר - - + + Save path cannot be empty נתיב שמירה אינו יכול להיות ריק - - + + Cannot create target directory לא ניתן ליצור תיקיית מטרה - - + + Category cannot be empty קטגוריה אינה יכולה להיות ריקה - + Unable to create category לא היה ניתן ליצור קטגוריה - + Unable to edit category לא היה ניתן לערוך קטגוריה - + Unable to export torrent file. Error: %1 לא היה ניתן לייצא קובץ טורנט. שגיאה: %1 - + Cannot make save path לא ניתן ליצור נתיב שמירה @@ -11309,39 +11190,39 @@ Please choose a different name and try again. הפרמטר 'מיון' בלתי תקף - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" אינו מדדן תקף של קובץ. - + Index %1 is out of bounds. הקשרים של מדדן %1 אזלו. - - + + Cannot write to directory לא ניתן לכתוב בתיקייה - + WebUI Set location: moving "%1", from "%2" to "%3" קביעת מיקום של ממשק רשת: מעביר את "%1" מן "%2" אל "%3" - + Incorrect torrent name שם לא נכון של טורנט - - + + Incorrect category name שם לא נכון של קטגוריה @@ -11434,12 +11315,12 @@ Please choose a different name and try again. BT Protocol - + פרוטוקול BT Next Announce - + ההכרזה הבאה @@ -11451,10 +11332,6 @@ Please choose a different name and try again. Tier נדבך - - Protocol - פרוטוקול - Status @@ -11485,10 +11362,6 @@ Please choose a different name and try again. Message הודעה - - v%1 - v%1 - TrackerListWidget @@ -11498,73 +11371,73 @@ Please choose a different name and try again. הטורנט הזה פרטי - + Tracker editing עריכת עוקבן - + Tracker URL: כתובת עוקבן: - - + + Tracker editing failed עריכת עוקבן נכשלה - + The tracker URL entered is invalid. כתובת העוקבן שהוכנסה אינה תקפה. - + The tracker URL already exists. כתובת העוקבן קיימת כבר. - + Edit tracker URL... ערוך כתובת עוקבן… - + Remove tracker הסר עוקבן - + Copy tracker URL העתקת כתובת העוקבן - + Force reannounce to selected trackers אלץ הכרזה מחדש אל עוקבנים נבחרים - + Force reannounce to all trackers אלץ הכרזה מחדש לכל העוקבנים - + Resize columns שנה גודל עמודות - + Resize all non-hidden columns to the size of their contents שנה גודל של כל העמודות הבלתי מוסתרות אל הגודל של התכנים שלהן - + Add trackers... הוסף עוקבנים… - + Column visibility נראות עמודות @@ -11647,20 +11520,12 @@ Please choose a different name and try again. Start torrents - + התחל טורנטים Stop torrents - - - - Resume torrents - המשך טורנטים - - - Pause torrents - השהה טורנטים + עצור טורנטים @@ -11784,10 +11649,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. בודק נתוני המשכה - - Paused - מושהה - Completed @@ -11828,21 +11689,16 @@ Please choose a different name and try again. % Done התקדמות - - Status - Torrent status (e.g. downloading, seeding, paused) - מעמד - Stopped - + נעצר Status Torrent status (e.g. downloading, seeding, stopped) - + מיצב @@ -11877,7 +11733,7 @@ Please choose a different name and try again. Popularity - + פופולריות @@ -11958,22 +11814,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - משך זמן פעיל + משך זמן פעיל Yes - כן + כן No - לא - - - Time Active - Time (duration) the torrent is active (not paused) - משך זמן פעיל + לא @@ -12045,7 +11896,7 @@ Please choose a different name and try again. Private Flags private torrents - + פרטי @@ -12075,350 +11926,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility נראות עמודות - + Recheck confirmation אישור בדיקה מחדש - + Are you sure you want to recheck the selected torrent(s)? האם אתה בטוח שאתה רוצה לבדוק מחדש את הטורנטים הנבחרים? - + Rename שינוי שם - + New name: שם חדש: - + Choose save path בחירת נתיב שמירה - Would you like to pause all torrents? - האם אתה רוצה לעצור את כל הטורנטים ? - - - Would you like to resume all torrents? - האם אתה רוצה להמשיך את כל הטורנטים ? - - - + Unable to preview לא היה ניתן להציג מראש - + The selected torrent "%1" does not contain previewable files הטורנט הנבחר "%1" אינו מכיל קבצים ברי־הצגה מראש - + Resize columns שנה גודל עמודות - + Resize all non-hidden columns to the size of their contents שנה גודל של כל העמודות הבלתי מוסתרות אל הגודל של התכנים שלהן - + Enable automatic torrent management אפשר ניהול טורנטים אוטומטי - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. האם אתה בטוח שאתה רוצה לאפשר ניהול טורנטים אוטומטי עבור הטורנטים הנבחרים? ייתכן שהם ימוקמו מחדש. - Add Tags - הוסף תגיות - - - + Choose folder to save exported .torrent files בחר תיקייה לשמור קבצי טורנט מיוצאים - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" יצוא קובץ טורנט נכשל. טורנט: "%1". נתיב שמירה: "%2". סיבה: "%3" - + A file with the same name already exists קובץ עם אותו השם קיים כבר - + Export .torrent file error שגיאת יצוא קובץ טורנט - + Remove All Tags הסר את כל התגיות - + Remove all tags from selected torrents? האם להסיר את כל התגיות מהטורנטים הנבחרים? - + Comma-separated tags: תגיות מופרדות ע״י פסיקים: - + Invalid tag תגית בלתי תקפה - + Tag name: '%1' is invalid שם התגית: '%1' אינו תקף - &Resume - Resume/start the torrent - &המשך - - - &Pause - Pause the torrent - ה&שהה - - - Force Resu&me - Force Resume/start the torrent - אלץ ה&משכה - - - + Pre&view file... ה&צג מראש קובץ… - + Torrent &options... &אפשרויות טורנט… - + 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 loc&ation... הגדר מי&קום… - + Force rec&heck אלץ &בדיקה חוזרת - + Force r&eannounce אלץ ה&כרזה מחדש - + &Magnet link קישור &מגנט - + Torrent &ID &זהות טורנט - + &Comment - + &Name &שם - + Info &hash v1 &גיבוב מידע גרסה 1 - + Info h&ash v2 ג&יבוב מידע גרסה 2 - + Re&name... שנה &שם… - + Edit trac&kers... ערוך &עוקבנים… - + E&xport .torrent... יי&צא טורנט… - + Categor&y קטגור&יה - + &New... New category... &חדש… - + &Reset Reset category &אפס - + Ta&gs ת&גיות - + &Add... Add / assign multiple tags... &הוסף… - + &Remove All Remove all tags ה&סר הכול - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &תור - + &Copy ה&עתק - + Exported torrent is not necessarily the same as the imported - + Download in sequential order הורד בסדר עוקב - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + &התחל - + Sto&p Stop the torrent - + עצ&ור - + Force Star&t Force Resume/start the torrent - + אלץ ה&תחלה - + &Remove Remove the torrent &הסר - + Download first and last pieces first הורד חתיכה ראשונה ואחרונה תחילה - + Automatic Torrent Management ניהול טורנטים אוטומטי - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category מצב אוטומטי אומר שאפיוני טורנט שונים (למשל, נתיב שמירה) יוחלטו ע״י הקטגוריה המשויכת - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - לא יכול לאלץ הכרזה מחדש אם טורנט מושהה/בתור/מאולץ/נבדק - - - + Super seeding mode מצב זריעת־על @@ -12550,32 +12370,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12667,52 +12487,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. סוג בלתי קביל של קובץ, רק קובץ רגיל מותר. - + Symlinks inside alternative UI folder are forbidden. קישורים סמליים בתוך תיקיית ממשק חלופי הם אסורים. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" חסר מפריד ':' בכותרת HTTP מותאמת אישית של ממשק רשת: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12770,7 +12590,7 @@ Please choose a different name and try again. Unknown error - שגיאה בלתי ידועה + שגיאה בלתי ידועה diff --git a/src/lang/qbittorrent_hi_IN.ts b/src/lang/qbittorrent_hi_IN.ts index db37816b1..7e239bd26 100644 --- a/src/lang/qbittorrent_hi_IN.ts +++ b/src/lang/qbittorrent_hi_IN.ts @@ -170,10 +170,6 @@ Never show again पुनः कभी नहीं दिखायें - - Torrent settings - टाॅरेंट सेटिंग्स - Set as default category @@ -235,25 +231,25 @@ रोकने की स्थिति - - + + None कोई नहीं - - + + Metadata received मेटाडाटा प्राप्त - + Torrents that have metadata initially will be added as stopped. - + Files checked जंची हुई फाइलें @@ -368,112 +364,112 @@ .torrent फाइल के रूप में संचित करें... - + I/O Error इनपुट/आउटपुट त्रुटि - + Not Available This comment is unavailable अनुपलब्ध - + Not Available This date is unavailable अनुपलब्ध - + Not available अनुपलब्ध - + Magnet link अज्ञात मैग्नेट लिंक - + Retrieving metadata... मेटाडाटा प्राप्ति जारी... - - + + Choose save path संचय पथ चुनें - + No stop condition is set. रुकने की स्थिति निर्धारित नहीं है। - + Torrent will stop after metadata is received. मेटाडेटा प्राप्त होने के बाद टॉरेंट बंद हो जाएगा। - + Torrent will stop after files are initially checked. फाइलों की प्रारंभिक जाँच के बाद टॉरेंट रुक जाएगा। - + This will also download metadata if it wasn't there initially. - + N/A लागू नहीं - + %1 (Free space on disk: %2) %1 (डिस्क पर अप्रयुक्त स्पेस : %2) - + Not available This size is unavailable. अनुपलब्ध - + Torrent file (*%1) टॉरेंट फाइल (*%1) - + Save as torrent file टोरेंट फाइल के रूप में संचित करें - + Couldn't export torrent metadata file '%1'. Reason: %2. टाॅरेंट मेटाडाटा फाइल '%1' का निर्यात नहीं हो सका। कारण : %2 - + Cannot create v2 torrent until its data is fully downloaded. जब तक इसका डेटा पूरी तरह से डाउनलोड नहीं हो जाता तब तक v2 टॉरेंट नहीं बना सकता। - + Filter files... फाइलें फिल्टर करें... - + Parsing metadata... मेटाडेटा प्राप्यता जारी... - + Metadata retrieval complete मेटाडेटा प्राप्ति पूर्ण @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" टॉरेंट डाउनलोड हो रहा है... स्रोत: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB एमबी - + Recheck torrents on completion पूर्ण होने पर टाॅरेंट पुनः जाँचें - - + + ms milliseconds मिलीसे० - + Setting सेटिंग - + Value Value set for this setting मान - + (disabled) (निष्क्रिय) - + (auto) (स्वत:) - - + + min minutes मिनट - + All addresses सभी पते - + qBittorrent Section क्यूबिटटोरेंट खंड - - + + Open documentation शास्त्र खोलें - + All IPv4 addresses सभी आईपी4 पते - + All IPv6 addresses सभी आईपी6 पते - + libtorrent Section libtorrent खंड - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal सामान्य - + Below normal सामान्य से कम - + Medium मध्यम - + Low कम - + Very low सबसे कम - + Physical memory (RAM) usage limit - + Asynchronous I/O threads अतुल्यकालिक इनपुट/आउटपुट प्रक्रिया - + Hashing threads हैश प्रक्रिया - + File pool size फाइल पूल आकार - + Outstanding memory when checking torrents टोरेंट जाँच हेतु सक्रिय मेमोरी - + Disk cache डिस्क कैश - - - - + + + + + s seconds से० - + Disk cache expiry interval डिस्क कैश मान्यता समाप्ति अंतराल - + Disk queue size - - + + Enable OS cache OS कैश चालू करें - + Coalesce reads & writes पढ़ना और लिखना सम्मिलित रूप से करें - + Use piece extent affinity - + Send upload piece suggestions खण्डों को अपलोड करने के सुझावों को भेजें - - - - - + + + + + 0 (disabled) 0 (निष्क्रिय) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] नोटिफिकेशन काल [0: अनन्त, -1:सिस्टम निर्धारित] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB केबी - + (infinite) (अनन्त) - + (system default) (सिस्टम में पूर्व निर्धारित) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default पूर्व निर्धारित - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) 0 (सिस्टम में पूर्व निर्धारित) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit .torrent फाइल के आकार की सीमा - + Type of service (ToS) for connections to peers सहकर्मियों के कनेक्शानों के लिए सेवा का प्रकार (ToS) - + Prefer TCP TCP को वरीयता - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) अन्तर्राष्ट्रीय डोमेन नाम (IDN) समर्थन - + Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval ताजगी का अन्तराल - + Resolve peer host names सहकर्मी के होस्ट के नाम दिखायें - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus मेनू में चित्र दिखायें - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - सेक + सेक - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications नोटिफिकेशन दिखायें - + Display notifications for added torrents जोड़े गए टौरेंटों के लिए नोटिफिकेशन दिखायें - + Download tracker's favicon ट्रैकर का प्रतीक चित्र डाउनलोड करें - + Save path history length इतने सञ्चय पथ याद रखें - + Enable speed graphs गति के ग्राफ दिखायें - + Fixed slots निश्चित स्लॉट - + Upload rate based अपलोड दर पर आधारित - + Upload slots behavior अपलोड स्लॉटों का व्यवहार - + Round-robin राउंड-रॉबिन - + Fastest upload तीव्रतम अपलोड - + Anti-leech जोंकरोधी - + Upload choking algorithm अपलोड अवरुद्ध करने की विधि - + Confirm torrent recheck टाॅरेंट पुनर्जांच की पुष्टि करें - + Confirm removal of all tags सभी उपनामों को हटाने की पुष्टि करें - + Always announce to all trackers in a tier एक परत पर हमेशा सभी ट्रैकर्स को सूचित करें - + Always announce to all tiers हमेशा सभी परतो पर घोषणा करें - + Any interface i.e. Any network interface कोई भी पद्धति - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries सहकर्मी के देशों को दिखायें - + Network interface नेटवर्क पद्धति - + Optional IP address to bind to - + Max concurrent HTTP announces एकसाथ अधिकतम एचटीटीपी उद्घोषणाएं - + Enable embedded tracker सम्मिलित ट्रैकर सक्रिय करें - + Embedded tracker port सम्मिलित ट्रैकर का पोर्ट @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 टॉरेंट नाम : %1 - + Torrent size: %1 टॉरेंट आकार : %1 - + Save path: %1 संचय पथ : %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds टाॅरेंट %1 में डाउनलोड हुआ। - - + + Thank you for using qBittorrent. क्यूबिटटोरेंट उपयोग करने हेतु धन्यवाद। - + Torrent: %1, sending mail notification टाॅरेंट : %1, मेल अधिसूचना भेज रहा है - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading टॉरेंट "%1" का डाउनलोड पूर्ण हो गया है - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... टॉरेंटों को लोड किया जा रहा है... - + E&xit बाहर निकलें (&X) - + I/O Error i.e: Input/Output Error I/O त्रुटि - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ कारण : %2 - + Torrent added टॉरेंट जोड़ा गया - + '%1' was added. e.g: xxx.avi was added. '%1' को जोड़ा गया। - + Download completed डाउनलोड हो गया - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' डाउनलोड हो चुका है। - + Information सूचना - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit निकास - + Recursive download confirmation पुनरावर्ती डाउनलोड हेतु पुष्टि - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? टॉरेंट '%1' में .torrent फाइलें हैं, क्या आप इन्हें भी डाउनलोड करना चाहते हैं? - + Never कभी नहीं - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated क्यूबिटटाॅरेंट बन्द करने की प्रक्रिया शुरू हो गयी है - + qBittorrent is shutting down... क्यूबिटटाॅरेंट बन्द हो रहा है... - + Saving torrent progress... टाॅरेंट की प्रगति सञ्चित हो रही है - + qBittorrent is now ready to exit क्यूबिटटाॅरेंट बन्द होने के लिए तैयार है... @@ -1766,263 +1773,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also निर्यात करें... (&E) - + Matches articles based on episode filter. लेखों का एपिसोड फिल्टर के आधार पर मिलान करता है। - + Example: उदाहरण : - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match सीजन एक के 2, 5, 8 से 15, 30 व आगे तक के एपिसोडों से मिलान करेगा - + Episode filter rules: एपिसोड फिल्टर के नियम : - + Season number is a mandatory non-zero value सीजन क्रमांक एक अनिवार्य व अशून्य संख्या है - + Filter must end with semicolon फिल्टर सेमीकोलन पर समाप्त होना चाहिए - + Three range types for episodes are supported: एपिसोडों के लिए तीन तरह की सीमाएं समर्थित हैं : - + Single number: <b>1x25;</b> matches episode 25 of season one एकल संख्या : <b>1x25;</b> सीजन एक के 25वें एपिसोड से मिलान करता है - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one सामान्य सीमा : <b>1x25-40;</b> सीजन एक के 25 से 40 तक एपिसोडों का मिलान करता है - + Episode number is a mandatory positive value सीजन क्रमांक एक अनिवार्य व अशून्य संख्या है - + Rules नियम - + Rules (legacy) नियम (पुराने) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons असीमित चाप : <b>1x25-;</b> सीजन एक के 25 से आगे के एपिसोडों का मिलान करता है - + Last Match: %1 days ago अन्तिम मिलान : %1 दिन पहले - + Last Match: Unknown अन्तिम मिलान : अज्ञात - + New rule name नए नियम का नाम - + Please type the name of the new download rule. नए डाउनलोड नियम का नाम टाइप करें। - - + + Rule name conflict नियम नाम विरुद्ध - - + + A rule with this name already exists, please choose another name. इस नाम का नियम पहले से मौजूद है, कृपया अन्य नाम उपयोग करें। - + Are you sure you want to remove the download rule named '%1'? क्या आप निश्चिंत है कि आप डाउनलोड नियम '%1' को हटाना चाहते हैं? - + Are you sure you want to remove the selected download rules? क्या आप निश्चित ही चयनित डाउनलोड नियम हटाना चाहते हैं? - + Rule deletion confirmation नियम हटाने हेतु पुष्टि - + Invalid action अमान्य चाल - + The list is empty, there is nothing to export. सूची खाली है, निर्यात करने के लिए कुछ भी नहीं है। - + Export RSS rules RSS नियमों को निर्यात करें - + I/O Error I/O त्रुटि - + Failed to create the destination file. Reason: %1 गंतव्य फाइल बनाने में असफल। कारण : %1 - + Import RSS rules RSS नियमों को आयात करें - + Failed to import the selected rules file. Reason: %1 चुनी हुई नियमों की फाइल आयात करने में असफल। कारण : %1 - + Add new rule... नया नियम जोड़ें… - + Delete rule नियम मिटायें - + Rename rule... नियम का नाम बदलें… - + Delete selected rules चयनित नियम हटाएँ - + Clear downloaded episodes... डाउनलोड किये हुए एपिसोडों को हटायें... - + Rule renaming नियम नाम परिवर्तन - + Please type the new rule name नए नियम का नाम टाइप करें - + Clear downloaded episodes डाउनलोड किये हुए एपिसोडों को हटायें - + Are you sure you want to clear the list of downloaded episodes for the selected rule? क्या आप निश्चित ही चयनित नियमों के डाउनलोड हो चुके एपिसोडों को सूची से हटाना चाहते हैं? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 स्थिति %1 : %2 - + Wildcard mode: you can use सर्वमृगया विधा : आप प्रयोग कर सकते हैं - - + + Import error आयात में त्रुटि - + Failed to read the file. %1 फाइल पढ़ने में असफल। %1 - + ? to match any single character केवल एक अक्षर का मिलान करने के लिए ? - + * to match zero or more of any characters शून्य या अधिक अक्षरों का मिलान करनें के लिए * - + Whitespaces count as AND operators (all words, any order) रिक्तता को (किसी भी क्रम में आने वाले सभी शब्दों के बीच) 'तथा' संक्रिया माना जाता है - + | is used as OR operator | का प्रयोग 'अथवा' संक्रिया के लिये किया जाता है - + If word order is important use * instead of whitespace. यदि शब्द क्रम महत्त्वपूर्ण है तो रिक्तता के स्थान पर * का प्रयोग कीजिये। - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) रिक्त %1 वाक्यांश वाली एक अभिव्यंजना (उदाहरण - %2) - + will match all articles. सभी लेखों से मिलान करेगा। - + will exclude all articles. किसी भी लेख से मिलान नहीं करेगा। @@ -2074,28 +2081,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 टॉरेंट की जानकारी ज्ञात पायी: %1 - + Cannot parse torrent info: invalid format टॉरेंट की जानकारी ज्ञात नहीं हो पायी: गलत स्वरुप - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. टॉरेंट मेटाडाटा का '%1' में सञ्चय नहीं हो सका। त्रुटि: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2106,16 +2123,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 डाटा को '%1' में सञ्चित नहीं कर सके। त्रुटि : %2 @@ -2123,38 +2141,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. नहीं मिला। - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. डेटाबेस दूषित है। - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + टॉरेंट की जानकारी ज्ञात पायी: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2202,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. टॉरेंट मेटाडाटा का सञ्चय नहीं हो सका। त्रुटि : %1 - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2185,526 +2225,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON खोलें - - - - - - - - - + + + + + + + + + OFF बंद करें - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" सहकर्मी की आईडी: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 अनाम रीति: %1 - - + + Encryption support: %1 गोपनीयकरण समर्थन : %1 - - + + FORCED बलपूर्वक - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. टॉरेंट वितरण अनुपात की सीमा को पार कर चुका है। - + Torrent: "%1". टॉरेंट: "%1". - Removed torrent. - टॉरेंट हटा दिया गया है। - - - Removed torrent and deleted its content. - टॉरेंट को हटा दिया व इसके सामान को मिटा दिया। - - - Torrent paused. - टॉरेंट विरामित। - - - + Super seeding enabled. महास्रोत सक्रिय कर दिया गया है। - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" टॉरेंट लोड नहीं हो सका। कारण: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" टॉरेंट से ट्रैकर हटा दिया। टॉरेंट: "%1"। ट्रैकर: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" टॉरेंट से बीज यूआरएल हटा दिया। टॉरेंट: "%1"। यूआरएल: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - टॉरेंट विरामित। टॉरेंट: "%1" - - - + Torrent resumed. Torrent: "%1" टॉरेंट प्रारम्भ। टॉरेंट: "%1" - + Torrent download finished. Torrent: "%1" टॉरेंट डाउनलोड पूर्ण। टॉरेंट: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" नया टॉरेंट जोड़ा गया। टॉरेंट: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" टॉरेंट में त्रुटि। टॉरेंट: "%1"। त्रुटि: %2 - Removed torrent. Torrent: "%1" - टॉरेंट हटाया गया। टॉरेंट: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - टॉरेंट को हटा दिया व इसके सामान को मिटा दिया। टॉरेंट: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP फिल्टर - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - टॉरेंट को हटा दिया व लेकिन इसके सामान को नहीं मिटा पाए। टॉरेंट: "%1"। त्रुटि: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 अक्षम है - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 अक्षम है - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" टोरेंट को स्थानांतरित करने में विफल। टोरेंट: "%1"। स्त्रोत: "%2"। गंतव्य: "%3"। कारण: "%4"। @@ -2754,47 +2771,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' पहले प्रथम व अन्तिम खण्ड को डाउनलोड करें : %1, टाॅरेंट : '%2' - + On खोलें - + Off बंद करें - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata मेटाडेटा नहीं मिला - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" फाइल का नाम बदलने में असफल। टाॅरेंट : "%1", फाइल : "%2", कारण : "%3" - + Performance alert: %1. More info: %2 @@ -2961,10 +2978,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - टॉरेंट को आरम्भित या विरामित की तरह जोड़े - Skip hash check @@ -3061,14 +3074,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - टौरेंटो को प्रारम्भ करें - - - Pause torrents - टौरेंटो को विराम दें - Remove torrents @@ -3167,10 +3172,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - Also permanently delete the files - फाइलों को भी मिटा दें - Are you sure you want to remove '%1' from the transfer list? @@ -3402,22 +3403,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" टॉरेंट डाउनलोड हो रहा है... स्रोत: "%1" - + Torrent is already present टोरेंट पहले से मौजूद है - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3535,6 +3536,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3676,10 +3711,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... विकल्प… (&O) - - &Resume - प्रारम्भ (&R) - &Remove @@ -3761,10 +3792,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window विंडो बंद करें - - R&esume All - सभी आरंभ (&E) - Manage Cookies... @@ -3880,10 +3907,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System सिस्टम को अतिसुप्त करें (&H) - - S&hutdown System - सिस्टम बंद करें (&H) - &Statistics @@ -3904,14 +3927,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About बारे में (&A) - - &Pause - रोकें (&P) - - - P&ause All - सभी रोकें (&A) - &Add Torrent File... @@ -3945,12 +3960,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show दिखाएँ - + Check for program updates कार्यक्रम अद्यतन के लिए जाँच करें @@ -3965,386 +3980,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also यदि क्यूबिटटाॅरेंट आपके कार्यों हेतु उपयोगी हो तो कृपया दान करें! - + Execution Log निष्पादन वृतांत - + Clear the password पासवर्ड रद्द करें - + &Set Password पासवर्ड लगायें (&S) - + Preferences वरीयताएं - + &Clear Password पासवर्ड हटायें (&C) - + Transfers अंतरण - - + + qBittorrent is minimized to tray क्यूबिटटॉरेंट ट्रे आइकन रूप में संक्षिप्त - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only केवल चित्र - + Text Only केवल लेख - + Text Alongside Icons चित्र के बगल लेख - + Text Under Icons चित्र के नीचे लेख - + Follow System Style सिस्टम की शैली का पालन करें - - + + UI lock password उपयोक्ता अंतरफलक लॉक हेतु कूटशब्द - - + + Please type the UI lock password: उपयोक्ता अंतरफलक लॉक हेतु कूटशब्द दर्ज करें : - + Are you sure you want to clear the password? क्या आप निश्चित है कि आप पासवर्ड रद्द करना चाहते हैं? - + Use regular expressions रेगुलर एक्सप्रेसन्स का प्रयोग करें - - + + Search Engine - खोज इन्जन + खोज इन्जन - + Search has failed - खोज असफल हुई + खोज असफल हुई - + Search has finished - खोज समाप्त हुई + खोज समाप्त हुई - + Search खोजें - + Transfers (%1) अंतरण (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. क्यूबिटटोरेंट अपडेट किया गया व परिवर्तन लागू करने हेतु इसे पुनः आरंभ आवश्यक है। - + qBittorrent is closed to tray क्यूबिटटोरेंट ट्रे आइकन रूप में संक्षिप्त - + Some files are currently transferring. अभी कुछ फाइलों का स्थानान्तरण हो रहा है। - + Are you sure you want to quit qBittorrent? क्या आप निश्चित ही क्यूबिटटॉरेंट बंद करना चाहते हैं? - + &No नहीं (&N) - + &Yes हां (&Y) - + &Always Yes हमेशा हां (&A) - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime पायथन रनटाइम अनुपस्थित है - + qBittorrent Update Available क्यूबिटटॉरेंट अपडेट उपलब्ध है - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? खोज इन्जन का उपगोय करने के लिए पायथन आवश्यक है लेकिन ये स्थापित नहीं है। क्या आप इसे अभी स्थापित करना चाहते हैं? - + Python is required to use the search engine but it does not seem to be installed. खोज इन्जन का उपगोय करने के लिए पायथन आवश्यक है लेकिन ये स्थापित नहीं है। - - + + Old Python Runtime पायथन रनटाइम पुराना है - + A new version is available. नया वर्जन उपलब्ध है| - + Do you want to download %1? क्या आप %1 को डाउनलोड करना चाहते हैं? - + Open changelog... परिवर्तनलॉग खोलें... - + No updates available. You are already using the latest version. अद्यतन उपलब्ध नहीं है। आप पहले से ही नवीनतम संस्करण प्रयोग कर रहे हैं। - + &Check for Updates अद्यतन के लिए जाँचे (&C) - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. आपका पायथन संस्करण (%1) पुराना है। खोज इन्जन के लिए सबसे नए संस्करण पर उन्नत करें। न्यूनतम आवश्यक: %2। - + Paused - विरामित + विरामित - + Checking for Updates... अद्यतन के लिए जाँचा चल रही है... - + Already checking for program updates in the background कार्यक्रम अद्यतन की जाँच पहले से ही पृष्टभूमि में चल रही है - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error डाउनलोड त्रुटि - Python setup could not be downloaded, reason: %1. -Please install it manually. - पायथन का सेटअप डाउनलोड नहीं हो सका, कारण : %1। -इसे आप स्वयं स्थापित करें। - - - - + + Invalid password अमान्य कूटशब्द - + Filter torrents... टाॅरेंटों को छानें... - + Filter by: से छानें: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid यह कूटशब्द अमान्य है - + DL speed: %1 e.g: Download speed: 10 KiB/s ↓ गति : %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s ↑ गति : %1 - + Hide अदृश्य करें - + Exiting qBittorrent क्यूबिटटाॅरेंट बंद हो रहा है - + Open Torrent Files टाॅरेंट फाइल खोलें - + Torrent Files टाॅरेंट फाइलें @@ -5838,47 +5847,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5920,10 +5929,6 @@ Please install it manually. RSS RSS - - Web UI - वेब UI - Advanced @@ -5944,14 +5949,6 @@ Please install it manually. Confirm when deleting torrents टाॅरेंट मिटाते समय पुष्टि करें - - Shows a confirmation dialog upon pausing/resuming all the torrents - सभी टाॅरेंटों को विरामित या प्रारम्भ करने पर पुष्टि करने का डायलॉग दिखाता है - - - Confirm "Pause/Resume all" actions - "सभी को विरामित/प्रारम्भ करने" की क्रिया की पुष्टि करें - Use alternating row colors @@ -5968,10 +5965,6 @@ Please install it manually. Always हमेशा - - Paused torrents only - केवल विरामित टॉरेंट - Action on double-click @@ -5982,10 +5975,6 @@ Please install it manually. Downloading torrents: डाउनलोड हो रहे टाॅरेंट: - - Start / Stop Torrent - टाॅरेंट चालू / बन्द करें - @@ -6044,400 +6033,402 @@ Please install it manually. केबी - + + Show free disk space in status bar + + + + Torrent content layout: टॉरेंट सामग्री का अभिविन्यास: - + Original मूल - + Create subfolder उपफोल्डर बनायें - + Don't create subfolder उपफोल्डर न बनायें - + The torrent will be added to the top of the download queue टॉरेंट को डाउनलोड पंक्ति में सबसे ऊपर जोड़ा जाएगा - + Add to top of queue The torrent will be added to the top of the download queue कतार में सबसे ऊपर रखा - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... जोड़ें... - + Options.. विकल्प... - + Remove हटायें - + Email notification &upon download completion डाउनलोड पूरा होने पर ईमेल अधिसूचना (&U) - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: सहकर्मी कनेक्शन की पद्धति : - + Any कोई भी - + I2P (experimental) - + Mixed mode मिश्रित रीति - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering IP फिल्टर करना (&L) - + Schedule &the use of alternative rate limits दर की वैकल्पिक सीमाओं के लागू होने का समय निर्धारित करें (&T) - + From: From start time से : - + To: To end time को : - + Find peers on the DHT network DHT नेटवर्क पर सहकर्मी ढूँढे - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption गोपनीयता का प्रयोग करें - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">अधिक जानकारी</a>) - + Maximum active checking torrents: - + &Torrent Queueing टॉरेंट पंक्तिबद्धीकरण (&T) - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - इन ट्रैकरों को नए डाउनलोडों में स्वतः जोड़ दें (&U): - - - + RSS Reader RSS पाठक - + Enable fetching RSS feeds RSS स्रोतों को लाना सक्षम करें - + Feeds refresh interval: स्रोतों को ताजा करने का अन्तराल : - + Same host request delay: - + Maximum number of articles per feed: प्रति स्रोत अधिकतम लेखों की संख्या : - - - + + + min minutes न्यूनतम - + Seeding Limits स्रोत की सीमाएं - Pause torrent - टॉरेंट को विराम दें - - - + Remove torrent टॉरेंट को हटायें - + Remove torrent and its files टॉरेंट और उसकी फाइलों को हटायें - + Enable super seeding for torrent इसे महास्रोत बनायें - + When ratio reaches जब अनुपात तक पहुँचे - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS टाॅरेंट स्वतः डाउनलोडर - + Enable auto downloading of RSS torrents RSS टाॅरेंटों को स्वतः डाउनलोड करना सक्षम करें - + Edit auto downloading rules... स्वतः डाउनलोड के नियमों को बदलें... - + RSS Smart Episode Filter बुद्धिमान RSS एपिसोड फिल्टर - + Download REPACK/PROPER episodes REPACK/PROPER एपिसोडों को डाउनलोड करें - + Filters: छन्नियां: - + Web User Interface (Remote control) वेब यूजर इन्टरफेस (रिमोट कण्ट्रोल) - + IP address: IP पता : - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: लगातार विफलताओं के बाद क्लाइंट को प्रतिबंधित करें : - + Never कभी नहीं - + ban for: के लिए प्रतिबन्ध : - + Session timeout: सत्र का समयान्त : - + Disabled अक्षम - + Server domains: सर्वर डोमेन : - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6446,37 +6437,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP HTTP के स्थान पर HTTPS प्रयोग करें (&U) - + Bypass authentication for clients on localhost लोकलहोस्ट पर मौजूद प्रयोक्ताओं का प्रमाणीकरण रहने दें - + Bypass authentication for clients in whitelisted IP subnets आईपी सबनेटों की सज्जनसूची में आने वाले प्रयोक्ताओं का प्रमाणीकरण रहने दें - + IP subnet whitelist... आईपी सबनेट सज्जनसूची... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name मेरा परिवर्तनशील डोमेन नाम अद्यतित करें (&T) @@ -6488,7 +6479,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - + खोंजे @@ -6589,99 +6580,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.इससे पुरानी बैकअप लॉग फाइलों को मिटा दें : - + Show external IP in status bar - + When adding a torrent टॉरेंट जोड़ते समय - + Bring torrent dialog to the front टॉरेंट डायलॉग को सम्मुख लायें - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled .torrent फाइलें भी मिटा दें जिनका जोड़ना रद्द हो गया - + Also when addition is cancelled जोड़ना रद्द करने पर भी - + Warning! Data loss possible! चेतावनी! डाटा खो सकता है! - + Saving Management सञ्चय प्रबन्धन - + Default Torrent Management Mode: पूर्व निर्धारित टॉरेंट प्रबंधन मोड : - + Manual स्वयं - + Automatic स्वतः - + When Torrent Category changed: जब टॉरेंट की श्रेणी बदल जाए : - + Relocate torrent टाॅरेंट स्थानांतरित करें - + Switch torrent to Manual Mode टाॅरेंट को स्वयं प्रबन्धित करें - - + + Relocate affected torrents प्रभावित टाॅरेंटों को स्थानांतरित करें - - + + Switch affected torrents to Manual Mode प्रभावित टाॅरेंटों को स्वयं प्रबन्धित करें - + Use Subcategories उपश्रेणियाँ प्रयोग करें - + Default Save Path: पूर्व निर्धारित संचय पथ : - + Copy .torrent files to: .torrent फाइलों की नकल यहां करें : @@ -6691,26 +6682,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.क्यूबिटटोरेंट को अधिसूचना क्षेत्र में दिखाएँ (&Q) - &Log file - लॉग फाइल (&L) - - - + Display &torrent content and some options टाॅरेंट सामग्री व कुछ विकल्प दिखायें (&T) - + De&lete .torrent files afterwards बाद में .torrent फाइलें मिटा दें (&L) - + Copy .torrent files for finished downloads to: पूरे हो चुके डाउनलोडों की .torrent फाइलों को यहां प्रतिलिपि करें : - + Pre-allocate disk space for all files सभी फाइलों के लिए डिस्क में स्थान पूर्व-निर्धारित करें @@ -6740,10 +6727,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder - - Show torrent options - टाॅरेंट के विकल्प दिखायें - Shows a confirmation dialog when exiting with active torrents @@ -6809,68 +6792,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.वर्ष - + Log performance warnings - The torrent will be added to download list in a paused state - टौरेंट को सूची में विरामित अवस्था में जोड़ा जाएगा - - - + Do not start the download automatically The torrent will be added to download list in a stopped state डाउनलोड स्वतः आरम्भ न करें - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files अपूर्ण फाइलों में .!qB एक्सटेंशन जोड़े - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6890,50 +6869,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: टाॅरेंट रोकने की स्थिति: - - + + None कोई नहीं - - + + Metadata received मेटाडाटा प्राप्त - - + + Files checked जंची हुई फाइलें - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: अपूर्ण टॉरेंट हेतु अन्य पथ का प्रयोग करें: - + Automatically add torrents from: यहाँ से टौरेंट स्वतः जोड़े : - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6950,516 +6929,511 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver प्राप्तकर्ता - + To: To receiver को : - + SMTP server: SMTP सर्वर : - + Sender प्रेषक - + From: From sender से : - + This server requires a secure connection (SSL) यह सर्वर एक सुरक्षित संपर्क (SSL) की अपेक्षा करता है - - + + Authentication प्रमाणीकरण - - - - + + + + Username: यूजरनेम : - - - - + + + + Password: कूटशब्द : - + Run external program - + Show console window - + TCP and μTP TCP व μTP - + Listening Port श्रवण पोर्ट - + Port used for incoming connections: आवक कनेक्शनों के लिए पत्तन : - + Set to 0 to let your system pick an unused port - + Random यादृच्छिक - + Use UPnP / NAT-PMP port forwarding from my router मेरे रूटर से UPnP / NAT-PMP पोर्ट अग्रेषण का प्रयोग करो - + Connections Limits कनेक्शन सीमायें - + Maximum number of connections per torrent: प्रति टॉरेंट अधिकतम संपर्कों की संख्या : - + Global maximum number of connections: सार्वभौम अधिकतम संपर्कों की संख्या : - + Maximum number of upload slots per torrent: प्रति टौरेंट अधिकतम अपलोड स्थानों की संख्या : - + Global maximum number of upload slots: अधिकतम सार्वभौम अपलोड स्थानों की संख्या : - + Proxy Server प्रॉक्सी सर्वर - + Type: प्रकार : - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: पोषद : - - - + + + Port: पत्तन : - + Otherwise, the proxy server is only used for tracker connections अन्यथा, प्रॉक्सी सर्वर को केवल ट्रैकर संपर्कों के लिये प्रयुक्त किया जाता है - + Use proxy for peer connections सहकर्मी कनेक्शनों के लिए प्रॉक्सी का उपयोग करें - + A&uthentication प्रमाणीकरण (&U) - Info: The password is saved unencrypted - सूचना : कूटशब्द को कूटबद्ध किये बिना संचित किया गया है + सूचना : कूटशब्द को कूटबद्ध किये बिना संचित किया गया है - + Filter path (.dat, .p2p, .p2b): फिल्टर पथ (.dat, .p2p, .p2b) : - + Reload the filter फिल्टर पुनः लोड करें - + Manually banned IP addresses... आपके द्वारा प्रतिबन्धित किए गए IP पते... - + Apply to trackers ट्रैकरों पर लागू करें - + Global Rate Limits सीमाओं की सार्वभौम दर - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s केबी/से० - - + + Upload: अपलोड : - - + + Download: डाउनलोड : - + Alternative Rate Limits दर की वैकल्पिक सीमायें - + Start time आरम्भ का समय - + End time अन्त समय - + When: कब : - + Every day प्रत्येक दिन - + Weekdays कार्यदिवसों - + Weekends अवकाशदिवस - + Rate Limits Settings दर सीमा की सैटिंग - + Apply rate limit to peers on LAN LAN के सहकर्मियों पर दर सीमा लागू करें - + Apply rate limit to transport overhead अतिरिक्त के यातायात की दर की सीमा तय करें - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol µTP पद्धति पर दर सीमा लागू करें - + Privacy निजता - + Enable DHT (decentralized network) to find more peers ज्यादा सहकर्मियों को ढूँढने के लिए DHT (विकेन्द्रित नेटवर्क) सक्षम करें - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) संगत बिटटोरेंट साधन (µTorrent, Vuze, ...) से पीयर अंतरण - + Enable Peer Exchange (PeX) to find more peers ज्यादा सहकर्मियों को ढूँढने के लिए सहकर्मी आदान-प्रदान (PeX) सक्षम करें - + Look for peers on your local network अपने स्थानीय नेटवर्क पर सहकर्मीं ढूँढे - + Enable Local Peer Discovery to find more peers ज्यादा सहकर्मियों को ढूँढने के लिए स्थानीय सहकर्मी खोज सक्षम करें - + Encryption mode: गोपनीयकरण रीति : - + Require encryption गोपनीयकरण आवश्यक है - + Disable encryption गोपनीयकरण अक्षम करें - + Enable when using a proxy or a VPN connection प्रॉक्सी या VPN प्रयोग करते समय सक्षम करें - + Enable anonymous mode अनाम रीति सक्षम करें - + Maximum active downloads: अधिकतम सक्रिय डाउनलोड : - + Maximum active uploads: अधिकतम सक्रिय अपलोड : - + Maximum active torrents: अधिकतम सक्रिय टॉरेंट : - + Do not count slow torrents in these limits इन सीमाओं में धीमे टौरेंटों को न गिनें - + Upload rate threshold: अपलोड गति की दहलीज : - + Download rate threshold: डाउनलोड गति की दहलीज : - - - - + + + + sec seconds सेक - + Torrent inactivity timer: - + then फिर - + Use UPnP / NAT-PMP to forward the port from my router मेरे रूटर से पोर्ट अग्रेषित करने के लिये UPnP / NAT-PMP का प्रयोग करो - + Certificate: प्रमाणपत्र : - + Key: कुँजी : - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>प्रमाणपत्रों के बारे में जानकारी</a> - + Change current password पासवर्ड बदलें - Use alternative Web UI - किसी अन्य वेब UI का प्रयोग करें - - - + Files location: फाइलों का स्थान : - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security सुरक्षा - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support रिवर्स प्रॉक्सी को सक्षम करें - + Trusted proxies list: विश्वसनीय प्रॉक्सियों की सूची : - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: सेवा : - + Register पंजीकृत हों - + Domain name: डोमेन का नाम : - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! ये विकल्प चालू करने के बाद आप अपनी .torrent फाइलों को <strong>स्थायी रूप से</strong> खो देंगे! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog यदि आप दूसरा विकल्प सक्रिय करते हैं (&ldquo;या जब जोड़ना रद्द किया जाता है&rdquo;) तो &ldquo;टॉरेंट जोड़ें&rdquo; डायलॉग में &ldquo;<strong>रद्द करें</strong>&rdquo; दबाने पर भी .torrent फाइल <strong>मिटा दी जायेगी</strong> @@ -7469,12 +7443,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not क्यूबिटटोरेंट उपयोक्ता अंतरफलक थीम फाइल चयन - + Choose Alternative UI files location अन्य UI की फाइलों के स्थान को चुनें - + Supported parameters (case sensitive): समर्थित पैरामीटर (लघु-गुरू संवेदनशील) : @@ -7494,183 +7468,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. रुकने की स्थिति निर्धारित नहीं है। - + Torrent will stop after metadata is received. मेटाडेटा प्राप्त होने के बाद टोरेंट बंद हो जाएगा। - + Torrent will stop after files are initially checked. फाइलों की प्रारंभिक जाँच के बाद टॉरेंट रुक जाएगा। - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: टॉरेंट नाम - + %L: Category %L: श्रेणी - + %F: Content path (same as root path for multifile torrent) %F: विषय पथ (बहु-फाइल टॉरेंट के मूल पथ से समान) - + %R: Root path (first torrent subdirectory path) %R: मूल पथ (प्रथम टॉरेंट उपनिर्देशिका पथ) - + %D: Save path %D: संचय पथ - + %C: Number of files %C: फाइलों की संख्या - + %Z: Torrent size (bytes) %Z: टौरेंट आकर (बाइट्स) - + %T: Current tracker %T: निवर्तमान ट्रैकर - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") सुझाव : लेखन के बीच में आने वाली रिक्तता (उदाहरण - "%N") से होने वाली परेशानी से बचने के लिये मापदण्डों को उद्धरण चिह्नों से घेरिये - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (कोई नहीं) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate प्रमाणपत्र - + Select certificate प्रमाणपत्र चुनें - + Private key निजी कुँजी - + Select private key निजी कुँजी चुनें - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor निरीक्षण के लिए फोल्डर चुनें - + Adding entry failed प्रविष्टि जोड़ना में असफल - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error स्थान त्रुटि - - + + Choose export directory निर्यात के लिए फोल्डर चुनें - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well ये विकल्प सक्रिय होने पर क्यूबिटटोरेंट द्वारा डाउनलोड पंक्ति में सफलतापूर्वक जोड़ी गई (पहला विकल्प) या नहीं जोड़ी गई (दूसरा विकल्प) .torrent फाइलों को <strong>हटा</strong> दिया जाएगा। यह &ldquo;टोरेंट जोड़ें&rdquo; मेन्यू कार्य के <strong>साथ</strong> ही <strong>संलग्न फाइल प्रकार</strong> द्वारा प्रयुक्त फाइलों पर भी लागू होगा @@ -7680,69 +7654,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) %I: जानकारी हैश v1 (या '-' यदि अनुपलब्ध हो तो) - + %J: Info hash v2 (or '-' if unavailable) %J: जानकारी हैश v2 (या '-' यदि अनुपलब्ध हो तो) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory संचय फोल्डर चुनें - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file IP फिल्टर की फाइल चुनें - + All supported filters सभी समर्थित छन्नियां - + The alternative WebUI files location cannot be blank. - + Parsing error समझने में त्रुटि - + Failed to parse the provided IP filter दिया गया IP फिल्टर समझ से बाहर - + Successfully refreshed ताजा कर दिया - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number दिए गए IP फिल्टर को समझ लिया : %1 नियमों को लागू किया। @@ -7753,18 +7727,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not वरीयताएं - + Time Error समय त्रुटि - + The start time and the end time can't be the same. शुरुआत और अन्त का समय एक जैसे नहीं हो सकते। - - + + Length Error लम्बाई त्रुटि @@ -7824,17 +7798,17 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Peer from DHT - DHT का सहकर्मी + DHT का सहभागी Peer from PEX - PEX का सहकर्मी + PEX का सहभागी Peer from LSD - LSD का सहकर्मी + LSD का सहभागी @@ -7849,169 +7823,169 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Peer is using NAT hole punching - + सहभागी NAT होल पंचिंग का उपयोग कर रहा है PeerListWidget - + Country/Region देश/छेत्र - + IP/Address - + Port पोर्ट - + Flags फ्लैग - + Connection कनेक्शन - + Client i.e.: Client application - प्रोग्राम - - - - Peer ID Client - i.e.: Client resolved from Peer ID - + क्लाइंट + Peer ID Client + i.e.: Client resolved from Peer ID + सहभागी ID क्लाइंट + + + Progress i.e: % downloaded प्रगति - + Down Speed i.e: Download speed डाउनलोड गति - + Up Speed i.e: Upload speed अपलोड गति - + Downloaded i.e: total data downloaded डाउनलोड - + Uploaded i.e: total data uploaded अपलोड - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. अनुकूलता - + Files i.e. files that are being downloaded right now फाइलों - + Column visibility स्तंभ दृश्यता - + Resize columns स्तंभों का आकार बदलें - + Resize all non-hidden columns to the size of their contents सभी गैर-ओझल स्तंभों का आकार उनकी अंतर्वस्तु के अनुसार बदलें - + Add peers... - - + + Adding peers सहकर्मियों को जोड़ रहे हैं - + Some peers cannot be added. Check the Log for details. कुछ सहकर्मियों को जोड़ा नहीं जा सका। अधिक जानकारी के लिए लॉग देखें। - + Peers are added to this torrent. इस टाॅरेंट में सहकर्मियों को जोड़ा गया। - - + + Ban peer permanently सहकर्मी को स्थायी रूप से अवरुद्ध करें - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? क्या आप निश्चिंत है कि आप चयनित सहकर्मियों को स्थायी रुप से प्रतिबंधित करना चाहते हैं? - + Peer "%1" is manually banned सहकर्मी "%1" को आपके द्वारा प्रतिबन्धित किया गया - + N/A लागू नहीं - + Copy IP:port IP:पोर्ट की प्रतिलिपि बनायें @@ -8292,34 +8266,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - क्यूबिटटोरेंट सक्रिय है - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + क्यूबिटटोरेंट सक्रिय है @@ -8611,153 +8559,124 @@ Those plugins were disabled. संचय पथ : - + Never कभी नहीं - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (हैं %3) - - + + %1 (%2 this session) %1 (%2 इस सत्र में) - - + + N/A लागू नहीं - + Yes - हाँ + हाँ - + No - नहीं + नहीं - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (स्रोत काल %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 अधिकतम) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 कुल) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 औसत) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - नया वेब स्रोत - - - Remove Web seed - वेब स्रोत को हटाएँ - - - Copy Web seed URL - वेब स्रोत यूआरएल कॉपी करें - - - Edit Web seed URL - वेब स्रोत का यूआरएल संपादित करें - - - + Filter files... फाइलें फिल्टर करें... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - नया युआरएल स्रोत - - - New URL seed: - नया URL स्रोत : - - - This URL seed is already in the list. - यह युआरएल स्रोत पहले से ही सूची में है। - - - + Web seed editing वेब स्रोत का संपादन - + Web seed URL: वेब स्रोत URL : @@ -8765,33 +8684,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. अमान्य डाटा प्रारूप। - + Couldn't save RSS AutoDownloader data in %1. Error: %2 RSS स्वतः डाउनलोडर की जानकारी %1 में सञ्चित नहीं की जा सकी। त्रुटि : %2 - + Invalid data format अमान्य डाटा प्रारूप - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 RSS स्वतः डाउनलोडर के नियम लोड नहीं हो सके। कारण : %1 @@ -8799,22 +8718,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 RSS स्रोत '%1' को डाउनलोड करने में असफल। कारण : %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS स्रोत '%1' का अद्यतन हो गया। %2 नए लेख जोड़े। - + Failed to parse RSS feed at '%1'. Reason: %2 RSS स्रोत '%1' समझ से बाहर है। कारण : %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. '%1' के RSS स्रोत को डाउनलोड कर लिया है। इसे समझने की शुरुआत कर दी है। @@ -8863,12 +8782,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8890,76 +8809,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. वस्तु अस्तित्व में नहीं है : %1। - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. मूल फोल्डर को डिलीट नहीं कर सकते। - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. RSS वस्तु का पथ गलत है : %1 - + RSS item with given path already exists: %1. प्रदत्त पथ वाली RSS वस्तु पहले से मौजूद है : %1 - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + सेक + + + + Default + पूर्व निर्धारित + + RSSWidget @@ -9059,78 +9019,69 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name फोल्डर के नाम का चुनाव करें - + Folder name: फोल्डर का नाम : - + New folder नया फोल्डर - - Please type a RSS feed URL - RSS स्रोत का URL भरें + RSS स्रोत का URL भरें - - Feed URL: - स्रोत URL: + स्रोत URL: - + Deletion confirmation मिटाने की पुष्टि - + Are you sure you want to delete the selected RSS feeds? क्या आप निश्चित ही चुनें हुए RSS स्रोतों को मिटाना चाहते हैं? - + Please choose a new name for this RSS feed इस RSS स्रोत के लिए नया नाम चुनें - + New feed name: नया स्रोत नाम: - + Rename failed नाम बदलनें में असफल - + Date: दिनांक: - + Feed: - + Author: रचनाकार: @@ -9267,10 +9218,6 @@ Those plugins were disabled. i.e: Number of partial sources जोंके - - Search engine - खोज इन्जन - Filter search results... @@ -9391,104 +9338,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. खोज इन्जन प्लगिन फाइल का प्रारूप अज्ञात है। - + Plugin already at version %1, which is greater than %2 प्लगिन पहले से ही संस्करण %1 पर है, जो %2 से आधुनिक है - + A more recent version of this plugin is already installed. इस प्लगिन का ज्यादा नया संस्करण पहले ही से स्थापित है। - + Plugin %1 is not supported. प्लगिन %1 समर्थित नहीं है। - - + + Plugin is not supported. प्लगिन समर्थित नहीं है। - + Plugin %1 has been successfully updated. प्लगिन %1 अद्यतित हो गयी है। - + All categories सभी श्रेणियाँ - + Movies फिल्में - + TV shows टीवी शो - + Music गानें - + Games गेम्स - + Anime एनीमे - + Software सॉफ्टवेयर - + Pictures फोटो - + Books किताबें - + Update server is temporarily unavailable. %1 अद्यतन सर्वर अभी काम नहीं कर रहा है। %1 - - + + Failed to download the plugin file. %1 प्लगिन फाइल डाउनलोड करने में असफल। %1 - + Plugin "%1" is outdated, updating to version %2 प्लगिन %1 पुरानी है, संस्करण %2 पर अद्यतित कर रहे हैं - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9514,135 +9461,127 @@ Click the "Search plugins..." button at the bottom right of the window प्लगिनें खोजें... - + A phrase to search for. खोजने के लिए शब्द: - + Spaces in a search term may be protected by double quotes. डबल कोट द्वारा खोजपद में मौजूद रिक्तताओं की रक्षा की जा सकती है। - + Example: Search phrase example उदाहरण : - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;राम श्याम&quot;</b> : <b>राम श्याम</b> खोजें - + All plugins सभी प्लगिनें - + Only enabled केवल सक्षम - - + + Invalid data format. - अमान्य डाटा प्रारूप। + अमान्य डाटा प्रारूप। - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>राम श्याम</b> : <b>राम</b> या <b>श्याम</b> खोजें - + Refresh - + Close tab टैब बंद करें - + Close all tabs सभी टैबें बंद करें - + Select... चुनें... - - + + Search Engine खोज इन्जन - - + + Please install Python to use the Search Engine. खोज इन्जन का उपगोय करने के लिए पायथन की स्थापना करें। - + Empty search pattern रिक्त खोज पैटर्न - + Please type a search pattern first खोज पैटर्न भरें - + Stop रोकें - - Search has finished - खोज समाप्त हुई - - - Search has failed - खोज असफल हुई - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10040,67 +9979,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: संपर्क स्थिति: - - + + No direct connections. This may indicate network configuration problems. कोई प्रत्यक्ष कनेक्शन नहीं। नेटवर्क विन्यास समस्या संभव है। - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 नोड - + qBittorrent needs to be restarted! क्यूबिटटोरेंट पुनः आरंभ करना आवश्यक है! - - + + Connection Status: संपर्क स्थिति: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. ऑफलाइन। सदारणतः ऐसा तब होता है जब क्यूबिटटाॅरेंट आवक कनेक्शनों के लिए चयनित पोर्टों पर डाटा प्राप्त नहीं कर पाता है। - + Online ऑनलाइन - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits गति की वैकल्पिक सीमायें उपयोग करने हेतु क्लिक करें - + Click to switch to regular speed limits सामान्य गति सीमाएँ उपयोग करने हेतु क्लिक करें @@ -10128,14 +10077,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) पूर्ण (0) - - Resumed (0) - प्रारम्भित(0) - - - Paused (0) - विरामित (0) - Running (0) @@ -10226,32 +10167,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - विरामित (%1) - Moving (%1) स्थानान्तरित हो रहे (%1) - - Resume torrents - टौरेंटो को प्रारम्भ करें - - - Pause torrents - टौरेंटो को विराम दें - Remove torrents टौरेंटो को हटायें - - Resumed (%1) - प्रारम्भित(%1) - Active (%1) @@ -10323,23 +10248,11 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags अनुपयोगी श्रेणियां हटायें - - Resume torrents - टौरेंटो को प्रारम्भ करें - - - Pause torrents - टौरेंटो को विराम दें - Remove torrents टौरेंटो को हटायें - - New Tag - नया चिह्न - Start torrents @@ -10673,17 +10586,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10935,13 +10848,6 @@ Please choose a different name and try again. - - TorrentInfo - - Invalid metadata - अमान्य मेटाडेटा - - TorrentOptionsDialog @@ -10979,10 +10885,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - टाॅरेंट गति सीमा - Download: @@ -11015,30 +10917,6 @@ Please choose a different name and try again. Upload: अपलोड : - - Torrent share limits - टाॅरेंट साझा करने की सीमाएं - - - Use global share limit - सीमाओं की सार्वभौम दर का प्रयोग करें - - - Set no share limit - साझा करने की कोई सीमा निर्धारित न करें - - - Set share limit to - साझा करने की सीमा हो - - - ratio - अनुपात - - - total minutes - कुल मिनट - Disable DHT for this torrent @@ -11080,14 +10958,6 @@ Please choose a different name and try again. Not applicable to private torrents प्राइवेट टाॅरेंटों पर लागू नहीं है - - No share limit method selected - असीमित वितरण अनुपात का चुना गया है - - - Please select a limit method first - पहले सीमा की विधि का चयन करें - TorrentShareLimitsWidget @@ -11147,7 +11017,7 @@ Please choose a different name and try again. Remove torrent - टॉरेंट को हटायें + टॉरेंट को हटायें @@ -11157,7 +11027,7 @@ Please choose a different name and try again. Enable super seeding for torrent - इसे महास्रोत बनायें + इसे महास्रोत बनायें @@ -11172,10 +11042,6 @@ Please choose a different name and try again. Torrent Tags टाॅरेंट के उपनाम - - New Tag - नया चिह्न - Add tag @@ -11210,78 +11076,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. त्रुटि : '%1' एक मान्य टाॅरेंट फाइल नहीं है। - + Priority must be an integer प्राथमिकता एक पूर्ण संख्या होनी चाहिए - + Priority is not valid यह प्राथमिकता अमान्य है - + Torrent's metadata has not yet downloaded टाॅरेंट का मेटाडाटा अभी डाउनलोड नहीं हुआ है - + File IDs must be integers - + File ID is not valid फाइल आईडी अमान्य है - - - - + + + + Torrent queueing must be enabled टौरेंट पंक्तिबद्धीकरण अवश्य ही सक्षम हो - - + + Save path cannot be empty सञ्चय पथ रिक्त नहीं हो सकता - - + + Cannot create target directory - - + + Category cannot be empty श्रेणी रिक्त नहीं हो सकती - + Unable to create category श्रेणी बनाने में अक्षम - + Unable to edit category श्रेणी संशोधित करने में अक्षम - + Unable to export torrent file. Error: %1 - + Cannot make save path सञ्चय पथ नहीं बन सका @@ -11301,39 +11167,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory फोल्डर पर नहीं लिख सके - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name टाॅरेंट का नाम गलत है - - + + Incorrect category name श्रेणी का नाम गलत है @@ -11477,73 +11343,73 @@ Please choose a different name and try again. यह टाॅरेंट निजी है - + Tracker editing ट्रैकर संपादन - + Tracker URL: ट्रैकर URL : - - + + Tracker editing failed ट्रैकर संपादन विफल रहा - + The tracker URL entered is invalid. भरा गया ट्रैकर URL अमान्य है। - + The tracker URL already exists. यह टाॅरेंट URL पहले से ही है। - + Edit tracker URL... ट्रैकर URL संशोधित करें... - + Remove tracker ट्रैकर हटाएँ - + Copy tracker URL ट्रैकर URL की प्रतिलिपि बनायें - + Force reannounce to selected trackers चयनित ट्रैकर्स पर बलपूर्वक घोषणा करें - + Force reannounce to all trackers सभी ट्रैकर्स पर बलपूर्वक घोषणा करें - + Resize columns स्तंभों का आकार बदलें - + Resize all non-hidden columns to the size of their contents सभी गैर-ओझल स्तंभों का आकार उनकी अंतर्वस्तु के अनुसार बदलें - + Add trackers... - + Column visibility स्तंभ दृश्यता @@ -11633,14 +11499,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - टौरेंटो को प्रारम्भ करें - - - Pause torrents - टौरेंटो को विराम दें - Remove torrents @@ -11763,10 +11621,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. प्रारम्भ करनें की जानकारी को जांचा जा रहा है - - Paused - विरामित - Completed @@ -11807,21 +11661,16 @@ Please choose a different name and try again. % Done प्रगति - - Status - Torrent status (e.g. downloading, seeding, paused) - स्थिति - Stopped - + रुका हुआ Status Torrent status (e.g. downloading, seeding, stopped) - स्थिति + स्थिति @@ -11937,22 +11786,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - सक्रिय काल + सक्रिय काल Yes - हाँ + हाँ No - नहीं - - - Time Active - Time (duration) the torrent is active (not paused) - सक्रिय काल + नहीं @@ -12054,346 +11898,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility स्तंभ दृश्यता - + Recheck confirmation पुन: जाँच हेतु पु‍ष्टि - + Are you sure you want to recheck the selected torrent(s)? क्या आप निश्चित ही चयनित टोरेंट(ओं) को पुनः जाँचना चाहते हैं? - + Rename नाम बदलें - + New name: नया नाम : - + Choose save path संचय पथ चुनें - Confirm pause - विरामित करने की पुष्टि करें - - - Confirm resume - प्रारम्भ करने की पुष्टि करें - - - + Unable to preview पूर्वावलोकन करने में अक्षम - + The selected torrent "%1" does not contain previewable files - + Resize columns स्तंभों का आकार बदलें - + Resize all non-hidden columns to the size of their contents सभी गैर-ओझल स्तंभों का आकार उनकी अंतर्वस्तु के अनुसार बदलें - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - उपनाम जोड़ें - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags सभी उपनाम हटायें - + Remove all tags from selected torrents? चुनें हुए टाॅरेंटों से सभी उपनाम हटायें? - + Comma-separated tags: अल्पविराम द्वारा विभाजित उपनाम : - + Invalid tag अमान्य उपनाम - + Tag name: '%1' is invalid उपनाम : '%1' अमान्य है - &Resume - Resume/start the torrent - प्रारम्भ (&R) - - - &Pause - Pause the torrent - रोकें (&P) - - - Force Resu&me - Force Resume/start the torrent - बलपूर्वक प्रारम्भ करें (&M) - - - + Pre&view file... फाइल पूर्वावलोकन... (&V) - + Torrent &options... टाॅरेंट विकल्प... (&O) - + Open destination &folder गन्तव्य फोल्डर खोलें (&F) - + Move &up i.e. move up in the queue ऊपर करें (&U) - + Move &down i.e. Move down in the queue नीचे लाएँ (&D) - + Move to &top i.e. Move to top of the queue शीर्ष पर ले जाएँ (&T) - + Move to &bottom i.e. Move to bottom of the queue अंत में ले जाएँ (&B) - + Set loc&ation... स्थान चुनें... (&A) - + Force rec&heck बलपूर्वक पुनर्जांच करें (&H) - + Force r&eannounce बलपूर्वक पुनर्घोषणा (&E) - + &Magnet link चुम्बकीय लिंक (&M) - + Torrent &ID टाॅरेंट ID (&I) - + &Comment - + &Name नाम (&N) - + Info &hash v1 जानकारी हैश v1 (&H) - + Info h&ash v2 जानकारी हैश v2 (&A) - + Re&name... नाम बदलें... (&N) - + Edit trac&kers... ट्रैकर संशोधित करें... (&K) - + E&xport .torrent... .torrent निर्यात करें (&X) - + Categor&y श्रेणी (&Y) - + &New... New category... नवीन... (&N) - + &Reset Reset category मूल स्थिति में लाएं (&R) - + Ta&gs उपनाम (&G) - + &Add... Add / assign multiple tags... जोड़ें... (&A) - + &Remove All Remove all tags सभी हटायें (&R) - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue पंक्ति (&Q) - + &Copy प्रतिलिपि बनाए (&C) - + Exported torrent is not necessarily the same as the imported - + Download in sequential order क्रमबद्ध डाउनलोड करें - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent हटायें (&R) - + Download first and last pieces first प्रथम व अंतिम खण्ड सबसे पहले डाउनलोड करें - + Automatic Torrent Management स्वतः टाॅरेंट प्रबन्धन - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode महास्रोत रीति @@ -12525,32 +12342,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12642,52 +12459,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. अन्य UI के फोल्डर में सिमलिंक वर्जित हैं। - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12745,7 +12562,7 @@ Please choose a different name and try again. Unknown error - अज्ञात त्रुटि + अज्ञात त्रुटि diff --git a/src/lang/qbittorrent_hr.ts b/src/lang/qbittorrent_hr.ts index 2697eb610..58e2b9cdc 100644 --- a/src/lang/qbittorrent_hr.ts +++ b/src/lang/qbittorrent_hr.ts @@ -170,10 +170,6 @@ Never show again Ne pokazuj više - - Torrent settings - Postavke torrenta - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Mogućnosti Torrenta @@ -235,25 +231,25 @@ Uvjet zaustavljanja: - - + + None Nijedno - - + + Metadata received Metapodaci primljeni - + Torrents that have metadata initially will be added as stopped. Torrenti koji inicijalno imaju metapodatke bit će dodani kao zaustavljeni. - + Files checked Provjerene datoteke @@ -368,112 +364,112 @@ Spremi kao .torrent datoteku... - + I/O Error I/O greška - + Not Available This comment is unavailable Nije dostupno - + Not Available This date is unavailable Nije dostupno - + Not available Nije dostupan - + Magnet link Magnet poveznica - + Retrieving metadata... Preuzimaju se metapodaci... - - + + Choose save path Izaberite putanju spremanja - + No stop condition is set. Nije postavljen uvjet zaustavljanja. - + Torrent will stop after metadata is received. Torrent će se zaustaviti nakon što primi metapodatke. - + Torrent will stop after files are initially checked. Torrent će se zaustaviti nakon početne provjere datoteka. - + This will also download metadata if it wasn't there initially. Ovo će također preuzeti metapodatke ako nisu bili tu u početku. - + N/A N/A - + %1 (Free space on disk: %2) %1 (Slobodni prostor na disku: %2) - + Not available This size is unavailable. Nije dostupno - + Torrent file (*%1) Torrent datoteka (*%1) - + Save as torrent file Spremi kao torrent datoteku - + Couldn't export torrent metadata file '%1'. Reason: %2. Nije moguće izvesti datoteku metapodataka torrenta '%1'. Razlog: %2. - + Cannot create v2 torrent until its data is fully downloaded. Ne može se stvoriti v2 torrent dok se njegovi podaci u potpunosti ne preuzmu. - + Filter files... Filter datoteka... - + Parsing metadata... Razrješavaju se metapodaci... - + Metadata retrieval complete Preuzimanje metapodataka dovršeno @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Preuzimanje torrenta... Izvor: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Dodavanje torrenta nije uspjelo. Izvor: "%1". Razlog: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Otkriven je pokušaj dodavanja duplikata torrenta. Izvor: %1. Postojeći torrent: %2. Rezultat: %3 + Otkriven je pokušaj dodavanja duplikata torrenta. Izvor: %1. Postojeći torrent: %2. Rezultat: %3 - + Merging of trackers is disabled Spajanje trackera je onemogućeno - + Trackers cannot be merged because it is a private torrent Trackeri se ne mogu spojiti jer se radi o privatnom torrentu - + Trackers are merged from new source Trackeri su spojeni iz novog izvora + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Ponovno provjeri torrente pri dopunjavanju - - + + ms milliseconds ms - + Setting Postavka - + Value Value set for this setting Vrijednost - + (disabled) (onemogućeno) - + (auto) (auto) - - + + min minutes min - + All addresses Sve adrese - + qBittorrent Section qBittorrent dio - - + + Open documentation Otvori dokumentaciju - + All IPv4 addresses Sve IPv4 adrese - + All IPv6 addresses Sve IPv6 adrese - + libtorrent Section libtorrent dio - + Fastresume files Fastresume datoteke - + SQLite database (experimental) SQLite baza podataka (experimentalno) - + Resume data storage type (requires restart) Nastavi vrstu pohrane podataka (zahtijeva ponovno pokretanje) - + Normal Normalno - + Below normal Ispod normale - + Medium Srednje - + Low Nisko - + Very low Jako nisko - + Physical memory (RAM) usage limit Ograničenje upotrebe fizičke memorije (RAM) - + Asynchronous I/O threads Asinkrone I/O niti - + Hashing threads Hashing niti - + File pool size Veličina pool datoteke - + Outstanding memory when checking torrents Izvanredna memorija pri provjeravanju torrenta - + Disk cache Predmemorija diska - - - - + + + + + s seconds s - + Disk cache expiry interval Interval isteka predmemorije diska - + Disk queue size Veličina reda čekanja na disku - - + + Enable OS cache Omogući OS predmemoriju - + Coalesce reads & writes Spajati čitanje & pisanje - + Use piece extent affinity Koristite komade srodnosti opsega - + Send upload piece suggestions Pošaljite prijedloge komada za prijenos - - - - - + + + + + 0 (disabled) 0 (onemogućeno) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Spremi interval podataka o nastavku [0: onemogućeno] - + Outgoing ports (Min) [0: disabled] Odlazni portovi (min.) [0: onemogućeno] - + Outgoing ports (Max) [0: disabled] Dolazni portovi (min.) [0: onemogućeno] - + 0 (permanent lease) 0 (trajni najam) - + UPnP lease duration [0: permanent lease] Trajanje UPnP najma [0: trajni najam] - + Stop tracker timeout [0: disabled] Istek vremena trackera [0: onemogućeno] - + Notification timeout [0: infinite, -1: system default] Istek obavijesti [0: beskonačno, -1: zadano za sustav] - + Maximum outstanding requests to a single peer Maksimalan broj neriješenih zahtjeva za jednog ravnopravnog korisnika - - - - - + + + + + KiB KiB - + (infinite) (beskonačno) - + (system default) (zadano za sustav) - + Delete files permanently - + Trajno brisanje datoteka - + Move files to trash (if possible) - + Premjestite datoteke u smeće (ako je moguće) - + Torrent content removing mode - + Torrent način za uklanjanje sadržaja - + This option is less effective on Linux Ova je opcija manje učinkovita na Linuxu - + Process memory priority Prioritet memorije procesa - + Bdecode depth limit Bdecode ograničenje dubine - + Bdecode token limit Bdecode ograničenje tokena - + Default Zadano - + Memory mapped files Memorijski mapirane datoteke - + POSIX-compliant POSIX-compliant - + Simple pread/pwrite - + Jednostavno pčitanje/ppisanje - + Disk IO type (requires restart) Vrsta IO diska (zahtijeva ponovno pokretanje) - - + + Disable OS cache Onemogući predmemoriju OS-a - + Disk IO read mode Disk IO način čitanja - + Write-through Pisanje-kroz - + Disk IO write mode Disk IO način pisanja - + Send buffer watermark Pošalji međuspremnik vodenog žiga - + Send buffer low watermark Pošalji međuspremnik niske razine vodenog žiga - + Send buffer watermark factor Pošalji faktor međuspremnika vodenog žiga - + Outgoing connections per second Odlazne veze u sekundi - - + + 0 (system default) 0 (zadano za sustav) - + Socket send buffer size [0: system default] Veličina međuspremnika za priključak slanja [0: zadano za sustav] - + Socket receive buffer size [0: system default] Veličina međuspremnika priključak primanja [0: zadano za sustav] - + Socket backlog size Veličina backlog zaostataka - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Spremi interval statistike [0: onemogućeno] - + .torrent file size limit Ograničenje veličine .torrent datoteke - + Type of service (ToS) for connections to peers Vrsta usluge (ToS) za veze s peerovima - + Prefer TCP Preferiraj TCP - + Peer proportional (throttles TCP) Proporcionalno peer (prigušuje TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Podrška internacionaliziranom nazivu domene (IDN) - + Allow multiple connections from the same IP address Dopustite više veza s iste IP adrese - + Validate HTTPS tracker certificates Potvrdite certifikate HTTPS trackera - + Server-side request forgery (SSRF) mitigation Ublažavanje krivotvorenja zahtjeva na strani poslužitelja (SSRF). - + Disallow connection to peers on privileged ports Zabrani povezivanje s ravnopravnim uređajima na privilegiranim portovima - + It appends the text to the window title to help distinguish qBittorent instances Dodaje tekst u naslov prozora kako bi qBittorent lakše razlikovao instance - + Customize application instance name Prilagodite naziv instance aplikacije - + It controls the internal state update interval which in turn will affect UI updates Kontrolira interni interval ažuriranja stanja koji će zauzvrat utjecati na ažuriranja korisničkog sučelja - + Refresh interval Interval osvježavanja - + Resolve peer host names Razrješi nazive peer hostova - + IP address reported to trackers (requires restart) IP adresa prijavljena trackerima (zahtijeva ponovno pokretanje) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Ponovno najavite svim trackerima kada se IP ili port promijeni - + Enable icons in menus Omogućite ikone u izbornicima - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Omogući prosljeđivanje priključka za ugrađeni alat za praćenje - + Enable quarantine for downloaded files Omogući karantenu za preuzete datoteke - + Enable Mark-of-the-Web (MOTW) for downloaded files Omogućite Mark-of-the-Web (MOTW) za preuzete datoteke - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Utječe na provjeru valjanosti certifikata i aktivnosti ne-torrent protokola (npr. RSS feedove, ažuriranja programa, torrent datoteke, geoip db, itd.) - + Ignore SSL errors - + Ignoriraj SSL pogreške - + (Auto detect if empty) (Automatsko otkrivanje ako je prazno) - + Python executable path (may require restart) Python izvršna putanja (možda će biti potrebno ponovno pokretanje) - + Start BitTorrent session in paused state - + Pokrenite BitTorrent sesiju u pauziranom stanju - + sec seconds - sek + sek - + -1 (unlimited) - + -1 (neograničeno) - + BitTorrent session shutdown timeout [-1: unlimited] - + Istek vremena za isključivanje BitTorrent sesije [-1: neograničeno] - + Confirm removal of tracker from all torrents Potvrdite uklanjanje trackera sa svih torrenta - + Peer turnover disconnect percentage Postotak prekida veze među peerovima - + Peer turnover threshold percentage Postotak praga fluktuacije među peerovima - + Peer turnover disconnect interval Interval isključenja peer prometa - + Resets to default if empty Vraća se na zadano ako je prazno - + DHT bootstrap nodes DHT čvorovi za pokretanje - + I2P inbound quantity I2P ulazna količina - + I2P outbound quantity I2P izlazna količina - + I2P inbound length I2P ulazna duljina - + I2P outbound length I2P izlazna duljina - + Display notifications Prikaži obavijesti - + Display notifications for added torrents Prikaži obavijesti za dodane torrente - + Download tracker's favicon Preuzmi ikonu trackera - + Save path history length Spremi putanju duljine povijesti - + Enable speed graphs Omogući grafikone brzine - + Fixed slots Fiksni slotovi - + Upload rate based Na temelju brzine prijenosa - + Upload slots behavior Ponašanje slota učitavanja - + Round-robin Okruglo - + Fastest upload Najbrže učitavanje - + Anti-leech Anti-leech - + Upload choking algorithm Učitaj algoritam za gušenje - + Confirm torrent recheck Potvrdi ponovnu provjeru torrenta - + Confirm removal of all tags Potvrdi uklanjanje svih oznaka - + Always announce to all trackers in a tier Uvijek najavi svim trackerima u nizu - + Always announce to all tiers Uvijek najavi svim razinama - + Any interface i.e. Any network interface Bilo koje sučelje - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP algoritam mješovitog načina rada - + Resolve peer countries Rješavanje zemalja peerova - + Network interface Mrežno sučelje - + Optional IP address to bind to Opcionalna IP adresa za povezivanje - + Max concurrent HTTP announces Maksimalan broj istodobnih HTTP najava - + Enable embedded tracker Omogući ugrađeni tracker - + Embedded tracker port Port ugrađenog trackera @@ -1382,142 +1393,142 @@ Invalid directory path - + Nevažeća putanja mape Directory does not exist - + Mapa ne postoji Invalid mode, allowed values: %1 - + Nevažeći način, dopuštene vrijednosti: %1 cookies must be array - + Kolačići moraju biti niz Application - + Running in portable mode. Auto detected profile folder at: %1 Radi u portabilnom načinu rada. Automatski otkrivena mapa profila na: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Otkrivena zastavica redundantnog naredbenog retka: "%1". Prijenosni način rada podrazumijeva relativno brz nastavak. - + Using config directory: %1 Korištenje konfiguracijskog direktorija: %1 - + Torrent name: %1 Ime torrenta: %1 - + Torrent size: %1 Veličina torrenta: %1 - + Save path: %1 Putanja spremanja: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent je preuzet za %1. - - + + Thank you for using qBittorrent. Hvala što koristite qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, šaljem obavijest e-poštom - + Add torrent failed Dodavanje torrenta nije uspjelo - + Couldn't add torrent '%1', reason: %2. Nije moguće dodati torrent '%1', razlog: %2. - + The WebUI administrator username is: %1 WebUI administratorsko korisničko ime je: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 WebUI administratorska lozinka nije postavljena. Za ovu sesiju dana je privremena lozinka: %1 - + You should set your own password in program preferences. Trebali biste postaviti vlastitu lozinku u postavkama aplikacije. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI je onemogućen! Da biste omogućili WebUI, ručno uredite konfiguracijsku datoteku. - + Running external program. Torrent: "%1". Command: `%2` Pokretanje vanjskog programa. Torrent: "%1". Naredba: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Pokretanje vanjskog programa nije uspjelo. Torrent: "%1". Naredba: `%2` - + Torrent "%1" has finished downloading Torrent "%1" je završio s preuzimanjem - + WebUI will be started shortly after internal preparations. Please wait... WebUI će biti pokrenut ubrzo nakon internih priprema. Molimo pričekajte... - - + + Loading torrents... Učitavanje torrenta... - + E&xit I&zlaz - + I/O Error i.e: Input/Output Error I/O greška - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1525,110 +1536,110 @@ Došlo je do I/O pogreške za torrent '%1'. Razlog: %2 - + Torrent added Torrent je dodan - + '%1' was added. e.g: xxx.avi was added. '%1' je dodan. - + Download completed Preuzimanje dovršeno - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 je pokrenut. ID procesa: %2 - + This is a test email. - + Ovo je testna e-pošta. - + Test email - + Testna e-pošta. - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' je završio preuzimanje. - + Information Informacija - + To fix the error, you may need to edit the config file manually. Da biste ispravili pogrešku, možda ćete morati ručno urediti konfiguracijsku datoteku. - + To control qBittorrent, access the WebUI at: %1 Za kontrolu qBittorrenta pristupite WebUI na: %1 - + Exit Izlaz - + Recursive download confirmation Potvrda rekurzivnog preuzimanja - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' sadrži .torrent datoteke, želite li nastaviti s njihovim preuzimanjem? - + Never Nikada - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekurzivno preuzimanje .torrent datoteke unutar torrenta. Izvor torrenta: "%1". Datoteka: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Postavljanje ograničenja upotrebe fizičke memorije (RAM) nije uspjelo. Šifra pogreške: %1. Poruka o pogrešci: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Neuspješno postavljanje ograničenja upotrebe fizičke memorije (RAM). Tražena veličina: %1. Čvrsto ograničenje sustava: %2. Šifra pogreške: %3. Poruka o pogrešci: "%4" - + qBittorrent termination initiated Pokrenuto prekidanje qBittorrenta - + qBittorrent is shutting down... qBittorrent se gasi... - + Saving torrent progress... Spremanje napretka torrenta... - + qBittorrent is now ready to exit qBittorrent je sada spreman za izlaz @@ -1764,263 +1775,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Izv&ezi... - + Matches articles based on episode filter. Podudarnosti članaka su na osnovi epizodnog filtera. - + Example: Primjer: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match epizode 2, 5, 8 odgovaraju epizodama 15, 30 i sljedećim epizodama prve sezone - + Episode filter rules: Pravila za filtriranje epizoda: - + Season number is a mandatory non-zero value Broj sezone je neophodan - + Filter must end with semicolon Filter mora završavati točka-zarezom - + Three range types for episodes are supported: Podržane su tri vrste poretka epizoda: - + Single number: <b>1x25;</b> matches episode 25 of season one Pojedinačni broj:<b>1x25;</b> označava 25. epizodu prve sezone - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Uobičajen raspon: <b>1x25-40;</b> označava epizode od 25. do 40. prve sezone - + Episode number is a mandatory positive value Broj epizode je obavezna pozitivna vrijednost - + Rules Pravila - + Rules (legacy) Pravila (nasljeđena) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Beskonačni domet: 1x25-; odgovara epizodama 25 i više od prve sezone i svim epizodama kasnijih sezona - + Last Match: %1 days ago Posljednje podudaranje: prije %1 dan(a) - + Last Match: Unknown Posljednje podudaranje: Nepoznato - + New rule name Naziv novog pravila - + Please type the name of the new download rule. Upišite naziv novog pravila preuzimanja. - - + + Rule name conflict Konflikt naziva pravila - - + + A rule with this name already exists, please choose another name. Pravilo s tim nazivom već postoji. Izaberite drugi naziv. - + Are you sure you want to remove the download rule named '%1'? Sigurni ste da želite ukloniti pravilo preuzimanja naziva '%1'? - + Are you sure you want to remove the selected download rules? Jeste li sigurni da želite ukloniti odabrana pravila preuzimanja? - + Rule deletion confirmation Pravilo potvrđivanja brisanja - + Invalid action Neispravna radnja - + The list is empty, there is nothing to export. Popis je prazan. Nema se što izvesti. - + Export RSS rules Izvoz RSS pravila - + I/O Error I/O greška - + Failed to create the destination file. Reason: %1 Stvaranje odredišne ​​datoteke nije uspjelo. Razlog: %1 - + Import RSS rules Uvoz RSS pravila - + Failed to import the selected rules file. Reason: %1 Uvoz odabrane datoteke s pravilima nije uspio. Razlog: %1 - + Add new rule... Dodaj novo pravilo... - + Delete rule Ukloni pravilo - + Rename rule... Preimenuj pravilo... - + Delete selected rules Ukloni odabrana pravila - + Clear downloaded episodes... Obriši preuzete epizode... - + Rule renaming Preimenovanje pravila - + Please type the new rule name Upišite naziv novog pravila - + Clear downloaded episodes Brisanje preuzetih epizoda - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Jeste li sigurni da želite obrisati popis preuzetih epizoda za odabrano pravilo? - + Regex mode: use Perl-compatible regular expressions Regex mod: koristite Perl-kompatibilne regularne izraze - - + + Position %1: %2 Pozicija %1: %2 - + Wildcard mode: you can use Način zamjenskog znaka: možete koristiti - - + + Import error Pogreška uvoza - + Failed to read the file. %1 Čitanje datoteke nije uspjelo. %1 - + ? to match any single character ? odgovarati bilo kojem pojedinačnom znaku - + * to match zero or more of any characters * za podudaranje s nula ili više bilo kojih znakova - + Whitespaces count as AND operators (all words, any order) Razmaci se računaju kao operatori I (sve riječi, bilo kojim redoslijedom) - + | is used as OR operator | se koristi kao ILI operator - + If word order is important use * instead of whitespace. Ako je redoslijed riječi važan, koristite * umjesto razmaka. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Izraz s praznom klauzulom %1 (npr. %2) - + will match all articles. će odgovarati svim artiklima. - + will exclude all articles. isključit će sve artikle. @@ -2072,28 +2083,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Nije moguće analizirati podatke nastavka: nevažeći format - - + + Cannot parse torrent info: %1 Ne mogu analizirati informacije o torrentu: %1 - + Cannot parse torrent info: invalid format Ne mogu analizirati podatke o torrentu: nevažeći format - + Mismatching info-hash detected in resume data U podatcima je otkriven nepodudarni hash informacija - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Nije moguće spremiti metapodatke torrenta u '%1'. Pogreška: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Nije moguće spremiti podatke o nastavku torrenta u '%1'. Pogreška: %2. @@ -2104,16 +2125,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Nije moguće analizirati podatke o nastavku: %1 - + Resume data is invalid: neither metadata nor info-hash was found Podaci o nastavku nisu valjani: nisu pronađeni ni metapodaci ni hash informacija - + Couldn't save data to '%1'. Error: %2 Nije moguće spremiti podatke u '%1'. Pogreška: %2 @@ -2121,38 +2143,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Nije pronađeno. - + Couldn't load resume data of torrent '%1'. Error: %2 Nije moguće učitati podatke o nastavku torrenta '%1'. Pogreška: %2 - - + + Database is corrupted. Baza podataka je oštećena. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Nije moguće omogućiti način vođenja dnevnika Write-Ahead Logging (WAL). Pogreška: %1. - + Couldn't obtain query result. Nije moguće dobiti rezultat upita. - + WAL mode is probably unsupported due to filesystem limitations. WAL način rada vjerojatno nije podržan zbog ograničenja datotečnog sustava. - + + + Cannot parse resume data: %1 + Nije moguće analizirati podatke o nastavku: %1 + + + + + Cannot parse torrent info: %1 + Ne mogu analizirati informacije o torrentu: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Nije moguće započeti transakciju. Pogreška: %1 @@ -2160,22 +2204,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Nije moguće spremiti metapodatke torrenta. Pogreška: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Nije moguće pohraniti podatke o nastavku za torrent '%1'. Pogreška: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Nije moguće izbrisati podatke o nastavku torrenta '%1'. Pogreška: %2 - + Couldn't store torrents queue positions. Error: %1 Nije moguće pohraniti položaje čekanja torrenta. Pogreška: %1 @@ -2183,530 +2227,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Podrška za distribuiranu hash tablicu (DHT): %1 - - - - - - - - - + + + + + + + + + ON UKLJ - - - - - - - - - + + + + + + + + + OFF ISKLJ - - + + Local Peer Discovery support: %1 Podrška za lokalno otkrivanje ravnopravnih korisnika: %1 - + Restart is required to toggle Peer Exchange (PeX) support Ponovno pokretanje potrebno je za uključivanje podrške za Peer Exchange (PeX). - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Nastavljanje torrenta nije uspjelo. Torrent: "%1". Razlog: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Nastavljanje torrenta nije uspjelo: otkriven je nedosljedan ID torrenta. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Otkriveni nedosljedni podaci: kategorija nedostaje u konfiguracijskoj datoteci. Kategorija će se vratiti, ali će se njezine postavke vratiti na zadane. Torrent: "%1". Kategorija: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Otkriveni nedosljedni podaci: nevažeća kategorija. Torrent: "%1". Kategorija: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Otkrivena nepodudarnost između staza spremanja oporavljene kategorije i trenutne staze spremanja torrenta. Torrent je sada prebačen u ručni način rada. Torrent: "%1". Kategorija: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Otkriveni nedosljedni podaci: oznaka nedostaje u konfiguracijskoj datoteci. Oznaka će biti oporavljena. Torrent: "%1". Oznaka: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Otkriveni nedosljedni podaci: nevažeća oznaka. Torrent: "%1". Oznaka: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Otkriven je događaj buđenja sustava. Ponovno javljanje svim trackerima... - + Peer ID: "%1" Peer ID: "%1" - + HTTP User-Agent: "%1" HTTP Korisnički-Agent: "%1" - + Peer Exchange (PeX) support: %1 Peer Exchange (PeX) podrška: %1 - - + + Anonymous mode: %1 Anonimni način rada: %1 - - + + Encryption support: %1 Podrška za šifriranje: %1 - - + + FORCED PRISILNO - + Could not find GUID of network interface. Interface: "%1" Nije moguće pronaći GUID mrežnog sučelja. Sučelje: "%1" - + Trying to listen on the following list of IP addresses: "%1" Pokušavam slušati sljedeći popis IP adresa: "%1" - + Torrent reached the share ratio limit. Torrent je dosegao ograničenje omjera dijeljenja. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Uklonjen torrent. - - - Removed torrent and deleted its content. - Uklonjen torrent i izbrisan njegov sadržaj. - - - Torrent paused. - Torrent je pauziran. - - - + Super seeding enabled. Super dijeljenje omogućeno. - + Torrent reached the seeding time limit. Torrent je dosegao vremensko ograničenje dijeljenja. - + Torrent reached the inactive seeding time limit. Torrent je dosegao ograničenje vremena neaktivnog seedanja. - + Failed to load torrent. Reason: "%1" Neuspješno učitavanje torrenta. Razlog: "%1" - + I2P error. Message: "%1". I2P greška. Poruka: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP podrška: UKLJ - + Saving resume data completed. - + Spremanje nastavka podataka dovršeno. - + BitTorrent session successfully finished. - + BitTorrent sesija uspješno završena. - + Session shutdown timed out. - + Gašenje sesije je isteklo. - + Removing torrent. - + Uklanjanje torrenta. - + Removing torrent and deleting its content. - + Uklanjanje torrenta i brisanje njegovog sadržaja - + Torrent stopped. - + Torrent je zaustavljen. - + Torrent content removed. Torrent: "%1" - + Torrent sadržaj uklonjen. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Uklanjanje torrent sadržaja nije uspjelo. Torrent: "%1". Greška: "%2" - + Torrent removed. Torrent: "%1" - + Torrent uklonjen. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Otkriven je pokušaj dodavanja duplikata torrenta. Postojeći torrent: %1. Rezultat: %2 - + Merging of trackers is disabled - Spajanje trackera je onemogućeno + Spajanje trackera je onemogućeno - + Trackers cannot be merged because it is a private torrent - Trackeri se ne mogu spojiti jer se radi o privatnom torrentu + Trackeri se ne mogu spojiti jer se radi o privatnom torrentu - + Trackers are merged from new source - Trackeri su spojeni iz novog izvora + Trackeri su spojeni iz novog izvora - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP podrška: ISKLJ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Izvoz torrenta nije uspio. Torrent: "%1". Odredište: "%2". Razlog: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Prekinuto spremanje podataka o nastavku. Broj neizvršenih torrenta: %1 - + The configured network address is invalid. Address: "%1" Konfigurirana mrežna adresa nije važeća. Adresa: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Nije uspjelo pronalaženje konfigurirane mrežne adrese za slušanje. Adresa: "%1" - + The configured network interface is invalid. Interface: "%1" Konfigurirano mrežno sučelje nije važeće. Sučelje: "%1" - + Tracker list updated - + Popis trackera ažuriran - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Odbijena nevažeća IP adresa tijekom primjene popisa zabranjenih IP adresa. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Dodan tracker torrentu. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Uklonjen tracker iz torrenta. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Torrentu je dodan URL dijeljenja. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Uklonjen URL dijeljenja iz torrenta. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Uklanjanje djelomične datoteke nije uspjelo. Torrent: "%1". Razlog: "%2". - Torrent paused. Torrent: "%1" - Torrent je pauziran. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent je nastavljen. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Preuzimanje torrenta završeno. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Premještanje torrenta otkazano. Torrent: "%1". Izvor: "%2". Odredište: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent je zaustavljen. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Premještanje torrenta u red čekanja nije uspjelo. Torrent: "%1". Izvor: "%2". Odredište: "%3". Razlog: torrent se trenutno kreće prema odredištu - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Premještanje torrenta u red čekanja nije uspjelo. Torrent: "%1". Izvor: "%2" Odredište: "%3". Razlog: obje staze pokazuju na isto mjesto - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Premještanje torrenta u red čekanja. Torrent: "%1". Izvor: "%2". Odredište: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Počnite pomicati torrent. Torrent: "%1". Odredište: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Spremanje konfiguracije kategorija nije uspjelo. Datoteka: "%1". Greška: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Nije uspjelo analiziranje konfiguracije kategorija. Datoteka: "%1". Greška: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Datoteka IP filtera uspješno je analizirana. Broj primijenjenih pravila: %1 - + Failed to parse the IP filter file Nije uspjelo analiziranje IP filtera datoteke - + Restored torrent. Torrent: "%1" Obnovljen torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Dodan novi torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Pogreška u torrentu. Torrent: "%1". Greška: "%2" - Removed torrent. Torrent: "%1" - Uklonjen torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Uklonjen torrent i izbrisan njegov sadržaj. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentu nedostaju SSL parametri. Torrent: "%1". Poruka: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Torrent je uklonjen, ali nije uspio izbrisati njegov sadržaj. Torrent: "%1". Greška: "%2". Razlog: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP mapiranje porta nije uspjelo. Poruka: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP port mapping succeeded.Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrirani port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). povlašteni port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent sesija naišla je na ozbiljnu pogrešku. Razlog: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxy pogreška. Adresa 1. Poruka: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 ograničenja mješovitog načina rada - + Failed to load Categories. %1 Učitavanje kategorija nije uspjelo. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Nije uspjelo učitavanje konfiguracije kategorija. Datoteka: "%1". Pogreška: "Nevažeći format podataka" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent je uklonjen, ali nije uspio izbrisati njegov sadržaj i/ili dio datoteke. Torrent: "%1". Greška: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 je onemogućen - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 je onemogućen - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL dijeljenje DNS pretraživanje nije uspjelo. Torrent: "%1". URL: "%2". Greška: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Primljena poruka o pogrešci od URL seeda. Torrent: "%1". URL: "%2". Poruka: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Uspješno slušanje IP-a. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Slušanje IP-a nije uspjelo. IP: "%1". Port: "%2/%3". Razlog: "%4" - + Detected external IP. IP: "%1" Otkriven vanjski IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Pogreška: Interni red čekanja upozorenja je pun i upozorenja su izostavljena, mogli biste vidjeti smanjene performanse. Vrsta ispuštenog upozorenja: "%1". Poruka: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent je uspješno premješten. Torrent: "%1". Odredište: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Premještanje torrenta nije uspjelo. Torrent: "%1". Izvor: "%2". Odredište: "%3". Razlog: "%4" @@ -2756,47 +2777,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Nije moguće pisati u datoteku. Razlog: "%1". Torrent je sada u načinu rada "samo slanje". - + Download first and last piece first: %1, torrent: '%2' Prvo preuzmite prvi i zadnji dio: %1, torrent: '%2' - + On Uklj - + Off Isklj - + Failed to reload torrent. Torrent: %1. Reason: %2 Ponovno učitavanje torrenta nije uspjelo. Torrent: %1. Razlog: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Generiranje podataka nastavka nije uspjelo. Torrent: "%1". Razlog: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Vraćanje torrenta nije uspjelo. Datoteke su vjerojatno premještene ili pohrana nije dostupna. Torrent: "%1". Razlog: "%2" - + Missing metadata Nedostaju metapodaci - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Preimenovanje datoteke nije uspjelo. Torrent: "%1", datoteka: "%2", razlog: "%3" - + Performance alert: %1. More info: %2 Upozorenje o performansama: %1. Više informacija: %2 @@ -2833,11 +2854,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Očekivan cijeli broj u varijabli okoline '%1', ali dobiven je '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parametar '%1' mora slijediti sintaksu '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2878,7 +2894,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parametar '%1' mora slijediti sintaksu '%1=%2' + Parametar '%1' mora slijediti sintaksu '%1=%2' @@ -2966,11 +2982,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - Dodajte torrente kao pokrenute ili pauzirane + Dodajte torrente kao pokrenute ili zaustavljene @@ -3061,20 +3073,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Pokreni torrente Stop torrents - - - - Resume torrents - Nastavi torrente - - - Pause torrents - Pauziraj torrente + Zaustavi torrente @@ -3097,7 +3101,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + Sustav @@ -3172,11 +3176,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - Također trajno izbrišite datoteke + Također uklonite datoteke sadržaja @@ -3388,47 +3388,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + Format uzorka Plain text - + Običan tekst Wildcards - + Zamjenski znakovi Regular expression - + Uobičajeni izraz GUIAddTorrentManager - + Downloading torrent... Source: "%1" Preuzimanje torrenta... Izvor: "%1" - Trackers cannot be merged because it is a private torrent - Trackeri se ne mogu spojiti jer se radi o privatnom torrentu - - - + Torrent is already present Torrent je već prisutan - + Trackers cannot be merged because it is a private torrent. - + Trackeri se ne mogu spojiti jer se radi o privatnom torrentu. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' je već na popisu prijenosa. Želite li spojiti trackere iz novog izvora? @@ -3546,6 +3542,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Podržane slikovne datoteke + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Upravljanje napajanjem pronašlo je odgovarajuće D-Bus sučelje. Sučelje: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Pogreška upravljanja napajanjem. Radnja: %1. Pogreška: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Neočekivana pogreška upravljanja napajanjem. Stanje: %1. Pogreška: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3687,10 +3717,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Opcije... - - &Resume - Nastavi - &Remove @@ -3760,7 +3786,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + Is&ključi sustav @@ -3772,10 +3798,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Zatvori prozor - - R&esume All - Nastavi sve - Manage Cookies... @@ -3814,22 +3836,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + Sta&rt Sto&p - + Sto&p R&esume Session - + N&astavi sesiju Pau&se Session - + Pauziraj &sesiju @@ -3891,10 +3913,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Hiberniraj sustav - - S&hutdown System - U&gasi sustav - &Statistics @@ -3915,14 +3933,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &O programu - - &Pause - &Pauziraj - - - P&ause All - P&auziraj sve - &Add Torrent File... @@ -3956,12 +3966,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Prikaži - + Check for program updates Provjeri ažuriranja programa @@ -3976,386 +3986,381 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Ako vam se sviđa qBittorrent donirajte! - + Execution Log Dnevnik izvršavanja - + Clear the password Izbriši lozinku - + &Set Password Namje&sti lozinku - + Preferences Postavke - + &Clear Password &Očisti lozinku - + Transfers Prijenosi - - + + qBittorrent is minimized to tray qBittorrent je minimiziran u traku - - - + + + This behavior can be changed in the settings. You won't be reminded again. Ovo se ponašanje može promijeniti u postavkama. Nećete više dobiti podsjetnik. - + Icons Only Samo ikone - + Text Only Samo tekst - + Text Alongside Icons Tekst uz ikone - + Text Under Icons Tekst ispod ikona - + Follow System Style Koristi stil sustava - - + + UI lock password Lozinka zaključavanja sučelja - - + + Please type the UI lock password: Upišite lozinku zaključavanja sučelja: - + Are you sure you want to clear the password? Želite li sigurno izbrisati lozinku? - + Use regular expressions Koristi uobičajene izraze - - + + Search Engine - Dodaci za pretraživanje + Dodaci za pretraživanje - + Search has failed - Pretraga nije uspjela + Pretraga nije uspjela - + Search has finished - Pretraga je završila + Pretraga je završila - + Search Traži - + Transfers (%1) Prijenosi (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent je upravo ažuriran i potrebno ga je ponovno pokrenuti kako bi promjene bile učinkovite. - + qBittorrent is closed to tray qBittorrent je zatvoren u traku - + Some files are currently transferring. Neke datoteke se trenutno prenose. - + Are you sure you want to quit qBittorrent? Jeste li sigurni da želite napustiti qBittorrent? - + &No &Ne - + &Yes &Da - + &Always Yes Uvijek d&a - + Options saved. Opcije spremljene. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUZIRANO] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Nije moguće preuzeti Python instalacijski program. Pogreška: "%1". +Molimo instalirajte Python ručno. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Preimenovanje Python instalacijskog programa nije uspjela. Izvor: "%1". Odredište: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Instalacija Pythona je uspješna. + Exit code: %1. + Kod pri izlazu: %1. + + + + Reason: installer crashed. + Razlog: instalacijski program se srušio. + + + Python installation failed. - + Instalacija Pythona nije uspješna. - + Launching Python installer. File: "%1". - + Pokretanje Python instalacijskog programa. Datoteka: "%1". - - + + Missing Python Runtime Nedostaje Python Runtime - + qBittorrent Update Available qBittorrent ažuriranje dostupno - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python je potreban kako bi se koristili pretraživači, ali čini se da nije instaliran. Želite li ga sada instalirati? - + Python is required to use the search engine but it does not seem to be installed. Python je potreban kako bi se koristili pretraživači, ali čini se da nije instaliran. - - + + Old Python Runtime Stari Python Runtime - + A new version is available. Dostupna je nova verzija. - + Do you want to download %1? Želite li preuzeti %1? - + Open changelog... Otvori dnevnik promjena... - + No updates available. You are already using the latest version. Nema dostupnih ažuriranja. Već koristite posljednju verziju. - + &Check for Updates &Provjeri ažuriranja - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Vaša verzija Pythona (%1) je zastarjela. Minimalni zahtjev: %2. Želite li sada instalirati noviju verziju? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Vaša verzija Pythona (%1) je zastarjela. Nadogradite na najnoviju verziju kako bi tražilice radile. Minimalni zahtjev: %2. - + Paused - Pauzirano + Pauzirano - + Checking for Updates... Provjeravanje ažuriranja... - + Already checking for program updates in the background Već se provjeravaju softverska ažuriranja u pozadini - + Python installation in progress... - + Instalacija Pythona u tijeku... - + Failed to open Python installer. File: "%1". - + Pogreška pri pokretanju Python instalacijskog programa. Datoteka: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Pogreška pri provjeri MD5 sažetka Python instalacijskog programa. Datoteka: "%1". Rezultirani sažetak: "%2". Očekivani sažetak: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Pogreška pri provjeri SHA3-512 sažetka Python instalacijskog programa. Datoteka: "%1". Rezultirani sažetak: "%2". Očekivani sažetak: "%3". - + Download error Greška pri preuzimanju - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python setup nije moguće preuzeti. Razlog: %1. -Instalirajte ručno. - - - - + + Invalid password Neispravna lozinka - + Filter torrents... Filtrirajte torrente... - + Filter by: Filtrirati po: - + The password must be at least 3 characters long Lozinka mora imati najmanje 3 znaka - - - + + + RSS (%1) RSS (%1) - + The password is invalid Lozinka nije ispravna - + DL speed: %1 e.g: Download speed: 10 KiB/s Brzina preuzimanja: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Brzina slanja: %1 - + Hide Sakrij - + Exiting qBittorrent Izlaz iz qBittorrenta - + Open Torrent Files Otvori torrent datoteke - + Torrent Files Torrent datoteke @@ -4552,7 +4557,7 @@ Instalirajte ručno. SSL error, URL: "%1", errors: "%2" - + SSL pogreška, URL: "%1", pogreške: "%2" @@ -5849,47 +5854,47 @@ Instalirajte ručno. Net::Smtp - + Connection failed, unrecognized reply: %1 Povezivanje nije uspjelo, neprepoznat odgovor: %1 - + Authentication failed, msg: %1 Provjera autentičnosti nije uspjela, poruka: %1 - + <mail from> was rejected by server, msg: %1 <mail from> poslužitelj je odbio, poruka: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> poslužitelj je odbio, poruka: %1 - + <data> was rejected by server, msg: %1 <data> odbijen od strane poslužitelja, poruka: %1 - + Message was rejected by the server, error: %1 Poslužitelj je odbio poruku, greška: %1 - + Both EHLO and HELO failed, msg: %1 I EHLO i HELO nisu uspjeli, poruka: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Čini se da SMTP poslužitelj ne podržava niti jedan od modova provjere autentičnosti koje podržavamo [CRAM-MD5|PLAIN|LOGIN], preskakanje provjere autentičnosti, znajući da vjerojatno neće uspjeti... Načini provjere autentičnosti poslužitelja: %1 - + Email Notification Error: %1 Pogreška obavijesti putem e-pošte: %1 @@ -5931,10 +5936,6 @@ Instalirajte ručno. RSS RSS - - Web UI - Web UI - Advanced @@ -5955,14 +5956,6 @@ Instalirajte ručno. Confirm when deleting torrents Potvrdi prilikom brisanja torrenta - - Shows a confirmation dialog upon pausing/resuming all the torrents - Prikazuje dijaloški okvir potvrde nakon pauziranja/nastavljanja svih torrenta - - - Confirm "Pause/Resume all" actions - Potvrdite radnje "Pauziraj/nastavi sve". - Use alternating row colors @@ -5979,10 +5972,6 @@ Instalirajte ručno. Always Uvijek - - Paused torrents only - Samo pauzirani torrenti - Action on double-click @@ -5993,10 +5982,6 @@ Instalirajte ručno. Downloading torrents: Preuzimanje torrenta: - - Start / Stop Torrent - Start / Stop Torrent - @@ -6056,408 +6041,406 @@ Instalirajte ručno. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Izgled sadržaja torrenta: - + Original Original - + Create subfolder Stvori podmapu - + Don't create subfolder Nemoj stvarati podmapu - + The torrent will be added to the top of the download queue Torrent će biti dodan na vrh čekanja za preuzimanje - + Add to top of queue The torrent will be added to the top of the download queue Dodaj na vrh reda čekanja - + When duplicate torrent is being added Kada se dodaje dvostruki torrent - + Merge trackers to existing torrent Spojite trackere na postojeći torrent - + Keep unselected files in ".unwanted" folder Držite neodabrane datoteke u mapi ".neželjeno" - + Add... Dodaj... - + Options.. Mogućnosti.. - + Remove Ukloni - + Email notification &upon download completion Obavijest e-poštom &nakon završetka - + Send test email - + Pošalji probnu e-poštu - + Run on torrent added: - + Run on torrent finished: - + Pokreni kad torrent završi: - + Peer connection protocol: Peer protokol povezivanja: - + Any Bilo koje - + I2P (experimental) I2P (eksperimentalno) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Ako je omogućen "mješoviti način rada", I2P torrentima je dopušteno da također dobiju vršnjake iz drugih izvora osim trackera, i povezuju se na regularne IP adrese, ne pružajući nikakvu anonimizaciju. Ovo može biti korisno ako korisnik nije zainteresiran za anonimizaciju I2P-a, ali i dalje želi imati mogućnost povezivanja s I2P peerovima.</p></body></html> - - - + Mixed mode Mješoviti način rada - Some options are incompatible with the chosen proxy type! - Neke opcije nisu kompatibilne s odabranom vrstom proxyja! + Neke opcije nisu kompatibilne s odabranom vrstom proxyja! - + If checked, hostname lookups are done via the proxy Ako je označeno, traženje naziva hosta vrši se putem proxyja - + Perform hostname lookup via proxy Izvršite traženje naziva hosta putem proxyja - + Use proxy for BitTorrent purposes Koristite proxy za BitTorrent svrhe - + RSS feeds will use proxy RSS izvori će koristiti proxy - + Use proxy for RSS purposes Koristite proxy za RSS svrhe - + Search engine, software updates or anything else will use proxy Tražilica, ažuriranja softvera ili bilo što drugo koristit će proxy - + Use proxy for general purposes Koristite proxy za općenite svrhe - + IP Fi&ltering IP Fi&ltriranje - + Schedule &the use of alternative rate limits Raspored i korištenje alternativnih ograničenja brzine - + From: From start time Od: - + To: To end time Do: - + Find peers on the DHT network Pronađite peerove na DHT mreži - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption Dopusti enkripciju: Poveži se s peerovima bez obzira na postavku. Zahtijeva enkripciju: Poveži se samo s peerovima s enkripcijom protokola. Onemogući enkripciju: Poveži se samo s peerovima bez enkripcije protokola - + Allow encryption Dopusti enkripciju - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Više informacija</a>) - + Maximum active checking torrents: Najviše aktivnih torrenta: - + &Torrent Queueing Red čekanja &torrenta - + When total seeding time reaches Kada ukupno vrijeme seedanja dosegne - + When inactive seeding time reaches Kada neaktivno vrijeme seedanja dosegne - A&utomatically add these trackers to new downloads: - A&utomatski dodaj ove trackere za nova preuzimanja: - - - + RSS Reader RSS čitač - + Enable fetching RSS feeds Omogući dohvaćanje RSS izvora - + Feeds refresh interval: Interval osvježavanja feedova: - + Same host request delay: Odgoda zahtjeva istog hosta: - + Maximum number of articles per feed: Najveći broj članaka po kanalu: - - - + + + min minutes min - + Seeding Limits Ograničenja dijeljenja - Pause torrent - Pauziraj torrente - - - + Remove torrent Ukloni torrent - + Remove torrent and its files Ukloni torrent i njegove datoteke - + Enable super seeding for torrent Omogući super dijeljenje za torrent - + When ratio reaches Kada se dosegne omjer - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Zaustavi torrent - + A&utomatically append these trackers to new downloads: - + A&utomatski dodaj ove alate za praćenje novim preuzimanjima: - + Automatically append trackers from URL to new downloads: - + Automatski dodaj trackere iz poveznice novim preuzimanjima: - + URL: - URL: + URL: - + Fetched trackers - + Dohvaćeni trackeri - + Search UI - + Store opened tabs - + Also store search results - + History length - + Duljina povijesti - + RSS Torrent Auto Downloader RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents Omogući automatsko preuzimanje RSS torrenta - + Edit auto downloading rules... Uredi pravila automatskog preuzimanja... - + RSS Smart Episode Filter RSS pametni filtar epizoda - + Download REPACK/PROPER episodes Preuzmite REPACK/PROPER epizode - + Filters: Filteri: - + Web User Interface (Remote control) Web korisničko sučelje (daljinsko upravljanje) - + IP address: IP addresa: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. IP adresa na koju će se vezati web sučelje. Navedite IPv4 ili IPv6 adresu. Možete navesti "0.0.0.0" za bilo koju IPv4 adresu, "::" za bilo koju IPv6 adresu ili "*" za IPv4 i IPv6. - + Ban client after consecutive failures: Ban klijenta nakon uzastopnih neuspjeha: - + Never Nikad - + ban for: zabrana za: - + Session timeout: Istek sesije: - + Disabled Onemogućeno - Enable cookie Secure flag (requires HTTPS) - Omogući sigurnu oznaku kolačića (zahtijeva HTTPS) - - - + Server domains: Domene poslužitelja: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6470,37 +6453,37 @@ trebali biste unijeti nazive domena koje koristi WebUI poslužitelj. Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski znak '*'. - + &Use HTTPS instead of HTTP &Koristite HTTPS umjesto HTTP-a - + Bypass authentication for clients on localhost Zaobilaženje autentifikacije za klijente na lokalnom hostu - + Bypass authentication for clients in whitelisted IP subnets Zaobilaženje autentifikacije za klijente u IP podmrežama na popisu dopuštenih - + IP subnet whitelist... Popis dopuštenih IP podmreža... - + Use alternative WebUI - + Koristite alternativni WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Navedite obrnute proxy IP adrese (ili podmreže, npr. 0.0.0.0/24) kako biste koristili prosljeđenu adresu klijenta (X-Prosljeđeno-Za zaglavlje). Koristite ';' za razdvajanje više unosa. - + Upda&te my dynamic domain name Ažuriraj &moj dinamički naziv domene @@ -6512,12 +6495,12 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski Search - Traži + Traži WebUI - + WebUI @@ -6532,29 +6515,29 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski Style: - + Stil: Color scheme: - + Tema: Stopped torrents only - + Samo zaustavljeni torrenti Start / stop torrent - + Započni / zaustavi torrent Open torrent options dialog - + Otvori dijaloški okvir s opcijama torrenta @@ -6613,99 +6596,99 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski Izbriši sigurnosne zapisnike starije od: - + Show external IP in status bar - + Pokaži eksternalni IP u traci statusa - + When adding a torrent Prilikom dodavanja torrenta - + Bring torrent dialog to the front Postavi dijalog torrenta ispred. - + The torrent will be added to download list in a stopped state - + Torrent će biti dodan na popis preuzimanja u zaustavljenom stanju - + Also delete .torrent files whose addition was cancelled Također izbrišite .torrent datoteke čije je dodavanje otkazano - + Also when addition is cancelled Također kada je dodavanje poništeno - + Warning! Data loss possible! Upozorenje! Moguć gubitak podataka! - + Saving Management Upravljanje spremanjem - + Default Torrent Management Mode: Zadani način upravljanja torrentom: - + Manual Ručno - + Automatic Automatski - + When Torrent Category changed: Kada se promjeni torrent kategorija: - + Relocate torrent Premjesti torrent - + Switch torrent to Manual Mode Prebaci torrent u ručni način rada - - + + Relocate affected torrents Premjestite pogođene torrente - - + + Switch affected torrents to Manual Mode Prebacite pogođene torrente u ručni način rada - + Use Subcategories Koristite potkategorije - + Default Save Path: Zadana putanja spremanja: - + Copy .torrent files to: Kopiraj .torrent datoteke u: @@ -6715,28 +6698,24 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski Prikaži &qBittorrent u području obavijesti - &Log file - &Datoteka zapisa - - - + Display &torrent content and some options Prikaži &torrent sadržaj i neke opcije - + De&lete .torrent files afterwards Nakon &toga izbrišite .torrent datoteke - + Copy .torrent files for finished downloads to: Kopirajte .torrent datoteke za završena preuzimanja u: - + Pre-allocate disk space for all files - Prethodno dodijelite prostor na disku za sve datoteke + Unaprijed dodijeli prostor na disku za sve datoteke @@ -6764,10 +6743,6 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski Preview file, otherwise open destination folder Pregledajte datoteku, ili otvorite odredišnu mapu - - Show torrent options - Prikaži opcije torrenta - Shows a confirmation dialog when exiting with active torrents @@ -6833,69 +6808,65 @@ Koristite ';' za razdvajanje više unosa. Možete koristiti zamjenski godine - + Log performance warnings Zapis upozorenja o performansama - The torrent will be added to download list in a paused state - Torrent će biti dodan na popis preuzimanja u pauziranom stanju - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Nemojte automatski pokretati preuzimanje - + Whether the .torrent file should be deleted after adding it Treba li .torrent datoteku izbrisati nakon dodavanja - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Dodijelite punu veličinu datoteke na disku prije početka preuzimanja kako biste smanjili fragmentaciju. Korisno samo za HDD. - + Append .!qB extension to incomplete files Dodajte ekstenziju .!qB nepotpunim datotekama - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Kada se torrent preuzme, ponudite dodavanje torrenta iz bilo koje .torrent datoteke koja se nalazi u njemu - + Enable recursive download dialog Omogući rekurzivni dijaloški okvir preuzimanja - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatski: Različita svojstva torrenta (npr. put spremanja) odlučit će pridružena kategorija Ručno: različita svojstva torrenta (npr. put spremanja) moraju se dodijeliti ručno - + When Default Save/Incomplete Path changed: Kada se promijeni zadana putanja spremanja/nepotpunog: - + When Category Save Path changed: Kada se putanja spremanja kategorije promijenila: - + Use Category paths in Manual Mode Koristite putanje kategorija u ručnom načinu rada - + Resolve relative Save Path against appropriate Category path instead of Default one Razriješi relativnu putanju spremanja s odgovarajućom putanjom kategorije umjesto zadane @@ -6915,50 +6886,50 @@ Ručno: različita svojstva torrenta (npr. put spremanja) moraju se dodijeliti r Stanje prozora qBittorrent pri pokretanju - + Torrent stop condition: Uvjet zaustavljanja torrenta: - - + + None Nijedno - - + + Metadata received Metapodaci primljeni - - + + Files checked Provjerene datoteke - + Ask for merging trackers when torrent is being added manually Traži spajanje trackera kada se torrent dodaje ručno - + Use another path for incomplete torrents: Koristite drugu putanju za nepotpune torrente: - + Automatically add torrents from: Automatski dodaj torrente iz: - + Excluded file names Izuzeti nazivi datoteka - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6987,523 +6958,510 @@ readme.txt: filtrirajte točan naziv datoteke. readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne i 'readme10.txt'. - + Receiver Primatelj - + To: To receiver Za: - + SMTP server: SMTP poslužitelj: - + Sender Pošiljatelj - + From: From sender Od: - + This server requires a secure connection (SSL) Ovaj poslužitelj zahtijeva sigurnu vezu (SSL) - - + + Authentication Autentifikacija - - - - + + + + Username: Korisničko ime: - - - - + + + + Password: Lozinka: - + Run external program Pokrenite vanjski program - Run on torrent added - Pokretanje na dodanom torrentu - - - Run on torrent finished - Pokretanje na završenom torrentu - - - + Show console window Prikaži prozor konzole - + TCP and μTP TCP i μTP - + Listening Port Port za slušanje - + Port used for incoming connections: Port koji se koristi za dolazne veze: - + Set to 0 to let your system pick an unused port Postavite na 0 kako bi vaš sustav odabrao neiskorišteni port - + Random Nasumično - + Use UPnP / NAT-PMP port forwarding from my router Koristi UPnP / NAT-PMP prosljeđivanje portova s ​​mog usmjerivača - + Connections Limits Ograničenja veza - + Maximum number of connections per torrent: Maksimalan broj veza po torrentu: - + Global maximum number of connections: Ukupno najveći broj veza: - + Maximum number of upload slots per torrent: Maksimalan broj utora za učitavanje po torrentu: - + Global maximum number of upload slots: Globalno najveći broj slotova za učitavanje: - + Proxy Server Proxy poslužitelj - + Type: Vrsta: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Inače, proxy poslužitelj koristi se samo za veze s trackerom - + Use proxy for peer connections Koristite proxy za peer veze - + A&uthentication A&utentifikacija - Info: The password is saved unencrypted - Info: Lozinka je spremljena nekriptirana + Info: Lozinka je spremljena nekriptirana - + Filter path (.dat, .p2p, .p2b): Putanja filtera (.dat, .p2p, .p2b): - + Reload the filter Ponovno učitaj filter - + Manually banned IP addresses... Ručno zabranjene IP adrese... - + Apply to trackers Primjeni na trackere - + Global Rate Limits Globalno ograničenje brzine - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Slanje: - - + + Download: Preuzimanje: - + Alternative Rate Limits Alternativno ograničenje brzine - + Start time Vrijeme početka - + End time Vrijeme završetka - + When: Kada: - + Every day Svaki dan - + Weekdays Radni dani - + Weekends Vikend - + Rate Limits Settings Postavke ograničenja brzine - + Apply rate limit to peers on LAN Primijeni ograničenje brzine na peerove na LAN-u - + Apply rate limit to transport overhead Primijeni ograničenje stope na troškove prijenosa - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Primijeni ograničenje brzine na µTP protokol - + Privacy Privatnost - + Enable DHT (decentralized network) to find more peers Omogućite DHT (decentraliziranu mrežu) za pronalaženje više peerova - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Razmjena peerova s kompatibilnim Bittorrent klijentima (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Omogućite Peer Exchange (PeX) da pronađete više peerova - + Look for peers on your local network Potražite peerove na svojoj lokalnoj mreži - + Enable Local Peer Discovery to find more peers Omogućite Local Peer Discovery za pronalaženje više peerova - + Encryption mode: Način kriptiranja: - + Require encryption Zahtjevaj kriptiranje - + Disable encryption Onemogući kriptiranje - + Enable when using a proxy or a VPN connection Omogućite kada koristite proxy ili VPN vezu - + Enable anonymous mode Omogući anonimni način rada - + Maximum active downloads: Maksimalan broj aktivnih preuzimanja: - + Maximum active uploads: Maksimalan broj aktivnih slanja: - + Maximum active torrents: Maksimalni broj aktivnih torrenta: - + Do not count slow torrents in these limits Ne ubrajajte spore torrente u ova ograničenja - + Upload rate threshold: Prag brzine slanja: - + Download rate threshold: Prag brzine preuzimanja: - - - - + + + + sec seconds sek - + Torrent inactivity timer: Odbrojavanje vremena neaktivnosti torrenta: - + then tada - + Use UPnP / NAT-PMP to forward the port from my router Koristite UPnP / NAT-PMP za prosljeđivanje porta s mog usmjerivača - + Certificate: Certifikat: - + Key: Ključ: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informacije o certifikatima</a> - + Change current password Promjena trenutne lozinke - Use alternative Web UI - Koristite alternativno web sučelje - - - + Files location: Lokacija datoteka: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Sigurnost - + Enable clickjacking protection Omogući zaštitu od clickjackinga - + Enable Cross-Site Request Forgery (CSRF) protection Omogućite Cross-Site Request Forgery (CSRF) zaštitu - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Omogući provjeru valjanosti zaglavlja hosta - + Add custom HTTP headers Dodajte prilagođena HTTP zaglavlja - + Header: value pairs, one per line Zaglavlje: parovi vrijednosti, jedan po retku - + Enable reverse proxy support Omogući podršku za obrnuti proxy - + Trusted proxies list: Popis pouzdanih proxyja: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Servis: - + Register Registar - + Domain name: Naziv domene: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Uključivanjem ovih opcija možete <strong>nepovratno izgubiti </strong>svoje .torrent datoteke! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Ako omogućite drugu opciju (“Također kada je dodavanje otkazano”), .torrent datoteka <strong>će biti izbrisana</strong> čak i ako pritisnete <strong>Odustani</strong> u dijaloškom okviru “Dodaj torrent” @@ -7513,12 +7471,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne Odaberite datoteku teme korisničkog sučelja za qBittorrent - + Choose Alternative UI files location Odaberite lokaciju alternativnih datoteka korisničkog sučelja - + Supported parameters (case sensitive): Podržani parametri (razlikuje velika i mala slova): @@ -7538,183 +7496,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne Onemogućeno jer nije uspjelo otkriti prisutnost programske trake - + No stop condition is set. Nije postavljen uvjet zaustavljanja. - + Torrent will stop after metadata is received. Torrent će se zaustaviti nakon što primi metapodatke. - + Torrent will stop after files are initially checked. Torrent će se zaustaviti nakon početne provjere datoteka. - + This will also download metadata if it wasn't there initially. Ovo će također preuzeti metapodatke ako nisu bili tu na početku. - + %N: Torrent name %N: Ime torrenta - + %L: Category %L: Kategorija - + %F: Content path (same as root path for multifile torrent) %F: Putanja sadržaja (isto kao korijenska putanja za torrent s više datoteka) - + %R: Root path (first torrent subdirectory path) %R: korijenska putanja (putnja prvog torrent poddirektorija) - + %D: Save path %D: Putanja za spremanje - + %C: Number of files %C: Broj datoteka - + %Z: Torrent size (bytes) %Z: Veličina torrenta (bajtovi) - + %T: Current tracker %T: Trenutni tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Savjet: Enkapsulirajte parametar s navodnicima kako biste izbjegli odsijecanje teksta na razmaku (npr. "%N") - + Test email - + Testna e-pošta. - + Attempted to send email. Check your inbox to confirm success - + Pokušano slanje e-pošte. Provjerite svoju pristiglu poštu kako biste potvrdili uspjeh - + (None) (Nijedno) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent će se smatrati sporim ako njegove stope preuzimanja i slanja ostaju ispod ovih vrijednosti za "Odbrojavanje vremena neaktivnosti torrenta" sekunde - + Certificate Certifikat - + Select certificate Odaberi certifikat - + Private key Privatni ključ - + Select private key Odaberi privatni ključ - + WebUI configuration failed. Reason: %1 WebUI konfiguracija nije uspjela. Razlog: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 preporučuje se za najbolju kompatibilnost s tamnim načinom rada sustava Windows - + System System default Qt style - + Sustav - + Let Qt decide the style for this system - + Neka Qt odluči stil za ovaj sustav - + Dark Dark color scheme - + Tamna - + Light Light color scheme - + Svijetla - + System System color scheme - + Sustav - + Select folder to monitor Odaberite mapu za praćenje - + Adding entry failed Dodavanje unosa nije uspjelo - + The WebUI username must be at least 3 characters long. WebUI korisničko ime mora imati najmanje 3 znaka. - + The WebUI password must be at least 6 characters long. WebUI lozinka mora imati najmanje 6 znakova. - + Location Error Pogreška lokacije - - + + Choose export directory Odaberite direktorij za izvoz - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Kada su ove opcije omogućene, qBittorrent će <strong>izbrisati</strong> .torrent datoteke nakon što su uspješno (prva opcija) ili ne (druga opcija) dodane u njegov red čekanja za preuzimanje. Ovo će se primijeniti <strong>ne samo</strong> na datoteke otvorene putem radnje izbornika "Dodaj torrent", već i na one otvorene putem <strong>povezivanja vrste datoteke</strong> @@ -7724,69 +7682,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne Datoteka teme qBittorrent UI (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Oznake (odvojene zarezom) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (ili '-' ako nije dostupno) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (ili '-' ako nije dostupno) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ID torrenta (ili sha-1 info hash za v1 torrent ili skraćeni sha-256 info hash za v2/hybrid torrent) - - + + Choose a save directory Izaberite direktorij za spremanje - + Torrents that have metadata initially will be added as stopped. Torrenti koji inicijalno imaju metapodatke bit će dodani kao zaustavljeni. - + Choose an IP filter file Odaberi datoteku IP filtera - + All supported filters Svi podržani filteri - + The alternative WebUI files location cannot be blank. Alternativna lokacija WebUI datoteka ne može biti prazna. - + Parsing error Greška razrješavanja - + Failed to parse the provided IP filter Razrješavanje danog IP filtera nije uspjelo - + Successfully refreshed Uspješno osvježeno - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Uspješno analiziran osigurani IP filter: %1 pravila su primijenjena. @@ -7797,18 +7755,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne Postavke - + Time Error Vremenska pogreška - + The start time and the end time can't be the same. Vrijeme početka i vrijeme završetka ne može biti isto. - - + + Length Error Pogreška duljine @@ -7893,169 +7851,169 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne Peer is using NAT hole punching - + Peer koristi NAT bušenje rupa PeerListWidget - + Country/Region Država/regija - + IP/Address IP/Adresa - + Port Port - + Flags Zastave - + Connection Spajanje - + Client i.e.: Client application Klijent - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID klijent - + Progress i.e: % downloaded Napredak - + Down Speed i.e: Download speed Brzina preuzimanja - + Up Speed i.e: Upload speed Brzina slanja - + Downloaded i.e: total data downloaded Preuzeto - + Uploaded i.e: total data uploaded Poslano - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevantnost - + Files i.e. files that are being downloaded right now Datoteke - + Column visibility Vidljivost stupaca - + Resize columns Promjena veličine stupaca - + Resize all non-hidden columns to the size of their contents Promjena veličine svih neskrivenih stupaca na veličinu njihovog sadržaja - + Add peers... Dodaj peerove... - - + + Adding peers Dodavanje peerova - + Some peers cannot be added. Check the Log for details. Neki peerovi se ne mogu dodati. Za detalje provjerite Zapisnik. - + Peers are added to this torrent. Ovom torrentu dodaju se peerovi. - - + + Ban peer permanently Trajno isključi peer - + Cannot add peers to a private torrent Nije moguće dodati peerove privatnom torrentu - + Cannot add peers when the torrent is checking Nije moguće dodati peerove dok se torrent provjerava - + Cannot add peers when the torrent is queued Nije moguće dodati peerove kada je torrent na čekanju - + No peer was selected Nijedan peer nije odabran - + Are you sure you want to permanently ban the selected peers? Jeste li sigurni da želite trajno zabraniti odabrane peerove? - + Peer "%1" is manually banned Peer "%1" je ručno zabranjen - + N/A N/A - + Copy IP:port Kopiraj IP:port @@ -8337,34 +8295,27 @@ Ti dodaci su onemogućeni. PowerManagement - qBittorrent is active - qBittorrent je aktivan + qBittorrent je aktivan PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Upravljanje napajanjem pronašlo je odgovarajuće D-Bus sučelje. Sučelje: %1 + Upravljanje napajanjem pronašlo je odgovarajuće D-Bus sučelje. Sučelje: %1 - Power management error. Did not found suitable D-Bus interface. - Pogreška upravljanja napajanjem. Nije pronađeno odgovarajuće D-Bus sučelje. + Pogreška upravljanja napajanjem. Nije pronađeno odgovarajuće D-Bus sučelje. - - - Power management error. Action: %1. Error: %2 - Pogreška upravljanja napajanjem. Radnja: %1. Pogreška: %2 + Pogreška upravljanja napajanjem. Radnja: %1. Pogreška: %2 - Power management unexpected error. State: %1. Error: %2 - Neočekivana pogreška upravljanja napajanjem. Stanje: %1. Pogreška: %2 + Neočekivana pogreška upravljanja napajanjem. Stanje: %1. Pogreška: %2 @@ -8608,12 +8559,12 @@ Ti dodaci su onemogućeni. Ratio / Time Active (in months), indicates how popular the torrent is - + Omjer / vrijeme aktivnosti (u mjesecima), pokazuje koliko je torrent popularan Popularity: - + Popularnost: @@ -8648,7 +8599,7 @@ Ti dodaci su onemogućeni. Private: - + Privatno: @@ -8656,153 +8607,124 @@ Ti dodaci su onemogućeni. Putanja spremanja: - + Never Nikada - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ima %3) - - + + %1 (%2 this session) %1 (%2 ove sesije) - - + + N/A N/A - + Yes - Da + Da - + No - Ne + Ne - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (seedano za %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 ukupno) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 prosj.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Novi web seed - - - Remove Web seed - Ukloni web seed - - - Copy Web seed URL - Kopiraj URL web seeda - - - Edit Web seed URL - Uredi URL web seeda - - - + Filter files... Filtriraj datoteke... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Grafikoni brzine su onemogućeni - + You can enable it in Advanced Options Možete omogućiti u naprednim opcijama - New URL seed - New HTTP source - Novi seed URL - - - New URL seed: - Novi seed URL: - - - This URL seed is already in the list. - Ovaj URL seed je već u listi. - - - + Web seed editing Uređivanje web seeda - + Web seed URL: URL web seeda: @@ -8810,33 +8732,33 @@ Ti dodaci su onemogućeni. RSS::AutoDownloader - - + + Invalid data format. Nevažeći format podataka. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Nije moguće spremiti podatke RSS AutoDownloadera u %1. Pogreška: %2 - + Invalid data format Nevažeći format podataka - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS članak '%1' prihvaća pravilo '%2'. Pokušavam dodati torrent... - + Failed to read RSS AutoDownloader rules. %1 Neuspješno čitanje RSS AutoDownloader pravila. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Nije moguće učitati pravila RSS AutoDownloadera. Razlog: %1 @@ -8844,22 +8766,22 @@ Ti dodaci su onemogućeni. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Nije uspjelo preuzimanje RSS kanala na '%1'. Razlog: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS kanal je ažuriran na '%1'. Dodano %2 nova članka. - + Failed to parse RSS feed at '%1'. Reason: %2 Nije uspjelo analiziranje RSS kanala na '%1'. Razlog: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS kanal na '%1' je uspješno preuzet. Započeto analiziranje. @@ -8908,12 +8830,12 @@ Ti dodaci su onemogućeni. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Nije moguće spremiti konfiguraciju RSS sesije. Datoteka: "%1". Greška: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Nije moguće spremiti podatke RSS sesije. Datoteka: "%1". Greška: "%2" @@ -8935,76 +8857,121 @@ Ti dodaci su onemogućeni. - + Item doesn't exist: %1. Stavka ne postoji: %1. - Couldn't move folder into itself. - Nije moguće premjestiti mapu u samu mapu. + Nije moguće premjestiti mapu u samu mapu. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Nije moguće izbrisati korijensku mapu. - + Failed to read RSS session data. %1 Neuspješno čitanje RSS sesije podataka. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Nije uspjelo analiziranje podataka RSS sesije. Datoteka: "%1". Greška: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Nije uspjelo učitavanje podataka RSS sesije. Datoteka: "%1". Pogreška: "Nevažeći format podataka." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Nije moguće učitati RSS feed. Feed: "%1". Razlog: potreban je URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Nije moguće učitati RSS feed. Feed: "%1". Razlog: UID je nevažeći. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Duplicirani RSS feed pronađen. UID: "%1". Pogreška: Čini se da je konfiguracija oštećena. - + Couldn't load RSS item. Item: "%1". Invalid data format. Nije moguće učitati RSS stavku. Stavka: "%1". Nevažeći format podataka. - + Corrupted RSS list, not loading it. Oštećen RSS popis, ne učitava se. - + Incorrect RSS Item path: %1. Neispravna putanja RSS stavke: %1. - + RSS item with given path already exists: %1. RSS stavka s danom putanjom već postoji: %1. - + Parent folder doesn't exist: %1. Nadređena mapa ne postoji: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed ne postoji: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sek + + + + Default + Zadano + + RSSWidget @@ -9104,78 +9071,77 @@ Ti dodaci su onemogućeni. + Feed options... + + + Edit feed URL... - Uredi URL feeda... + Uredi URL feeda... - Edit feed URL - Uredi URL feeda + Uredi URL feeda - + Please choose a folder name Izaberite naziv mape - + Folder name: Naziv mape: - + New folder Nova mapa - - Please type a RSS feed URL - Molimo upišite URL RSS kanala + Molimo upišite URL RSS kanala - - Feed URL: - URL kanala: + URL kanala: - + Deletion confirmation Potvrda brisanja - + Are you sure you want to delete the selected RSS feeds? Jeste li sigurni da želite izbrisati odabrane RSS kanale? - + Please choose a new name for this RSS feed Odaberite novi naziv za ovaj RSS kanal - + New feed name: Novi naziv kanala: - + Rename failed Preimenovanje nije uspjelo - + Date: Datum: - + Feed: Feed: - + Author: Autor: @@ -9312,10 +9278,6 @@ Ti dodaci su onemogućeni. i.e: Number of partial sources Leecheri - - Search engine - Pretraživač - Filter search results... @@ -9405,17 +9367,17 @@ Ti dodaci su onemogućeni. Engine - + Pogon Engine URL - + URL pogona Published On - + Objavljeno dana @@ -9436,104 +9398,104 @@ Ti dodaci su onemogućeni. SearchPluginManager - + Unknown search engine plugin file format. Nepoznat format datoteke dodatka za pretraživanje - + Plugin already at version %1, which is greater than %2 Dodatak je već u verziji %1, koja je veća od %2 - + A more recent version of this plugin is already installed. Novija verzija ovog dodatka je već instalirana. - + Plugin %1 is not supported. Dodatak %1 nije podržan. - - + + Plugin is not supported. Dodatak nije podržan. - + Plugin %1 has been successfully updated. Dodatak %1 je uspješno ažuriran. - + All categories Sve kategorije - + Movies Filmovi - + TV shows TV serije - + Music Glazba - + Games Igre - + Anime Animirani - + Software Softver - + Pictures Slike - + Books Knjige - + Update server is temporarily unavailable. %1 Poslužitelj za ažuriranje je privremeno nedostupan. %1 - - + + Failed to download the plugin file. %1 Neuspjeh u preuzimanju datoteke dodatka. %1 - + Plugin "%1" is outdated, updating to version %2 Dodatak "%1" je zastario, ažurira se na verziju %2 - + Incorrect update info received for %1 out of %2 plugins. Primljene su netočne informacije o ažuriranju za %1 od %2 dodataka. - + Search plugin '%1' contains invalid version string ('%2') Dodatak za pretraživanje '%1' sadrži nevažeći niz verzije ('%2') @@ -9559,135 +9521,127 @@ Pritisnite gumb "Traži dodatke..." u donjem desnom kutu prozora da bi Dodaci za pretraživanje... - + A phrase to search for. Izraz za pretraživanje. - + Spaces in a search term may be protected by double quotes. Razmaci u izrazu pretraživanja mogu biti zaštićeni sa duplim navodnicima. - + Example: Search phrase example Primjer: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: traži <b>foo bar</b> - + All plugins Svi dodaci - + Only enabled Samo omogućeno - - + + Invalid data format. - Nevažeći format podataka. + Nevažeći format podataka. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: traži <b>foo</b> i <b>bar</b> - + Refresh - + Osvježi - + Close tab Zatvori karticu - + Close all tabs Zatvori sve kartice - + Select... Odaberi... - - + + Search Engine Dodaci za pretraživanje - - + + Please install Python to use the Search Engine. Molimo instalirajte Python kako bi koristili Pretraživače - + Empty search pattern Prazan obrazac za pretraživanje - + Please type a search pattern first Prvo upišite obrazac za pretraživanje - + Stop Zaustavi - - Search has finished - Pretraga je završila - - - Search has failed - Pretraga nije uspjela - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10085,67 +10039,77 @@ Pritisnite gumb "Traži dodatke..." u donjem desnom kutu prozora da bi StatusBar - + Connection status: Status veze: - - + + No direct connections. This may indicate network configuration problems. Nema izravnih spajanja. Ovo može značiti probleme u postavkama mreže. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Vanjski IP: N/A + + + + DHT: %1 nodes DHT: %1 čvorova - + qBittorrent needs to be restarted! qBittorrent treba ponovno pokrenuti! - - + + Connection Status: Status spajanja: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Odspojeno. Ovo najčešće znači da qBittorrent nije uspio u očekivanju veze na odabranom portu za dolazna spajanja. - + Online Spojeno - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Vanjski IP-jevi: %1, %2 + + + + External IP: %1%2 + Vanjski IP: %1%2 + + + Click to switch to alternative speed limits Kliknite za prelazak na alternativna ograničenja brzine - + Click to switch to regular speed limits Kliknite za prelazak na uobičajena ograničenja brzine @@ -10173,23 +10137,15 @@ Pritisnite gumb "Traži dodatke..." u donjem desnom kutu prozora da bi Completed (0) Završeno (0) - - Resumed (0) - Nastavljeno (0) - - - Paused (0) - Pauzirano (0) - Running (0) - + Pokrenuto (0) Stopped (0) - + Zaustavljeno (0) @@ -10254,49 +10210,33 @@ Pritisnite gumb "Traži dodatke..." u donjem desnom kutu prozora da bi Running (%1) - + Pokrenuto (%1) Stopped (%1) - + Zaustavljeno (%1) Start torrents - + Pokreni torrente Stop torrents - - - - Paused (%1) - Pauzirano (%1) + Zaustavi torrente Moving (%1) Premještanje (%1) - - Resume torrents - Nastavi torrente - - - Pause torrents - Pauziraj torrente - Remove torrents Ukloni torrente - - Resumed (%1) - Nastavljeno (%1) - Active (%1) @@ -10368,32 +10308,20 @@ Pritisnite gumb "Traži dodatke..." u donjem desnom kutu prozora da bi Remove unused tags Ukloni nekorištene oznake - - Resume torrents - Nastavi torrente - - - Pause torrents - Pauziraj torrente - Remove torrents Ukloni torrente - - New Tag - Nova oznaka - Start torrents - + Pokreni torrente Stop torrents - + Zaustavi torrente @@ -10403,7 +10331,7 @@ Pritisnite gumb "Traži dodatke..." u donjem desnom kutu prozora da bi Add tag - + Dodaj oznaku @@ -10720,17 +10648,17 @@ Odaberite drugo ime i pokušajte ponovno. TorrentCreatorController - + Too many active tasks Previše aktivnih zadataka - + Torrent creation is still unfinished. Stvaranje torrenta još nije dovršeno. - + Torrent creation failed. Stvaranje torrenta nije uspjelo @@ -10982,17 +10910,6 @@ Odaberite drugo ime i pokušajte ponovno. Promatrana mapa: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Neuspješna dodjela memorije prilikom čitanja datoteke. Datoteka: "%1". Greška: "%2" - - - Invalid metadata - Nevažeći metapodaci - - TorrentOptionsDialog @@ -11028,11 +10945,7 @@ Odaberite drugo ime i pokušajte ponovno. Torrent Share Limits - - - - Torrent speed limits - Ograničenja brzine torrenta + Ograničenja dijeljenja torrenta @@ -11048,7 +10961,7 @@ Odaberite drugo ime i pokušajte ponovno. Torrent Speed Limits - + Ograničenja brzine torrenta @@ -11066,34 +10979,6 @@ Odaberite drugo ime i pokušajte ponovno. Upload: Slanje: - - Torrent share limits - Ograničenja dijeljenja torrenta - - - Use global share limit - Koristite globalno ograničenje dijeljenja - - - Set no share limit - Postavi ograničenje nedijeljenja - - - Set share limit to - Postavi ograničenje dijeljenja na - - - ratio - omjer - - - total minutes - ukupno minuta - - - inactive minutes - neaktivnih minuta - Disable DHT for this torrent @@ -11135,14 +11020,6 @@ Odaberite drugo ime i pokušajte ponovno. Not applicable to private torrents Nije primjenjivo na privatne torrente - - No share limit method selected - Nije odabrana metoda ograničenja udjela - - - Please select a limit method first - Najprije odaberite metodu ograničenja - TorrentShareLimitsWidget @@ -11192,27 +11069,27 @@ Odaberite drugo ime i pokušajte ponovno. Action when the limit is reached: - + Postupak kada se dosegne ograničenje: Stop torrent - + Zaustavi torrent Remove torrent - Ukloni torrent + Ukloni torrent Remove torrent and its content - + Ukloni torrent i njegov sadržaj Enable super seeding for torrent - Omogući super dijeljenje za torrent + Omogući super dijeljenje za torrent @@ -11227,14 +11104,10 @@ Odaberite drugo ime i pokušajte ponovno. Torrent Tags Torrent oznake - - New Tag - Nova oznaka - Add tag - + Dodaj oznaku @@ -11265,90 +11138,90 @@ Odaberite drugo ime i pokušajte ponovno. TorrentsController - + Error: '%1' is not a valid torrent file. Pogreška: '%1' nije valjana torrent datoteka. - + Priority must be an integer Prioritet mora biti cijeli broj - + Priority is not valid Prioritet nije valjan - + Torrent's metadata has not yet downloaded Metapodaci Torrenta još nisu preuzeti - + File IDs must be integers ID-ovi datoteka moraju biti cijeli brojevi - + File ID is not valid ID datoteke nije valjan - - - - + + + + Torrent queueing must be enabled Torrent čekanje mora biti omogućeno - - + + Save path cannot be empty Putanja za spremanje ne može biti prazna - - + + Cannot create target directory Nije moguće stvoriti ciljni direktorij - - + + Category cannot be empty Kategorija ne može biti prazna - + Unable to create category Nije moguće stvoriti kategoriju - + Unable to edit category Nije moguće urediti kategoriju - + Unable to export torrent file. Error: %1 Nije moguće izvesti torrent datoteku. Pogreška: %1 - + Cannot make save path Nije moguće napraviti putanju spremanja "%1" is not a valid URL - + "%1" nije važeći indeks URL. URL scheme must be one of [%1] - + URL shema mora biti jedna od [%1] @@ -11356,39 +11229,39 @@ Odaberite drugo ime i pokušajte ponovno. 'sort' parametar je nevažeći - + "%1" is not an existing URL - + "%1" nije postojeći URL - + "%1" is not a valid file index. "%1" nije važeći indeks datoteke. - + Index %1 is out of bounds. Indeks %1 je izvan granica. - - + + Cannot write to directory Ne može se pisati u direktorij - + WebUI Set location: moving "%1", from "%2" to "%3" Postavljanje lokacije Web sučelja: premještanje "%1", iz "%2" u "%3" - + Incorrect torrent name Netočan naziv torrenta - - + + Incorrect category name Netočan naziv kategorije @@ -11456,7 +11329,7 @@ Odaberite drugo ime i pokušajte ponovno. Tracker error - Pogreška tragača + Pogreška trackera @@ -11471,45 +11344,33 @@ Odaberite drugo ime i pokušajte ponovno. Invalid state! - + Nevažeće stanje! URL/Announce Endpoint - + URL/Najava krajnje točke BT Protocol - + BT Protokol Next Announce - + Sljedeća najava Min Announce - - - - Invalid status! - Nevažeći status! - - - URL/Announce endpoint - URL/Najava krajnje točke + Min. najava Tier Razina - - Protocol - Protokol - Status @@ -11540,18 +11401,6 @@ Odaberite drugo ime i pokušajte ponovno. Message Poruka - - Next announce - Sljedeća najava - - - Min announce - Najmanja najava - - - v%1 - v%1 - TrackerListWidget @@ -11561,73 +11410,73 @@ Odaberite drugo ime i pokušajte ponovno. Ovaj torrent je privatan - + Tracker editing Uređivanje trackera - + Tracker URL: URL trackera: - - + + Tracker editing failed Uređivanje trackera nije uspjelo - + The tracker URL entered is invalid. Uneseni URL trackera nije valjan. - + The tracker URL already exists. URL trackera već postoji. - + Edit tracker URL... Uredi URL trackera... - + Remove tracker Ukloni trackera - + Copy tracker URL Kopiraj URL trackera - + Force reannounce to selected trackers Prisilno ponovno najavi odabranim trackerima - + Force reannounce to all trackers Prisilno ponovno najavi svim trackerima - + Resize columns Promjena veličine stupaca - + Resize all non-hidden columns to the size of their contents Promjena veličine svih neskrivenih stupaca na veličinu njihovog sadržaja - + Add trackers... Dodaj trackere... - + Column visibility Vidljivost stupca @@ -11695,7 +11544,7 @@ Odaberite drugo ime i pokušajte ponovno. Tracker error (%1) - Pogreška tragača (%1) + Pogreška trackera (%1) @@ -11710,20 +11559,12 @@ Odaberite drugo ime i pokušajte ponovno. Start torrents - + Pokreni torrente Stop torrents - - - - Resume torrents - Nastavi torrente - - - Pause torrents - Pauziraj torrente + Zaustavi torrente @@ -11847,10 +11688,6 @@ Odaberite drugo ime i pokušajte ponovno. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Provjera podataka nastavka - - Paused - Pauzirano - Completed @@ -11865,7 +11702,7 @@ Odaberite drugo ime i pokušajte ponovno. Missing Files - Nedostajuće datoteke + Nedostaju datoteke @@ -11891,21 +11728,16 @@ Odaberite drugo ime i pokušajte ponovno. % Done Napredak - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Zaustavljeno Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11940,7 +11772,7 @@ Odaberite drugo ime i pokušajte ponovno. Popularity - + Popularnost @@ -12021,22 +11853,17 @@ Odaberite drugo ime i pokušajte ponovno. Time Active Time (duration) the torrent is active (not stopped) - Vrijeme aktivnosti + Vrijeme aktivnosti Yes - Da + Da No - Ne - - - Time Active - Time (duration) the torrent is active (not paused) - Vrijeme aktivnosti + Ne @@ -12108,12 +11935,12 @@ Odaberite drugo ime i pokušajte ponovno. Private Flags private torrents - + Privatno Ratio / Time Active (in months), indicates how popular the torrent is - + Omjer / vrijeme aktivnosti (u mjesecima), pokazuje koliko je torrent popularan @@ -12138,358 +11965,319 @@ Odaberite drugo ime i pokušajte ponovno. TransferListWidget - + Column visibility Vidljivost stupca - + Recheck confirmation Ponovno provjeri potvrđivanje - + Are you sure you want to recheck the selected torrent(s)? Jeste li sigurni da želite ponovno provjeriti odabrani/e torrent(e)? - + Rename Preimenovanje - + New name: Novi naziv: - + Choose save path Izaberi putanju spremanja - Confirm pause - Potvrdite pauzu - - - Would you like to pause all torrents? - Želite li pauzirati sve torrente? - - - Confirm resume - Potvrdite nastavak - - - Would you like to resume all torrents? - Želite li nastaviti sa svim torrentima? - - - + Unable to preview Pregled nije moguć - + The selected torrent "%1" does not contain previewable files Odabrani torrent "%1" ne sadrži datoteke koje se mogu pregledati - + Resize columns Promjena veličine stupaca - + Resize all non-hidden columns to the size of their contents Promjena veličine svih neskrivenih stupaca na veličinu njihovog sadržaja - + Enable automatic torrent management Omogući automatsko upravljanje torrentima - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Jeste li sigurni da želite omogućiti automatsko upravljanje torrentima za odabrani torrent(e)? Mogu biti premješteni. - Add Tags - Dodaj oznake - - - + Choose folder to save exported .torrent files Odaberite mapu za spremanje izvezenih .torrent datoteka - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Izvoz .torrent datoteke nije uspio. Torrent: "%1". Putanja spremanja: "%2". Razlog: "%3" - + A file with the same name already exists Datoteka s istim nazivom već postoji - + Export .torrent file error Pogreška izvoza .torrent datoteke - + Remove All Tags Ukloni sve oznake - + Remove all tags from selected torrents? Ukloniti sve oznake s odabranih torrenta? - + Comma-separated tags: Oznake odvojene zarezima: - + Invalid tag Nevažeća oznaka - + Tag name: '%1' is invalid Naziv oznake: '%1' nije valjan - &Resume - Resume/start the torrent - Nastavi - - - &Pause - Pause the torrent - &Pauziraj - - - Force Resu&me - Force Resume/start the torrent - Pri&sili nastavak - - - + Pre&view file... Pre&gled datoteke... - + Torrent &options... &Opcije torrenta... - + Open destination &folder Otvori odredišnu &mapu - + Move &up i.e. move up in the queue Pomakni g&ore - + Move &down i.e. Move down in the queue Pomakni &dolje - + Move to &top i.e. Move to top of the queue Pomakni na &vrh - + Move to &bottom i.e. Move to bottom of the queue Pomakni na &dno - + Set loc&ation... Postavi &lokaciju... - + Force rec&heck Prisili ponovnu prov&jeru - + Force r&eannounce Prisili ponovne &oglase - + &Magnet link &Magnet link - + Torrent &ID Torrent &ID - + &Comment &Komentar - + &Name &Naziv - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Preime&nuj... - + Edit trac&kers... Uredi trac&kere - + E&xport .torrent... Uve&zi .torrent... - + Categor&y Kategor&ija - + &New... New category... &Novi - + &Reset Reset category &Poništi - + Ta&gs Ozna&ke - + &Add... Add / assign multiple tags... Dod&aj - + &Remove All Remove all tags &Ukloni sve - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Ne može se prisilno ponovno oglasiti ako je torrent Zaustavljen/U redu čekanja/Pogreška/Provjera - + &Queue &Red čekanja - + &Copy &Kopiraj - + Exported torrent is not necessarily the same as the imported Izvezeni torrent nije nužno isti kao uvezeni - + Download in sequential order Preuzmi u sekvencijskom poretku - + Add tags - + Dodaj oznake - + Errors occurred when exporting .torrent files. Check execution log for details. Došlo je do pogreške prilikom izvoza .torrent datoteka. Za detalje provjerite zapisnik izvršenja. - + &Start Resume/start the torrent - + &Start - + Sto&p Stop the torrent - + Sto&p - + Force Star&t Force Resume/start the torrent - + Prisilni Star&t - + &Remove Remove the torrent Uk&loni - + Download first and last pieces first Preuzmi prve i zadnje dijelove prije drugih. - + Automatic Torrent Management Automatsko upravljanje torrentima - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatski način rada znači da će različita svojstva torrenta (npr. putanja spremanja) biti određena pridruženom kategorijom - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Ne može se prisilno ponovno najaviti ako je torrent pauziran/u redu čekanja/pogreška/provjera - - - + Super seeding mode Način superseedanja @@ -12565,7 +12353,7 @@ Odaberite drugo ime i pokušajte ponovno. Set app style failed. Unknown style: "%1" - + Postavljanje stila aplikacije nije uspjelo. Nepoznati stil: "%1" @@ -12621,32 +12409,32 @@ Odaberite drugo ime i pokušajte ponovno. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Pronađena Python izvršna datoteka. Naziv: "%1". Verzija: "%2" - + Failed to find Python executable. Path: "%1". Neuspješno pronalaženje Python izvršne datoteke. Putanja: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Nije uspjelo pronalaženje izvršne datoteke `python3` u varijabli okruženja PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Nije uspjelo pronalaženje izvršne datoteke `python` u varijabli okruženja PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Nije uspjelo pronalaženje izvršne datoteke `python` u registru sustava Windows. - + Failed to find Python executable Neuspješno pronalaženje Python izvršne datoteke @@ -12738,52 +12526,52 @@ Odaberite drugo ime i pokušajte ponovno. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Naveden je neprihvatljiv naziv kolačića sesije: '%1'. Koristi se zadana. - + Unacceptable file type, only regular file is allowed. Neprihvatljiva vrsta datoteke, dopuštena je samo regularna datoteka. - + Symlinks inside alternative UI folder are forbidden. Zabranjene su simboličke veze unutar mape alternativnog korisničkog sučelja. - + Using built-in WebUI. Korištenje ugrađenog WebUI. - + Using custom WebUI. Location: "%1". Korištenje prilagođenog WebUI. Lokacija: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. WebUI prijevod za odabranu lokalizaciju (%1) je uspješno učitan. - + Couldn't load WebUI translation for selected locale (%1). Nije moguće učitati prijevod WebUI-a za odabrani jezik (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Nedostaje ':' separator u WebUI prilagođenom HTTP zaglavlju: "%1" - + Web server error. %1 Greška web poslužitelja. %1 - + Web server error. Unknown error. Greška web poslužitelja. Nepoznata pogreška. @@ -12841,7 +12629,7 @@ Odaberite drugo ime i pokušajte ponovno. Unknown error - Nepoznata greška + Nepoznata greška diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index 1c08524ec..41b757047 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -170,10 +170,6 @@ Never show again Ne mutasd újra - - Torrent settings - Torrent beállítások - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrent beállítások @@ -235,25 +231,25 @@ Stop feltétel: - - + + None Nincs - - + + Metadata received Metaadat fogadva - + Torrents that have metadata initially will be added as stopped. Az eredetileg metaadatokkal rendelkező torrentek leállítva kerülnek hozzáadásra. - + Files checked Fájlok ellenőrizve @@ -368,112 +364,112 @@ Mentés .torrent fájlként… - + I/O Error I/O Hiba - + Not Available This comment is unavailable Nem elérhető - + Not Available This date is unavailable Nem elérhető - + Not available Nem elérhető - + Magnet link Magnet link - + Retrieving metadata... Metaadat letöltése... - - + + Choose save path Mentési útvonal választása - + No stop condition is set. Nincs stop feltétel beállítva. - + Torrent will stop after metadata is received. Torrent megáll a metaadat fogadása után. - + Torrent will stop after files are initially checked. Torrent meg fog állni a fájlok kezdeti ellenőrzése után. - + This will also download metadata if it wasn't there initially. Ez a metaadatot is le fogja tölteni ha az, kezdéskor nem volt jelen. - + N/A N/A - + %1 (Free space on disk: %2) %1 (Szabad hely a lemezen: %2) - + Not available This size is unavailable. Nem elérhető - + Torrent file (*%1) Torrent fájl (*%1) - + Save as torrent file Mentés torrent fájlként - + Couldn't export torrent metadata file '%1'. Reason: %2. '%1' torrent metaadat-fájl nem exportálható. Indok: %2. - + Cannot create v2 torrent until its data is fully downloaded. Nem lehet v2 torrentet létrehozni, amíg annak adatai nincsenek teljesen letöltve. - + Filter files... Fájlok szűrése... - + Parsing metadata... Metaadat értelmezése... - + Metadata retrieval complete Metaadat sikeresen letöltve @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Torrent letöltése... Forrás: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Torrent hozzáadása sikertelen. Forrás: "%1". Indok: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Duplikált torrent hozzáadási kísérlet észlelve. Forrás: %1. Meglévő torrent: %2. Eredmény: %3 + Duplikált torrent hozzáadási kísérlet észlelve. Forrás: %1. Meglévő torrent: %2. Eredmény: %3 - + Merging of trackers is disabled Trackerek összevonása ki van kapcsolva - + Trackers cannot be merged because it is a private torrent Trackereket nem lehetett összevonni mert ez egy privát torrent - + Trackers are merged from new source Trackerek összevonva az új forrásból + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrentek újraellenőrzése a letöltésük végeztével - - + + ms milliseconds ms - + Setting Beállítások - + Value Value set for this setting Érték - + (disabled) (letiltva) - + (auto) (auto) - - + + min minutes perc - + All addresses Összes cím - + qBittorrent Section qBittorrent beállítások - - + + Open documentation Dokumentáció megnyitása - + All IPv4 addresses Összes IPv4-cím - + All IPv6 addresses Összes IPv6-cím - + libtorrent Section libtorrent beállítások - + Fastresume files Gyors-folytatás fájlok - + SQLite database (experimental) SQLite adatbázis (kísérleti) - + Resume data storage type (requires restart) Folytatási-adat tároló típusa (újraindítást igényel) - + Normal Normál - + Below normal Normál alatti - + Medium Közepes - + Low Alacsony - + Very low Nagyon alacsony - + Physical memory (RAM) usage limit Fizikai memória (RAM) használati korlát - + Asynchronous I/O threads Aszinkron I/O szálak - + Hashing threads Hash ellenőrző szálak - + File pool size Fájl-sor mérete - + Outstanding memory when checking torrents Torrent ellenőrzéskor kiemelt memória mérete - + Disk cache Lemez gyorsítótár - - - - + + + + + s seconds s - + Disk cache expiry interval Merevlemez gyorsítótár lejáratának ideje - + Disk queue size Lemez sorbanállás mérete - - + + Enable OS cache Operációs rendszer gyorsítótár engedélyezés - + Coalesce reads & writes Olvasások és írások egyesítése - + Use piece extent affinity Szeletméret-affinitás használata - + Send upload piece suggestions Feltöltési szelet javaslatok küldése - - - - - + + + + + 0 (disabled) 0 (letiltva) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Folytatási adatfájl mentésének időköze [0: kikapcsolva] - + Outgoing ports (Min) [0: disabled] Kimenő portok (Min) [0: kikapcsolva] - + Outgoing ports (Max) [0: disabled] Kimenő portok (Max) [0: kikapcsolva] - + 0 (permanent lease) 0 (nem jár le) - + UPnP lease duration [0: permanent lease] UPnP bérlés időtartama [0: Állandó bérlés] - + Stop tracker timeout [0: disabled] Stop tracker időtúllépés [0: kikapcsolva] - + Notification timeout [0: infinite, -1: system default] Értesítés időtartama [0: végtelen, -1: rendszer alapértelmezett] - + Maximum outstanding requests to a single peer Maximális függőben lévő kérések egyetlen peerhez: - - - - - + + + + + KiB KiB - + (infinite) (végtelen) - + (system default) (rendszer alapértelmezett) - + Delete files permanently - + Fájlok végleges törlése - + Move files to trash (if possible) - + Fájlok áthelyezése a kukába (ha lehetséges) - + Torrent content removing mode - + Torrent tartalom eltávolítási mód - + This option is less effective on Linux Ez az opció kevésbé hatékony Linuxon - + Process memory priority Folyamat memória priorítása - + Bdecode depth limit Bdecode mélység korlát - + Bdecode token limit Bdecode token korlát - + Default Alapértelmezett - + Memory mapped files Memóriában szereplő fájlok - + POSIX-compliant POSIX-kompatibilis - + Simple pread/pwrite - + Simple pread/pwrite - + Disk IO type (requires restart) Lemez IO típusa (újraindítást igényel) - - + + Disable OS cache Operációs rendszer gyorsítótár letiltása - + Disk IO read mode Lemez IO olvasási mód - + Write-through Write-through - + Disk IO write mode Lemez IO írási mód - + Send buffer watermark Puffer watermark küldése - + Send buffer low watermark Puffer low watermark küldése - + Send buffer watermark factor Puffer watermark factor küldése - + Outgoing connections per second Kimenő kapcsolatok másodpercenként - - + + 0 (system default) 0 (rendszer alapértelmezett) - + Socket send buffer size [0: system default] Socket küldő puffer mérete [0: rendszer alapértelmezett] - + Socket receive buffer size [0: system default] Socket fogadó puffer mérete [0: rendszer alapértelmezett] - + Socket backlog size Socket várósor méret - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Statisztika mentési intervallum [0: kikapcsolva] - + .torrent file size limit .torrent fájl méret korlát - + Type of service (ToS) for connections to peers Szolgáltatástípus (ToS) a peerkapcsolatokhoz - + Prefer TCP TCP előnyben részesítése - + Peer proportional (throttles TCP) Peer arányos (TCP-t visszafogja) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Nemzetköziesített domain nevek (IDN) támogatása - + Allow multiple connections from the same IP address Több kapcsolat engedélyezése ugyanarról az IP-címről - + Validate HTTPS tracker certificates Ellenőrizze a HTTPS tracker tanúsítványokat - + Server-side request forgery (SSRF) mitigation Szerveroldali kéréshamisítás (SSRF) csökkentése - + Disallow connection to peers on privileged ports Ne engedje a csatlakozást peerek felé kiváltságos portokon - + It appends the text to the window title to help distinguish qBittorent instances A qBittorent példányok megkülönböztetésének megkönnyítése érdekében a szöveget az ablak címéhez csatolja. - + Customize application instance name Alkalmazáspéldány nevének testreszabása - + It controls the internal state update interval which in turn will affect UI updates Ez szabályozza a belső állapotfrissítési időközt, ami viszont hatással lesz a felhasználói felület frissítéseire - + Refresh interval Frissítési időköz - + Resolve peer host names Peer kiszolgálónevek feloldása - + IP address reported to trackers (requires restart) Trackernek lejelentett IP cím (újraindítást igényel) - + Port reported to trackers (requires restart) [0: listening port] - + Trackerek felé jelentett port (újraindítást igényel) [0: használt port] - + Reannounce to all trackers when IP or port changed Újrajelentés az összes tracker felé ha változik az IP vagy a port - + Enable icons in menus Ikonok engedélyezése a menükben - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Porttovábbítás a beépített tracker számára - + Enable quarantine for downloaded files Letöltött fájlok karanténjának engedélyezése - + Enable Mark-of-the-Web (MOTW) for downloaded files Engedélyezze a Mark-of-the-Web (MOTW) használatát letöltött fájlokhoz - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Hatással van a tanúsítványok ellenőrzésére és a nem torrent protokollal végzett tevékenységekre (pl. RSS-hírcsatornák, programfrissítések, torrent fájlok, geoip adatbázis stb.). - + Ignore SSL errors - + SSL hibák figyelmen kívül hagyása - + (Auto detect if empty) (Auto felismerés ha üres) - + Python executable path (may require restart) Python útvonal (újraindítást igényelhet): - + Start BitTorrent session in paused state - + BitTorrent munkamenet indítása szüneteltetett állapotban - + sec seconds - mp + mp - + -1 (unlimited) - + -1 (korlátlan) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent munkamenet leállításának időkorlátja [-1: korlátlan] - + Confirm removal of tracker from all torrents Megerősítés a tracker eltávolítására az összes torrentből - + Peer turnover disconnect percentage Peer forgalom lekapcsolási százalék - + Peer turnover threshold percentage Peer forgalmi küszöb százalék - + Peer turnover disconnect interval Peer forgalom lekapcsolási intervallum - + Resets to default if empty Alapértelmezettre visszaáll ha üres - + DHT bootstrap nodes DHT bootstrap csomópontok - + I2P inbound quantity I2P bejövő mennyiség - + I2P outbound quantity I2P kimenő mennyiség - + I2P inbound length I2P bejövő hossza - + I2P outbound length I2P kimenő hossza - + Display notifications Értesítések megjelenítése - + Display notifications for added torrents Értesítések megjelenítése a hozzáadott torrentekről - + Download tracker's favicon Tracker favicon letöltése - + Save path history length Tárolt múltbéli mentési útvonalak száma - + Enable speed graphs Sebesség grafikonok engedélyezése - + Fixed slots Rögzített szálak - + Upload rate based Feltöltési sebesség alapján - + Upload slots behavior Feltöltési szálak működése - + Round-robin Round-robin - + Fastest upload Leggyorsabb feltöltés - + Anti-leech Anti-leech - + Upload choking algorithm Feltöltéskorlátozási algoritmus - + Confirm torrent recheck Újraellenőrzés megerősítése - + Confirm removal of all tags Összes címke eltávolításának megerősítése - + Always announce to all trackers in a tier Mindig jelentsen az egy szinten lévő összes tracker felé - + Always announce to all tiers Mindig jelentsen az összes szintnek - + Any interface i.e. Any network interface Bármely csatoló - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP kevert-mód algoritmus - + Resolve peer countries Peer országának megjelenítése - + Network interface Hálózati csatoló - + Optional IP address to bind to Alkalmazás által használt IP cím - + Max concurrent HTTP announces Maximális egyidejű HTTP bejelentések - + Enable embedded tracker Beépített tracker bekapcsolása - + Embedded tracker port Beépített tracker portja @@ -1382,142 +1393,142 @@ Invalid directory path - + Érvénytelen elérési útvonal Directory does not exist - + A könyvtár nem létezik Invalid mode, allowed values: %1 - + Érvénytelen mód, engedélyezett értékek: %1 cookies must be array - + A sütiknek tömbként kell szerepelniük Application - + Running in portable mode. Auto detected profile folder at: %1 Futtatás hordozható módban. Profil mappa automatikusan észlelve: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Felesleges parancssori kapcsoló észlelve: "%1". A hordozható mód magában foglalja a gyors-folytatást. - + Using config directory: %1 Beállítások könyvtár használata: %1 - + Torrent name: %1 Torrent név: %1 - + Torrent size: %1 Torrent méret: %1 - + Save path: %1 Mentés helye: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent letöltésre került %1 alatt. - - + + Thank you for using qBittorrent. Köszönjük, hogy a qBittorentet használja. - + Torrent: %1, sending mail notification Torrent: %1, értesítő levél küldése - + Add torrent failed Torrent hozzáadása sikertelen - + Couldn't add torrent '%1', reason: %2. Nem sikerült hozzáadni '%1' torrentet, ok: %2. - + The WebUI administrator username is: %1 A WebUI adminisztrátor felhasználónév: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 A WebUI rendszergazdai jelszó nem volt beállítva. A munkamenethez egy ideiglenes jelszó lett biztosítva: %1 - + You should set your own password in program preferences. Javasolt saját jelszót beállítania a programbeállításokban. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. A WebUI le van tiltva! A WebUI engedélyezéséhez szerkessze kézzel a konfigurációs fájlt. - + Running external program. Torrent: "%1". Command: `%2` Külső program futtatása. Torrent: "%1". Parancs: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Nem sikerült futtatni a külső programot. Torrent: "%1". Parancs: `%2` - + Torrent "%1" has finished downloading Torrent "%1" befejezte a letöltést - + WebUI will be started shortly after internal preparations. Please wait... A WebUI röviddel a belső előkészületek után elindul. Kérlek várj... - - + + Loading torrents... Torrentek betöltése... - + E&xit K&ilépés - + I/O Error i.e: Input/Output Error I/O Hiba - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Indok: %2 - + Torrent added Torrent hozzáadva - + '%1' was added. e.g: xxx.avi was added. '%1' hozzáadva. - + Download completed Letöltés befejezve - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 elindult. Folyamat azonosítója: %2 - + This is a test email. - + Ez egy teszt email. - + Test email - + Teszt email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' befejezte a letöltést. - + Information Információ - + To fix the error, you may need to edit the config file manually. A hiba kijavításához esetleg manuálisan kell szerkesztenie a konfigurációs fájlt. - + To control qBittorrent, access the WebUI at: %1 qBittorrent irányításához nyissa meg a Web UI-t itt: %1 - + Exit Kilépés - + Recursive download confirmation Rekurzív letöltés megerősítése - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? '%1' torrent .torrent fájlokat is tartalmaz, szeretné ezeket is letölteni? - + Never Soha - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Torrenten belüli .torrent fájl rekurzív letöltése. Forrás torrent: "%1". Fájl: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Nem sikerült beállítani a fizikai memória (RAM) használati korlátját. Hibakód: %1. Hibaüzenet: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" A fizikai memória (RAM) használatának kemény korlátját nem sikerült beállítani. Kért méret: %1. A rendszer kemény korlátja: %2. Hibakód: %3. Hibaüzenet: "%4" - + qBittorrent termination initiated qBittorrent leállítása kezdeményezve - + qBittorrent is shutting down... A qBittorrent leáll... - + Saving torrent progress... Torrent állapotának mentése... - + qBittorrent is now ready to exit A qBittorrent készen áll a kilépésre @@ -1766,263 +1777,263 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor &Exportálás... - + Matches articles based on episode filter. Epizód szűrő alapján társítja a találatokat. - + Example: Példa: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match az első évad 2., 5., 8.-15., és a 30.- részeire fog szűrni - + Episode filter rules: Epizód szűrő szabályok: - + Season number is a mandatory non-zero value Évad szám egy kötelező nem-nulla érték - + Filter must end with semicolon Szűrőnek pontosvesszővel kell végződnie - + Three range types for episodes are supported: Epizódok esetén három tartomány típus támogatott: - + Single number: <b>1x25;</b> matches episode 25 of season one Egy szám: <b>1x25;</b> az első évad 25. epizódjának felel meg - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normál tartomány: <b>1x25-40;</b> az első évad 25-40. epizódjának felel meg - + Episode number is a mandatory positive value Az epizódszám egy kötelező pozitív érték - + Rules Szabályok - + Rules (legacy) Szabályok (régi) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Korlátlan tartomány: <b>1x25-;</b> az első évad 25. epizódjától kezdve minden rész, és minden epizód a későbbi évadokban - + Last Match: %1 days ago Utolsó egyezés: %1 nappal ezelőtt - + Last Match: Unknown Utolsó egyezés: Ismeretlen - + New rule name Új szabály neve - + Please type the name of the new download rule. Kérlek add meg az új letöltési szabály nevét. - - + + Rule name conflict Szabály név ütközés - - + + A rule with this name already exists, please choose another name. Már van ilyen szabály név. Kérlek válassz másikat. - + Are you sure you want to remove the download rule named '%1'? Biztosan el akarod távolítani a '%1' nevű szabályt ? - + Are you sure you want to remove the selected download rules? Biztosan eltávolítod a kiválasztott szabályokat? - + Rule deletion confirmation Szabály törlés megerősítése - + Invalid action Érvénytelen művelet - + The list is empty, there is nothing to export. A lista üres, nincs mit exportálni. - + Export RSS rules RSS szabályok exportálása - + I/O Error I/O Hiba - + Failed to create the destination file. Reason: %1 Célfájlt nem sikerült létrehozni. Indok: %1 - + Import RSS rules RSS szabályok importálása - + Failed to import the selected rules file. Reason: %1 Hiba a kiválasztott szabályfájl importálásakor. Indok: %1 - + Add new rule... Új szabály felvétele... - + Delete rule Szabály törlése - + Rename rule... Szabály átnevezése... - + Delete selected rules Kiválasztott szabályok törlése - + Clear downloaded episodes... Letöltött epizódok törlése… - + Rule renaming Szabály átnevezése - + Please type the new rule name Kérlek add meg a szabály új nevét - + Clear downloaded episodes Letöltött epizódok törlése - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Biztosan törölni szeretnéd a kiválasztott szabályhoz tartozó letöltött epizódokat ? - + Regex mode: use Perl-compatible regular expressions Regex mód: Perl-kompatibilis reguláris kifejezések használata - - + + Position %1: %2 Pozíció %1: %2 - + Wildcard mode: you can use Helyettesítő karakter mód: használható karakterek - - + + Import error Import hiba - + Failed to read the file. %1 Nem sikerült a fájl olvasása. %1 - + ? to match any single character ? – egy tetszőleges karakterre illeszkedik - + * to match zero or more of any characters * – nulla vagy több tetszőleges karakterre illeszkedik - + Whitespaces count as AND operators (all words, any order) Üres karakterek ÉS operátorként működnek (minden szó, bármilyen sorrendben) - + | is used as OR operator | a VAGY operátorként működik - + If word order is important use * instead of whitespace. Ha a szósorrend fontos, akkor használjon *-ot üres karakter helyett - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Egy üres %1 tagmondattal rendelkező kifejezés (pl. %2) - + will match all articles. minden elemre illeszkedni fog. - + will exclude all articles. minden elemet ki fog hagyni. @@ -2074,28 +2085,38 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Nem lehet feldolgozni a folytatási adatot: érvénytelen formátum - - + + Cannot parse torrent info: %1 Nem lehet feldolgozni a torrent infót: %1 - + Cannot parse torrent info: invalid format Nem lehet feldolgozni a torrent infót: érvénytelen formátum - + Mismatching info-hash detected in resume data Eltérő info-hash észlelve a folytatási adatban - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. A torrent metaadat nem menthető ide: '%1'. Hiba: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. A torrent folytatási adat nem menthető ide: '%1'. Hiba: %2. @@ -2106,16 +2127,17 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor + Cannot parse resume data: %1 Nem lehet feldolgozni a folytatási adatot: %1 - + Resume data is invalid: neither metadata nor info-hash was found Folytatási adat érvénytelen: sem metaadat, sem info-hash nem található - + Couldn't save data to '%1'. Error: %2 Az adatok nem menthetők ide '%1'. Hiba: %2 @@ -2123,38 +2145,60 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor BitTorrent::DBResumeDataStorage - + Not found. Nem található. - + Couldn't load resume data of torrent '%1'. Error: %2 '%1' torrent folytatási adata nem tölthető be. Hiba: %2 - - + + Database is corrupted. Az adatbázis sérült. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Nem lehetett engedélyezni az Előre-Írás Naplózás (WAL) módot. Hiba: %1. - + Couldn't obtain query result. Nem sikerült lekérdezés eredményt kapni. - + WAL mode is probably unsupported due to filesystem limitations. WAL mód valószínűleg nem támogatott a fájlrendszer korlátozásai miatt. - + + + Cannot parse resume data: %1 + Nem lehet feldolgozni a folytatási adatot: %1 + + + + + Cannot parse torrent info: %1 + Nem lehet feldolgozni a torrent infót: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Nem sikerült elkezdeni a tranzakciót. Hiba: %1 @@ -2162,22 +2206,22 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Torrent metaadat mentése sikertelen. Hiba: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Nem sikerült tárolni a '%1' torrent folytatási adatait. Hiba: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Nem sikerült törölni a '%1' torrent folytatási adatait. Hiba: %2 - + Couldn't store torrents queue positions. Error: %1 Torrentek sorrend pozícióit nem sikerült menteni. Hiba: %1 @@ -2185,530 +2229,507 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Megosztott Hash-tábla (DHT) támogatása: %1 - - - - - - - - - + + + + + + + + + ON BE - - - - - - - - - + + + + + + + + + OFF KI - - + + Local Peer Discovery support: %1 Helyi Peer Felfedezés támogatás: %1 - + Restart is required to toggle Peer Exchange (PeX) support Újraindítás szükséges a Peercsere (PeX) támogatás átváltásához - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrent folytatása sikertelen. Torrent: "%1". Indok: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Nem sikerült a torrentet folytatni: inkonzisztens torrent azonosító ID észlelve. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Inkonzisztens adat észlelve: a konfigurációs fájlból hiányzik a kategória. A kategória helyre lesz állítva, de a beállításai visszaállnak az alapértelmezettre. Torrent: "%1". Kategória: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Inkonzisztens adat észlelve: érvénytelen kategória. Torrent: "%1". Kategória: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Eltérést észleltünk a helyreállított kategória mentési útvonalai és a torrent aktuális mentési útvonala között. A torrent most Kézi Módba vált. Torrent: "%1". Kategória: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Inkonzisztens adat észlelve: a konfigurációs fájlból hiányzik a címke. A címke helyreállításra kerül. Torrent: "%1". Címke: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Inkonzisztens adat észlelve: érvénytelen címke. Torrent: "%1". Címke: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Rendszer felébredési esemény észlelve. Újbóli jelentés az összes trackernek... - + Peer ID: "%1" Peer azonosító: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Peercsere (PeX) támogatás: %1 - - + + Anonymous mode: %1 Anonymous mód: %1 - - + + Encryption support: %1 Titkosítás támogatás: %1 - - + + FORCED KÉNYSZERÍTETT - + Could not find GUID of network interface. Interface: "%1" A hálózati csatoló GUID azonosítója nem található. Csatoló: "%1" - + Trying to listen on the following list of IP addresses: "%1" Következő IP cím lista használatának megkísérlése: "%1" - + Torrent reached the share ratio limit. A torrent elérte a megosztási arány korlátot. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent eltávolítva. - - - Removed torrent and deleted its content. - Torrent eltávolítva és tartalma törölve. - - - Torrent paused. - Torrent szüneteltetve. - - - + Super seeding enabled. Szuper seed engedélyezve. - + Torrent reached the seeding time limit. Torrent elérte a seed idő limitet. - + Torrent reached the inactive seeding time limit. Torrent elérte az inaktív seed idő limitet. - + Failed to load torrent. Reason: "%1" Torrent betöltése sikertelen. Indok: "%1" - + I2P error. Message: "%1". I2P hiba. Üzenet: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP támogatás: BE - + Saving resume data completed. - + Folytatási adatfájl mentése sikeres. - + BitTorrent session successfully finished. - + BitTorrent munkamenet sikeresen befejezve. - + Session shutdown timed out. - + Munkamenet leállítás időtúllépés. - + Removing torrent. - + Torrent eltávolítása. - + Removing torrent and deleting its content. - + Torrent eltávolítása és tartalmának törlése. - + Torrent stopped. - + Torrent leállítva. - + Torrent content removed. Torrent: "%1" - + Torrent tartalom eltávolítva. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Nem sikerült eltávolítani a torrent tartalmát. Torrent: "%1". Hiba: "%2" - + Torrent removed. Torrent: "%1" - + Torrent eltávolítva. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Duplikált torrent hozzáadásának kísérlete észlelve. Létező torrent: %1. Eredmény: %2 - + Merging of trackers is disabled - Trackerek összevonása ki van kapcsolva + Trackerek összevonása ki van kapcsolva - + Trackers cannot be merged because it is a private torrent - Trackereket nem lehetett összevonni mert ez egy privát torrent + Trackereket nem lehetett összevonni mert ez egy privát torrent - + Trackers are merged from new source - Trackerek összevonva az új forrásból + Trackerek összevonva az új forrásból - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP támogatás: KI - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Nem sikerült a torrent exportálása. Torrent: "%1". Cél: "%2". Indok: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Folytatási adatok mentése megszakítva. Függőben lévő torrentek száma: %1 - + The configured network address is invalid. Address: "%1" A konfigurált hálózati cím érvénytelen. Cím: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Nem sikerült megtalálni a konfigurált hálózati címet a használathoz. Cím: "%1" - + The configured network interface is invalid. Interface: "%1" A konfigurált hálózati interfész érvénytelen. Interfész: "%1" - + Tracker list updated - + Tracker lista frissítve - + Failed to update tracker list. Reason: "%1" - + Nem sikerült frissíteni a tracker listát. Indok: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Érvénytelen IP-cím elutasítva a tiltott IP-címek listájának alkalmazása során. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Tracker hozzáadva a torrenthez. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Tracker eltávolítva a torrentből. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL seed hozzáadva a torrenthez. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL seed eltávolítva a torrentből. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Rész-fájl eltávolítása nem sikerült. Torrent: "%1". Indok: "%2". - Torrent paused. Torrent: "%1" - Torrent szüneteltetve. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent folytatva. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent letöltése befejeződött. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrent áthelyezés visszavonva. Torrent: "%1". Forrás: "%2". Cél: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent leállítva. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Nem sikerült sorba állítani a torrent áthelyezését. Torrent: "%1". Forrás: "%2". Cél: "%3". Indok: a torrent jelenleg áthelyezés alatt van a cél felé - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Nem sikerült sorba állítani a torrentmozgatást. Torrent: "%1". Forrás: "%2" Cél: "%3". Indok: mindkét útvonal ugyanarra a helyre mutat - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrent mozgatás sorba állítva. Torrent: "%1". Forrás: "%2". Cél: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Torrent áthelyezés megkezdve. Torrent: "%1". Cél: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Nem sikerült menteni a Kategóriák konfigurációt. Fájl: "%1". Hiba: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Nem sikerült értelmezni a Kategóriák konfigurációt. Fájl: "%1". Hiba: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IP szűrő fájl sikeresen feldolgozva. Alkalmazott szabályok száma: %1 - + Failed to parse the IP filter file Nem sikerült feldolgozni az IP-szűrőfájlt - + Restored torrent. Torrent: "%1" Torrent visszaállítva. Torrent: "%1" - + Added new torrent. Torrent: "%1" Új torrent hozzáadva. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent hibát jelzett. Torrent: "%1". Hiba: %2. - Removed torrent. Torrent: "%1" - Torrent eltávolítva. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent eltávolítva és tartalma törölve. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" A torrentből hiányoznak az SSL paraméterek. Torrent: "%1". Üzenet: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Fájl hiba riasztás. Torrent: "%1". Fájl: "%2". Indok: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP port lefoglalás sikertelen. Üzenet: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP port lefoglalás sikerült. Üzenet: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP-szűrő - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). kiszűrt port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). privilegizált port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL seed kapcsolati hiba. Torrent: "%1". URL: "%2". Hiba: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" A BitTorrent munkamenet súlyos hibát észlelt. Indok: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxy hiba. Cím: %1. Üzenet: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 kevert mód megszorítások - + Failed to load Categories. %1 Nem sikerült betölteni a Kategóriákat. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Nem sikerült betölteni a Kategóriák beállításokat. Fájl: "%1". Hiba: "Érvénytelen adat formátum" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent eltávolítva, de tartalmát és/vagy a rész-fájlt nem sikerült eltávolítani. Torrent: "%1". Hiba: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 letiltva - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 letiltva - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Nem sikerült az URL seed DNS lekérdezése. Torrent: "%1". URL: "%2". Hiba: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Hibaüzenet érkezett az URL seedtől. Torrent: "%1". URL: "%2". Üzenet: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Sikerült az IP cím használatba vétele. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Nem sikerült az IP cím használata. IP: "%1". Port: "%2/%3". Indok: "%4" - + Detected external IP. IP: "%1" Külső IP észlelve. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Hiba: A belső riasztási tár megtelt, és a riasztások elvetésre kerülnek. Előfordulhat, hogy csökkentett teljesítményt észlel. Eldobott riasztás típusa: "%1". Üzenet: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent sikeresen áthelyezve. Torrent: "%1". Cél: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" A torrent áthelyezése nem sikerült. Torrent: "%1". Forrás: "%2". Cél: "%3". Indok: "%4" @@ -2758,47 +2779,47 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Nem sikerült fájlba írni. Indok: "%1". A Torrent most "csak feltöltés" módban van. - + Download first and last piece first: %1, torrent: '%2' Első és utolsó szelet letöltése először: %1, torrent: '%2' - + On Be - + Off Ki - + Failed to reload torrent. Torrent: %1. Reason: %2 Nem sikerült újratölteni a torrentet. Torrent: %1. Ok: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Nem sikerült folytatási adatot generálni. Torrent: "%1". Indok: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" A torrent visszaállítása sikertelen. A fájlok valószínűleg át lettek helyezve, vagy a tárhely nem érhető el. Torrent: "%1". Indok: "%2" - + Missing metadata Hiányzó metaadat - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Fájl átnevezése sikertelen. Torrent: "%1", fájl: "%2", indok: "%3" - + Performance alert: %1. More info: %2 Teljesítmény riasztás: %1. További info: %2 @@ -2835,11 +2856,6 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Expected integer number in environment variable '%1', but got '%2' Egész szám várva a '%1' környezeti változóban, de ez érkezett: '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - A '%1' paraméternek követnie kell a '%1=%2' szintaxist - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - A '%1' paraméternek követnie kell a '%1=%2' szintaxist + A '%1' paraméternek követnie kell a '%1=%2' szintaxist @@ -2968,11 +2984,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Add torrents as running or stopped - - - - Add torrents as started or paused - Torrentek hozzáadása elindítva vagy szüneteltetve + Torrentek hozzáadása futó vagy megállított állapotban @@ -3063,20 +3075,12 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Start torrents - + Torrentek indítása Stop torrents - - - - Resume torrents - Torrentek folytatása - - - Pause torrents - Torrentek szüneteltetése + Torrentek leállítása @@ -3099,7 +3103,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor System - + Rendszer @@ -3174,11 +3178,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Also remove the content files - - - - Also permanently delete the files - Törölje véglegesen a fájlokat is + Tartalom fájlokat is távolítsa el @@ -3390,47 +3390,43 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Pattern Format - + Minta formátum Plain text - + Egyszerű szöveg Wildcards - + Helyettesítő karakterek Regular expression - + Reguláris kifejezés GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent letöltése... Forrás: "%1" - Trackers cannot be merged because it is a private torrent - Trackereket nem lehetett összevonni mert ez egy privát torrent - - - + Torrent is already present Torrent már a listában van - + Trackers cannot be merged because it is a private torrent. - + Trackereket nem lehetett összevonni mert ez egy privát torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? '%1' torrent már szerepel a letöltési listában. Szeretné egyesíteni az új forrásból származó trackereket? @@ -3548,6 +3544,40 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Támogatott képfájlok + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Az energiakezelés megfelelő D-Bus interfészt talált. Interfész: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Energiagazdálkodási hiba. Művelet: %1. Hiba: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Energiagazdálkodási váratlan hiba. Állapot: %1. Hiba: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor &Options... Beállítás&ok... - - &Resume - &Folytatás - &Remove @@ -3762,7 +3788,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Sh&utdown System - + Számító&gép leállítása @@ -3774,10 +3800,6 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Close Window Ablak bezárása - - R&esume All - Összes f&olytatása - Manage Cookies... @@ -3816,22 +3838,22 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Sta&rt - + Sta&rt Sto&p - + Sto&p R&esume Session - + &Munkamenet folytatása Pau&se Session - + M&unkamenet szüneteltetése @@ -3893,10 +3915,6 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor &Hibernate System Számítógép &hibernálása - - S&hutdown System - Számító&gép leállítása - &Statistics @@ -3917,14 +3935,6 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor &About &Névjegy - - &Pause - &Szünet - - - P&ause All - Összes s&züneteltetése - &Add Torrent File... @@ -3958,12 +3968,12 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor - + Show Mutat - + Check for program updates Programfrissítések keresése @@ -3978,387 +3988,382 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Ha tetszik a qBittorrent, kérjük, adományozzon! - + Execution Log Napló - + Clear the password Jelszó törlése - + &Set Password &Jelszó beállítása - + Preferences &Beállítások - + &Clear Password &Jelszó törlése - + Transfers Átvitelek - - + + qBittorrent is minimized to tray qBittorrent lekerül a tálcára - - - + + + This behavior can be changed in the settings. You won't be reminded again. Ez a működés megváltoztatható a beállításokban. Többször nem lesz emlékeztetve. - + Icons Only Csak ikonok - + Text Only Csak szöveg - + Text Alongside Icons Szöveg az ikonok mellett - + Text Under Icons Szöveg az ikonok alatt - + Follow System Style Rendszer kinézetének követése - - + + UI lock password UI jelszó - - + + Please type the UI lock password: Kérlek add meg az UI jelszavát: - + Are you sure you want to clear the password? Biztosan ki akarod törölni a jelszót? - + Use regular expressions Reguláris kifejezések használata - - + + Search Engine - Keresőmotor + Keresőmotor - + Search has failed - A keresés sikertelen + A keresés sikertelen - + Search has finished - A keresés befejeződött + A keresés befejeződött - + Search Keresés - + Transfers (%1) Átvitelek (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. A qBittorrent frissült, és újra kell indítani a változások életbe lépéséhez. - + qBittorrent is closed to tray qBittorrent bezáráskor a tálcára - + Some files are currently transferring. Néhány fájl átvitele folyamatban van. - + Are you sure you want to quit qBittorrent? Biztosan ki akar lépni a qBittorrentből? - + &No &Nem - + &Yes &Igen - + &Always Yes &Mindig igen - + Options saved. Beállítások mentve. - + [PAUSED] %1 %1 is the rest of the window title - + [SZÜNETELTETVE] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [L: %1, F: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Python telepítőt nem sikerült letölteni. Hiba: %1. +Kérlek telepítsd fel kézzel. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python telepítő átnevezése nem sikerült. Forrás: "%1". Cél: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + A Python telepítése sikeres volt. + Exit code: %1. + Kilépési kód: %1. + + + + Reason: installer crashed. + Indok: telepítő összeomlott. + + + Python installation failed. - + A Python telepítése nem sikerült. - + Launching Python installer. File: "%1". - + A Python telepítő indítása. Fájl: "%1". - - + + Missing Python Runtime Hiányzó Python bővítmény - + qBittorrent Update Available Elérhető qBittorrent frissítés - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? A keresőmotor használatához Python szükséges, de úgy tűnik nincs telepítve. Telepíti most? - + Python is required to use the search engine but it does not seem to be installed. A keresőhöz Python szükséges, de úgy tűnik nincs telepítve. - - + + Old Python Runtime Elavult Python bővítmény - + A new version is available. Új verzió elérhető. - + Do you want to download %1? Le szeretnéd tölteni %1? - + Open changelog... Változások listájának megnyitása... - + No updates available. You are already using the latest version. Nem érhető el frissítés. A legfrissebb verziót használja. - + &Check for Updates &Frissítések keresése - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? A telepített Python verziója (%1) túl régi. Minimális követelmény: %2. Telepít most egy újabb verziót? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. A telepített Python verziója (%1) túl régi. Egy újabb verzió szükséges a keresőmotorok működéséhez. Minimális követelmény: %2. - + Paused - Szüneteltetve + Szüneteltetett - + Checking for Updates... Frissítések keresése… - + Already checking for program updates in the background A frissítések keresése már fut a háttérben - + Python installation in progress... - + A Python telepítése folyamatban... - + Failed to open Python installer. File: "%1". - + Nem sikerült megnyitni a Python telepítőt. Fájl: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Hiba a Python telepítő MD5 hash ellenőrzésének során. Fájl: "%1". Eredmény hash: "%2". Várt hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Hiba a Python telepítő SHA3-512 hash ellenőrzésének során. Fájl: "%1". Eredmény hash: "%2". Várt hash: "%3". - + Download error Letöltési hiba - Python setup could not be downloaded, reason: %1. -Please install it manually. - A Python telepítőt nem sikerült letölteni, mivel: %1. -Kérlek telepítsd fel kézzel. - - - - + + Invalid password Érvénytelen jelszó - + Filter torrents... Torrentek szűrése... - + Filter by: Szűrés erre: - + The password must be at least 3 characters long A jelszónak legalább 3 karakter hosszúnak kell lennie - - - + + + RSS (%1) RSS (%1) - + The password is invalid A jelszó érvénytelen - + DL speed: %1 e.g: Download speed: 10 KiB/s Letöltési sebsesség: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Feltöltési sebesség: %1 - + Hide Elrejt - + Exiting qBittorrent qBittorrent bezárása - + Open Torrent Files Torrent Fájl Megnyitása - + Torrent Files Torrent Fájlok @@ -4452,12 +4457,12 @@ Kérlek telepítsd fel kézzel. The remote server closed the connection prematurely, before the entire reply was received and processed - A távoli kiszolgáló idő előtt lezárta a kapcsolatot, mielőtt a teljes választ megkapta és feldolgozta volna + A távoli szerver idő előtt lezárta a kapcsolatot, mielőtt a teljes választ megkapta és feldolgozta volna The connection to the remote server timed out - Időtúllépés a távoli kiszolgálóhoz kapcsolódáskor + A távoli szerverhez való kapcsolat időtúllépés miatt megszakadt @@ -4467,7 +4472,7 @@ Kérlek telepítsd fel kézzel. The remote server refused the connection - A távoli kiszolgáló elutasította a kapcsolatot + A távoli szerver elutasította a kapcsolatot @@ -4507,12 +4512,12 @@ Kérlek telepítsd fel kézzel. The remote content was not found at the server (404) - A távoli tartalom nem található a kiszolgálón (404) + A távoli tartalom nem található a szerveren (404) The remote server requires authentication to serve the content but the credentials provided were not accepted - A távoli kiszolgáló hitelesítést igényel a tartalom kiszolgálásához, de nem fogadja el az általunk küldött hitelesítő adatokat + A távoli szerver hitelesítést igényel a tartalom kiszolgálásához, de nem fogadja el az általunk küldött hitelesítő adatokat @@ -4555,7 +4560,7 @@ Kérlek telepítsd fel kézzel. SSL error, URL: "%1", errors: "%2" - + SSL hiba, URL: "%1", hibák: "%2" @@ -5852,47 +5857,47 @@ Kérlek telepítsd fel kézzel. Net::Smtp - + Connection failed, unrecognized reply: %1 A csatlakozás sikertelen, ismeretlen válasz: %1 - + Authentication failed, msg: %1 Hitelesítés sikertelen, üzenet: %1 - + <mail from> was rejected by server, msg: %1 <mail from> a szerver által elutasítva, üzenet: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> a szerver által elutasítva, üzenet: %1 - + <data> was rejected by server, msg: %1 <data> a szerver által elutasítva, üzenet: %1 - + Message was rejected by the server, error: %1 Üzenet a szerver által elutasítva, hiba: %1 - + Both EHLO and HELO failed, msg: %1 EHLO és az HELO is sikertelen, üzenet: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Úgy tűnik, hogy az SMTP-szerver nem támogatja az általunk támogatott hitelesítési módok egyikét sem [CRAM-MD5|PLAIN|LOGIN], kihagyva a hitelesítést, tudván, hogy valószínűleg nem fog sikerülni... Szerver hitelesítési módok: %1 - + Email Notification Error: %1 Email értesítés hiba: %1 @@ -5934,10 +5939,6 @@ Kérlek telepítsd fel kézzel. RSS RSS - - Web UI - Web UI - Advanced @@ -5958,14 +5959,6 @@ Kérlek telepítsd fel kézzel. Confirm when deleting torrents Torrentek törlésének megerősítése - - Shows a confirmation dialog upon pausing/resuming all the torrents - Megerősítő ablak megjelenítése az összes torrent szüneteltetésekor/újraindításakor - - - Confirm "Pause/Resume all" actions - A "Szünet/Összes folytatása" műveletek megerősítése - Use alternating row colors @@ -5982,10 +5975,6 @@ Kérlek telepítsd fel kézzel. Always Mindig - - Paused torrents only - Csak szüneteltetett torrentek - Action on double-click @@ -5996,10 +5985,6 @@ Kérlek telepítsd fel kézzel. Downloading torrents: Letöltés alatt lévő torrenteknél: - - Start / Stop Torrent - Torrent elindítása / leállítása - @@ -6058,179 +6043,179 @@ Kérlek telepítsd fel kézzel. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent tartalom elrendezése: - + Original Eredeti - + Create subfolder Almappa létrehozása - + Don't create subfolder Ne hozzon létre almappát - + The torrent will be added to the top of the download queue A torrent a letöltési sor tetejére kerül - + Add to top of queue The torrent will be added to the top of the download queue Hozzáadás a várólista elejére - + When duplicate torrent is being added Amikor duplikált torrent kerül hozzáadásra - + Merge trackers to existing torrent Trackerek egyesítése meglévő torrenthez - + Keep unselected files in ".unwanted" folder Tartsa a nem kiválasztott fájlokat a ".unwanted" mappában - + Add... Hozzáadás… - + Options.. Beállítások… - + Remove Eltávolítás - + Email notification &upon download completion E-mail értesítés a letöltés &végeztével - + Send test email - + Teszt email küldése - + Run on torrent added: - + Futtatás torrent hozzáadásakor: - + Run on torrent finished: - + Futtatás torrent befejezésekor: - + Peer connection protocol: Peer kapcsolati protokoll: - + Any Bármi - + I2P (experimental) I2P (kísérleti) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Ha a &quot;kevert mód&quot; engedélyezve van, akkor az I2P torrentek a trackeren kívül más forrásokból is beszerezhetnek peereket, csatlakozhatnak normál IP címekhez is. Ezzel megszűnik az anonimizálás. Ez a kevert mód akkor lehet hasznos, ha a felhasználó nem érdekelt az I2P anonimizálásban, de csatlakozni akar az I2P peerekhez is.</p></body></html> - - - + Mixed mode Kevert mód - Some options are incompatible with the chosen proxy type! - Egyes beállítások nem kompatibilisek a kiválasztott proxy típussal! + Egyes beállítások nem kompatibilisek a kiválasztott proxy típussal! - + If checked, hostname lookups are done via the proxy Ha be van jelölve, a kiszolgálónevek a proxyn keresztül lesznek feloldva. - + Perform hostname lookup via proxy Kiszolgálónév lekérdezése proxyn keresztül - + Use proxy for BitTorrent purposes Proxy használata BitTorrent célokra - + RSS feeds will use proxy RSS csatornák proxy szervert fognak használni - + Use proxy for RSS purposes Proxy használata RSS célokra - + Search engine, software updates or anything else will use proxy Keresőmotor, szoftver frissítések és minden más proxyt fog használni - + Use proxy for general purposes Proxy általános célokra történő használata - + IP Fi&ltering &IP-szűrés - + Schedule &the use of alternative rate limits Alternatív sebességkorlátok ütemezése - + From: From start time Ettől: - + To: To end time Eddig: - + Find peers on the DHT network Peerek keresése a DHT hálózaton - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6239,188 +6224,190 @@ Titkosítás megkövetelése: Kapcsolódás csak a protokolltitkosítással rend Titkosítás letiltása: Kapcsolódás csak protokolltitkosítás nélküli peerekhez - + Allow encryption Titkosítás engedélyezése - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">További információ</a>) - + Maximum active checking torrents: Torrentek aktív ellenőrzésének maximális száma: - + &Torrent Queueing &Torrent ütemezés - + When total seeding time reaches Amikor a teljes seed időt eléri - + When inactive seeding time reaches Amikor az inaktív seed időt eléri - A&utomatically add these trackers to new downloads: - Ezen trackerek a&utomatikus hozzáadása az új letöltésekhez: - - - + RSS Reader RSS Olvasó - + Enable fetching RSS feeds RSS csatornák lekérdezésének engedélyezése - + Feeds refresh interval: Csatornák frissítési időköze: - + Same host request delay: Ugyanazon kiszolgáló-kérés késleltetése: - + Maximum number of articles per feed: Csatornánként elemek maximum száma: - - - + + + min minutes perc - + Seeding Limits Seedelési korlátok - Pause torrent - Torrent szüneteltetése - - - + Remove torrent Torrent eltávolítása - + Remove torrent and its files Torrent és fájljai eltávolítása - + Enable super seeding for torrent Super seed engedélyezése a torrentnél - + When ratio reaches Amikor az arányt eléri - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Torrent leállítása - + A&utomatically append these trackers to new downloads: - + Ezen trackerek a&utomatikus hozzáadása az új letöltésekhez: - + Automatically append trackers from URL to new downloads: - + Az URL-en található trackerek automatikus hozzáadása az új letöltésekhez: - + URL: - URL: + URL: - + Fetched trackers - + Lekért trackerek - + Search UI - + Keresési felület - + Store opened tabs - + Megnyitott lapok tárolása - + Also store search results - + Tárolja a keresési találatokat is - + History length - + Előzmények hossza - + RSS Torrent Auto Downloader Automata RSS torrent letöltő - + Enable auto downloading of RSS torrents Az RSS torrentek automatikus letöltésének engedélyezése - + Edit auto downloading rules... Automatikus letöltési szabályok szerkesztése… - + RSS Smart Episode Filter RSS okos epizód szűrő - + Download REPACK/PROPER episodes REPACK/PROPER epizódok letöltése - + Filters: Szűrők: - + Web User Interface (Remote control) Webes felhasználói felület (Távoli vezérlés) - + IP address: IP-cím: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6429,41 +6416,37 @@ Határozzon meg egy IPv4 vagy IPv6 címet. Megadhatja "0.0.0.0"-t bár vagy "::"-t bármely IPv6 címhez, vagy használja a "*"-t bármely IPv4-hez és IPv6-hoz egyaránt. - + Ban client after consecutive failures: Kliens tiltása egymást követő hibák után: - + Never Soha - + ban for: tiltás: - + Session timeout: Munkamenet időtúllépés: - + Disabled Letiltva - - Enable cookie Secure flag (requires HTTPS) - Secure jelző engedélyezése a sütiknél (HTTPS szükséges) - - - - Server domains: - Kiszolgáló domainek: - + Server domains: + Szerver domainek: + + + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6471,42 +6454,42 @@ you should put in domain names used by WebUI server. Use ';' to split multiple entries. Can use wildcard '*'. Fehérlista a HTTP Kiszolgáló fejléc értékek szűrésére. A DNS újrakötési támadások ellen, -írja be a WebUI kiszolgáló domain neveit. +írja be a WebUI szerver domain neveit. Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettesítő karakter is használható. - + &Use HTTPS instead of HTTP &HTTPS használata HTTP helyett - + Bypass authentication for clients on localhost Hitelesítés mellőzése a helyi gépen lévő klienseknél - + Bypass authentication for clients in whitelisted IP subnets Hitelesítés mellőzése a fehérlistára tett IP alhálózatokban lévő klienseknél - + IP subnet whitelist... IP alhálózat fehérlista… - + Use alternative WebUI - + Alternatív WebUI használata - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Adjon meg reverse proxy IP-címeket (vagy alhálózatokat, pl. 0.0.0.0/24) a továbbított kliens cím használatához (X-Forwarded-For attribútum). Használja a ';' karaktert a felosztáshoz, ha több bejegyzést ad meg. - + Upda&te my dynamic domain name &Dinamikus domain név frissítése @@ -6518,12 +6501,12 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A &apo Search - Keresés + Keresés WebUI - + WebUI @@ -6538,29 +6521,29 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A &apo Style: - + Stílus: Color scheme: - + Színséma: Stopped torrents only - + Csak leállított torrentek Start / stop torrent - + Torrent elindítása / leállítása Open torrent options dialog - + Torrent opciók megnyitása @@ -6601,7 +6584,7 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A &apo &Log Files - + &Napló fájlok @@ -6619,99 +6602,99 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A &apo Naplófájlok biztonsági mentéseinek törlése ennyi után: - + Show external IP in status bar - + Külső IP megjelenítése az állapotsoron - + When adding a torrent Torrent hozzáadásakor - + Bring torrent dialog to the front Torrent párbeszédablak előrehozása - + The torrent will be added to download list in a stopped state - + A torrent leállított állapotban lesz hozzáadva a letöltési listához - + Also delete .torrent files whose addition was cancelled Azon .torrent fájlok is törlődjenek, amelyek hozzáadása meg lett szakítva - + Also when addition is cancelled Akkor is, ha meg lett szakítva a hozzáadás - + Warning! Data loss possible! Figyelmeztetés! Adatvesztés lehetséges! - + Saving Management Mentéskezelés - + Default Torrent Management Mode: Alapértelmezett torrentkezelési mód: - + Manual Kézi - + Automatic Automatikus - + When Torrent Category changed: Amikor a torrent kategória megváltozik: - + Relocate torrent Torrent áthelyezése - + Switch torrent to Manual Mode Torrent kézi módba váltása - - + + Relocate affected torrents Érintett torrentek áthelyezése - - + + Switch affected torrents to Manual Mode Érintett torrentek kézi módba váltása - + Use Subcategories Alkategóriák használata - + Default Save Path: Alapértelmezett mentési útvonal: - + Copy .torrent files to: .torrent fájlok másolása ide: @@ -6721,26 +6704,22 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A &apo &qBittorrent megjelenítése az értesítési területen - &Log file - &Naplófájl - - - + Display &torrent content and some options &Torrent tartalom és néhány beállítás megjelenítése - + De&lete .torrent files afterwards Ezután törölje a .torrent fájlokat - + Copy .torrent files for finished downloads to: Elkészült letöltések .torrent fájlainak másolása a következő helyre: - + Pre-allocate disk space for all files Minden fájl helyének lefoglalása előre @@ -6770,10 +6749,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A &apo Preview file, otherwise open destination folder Fájl előnézet, egyébként nyissa meg a célmappát - - Show torrent options - Torrent opciók megjelenítése - Shows a confirmation dialog when exiting with active torrents @@ -6839,69 +6814,65 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A &apo év - + Log performance warnings Teljesítmény figyelmeztetések naplózása - The torrent will be added to download list in a paused state - A torrent szüneteltetve adódik hozzá a letöltési listához - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Ne induljon el automatikusan a letöltés - + Whether the .torrent file should be deleted after adding it Törlésre kerüljön-e a .torrent fájl a hozzáadás után - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. A töredezettség minimalizálása érdekében a letöltés megkezdése előtt foglalja le a teljes fájlméretet a lemezen. Csak HDD-k esetén hasznos. - + Append .!qB extension to incomplete files .!qB kiterjesztés használata befejezetlen fájloknál - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Ha egy torrent letöltésre kerül, akkor felajánlja a benne található összes .torrent fájl hozzáadását - + Enable recursive download dialog Az ismétlődő letöltési párbeszédablak engedélyezése - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatikus: Különböző torrenttulajdonságok (példáué a mentési útvonal) a hozzátartozó kategória alapján kerülnek eldöntésre Kézi: A különböző torrenttulajdonságokat (például a mentési útvonalat) kézzel kell megadni - + When Default Save/Incomplete Path changed: Amikor az alapértelmezett mentési/befejezetlen elérési útvonal megváltozik: - + When Category Save Path changed: Ha a kategória mentési útja megváltozott: - + Use Category paths in Manual Mode Használja a kategória elérési útjait kézi módban - + Resolve relative Save Path against appropriate Category path instead of Default one Oldja fel a relatív mentési útvonalat a megfelelő kategória elérési útjával az alapértelmezett helyett @@ -6921,50 +6892,50 @@ Kézi: A különböző torrenttulajdonságokat (például a mentési útvonalat) qBittorrent ablak állapota induláskor - + Torrent stop condition: Torrent stop feltétel: - - + + None Nincs - - + + Metadata received Metaadat fogadva - - + + Files checked Fájlok ellenőrizve - + Ask for merging trackers when torrent is being added manually Kérdezzen rá a trackerek összevonására, amikor a torrent kézzel kerül hozzáadásra - + Use another path for incomplete torrents: Használjon másik elérési utat a befejezetlen torrentekhez: - + Automatically add torrents from: Torrentek automatikus hozzáadása innen: - + Excluded file names Kizárt fájlnevek - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6993,523 +6964,510 @@ readme.txt: pontos fájlnév szűrése. readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de nem 'readme10.txt'. - + Receiver Fogadó - + To: To receiver Neki: - + SMTP server: - SMTP-kiszolgáló: + SMTP-szerver: - + Sender Küldő - + From: From sender Feladó: - + This server requires a secure connection (SSL) - Ez a kiszolgáló biztonságos kapcsolatot (SSL) igényel + Ez a szerver biztonságos kapcsolatot (SSL) igényel - - + + Authentication Hitelesítés - - - - + + + + Username: Felhasználónév: - - - - + + + + Password: Jelszó: - + Run external program Külső program futtatása - Run on torrent added - Futtatás torrent hozzáadásakor - - - Run on torrent finished - Futtatás torrent befejezésekor - - - + Show console window Konzolablak megjelenítése - + TCP and μTP TCP és μTP - + Listening Port Használt Port - + Port used for incoming connections: Port a bejövő kapcsolatokhoz: - + Set to 0 to let your system pick an unused port Állítsa 0 -ra, hogy a rendszer válasszon egy nem használt portot - + Random Véletlenszerű - + Use UPnP / NAT-PMP port forwarding from my router UPnP / NAT-PMP használata a routeren a porttovábbításhoz - + Connections Limits Kapcsolati korlátok - + Maximum number of connections per torrent: Torrentenkénti kapcsolatok maximális száma: - + Global maximum number of connections: Globális kapcsolatok maximális száma: - + Maximum number of upload slots per torrent: Torrentenkénti feltöltési szálak maximális száma: - + Global maximum number of upload slots: Globális feltöltési szálak maximális száma: - + Proxy Server - Proxy kiszolgáló + Proxy szerver - + Type: Típus: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Kiszolgáló: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections - Különben a proxy csak a tracker kapcsolatok esetén kerül használatra + Különben a proxy szerver csak a tracker kapcsolatok esetén kerül használatra - + Use proxy for peer connections Proxy használata peer kapcsolatokhoz - + A&uthentication &Hitelesítés - Info: The password is saved unencrypted - Infó: Jelszó titkosítás nélkül kerül elmentésre + Infó: Jelszó titkosítás nélkül kerül elmentésre - + Filter path (.dat, .p2p, .p2b): Szűrő útvonala (.dat, .p2p, .p2b): - + Reload the filter Szűrő újratöltése - + Manually banned IP addresses... Kézzel tiltott IP-címek… - + Apply to trackers Alkalmazás a trackerekre - + Global Rate Limits Globális sebességkorlátok - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Feltöltés: - - + + Download: Letöltés: - + Alternative Rate Limits Alternatív sebességkorlátok - + Start time Kezdési idő - + End time Befejezési idő - + When: Ekkor: - + Every day Minden nap - + Weekdays Hétköznapokon - + Weekends Hétvégéken - + Rate Limits Settings Sebességkorlátok beállítása - + Apply rate limit to peers on LAN Sebességkorlátok alkalmazása LAN peerekre is - + Apply rate limit to transport overhead Sebességkorlát alkalmazása a fejléc (overhead) többletre is. - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Ha a "kevert mód" engedélyezve van, az I2P torrentek más forrásokból is kereshetnek peereket a trackeren kívül, és csatlakozhatnak normál IP-khez, anélkül hogy bármilyen anonimizációt biztosítanának. Ez hasznos lehet, ha a felhasználó nem tart igényt az I2P anonimizációjára, de továbbra is szeretne I2P peerekhez kapcsolódni.</p></body></html> - + Apply rate limit to µTP protocol Sebességkorlát alkalmazása µTP protokollra is - + Privacy Magánszféra - + Enable DHT (decentralized network) to find more peers DHT (decentralizált hálózat) engedélyezése, hogy több peert találjon - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Peercsere kompatibilis kliensekkel (µTorrent, Vuze, …) - + Enable Peer Exchange (PeX) to find more peers Peercsere (PeX) engedélyezése, hogy több peert találjon - + Look for peers on your local network Peerek keresése a helyi hálózaton - + Enable Local Peer Discovery to find more peers Helyi peerek felkutatásának (LPD) engedélyezése, hogy több peert találjon - + Encryption mode: Titkosítás módja: - + Require encryption Titkosítás megkövetelése - + Disable encryption Titkosítás kikapcsolása - + Enable when using a proxy or a VPN connection Bekapcsolás proxy vagy VPN kapcsolat esetén - + Enable anonymous mode Anonymous mód engedélyezése - + Maximum active downloads: Aktív letöltések maximális száma: - + Maximum active uploads: Aktív feltöltések maximális száma: - + Maximum active torrents: Aktív torrentek maximális száma: - + Do not count slow torrents in these limits Lassú torrentek figyelmen kívül hagyása ezeknél a korlátoknál - + Upload rate threshold: Feltöltési sebesség küszöb: - + Download rate threshold: Letöltési sebesség küszöb: - - - - + + + + sec seconds mp - + Torrent inactivity timer: Torrent inaktivitási időzítő: - + then aztán - + Use UPnP / NAT-PMP to forward the port from my router UPnP / NAT-PMP használata a porttovábbításhoz a routeremtől - + Certificate: Tanúsítvány: - + Key: Kulcs: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Információk a tanúsítványokról</a> - + Change current password Jelenlegi jelszó megváltoztatása - Use alternative Web UI - Alternatív Web UI használata - - - + Files location: Fájlok helye: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Alternative WebUI-k listája</a> - + Security Biztonság - + Enable clickjacking protection Clickjacking védelem engedélyezés - + Enable Cross-Site Request Forgery (CSRF) protection Engedélyezze a kereszt webhely kérelem hamisítás (CSRF) védelmet - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + A Secure jelző engedélyezése a sütiknél (HTTPS vagy helyi kapcsolat szükséges) - + Enable Host header validation Kiszolgáló fejléc érvényesítés engedélyezése - + Add custom HTTP headers Egyéni HTTP fejlécek hozzáadása - + Header: value pairs, one per line Fejléc: értékpárok, soronként egy - + Enable reverse proxy support Fordított proxy támogatás engedélyezése - + Trusted proxies list: Megbízott proxy kiszolgálók listája: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Fordított proxy beállítási példák</a> - + Service: Szolgáltatás: - + Register Regisztráció - + Domain name: Domain név: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Ezeket a beállításokat bekapcsolva, <strong>véglegesen elveszítheti</strong> a .torrent fájljait! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Ha engedélyezi a második lehetőséget (&ldquo;Akkor is, ha meg lett szakítva a hozzáadás&rdquo;), akkor a .torrent fájl <strong>törölve lesz</strong>, akkor is, ha a &ldquo;<strong>Mégse</strong>&rdquo; gombot nyomja meg a &ldquo;Torrent hozzáadása&rdquo; párbeszédablakon @@ -7519,12 +7477,12 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de ne qBittorrent felület téma fájl kiválasztása - + Choose Alternative UI files location Válasszon helyet az alternatív felhasználóifelület-fájloknak - + Supported parameters (case sensitive): Támogatott paraméterek (kis- és nagybetű különbözik): @@ -7544,183 +7502,183 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de ne Letiltva, mert nem sikerült észlelni a rendszertálca jelenlétét - + No stop condition is set. Nincs stop feltétel beállítva. - + Torrent will stop after metadata is received. Torrent megáll a metaadat fogadása után. - + Torrent will stop after files are initially checked. Torrent meg fog állni a fájlok kezdeti ellenőrzése után. - + This will also download metadata if it wasn't there initially. Ez a metaadatot is le fogja tölteni ha az, kezdéskor nem volt jelen. - + %N: Torrent name %N: Torrent neve - + %L: Category %L: Kategória - + %F: Content path (same as root path for multifile torrent) %F: Tartalom útvonala (többfájlok torrenteknél ugyanaz mint a gyökér útvonal) - + %R: Root path (first torrent subdirectory path) %R: Gyökér útvonal (első torrent alkönyvtár útvonala) - + %D: Save path %D: Mentés útvonala - + %C: Number of files %C: Fájlok száma - + %Z: Torrent size (bytes) %Z: Torrent mérete (bájtok) - + %T: Current tracker %T: Jelenlegi tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tipp: Tegye a paramétereket idézőjelbe, hogy elkerülje a szöveg üres karaktereknél történő kettévágását (például "%N") - + Test email - + Teszt email - + Attempted to send email. Check your inbox to confirm success - + Email küldés megkísérelve. Ellenőrizze a megadott email fiókot a sikeres küldés megerősítéséhez. - + (None) (Nincs) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Egy torrent lassúnak lesz ítélve, ha a le- és feltöltési sebessége ezen értékek alatt marad a "torrent inaktivítási időzítő"-ben meghatározott ideig. - + Certificate Tanúsítvány - + Select certificate Tanúsítvány kiválasztása - + Private key Privát kulcs - + Select private key Privát kulcs kiválasztása - + WebUI configuration failed. Reason: %1 WebUI konfiguráció sikertelen. Ok: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + A Windows sötét módjával való legjobb kompatibilitás érdekében a %1 ajánlott. - + System System default Qt style - + Rendszer - + Let Qt decide the style for this system - + Hagyd, hogy a Qt döntse el a stílust ehhez a rendszerhez. - + Dark Dark color scheme - + Sötét - + Light Light color scheme - + Világos - + System System color scheme - + Rendszer - + Select folder to monitor Válasszon egy megfigyelni kívánt könyvtárat - + Adding entry failed Bejegyzés hozzáadása sikertelen - + The WebUI username must be at least 3 characters long. A WebUI felhasználónévnek legalább 3 karakter hosszúnak kell lennie. - + The WebUI password must be at least 6 characters long. A WebUI jelszónak legalább 6 karakter hosszúnak kell lennie. - + Location Error Hely hiba - - + + Choose export directory Export könyvtár kiválasztása - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Ha ezek a beállítások be vannak kapcsolva, akkor a qBittorrent <strong>törli</strong> a .torrent fájlokat, ha a sikeresen hozzáadta (első lehetőség) vagy nem adta hozzá (második lehetőség) a letöltési sorhoz. Ez <strong>nem csak</strong> a &ldquo;Torrent hozzáadása&rdquo; menüművelettel megnyitott fájlokra érvényes, hanem a <strong>fájltípus társításokon</strong> keresztül megnyitottakra is @@ -7730,69 +7688,69 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de ne qBittorrent felület téma fájl (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Címkék (vesszővel elválasztva) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (vagy '-' ha nem érhető el) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (vagy '-' ha nem érhető el) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent azonosító (vagy sha-1 info hash v1 torrenthez, vagy csonkolt sha-256 info hash v2/hibrid torrenthez) - - + + Choose a save directory Mentési könyvtár választása - + Torrents that have metadata initially will be added as stopped. Az eredetileg metaadatokkal rendelkező torrentek leállítva kerülnek hozzáadásra. - + Choose an IP filter file Válassz egy IP-szűrő fájlt - + All supported filters Minden támogatott szűrő - + The alternative WebUI files location cannot be blank. Az alternatív WebUI-fájlok helye nem lehet üres. - + Parsing error Feldolgozási hiba - + Failed to parse the provided IP filter Megadott IP szűrő feldogozása sikertelen - + Successfully refreshed Sikeresen frissítve - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number IP-szűrő sikeresen feldolgozva: %1 szabály alkalmazva. @@ -7803,18 +7761,18 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de ne Beállítások - + Time Error Idő hiba - + The start time and the end time can't be the same. A kezdés és befejezés ideje nem lehet ugyanaz. - - + + Length Error Hossz hiba @@ -7899,169 +7857,169 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de ne Peer is using NAT hole punching - + A peer NAT hole punching-ot használ PeerListWidget - + Country/Region Ország/Régió - + IP/Address IP/Cím - + Port Port - + Flags Jelzők - + Connection Kapcsolat - + Client i.e.: Client application Kliens - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID Kliens - + Progress i.e: % downloaded Folyamat - + Down Speed i.e: Download speed Letöltési sebesség - + Up Speed i.e: Upload speed Feltöltési sebesség - + Downloaded i.e: total data downloaded Letöltve - + Uploaded i.e: total data uploaded Feltöltve - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevancia - + Files i.e. files that are being downloaded right now Fájlok - + Column visibility Oszlop láthatósága - + Resize columns Oszlopok átméretezése - + Resize all non-hidden columns to the size of their contents Méretezze át az összes nem rejtett oszlopot a tartalmuk méretére - + Add peers... Peerek hozzáadása... - - + + Adding peers Peerek hozzáadása - + Some peers cannot be added. Check the Log for details. Néhány peert nem lehetett hozzáadni. Ellenőrizze a naplót a részletekért. - + Peers are added to this torrent. Peerek hozzáadva ehhez a torrenthez. - - + + Ban peer permanently Peer kitiltása végleg - + Cannot add peers to a private torrent Nem lehet peereket hozzáadni egy privát torrenthez - + Cannot add peers when the torrent is checking A torrent ellenőrzése közben nem lehet peereket hozzáadni - + Cannot add peers when the torrent is queued Nem lehet peereket hozzáadni, ha a torrent sorban áll - + No peer was selected Egyetlen peer sem lett kijelölve - + Are you sure you want to permanently ban the selected peers? Biztos vagy benne, hogy végleg letiltod a kiválasztott peereket? - + Peer "%1" is manually banned Peer "%1" manuálisan tiltva - + N/A N/A - + Copy IP:port IP:port másolása @@ -8342,34 +8300,27 @@ Azok a modulok letiltásra kerültek. PowerManagement - qBittorrent is active - A qBittorrent aktív + A qBittorrent aktív PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Az energiakezelés megfelelő D-Bus interfészt talált. Interfész: %1 + Az energiakezelés megfelelő D-Bus interfészt talált. Interfész: %1 - Power management error. Did not found suitable D-Bus interface. - Energiagazdálkodási hiba. Nem található megfelelő D-Bus interfész. + Energiagazdálkodási hiba. Nem található megfelelő D-Bus interfész. - - - Power management error. Action: %1. Error: %2 - Energiagazdálkodási hiba. Művelet: %1. Hiba: %2 + Energiagazdálkodási hiba. Művelet: %1. Hiba: %2 - Power management unexpected error. State: %1. Error: %2 - Energiagazdálkodási váratlan hiba. Állapot: %1. Hiba: %2 + Energiagazdálkodási váratlan hiba. Állapot: %1. Hiba: %2 @@ -8613,12 +8564,12 @@ Azok a modulok letiltásra kerültek. Ratio / Time Active (in months), indicates how popular the torrent is - + Arány / Aktív idő (hónapokban), jelzi, mennyire népszerű a torrent Popularity: - + Népszerűség: @@ -8653,7 +8604,7 @@ Azok a modulok letiltásra kerültek. Private: - + Privát @@ -8661,153 +8612,124 @@ Azok a modulok letiltásra kerültek. Mentés útvonala: - + Never Soha - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (van %3) - - + + %1 (%2 this session) %1 (%2 ebben a munkamenetben) - - + + N/A N/A - + Yes - Igen + Igen - + No - Nem + Nem - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (seedelve: %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (maximum %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (összesen %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (átlagosan %2) - + Add web seed Add HTTP source - + Web seed hozzáadása - + Add web seed: - + Web seed hozzaádása: - - + + This web seed is already in the list. - + Ez a web seed már a listában van. - New Web seed - Új Web seed - - - Remove Web seed - Web seed eltávolítása - - - Copy Web seed URL - Web seed URL másolása - - - Edit Web seed URL - Web seed URL szerkesztése - - - + Filter files... Fájlok szűrése... - + Add web seed... - + Web seed hozzáadása... - + Remove web seed - + Web seed eltávolítása - + Copy web seed URL - + Web seed URL másolása - + Edit web seed URL... - + Web seed URL szerkesztése... - + Speed graphs are disabled A sebesség grafikonok le vannak tiltva - + You can enable it in Advanced Options A speciális beállításokban engedélyezheted - New URL seed - New HTTP source - Új URL seed - - - New URL seed: - Új URL seed: - - - This URL seed is already in the list. - Ez az URL seed már a listában van. - - - + Web seed editing Web seed szerkesztés - + Web seed URL: Web seed URL: @@ -8815,33 +8737,33 @@ Azok a modulok letiltásra kerültek. RSS::AutoDownloader - - + + Invalid data format. Érvénytelen adatformátum. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Nem sikerült menteni az RSS AutoLetöltő adatait ide: %1. Hiba: %2 - + Invalid data format Érvénytelen adatformátum - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS elem '%1' elfogadásra került '%2' szabály által. Torrent hozzáadásának megkísérlése... - + Failed to read RSS AutoDownloader rules. %1 Nem sikerült betölteni az RSS AutoLetöltő szabályokat. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Nem sikerült betölteni az RSS AutoLetöltő szabályokat. Indok: %1 @@ -8849,22 +8771,22 @@ Azok a modulok letiltásra kerültek. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 A következő helyen lévő RSS csatorna letöltése sikertelen: '%1'. Indok: %2 - + RSS feed at '%1' updated. Added %2 new articles. Az '%1'-en található RSS csatorna frissítve. %2 új elem lett hozzáadva. - + Failed to parse RSS feed at '%1'. Reason: %2 Nem sikerült a következő RSS csatorna olvasása '%1'. Indok: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. '%1' RSS csatorna sikeresen letöltve. Feldolgozás megkezdve. @@ -8913,12 +8835,12 @@ Azok a modulok letiltásra kerültek. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Nem sikerült az RSS folyamat konfiguráció mentése. Fájl: "%1". Hiba: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Nem sikerült menteni az RSS munkamenet fájlt. Fájl: "%1". Hiba: "%2" @@ -8940,76 +8862,121 @@ Azok a modulok letiltásra kerültek. - + Item doesn't exist: %1. Elem nem létezik: %1. - Couldn't move folder into itself. - Nem lehetett áthelyezni a mappát önmagába. + Nem lehetett áthelyezni a mappát önmagába. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Gyökérkönyvtár nem törölhető. - + Failed to read RSS session data. %1 Nem sikerült beolvasni az RSS munkamenet adatokat. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Nem sikerült feldolgozni az RSS munkamenet adatokat. Fájl: "%1". Hiba: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Nem sikerült betölteni az RSS munkamenet adatot. Fájl: "%1". Hiba: "Érvénytelen adat formátum." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Nem sikerült betölteni az RSS csatornát. Csatorna: "%1". Indok: URL szükséges. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Nem sikerült az RSS csatorna betöltése. Forrás: "%1". Indok: UID érvénytelen. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Duplázott RSS csatorna észlelve. UID: "%1". Hiba: Konfiguráció sérültnek tűnik. - + Couldn't load RSS item. Item: "%1". Invalid data format. Nem sikerült az RSS elem betöltése. Elem: "%1". Érvénytelen adat formátum. - + Corrupted RSS list, not loading it. Sérült RSS-lista, nem lesz betöltve. - + Incorrect RSS Item path: %1. Helytelen RSS-elem útvonal: %1. - + RSS item with given path already exists: %1. Már létezik RSS-elem a megadott útvonalon: %1. - + Parent folder doesn't exist: %1. Szülőkönyvtár nem létezik: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + RSS csatorna nem létezik: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + mp + + + + Default + Alapértelmezett + + RSSWidget @@ -9109,78 +9076,77 @@ Azok a modulok letiltásra kerültek. + Feed options... + + + Edit feed URL... - Csatorna URL szerkesztése... + Csatorna URL szerkesztése... - Edit feed URL - Csatorna URL szerkesztése + Csatorna URL szerkesztése - + Please choose a folder name Kérem válasszon egy mappanevet - + Folder name: Mappanév: - + New folder Új mappa - - Please type a RSS feed URL - Kérem írjon be egy RSS csatorna URL-t + Kérem írjon be egy RSS csatorna URL-t - - Feed URL: - Csatorna URL: + Csatorna URL: - + Deletion confirmation Törlés megerősítése - + Are you sure you want to delete the selected RSS feeds? Biztos, hogy törli a kiválasztott RSS-csatornákat? - + Please choose a new name for this RSS feed Válasszon új nevet ehhez az RSS-csatornához - + New feed name: Új csatornanév: - + Rename failed Átnevezés sikertelen - + Date: Dátum: - + Feed: Csatorna: - + Author: Szerző: @@ -9317,10 +9283,6 @@ Azok a modulok letiltásra kerültek. i.e: Number of partial sources Leecherek - - Search engine - Keresőmotor - Filter search results... @@ -9410,17 +9372,17 @@ Azok a modulok letiltásra kerültek. Engine - + Motor Engine URL - + Motor URL Published On - + Közzétéve @@ -9441,104 +9403,104 @@ Azok a modulok letiltásra kerültek. SearchPluginManager - + Unknown search engine plugin file format. Ismeretlen keresőmotor-modul fájlformátum. - + Plugin already at version %1, which is greater than %2 Kiegészítő már %1 verzió, ami nagyobb mint %2 - + A more recent version of this plugin is already installed. Ennek a modulnak már egy frissebb verziója telepítve van. - + Plugin %1 is not supported. %1 kiegészítő nem támogatott. - - + + Plugin is not supported. A kiegészítő nem támogatott. - + Plugin %1 has been successfully updated. %1 kiegészítő sikeresen frissítve. - + All categories Összes kategória - + Movies Filmek - + TV shows TV műsorok - + Music Zenék - + Games Játékok - + Anime Animék - + Software Szoftverek - + Pictures Képek - + Books Könyvek - + Update server is temporarily unavailable. %1 - Frissítési kiszolgáló ideiglenesen nem érhető el. %1 + Frissítési szerver ideiglenesen nem érhető el. %1 - - + + Failed to download the plugin file. %1 Nem sikerült letölteni a kiegészítő fájlt. %1 - + Plugin "%1" is outdated, updating to version %2 Kiegészítő "%1" elvault, frissítés a %2 verzióra - + Incorrect update info received for %1 out of %2 plugins. Érvénytelen frissítési információ érkezett %1 / %2 modulról. - + Search plugin '%1' contains invalid version string ('%2') A '%1' kereső kiegészítő érvénytelen verzió nevet tartalmaz ('%2') @@ -9564,137 +9526,129 @@ Az ablak jobb alsó sarkában található „Modulok keresése…” gomb megnyo Modulok keresése… - + A phrase to search for. Keresendő kifejezés. - + Spaces in a search term may be protected by double quotes. A keresési kifejezésben lévő szóközök idézőjelekkel tarthatóak meg. - + Example: Search phrase example Példa: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: keresés erre: <b>foo bar</b> - + All plugins Minden modul - + Only enabled Csak az engedélyezettek - - + + Invalid data format. - Érvénytelen adatformátum. + Érvénytelen adatformátum. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: keresés erre: <b>foo</b> és <b>bar</b> - + Refresh - + Frissítés - + Close tab Fül bezárása - + Close all tabs Az összes fül bezárása - + Select... Kiválasztás… - - + + Search Engine Keresőmotor - - + + Please install Python to use the Search Engine. Keresőmotor használatához kérem telepítse a Pythont. - + Empty search pattern Üres keresési minta - + Please type a search pattern first Kérem adjon meg egy keresési mintát először - + Stop Leállítás - - Search has finished - A keresés befejeződött - - - Search has failed - A keresés sikertelen - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Nem sikerült betölteni a keresési felület mentett állapotadatait. Fájl: "%1". Hiba: "%2". - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Nem sikerült betölteni a mentett keresési eredményeket. Lap: "%1". Fájl: "%2". Hiba: "%3". - + Failed to save Search UI state. File: "%1". Error: "%2" - + Nem sikerült menteni a keresési felület állapotát. Fájl: "%1". Hiba: "%2". - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Nem sikerült menteni a keresési eredményeket. Lap: "%1". Fájl: "%2". Hiba: "%3". - + Failed to load Search UI history. File: "%1". Error: "%2" - + Nem sikerült betölteni a keresési felület előzményeit. Fájl: "%1". Hiba: "%2". - + Failed to save search history. File: "%1". Error: "%2" - + Nem sikerült menteni a keresési előzményeket. Fájl: "%1". Hiba: "%2". @@ -10090,67 +10044,77 @@ Az ablak jobb alsó sarkában található „Modulok keresése…” gomb megnyo StatusBar - + Connection status: Kapcsolat állapota: - - + + No direct connections. This may indicate network configuration problems. Nincsenek közvetlen kapcsolatok. Ez hálózat beállítási hibákra is utalhat. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Külső IP: N/A + + + + DHT: %1 nodes DHT: %1 csomópont - + qBittorrent needs to be restarted! qBittorrentet újra kell indítani! - - + + Connection Status: A kapcsolat állapota: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. Ez általában azt jelenti, hogy a qBittorrent nem tudja használni a bejövő kapcsolatokhoz a megadott portot. - + Online Online - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Külső IP-k: %1, %2 + + + + External IP: %1%2 + Külső IP: %1%2 + + + Click to switch to alternative speed limits Alternatív sebességkorlát bekapcsolásához kattintson ide - + Click to switch to regular speed limits Általános sebességkorlát bekapcsolásához kattintson ide @@ -10178,23 +10142,15 @@ Az ablak jobb alsó sarkában található „Modulok keresése…” gomb megnyo Completed (0) Kész (0) - - Resumed (0) - Folytatott (0) - - - Paused (0) - Szüneteltetett (0) - Running (0) - + Folyamatban (0) Stopped (0) - + Megállítva (0) @@ -10259,49 +10215,33 @@ Az ablak jobb alsó sarkában található „Modulok keresése…” gomb megnyo Running (%1) - + Folyamatban (%1) Stopped (%1) - + Megállítva (%1) Start torrents - + Torrentek indítása Stop torrents - - - - Paused (%1) - Szüneteltetett (%1) + Torrentek leállítása Moving (%1) Áthelyezés (%1) - - Resume torrents - Torrentek folytatása - - - Pause torrents - Torrentek szüneteltetése - Remove torrents Torrentek eltávolítása - - Resumed (%1) - Folytatott (%1) - Active (%1) @@ -10373,32 +10313,20 @@ Az ablak jobb alsó sarkában található „Modulok keresése…” gomb megnyo Remove unused tags Nem használt címkék eltávolítása - - Resume torrents - Torrentek folytatása - - - Pause torrents - Torrentek szüneteltetése - Remove torrents Torrentek eltávolítása - - New Tag - Új címke - Start torrents - + Torrentek indítása Stop torrents - + Torrentek leállítása @@ -10408,7 +10336,7 @@ Az ablak jobb alsó sarkában található „Modulok keresése…” gomb megnyo Add tag - + Címke hozzáadása @@ -10725,17 +10653,17 @@ Válasszon egy másik nevet és próbálja újra. TorrentCreatorController - + Too many active tasks Túl sok aktív feladat - + Torrent creation is still unfinished. A torrent létrehozása még mindig nem fejeződött be. - + Torrent creation failed. Torrent létrehozása meghiúsult. @@ -10987,17 +10915,6 @@ Válasszon egy másik nevet és próbálja újra. Mappa figyelése: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Nem sikerült memóriát lefoglalni a fájl olvasásakor. Fájl: "%1". Hiba: "%2" - - - Invalid metadata - Érvénytelen metaadat - - TorrentOptionsDialog @@ -11033,11 +10950,7 @@ Válasszon egy másik nevet és próbálja újra. Torrent Share Limits - - - - Torrent speed limits - Torrent sebességkorlátok + Torrent Megosztási Korlátok @@ -11053,7 +10966,7 @@ Válasszon egy másik nevet és próbálja újra. Torrent Speed Limits - + Torrent Sebesség Korlátok @@ -11071,34 +10984,6 @@ Válasszon egy másik nevet és próbálja újra. Upload: Feltöltés: - - Torrent share limits - Torrent megosztási korlát - - - Use global share limit - Globális megosztási korlát használata - - - Set no share limit - Ne állítson be megosztási korlátot - - - Set share limit to - Megosztási korlát beállítása - - - ratio - arány - - - total minutes - összes perc - - - inactive minutes - inaktív perc - Disable DHT for this torrent @@ -11140,14 +11025,6 @@ Válasszon egy másik nevet és próbálja újra. Not applicable to private torrents Nem alkalmazható privát torrentekre - - No share limit method selected - Nincs megosztási korlátozó módszer kiválasztva - - - Please select a limit method first - Először válasszon korlátozási módszert - TorrentShareLimitsWidget @@ -11197,27 +11074,27 @@ Válasszon egy másik nevet és próbálja újra. Action when the limit is reached: - + Művelet ha a korlát elérésre kerül: Stop torrent - + Torrent leállítása Remove torrent - Torrent eltávolítása + Torrent eltávolítása Remove torrent and its content - + Torrent és tartalmának eltávolítása Enable super seeding for torrent - Super seed engedélyezése a torrentnél + Super seed engedélyezése a torrentnél @@ -11232,14 +11109,10 @@ Válasszon egy másik nevet és próbálja újra. Torrent Tags Torrent címkék - - New Tag - Új címke - Add tag - + Címke hozzáadása @@ -11270,90 +11143,90 @@ Válasszon egy másik nevet és próbálja újra. TorrentsController - + Error: '%1' is not a valid torrent file. Hiba: '%1' nem érvényes torrent fájl. - + Priority must be an integer Prioritásnak egész számnak kell lennie - + Priority is not valid Prioritás nem érvényes - + Torrent's metadata has not yet downloaded Torrent metaadat még nem lett letöltve - + File IDs must be integers Fájlazonosítóknak egész számoknak kell lenniük - + File ID is not valid Fájlazonosító nem érvényes - - - - + + + + Torrent queueing must be enabled Torrentek ütemezését be kell kapcsolni - - + + Save path cannot be empty Mentési útvonal nem lehet üres - - + + Cannot create target directory Nem lehet célkönyvtárat létrehozni - - + + Category cannot be empty Kategória nem lehet üres - + Unable to create category Kategória nem hozható létre - + Unable to edit category Nem sikerült szerkeszteni a kategóriát - + Unable to export torrent file. Error: %1 Torrent fájl exportálása sikertelen. Hiba: %1 - + Cannot make save path Nem hozható létre a mentési útvonal "%1" is not a valid URL - + "%1" nem hiteles URL URL scheme must be one of [%1] - + URL séma a következők egyike kell, hogy legyen: [%1] @@ -11361,39 +11234,39 @@ Válasszon egy másik nevet és próbálja újra. 'sort' paraméter érvénytelen - + "%1" is not an existing URL - + "%1" nem létező URL - + "%1" is not a valid file index. "%1" nem hiteles fájl index. - + Index %1 is out of bounds. Index %1 határokon kívül esik. - - + + Cannot write to directory Nem lehet írni a könyvtárba - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI készlet helye: '%1' áthelyezése innen: '%2', ide: '%3' - + Incorrect torrent name Érvénytelen torrentnév - - + + Incorrect category name Érvénytelen kategórianév @@ -11476,45 +11349,33 @@ Válasszon egy másik nevet és próbálja újra. Invalid state! - + Érvénytelen állapot! URL/Announce Endpoint - + URL/Bejelentés végpont BT Protocol - + BT Protokoll Next Announce - + Következő Bejelentés Min Announce - - - - Invalid status! - Érvénytelen állapot! - - - URL/Announce endpoint - URL/Bejelentés végpont + Min Bejelentés Tier Szint - - Protocol - Protokoll - Status @@ -11545,18 +11406,6 @@ Válasszon egy másik nevet és próbálja újra. Message Üzenet - - Next announce - Következő bejelentés - - - Min announce - Min bejelentés - - - v%1 - v%1 - TrackerListWidget @@ -11566,73 +11415,73 @@ Válasszon egy másik nevet és próbálja újra. Ez egy privát torrent - + Tracker editing Tracker szerkesztés - + Tracker URL: Tracker URL: - - + + Tracker editing failed Tracker szerkesztése sikertelen - + The tracker URL entered is invalid. Érvénytelen a beírt tracker URL. - + The tracker URL already exists. Ez a tracker URL már létezik. - + Edit tracker URL... Tracker URL szerkesztése... - + Remove tracker Tracker eltávolítása - + Copy tracker URL Tracker URL másolása - + Force reannounce to selected trackers Kényszerített újrajelentés a kijelölt trackerek felé - + Force reannounce to all trackers Kényszerített újrajelentés minden tracker felé - + Resize columns Oszlopok átméretezése - + Resize all non-hidden columns to the size of their contents Méretezze át az összes nem rejtett oszlopot a tartalmuk méretére - + Add trackers... Trackerek hozzáadása... - + Column visibility Oszlop láthatósága @@ -11715,20 +11564,12 @@ Válasszon egy másik nevet és próbálja újra. Start torrents - + Torrentek indítása Stop torrents - - - - Resume torrents - Torrentek folytatása - - - Pause torrents - Torrentek szüneteltetése + Torrentek leállítása @@ -11852,10 +11693,6 @@ Válasszon egy másik nevet és próbálja újra. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Folytatáshoz szükséges adat ellenőrzése - - Paused - Szüneteltetve - Completed @@ -11896,21 +11733,16 @@ Válasszon egy másik nevet és próbálja újra. % Done Folyamat - - Status - Torrent status (e.g. downloading, seeding, paused) - Állapot - Stopped - + Megállítva Status Torrent status (e.g. downloading, seeding, stopped) - Állapot + Állapot @@ -11945,7 +11777,7 @@ Válasszon egy másik nevet és próbálja újra. Popularity - + Népszerűség @@ -12026,22 +11858,17 @@ Válasszon egy másik nevet és próbálja újra. Time Active Time (duration) the torrent is active (not stopped) - Aktív idő + Aktív idő Yes - Igen + Igen No - Nem - - - Time Active - Time (duration) the torrent is active (not paused) - Aktív idő + Nem @@ -12113,12 +11940,12 @@ Válasszon egy másik nevet és próbálja újra. Private Flags private torrents - + Privát Ratio / Time Active (in months), indicates how popular the torrent is - + Arány / Aktív idő (hónapokban), jelzi, mennyire népszerű a torrent @@ -12143,358 +11970,319 @@ Válasszon egy másik nevet és próbálja újra. TransferListWidget - + Column visibility Oszlop beállítások - + Recheck confirmation Újraellenőrzés megerősítése - + Are you sure you want to recheck the selected torrent(s)? Biztos benne, hogy újraellenőrzi a kiválasztott torrenteket? - + Rename Átnevezés - + New name: Új név: - + Choose save path Válasszon mentési útvonalat - Confirm pause - Szüneteltetés megerősítése - - - Would you like to pause all torrents? - Szünetelteti az összes torrentet? - - - Confirm resume - Folytatás megerősítése - - - Would you like to resume all torrents? - Folytatja az összes torrentet? - - - + Unable to preview Előnézet nem lehetséges - + The selected torrent "%1" does not contain previewable files A kijelölt torrent "%1" nem tartalmaz előnézhető fájlokat - + Resize columns Oszlopok átméretezése - + Resize all non-hidden columns to the size of their contents Méretezze át az összes nem rejtett oszlopot a tartalmuk méretére - + Enable automatic torrent management Automatikus torrentkezelés engedélyezése - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Biztos benne, hogy engedélyezi az automatikus torrentkezelést a kiválasztott torrent(ek) számára? Lehetséges, hogy át lesznek helyezve. - Add Tags - Címkék hozzáadása - - - + Choose folder to save exported .torrent files Válasszon mappát az exportált .torrent fájlok mentéséhez - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" A .torrent fájl exportálása sikertelen. Torrent: "%1". Útvonal mentése: "%2". Indok: "%3" - + A file with the same name already exists Ugyanilyen nevű fájl már létezik - + Export .torrent file error .torrent fájl exportálás hiba - + Remove All Tags Összes címke eltávolítása - + Remove all tags from selected torrents? Eltávolítja az összes címkét a kiválasztott torrentekről? - + Comma-separated tags: Vesszővel elválasztott címkék: - + Invalid tag Érvénytelen címke - + Tag name: '%1' is invalid Címkenév: '%1' érvénytelen - &Resume - Resume/start the torrent - &Folytatás - - - &Pause - Pause the torrent - &Szünet - - - Force Resu&me - Force Resume/start the torrent - Folytatás &kényszerítése - - - + Pre&view file... Fájl elő&nézete... - + Torrent &options... Torrent &beállításai… - + Open destination &folder &Célkönyvtár megnyitása - + Move &up i.e. move up in the queue Feljebb m&ozgat - + Move &down i.e. Move down in the queue Lejjebb mo&zgat - + Move to &top i.e. Move to top of the queue Leg&felülre mozgat - + Move to &bottom i.e. Move to bottom of the queue Le&galulra mozgat - + Set loc&ation... Hely &megadása... - + Force rec&heck Kényszerített újra&ellenőrzés - + Force r&eannounce Kényszerített új&rajelentés - + &Magnet link M&agnet link - + Torrent &ID Torrent &azonosító - + &Comment &Megjegyzés - + &Name &Név - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Át&nevezés... - + Edit trac&kers... Trackerek szer&kesztése... - + E&xport .torrent... Torrent e&xportálása... - + Categor&y Kategó&ria - + &New... New category... Ú&j… - + &Reset Reset category &Visszaállítás - + Ta&gs Cím&kék - + &Add... Add / assign multiple tags... &Hozzáadás… - + &Remove All Remove all tags Ö&sszes eltávolítása - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Kényszerített újrajelentés nem lehetséges ha a torrent állapota Leállított/Sorban áll/Hibás/Ellenőrzés alatt - + &Queue &Sor - + &Copy &Másolás - + Exported torrent is not necessarily the same as the imported Az exportált torrent nem feltétlenül ugyanaz, mint az importált - + Download in sequential order Letöltés egymás utáni sorrendben - + Add tags - + Címkék hozzáadása - + Errors occurred when exporting .torrent files. Check execution log for details. Hibák történtek a .torrent fájlok exportálásakor. A részletekért ellenőrizze a végrehajtási naplót. - + &Start Resume/start the torrent - + &Start - + Sto&p Stop the torrent - + Leál&lítás - + Force Star&t Force Resume/start the torrent - + Kényszerített s&tart - + &Remove Remove the torrent &Eltávolítás - + Download first and last pieces first Első és utolsó szelet letöltése először - + Automatic Torrent Management Automatikus torrentkezelés - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Az automatikus mód azt jelenti, hogy a különböző torrenttulajdonságok (például a mentési útvonal) a hozzátartozó kategória alapján kerülnek eldöntésre - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Kényszerített újrajelentés nem lehetséges ha a torrent állapota Szüneteltetett/Elakadt/Hibás/Ellenőrzés - - - + Super seeding mode Szuper seed üzemmód @@ -12570,7 +12358,7 @@ Válasszon egy másik nevet és próbálja újra. Set app style failed. Unknown style: "%1" - + App stílusának beállítása nem sikerült. Ismeretlen stílus: "%1". @@ -12626,32 +12414,32 @@ Válasszon egy másik nevet és próbálja újra. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Python megtalálva. Név: "%1”. Verzió: "%2” - + Failed to find Python executable. Path: "%1". Nem sikerült megtalálni a Python-t. Elérési út: "%1”. - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Nem sikerült megtalálni a `python3` alkalmazást a PATH környezeti változóban. PATH: "%1” - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Nem sikerült megtalálni a `python` alkalmazást a PATH környezeti változóban. PATH: "%1” - + Failed to find `python` executable in Windows Registry. Nem sikerült megtalálni a `python` alkalmazást a Windows rendszerleíró adatbázisban. - + Failed to find Python executable Nem sikerült megtalálni a Python alkalmazást @@ -12743,52 +12531,52 @@ Válasszon egy másik nevet és próbálja újra. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Elfogadhatatlan folyamat-süti név lett megadva: '%1'. Az alapértelmezett lesz használva. - + Unacceptable file type, only regular file is allowed. Nem elfogadható fájltípus, csak általános fájl engedélyezett. - + Symlinks inside alternative UI folder are forbidden. Szimbolikus linkek tiltottak az alternatív UI mappában. - + Using built-in WebUI. Beépített WebUI használata. - + Using custom WebUI. Location: "%1". Egyedi WebUI használata. Elérési út: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. A WebUI fordítása a kiválasztott nyelvhez (%1) sikeresen betöltődött. - + Couldn't load WebUI translation for selected locale (%1). Nem sikerült betölteni a WebUI fordítást a kiválasztott nyelvhez (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Hiányzó ':' elválasztó a WebUI egyéni HTTP fejlécben: "%1" - + Web server error. %1 Web szerver hiba. %1 - + Web server error. Unknown error. Webszerver hiba. Ismeretlen hiba. @@ -12846,7 +12634,7 @@ Válasszon egy másik nevet és próbálja újra. Unknown error - Ismeretlen hiba + Ismeretlen hiba diff --git a/src/lang/qbittorrent_hy.ts b/src/lang/qbittorrent_hy.ts index 690fb5d19..9afdc13e4 100644 --- a/src/lang/qbittorrent_hy.ts +++ b/src/lang/qbittorrent_hy.ts @@ -170,10 +170,6 @@ Never show again Այլևս չցուցադրել - - Torrent settings - Torrent-ի կարգավորումներ - Set as default category @@ -235,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked Ստուգված ֆայլեր @@ -368,112 +364,112 @@ Պահել որպես .torrent նիշք... - + I/O Error Ն/Ա սխալ - + Not Available This comment is unavailable Հասանելի չէ - + Not Available This date is unavailable Հասանելի չէ - + Not available Հասանելի չէ - + Magnet link Magnet հղում - + Retrieving metadata... Առբերել մետատվյալները... - - + + Choose save path Ընտրեք պահելու ուղին - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A - + %1 (Free space on disk: %2) %1 (ազատ տարածք սկավառակի վրա՝ %2) - + Not available This size is unavailable. Հասանելի չէ - + Torrent file (*%1) Torrent ֆայլ (*%1) - + Save as torrent file Պահել որպես torrent նիշք - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... Զտել նիշքերը... - + Parsing metadata... Մետատվյալների վերլուծում... - + Metadata retrieval complete Մետատվյալների առբերումը ավարտվեց @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Ներբեռնվում է torrent-ը... Աղբյուր՝ «%1» - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB ՄԲ - + Recheck torrents on completion Ավարտելուց հետո վերստուգել torrent-ները - - + + ms milliseconds մվ - + Setting Կարգավորում - + Value Value set for this setting Արժեք - + (disabled) (կասեցված) - + (auto) (ինքնաշխատ) - - + + min minutes Նվազ. - + All addresses Բոլոր հասցեները - + qBittorrent Section qBittorrent-ի հատված - - + + Open documentation Բացել գործառույթների նկարագությունը - + All IPv4 addresses Բոլոր IPv4 հասցեները - + All IPv6 addresses Բոլոր IPv6 հասցեները - + libtorrent Section libtorrent-ի հատված - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Միջին - + Below normal Միջինից ցածր - + Medium Միջին - + Low Ցածր - + Very low Շատ ցածր - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache Սկավառակի շտեմ - - - - + + + + + s seconds վ - + Disk cache expiry interval - + Disk queue size - - + + Enable OS cache Միացնել ԳՀ-ի շտեմը - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] Ելքային մատույցներ (նվազ.-ը) [0՝ կարողազրկված] - + Outgoing ports (Max) [0: disabled] Ելքային մատույցներ (առավել.-ը) [0՝ կարողազրկված] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB ԿԲ - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Լռելայն - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP Նախընտրել TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates Վավերացնել HTTPS գրանցորդի վկայագրերը - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Որոշել ցանցորդի հյուընկալի անունները - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - վ + վ - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Ցուցադրել ծանուցումները - + Display notifications for added torrents Ցուցադրել ծանուցումները ավելացված torrent-ների համար - + Download tracker's favicon - + Save path history length - + Enable speed graphs - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload - + Anti-leech Հակաքաշողներ - + Upload choking algorithm - + Confirm torrent recheck Հաստատել torrent-ի վերստուգումը - + Confirm removal of all tags Հաստատել բոլոր պիտակների հեռացումը - + Always announce to all trackers in a tier Միշտ ազդարարել բոլոր մակարդակների գրանցորդներին - + Always announce to all tiers Միշտ ազդարարել բոլոր գրանցորդներին - + Any interface i.e. Any network interface Ցանկացած միջներես - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries - + Network interface Ցանցային միջերես - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker Միացնել ուղղորդիչի արգելումը - + Embedded tracker port Արգելված ուղղորդիչի դարպասը @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 Torrent-ի անվանում՝ %1 - + Torrent size: %1 Torrent-ի չափը՝ %1 - + Save path: %1 Պահելու ուղին՝ %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent-ը բեռնվել է %1ում։ - - + + Thank you for using qBittorrent. Շնորհակալություն qBittorrent-ը օգտագործելու համար։ - + Torrent: %1, sending mail notification - + Add torrent failed Torrent-ի ավելացումը ձախողվեց - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit Դուր&ս գալ - + I/O Error i.e: Input/Output Error Ն/Ա սխալ - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1525,110 +1532,110 @@ - + Torrent added Torrent-ը ավելացվեց - + '%1' was added. e.g: xxx.avi was added. '%1'-ը ավելացվեց: - + Download completed Ներբեռնման ավարտ - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. «%1»-ի ներբեռնումն ավարտեց: - + Information Տեղեկություններ - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit Ելք - + Recursive download confirmation Ռեկուրսիվ ներբեռնման հաստատում - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Երբեք - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Պահվում է torrent-ի ընթացքը... - + qBittorrent is now ready to exit @@ -1764,263 +1771,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Արտահանել... - + Matches articles based on episode filter. - + Example: Օրինակ՝ - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match - + Episode filter rules: - + Season number is a mandatory non-zero value - + Filter must end with semicolon Զտիչը պետք է ավարտվի կետ-ստորակետով - + Three range types for episodes are supported: - + Single number: <b>1x25;</b> matches episode 25 of season one - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value - + Rules Կանոններ - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago - + Last Match: Unknown - + New rule name Նոր կանոնի անունը - + Please type the name of the new download rule. Նշեք բեռնման կանոնի անունը։ - - + + Rule name conflict Այս անունը արդեն առկա է։ - - + + A rule with this name already exists, please choose another name. Այս անունով կանոն արդեն առկա է, ընտրեք այլ անուն։ - + Are you sure you want to remove the download rule named '%1'? Վստա՞հ եք, որ ուզում եք հեռացնել ներբեռնման այս կանոնը՝ '%1': - + Are you sure you want to remove the selected download rules? Վստա՞հ եք, որ ուզում եք հեռացնել ներբեռնման ընտրված կանոնները: - + Rule deletion confirmation Հաստատեք ջնջումը - + Invalid action Անվավեր գործողություն - + The list is empty, there is nothing to export. Ցանկը դատարկ է, ոչինչ չկա արտածելու համար։ - + Export RSS rules - + I/O Error Ն/Ա սխալ - + Failed to create the destination file. Reason: %1 - + Import RSS rules - + Failed to import the selected rules file. Reason: %1 - + Add new rule... Ավելացնել նոր կանոն... - + Delete rule Ջնջել կանոնը - + Rename rule... Անվանափոխել կանոնը... - + Delete selected rules Ջնջել ընտրված կանոնները - + Clear downloaded episodes... - + Rule renaming Կանոնի անվանափոխում - + Please type the new rule name Մուտքագրեք նոր կանոնի անվանումը - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 Դիրք %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2072,28 +2079,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2104,16 +2121,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2121,38 +2139,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2160,22 +2200,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2183,514 +2223,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON ՄԻԱՑ. - - - - - - - - - + + + + + + + + + OFF ԱՆՋԱՏ. - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED ՍՏԻՊՈՂԱԲԱՐ - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". Torrent՝ «%1»: - Removed torrent. - Հեռացվեց torrent-ը: - - - Removed torrent and deleted its content. - Հեռացվեց torrent-ը և ջնջվեց դրա բովանդակությունը: - - - Torrent paused. - Կանգնեցվեց torrent-ը: - - - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Կանգնեցվեց torrent-ը: Torrent՝ «%1» - - - + Torrent resumed. Torrent: "%1" Շարունակեցվեց torrent-ը: Torrent՝ «%1» - + Torrent download finished. Torrent: "%1" Ներբեռնումը torrent-ի ավարտվեց: Torrent՝ «%1» - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP զտիչ - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1-ը կասեցված է - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1-ը կասեցված է - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2740,47 +2769,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On Միաց. - + Off Անջտ. - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3043,14 +3072,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Շարունակել torrent-ները - - - Pause torrents - Դադարեցնել torrent-ները - Remove torrents @@ -3380,22 +3401,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" Ներբեռնվում է torrent-ը... Աղբյուր՝ «%1» - + Torrent is already present Torrent-ը արդեն առկա է - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3513,6 +3534,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3654,10 +3709,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Ընտրանքներ... - - &Resume - &Շարունակել - &Remove @@ -3739,10 +3790,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Բացել պատուհանը - - R&esume All - Շ&արունակել բոլորը - Manage Cookies... @@ -3858,10 +3905,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Նիրհել համակարգը - - S&hutdown System - Ան&ջատել համակարգիչը - &Statistics @@ -3882,14 +3925,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &Ծրագրի մասին - - &Pause - &Դադարեցնել - - - P&ause All - Դա&դարեցնել բոլորը - &Add Torrent File... @@ -3923,12 +3958,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Ցուցադրել - + Check for program updates Ստուգել արդիացումների առկայությունը @@ -3943,385 +3978,379 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Եթե qBittorrent-ը Ձեզ դուր եկավ, խնդրում ենք նվիրաբերություն կատարել։ - + Execution Log Գրանցամատյան - + Clear the password Մաքրել գաղտնաբառը - + &Set Password &Կայել գաղտնաբառը - + Preferences Նախընտրություններ - + &Clear Password &Մաքրել գաղտնաբառը - + Transfers Փոխանցումներ - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only Միայն պատկերակները - + Text Only Միայն տեքստը - + Text Alongside Icons Գրվածք պատկերակի կողքը - + Text Under Icons Գրվածք պատկերակի ներքևում - + Follow System Style Հետևել համակարգի ոճին - - + + UI lock password Ծրագրի կողփման գաղտնաբառը - - + + Please type the UI lock password: Մուտքագրեք ծրագրի կողփման գաղտնաբառը՝ - + Are you sure you want to clear the password? Վստա՞հ եք, որ ուզում եք մաքրել գաղտնաբառը՝ - + Use regular expressions Օգտ. կանոնավոր սահ-ներ - - + + Search Engine - Որոնիչ + Որոնիչ - + Search has failed - Որոնումը ձախողվել է + Որոնումը ձախողվել է - + Search has finished - Որոնումը ավարտվել է + Որոնումը ավարտվել է - + Search Որոնել - + Transfers (%1) Փոխանցումներ (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent-ը թարմացվել է։ Վերամեկնարկեք՝ փոփոխությունները կիրառելու համար։ - + qBittorrent is closed to tray qBittorrent-ը փակվեց դարակի մեջ - + Some files are currently transferring. Որոշ նիշքեր դեռ փոխանցվում են: - + Are you sure you want to quit qBittorrent? Վստա՞հ եք, որ ուզում եք փակել qBittorrent-ը: - + &No &Ոչ - + &Yes &Այո - + &Always Yes &Միշտ այո - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime - + qBittorrent Update Available Հասանելի է qBittorrent-ի արդիացում - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime - + A new version is available. Հասանելի է նոր տարբերակ: - + Do you want to download %1? - + Open changelog... Բացել փոփոխությունների մատյանը... - + No updates available. You are already using the latest version. Արդիացումներ հասանելի չեն: Դուք արդեն օգտագործում եք վերջին տարբերակը: - + &Check for Updates &Ստուգել արդիացումների առկայությունը - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Դադարեցված է + Դադարի մեջ է - + Checking for Updates... Ստուգել արդիացումների առկայությունը... - + Already checking for program updates in the background - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Ներբեռնման սխալ - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python-ի տեղակայիչը չի կարող բեռնվել, պատճառը՝ %1։ -Տեղակայեք այն ձեռադիր։ - - - - + + Invalid password Անվավեր գաղտնաբառ - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid Գաղտնաբառը անվավեր է - + DL speed: %1 e.g: Download speed: 10 KiB/s Ներբեռնում՝ %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Վերբեռնում՝ %1 - + Hide Թաքցնել - + Exiting qBittorrent qBittorrent ծրագիրը փակվում է - + Open Torrent Files Բացել torrent ֆայլերը - + Torrent Files Torrent ֆայլեր @@ -5816,47 +5845,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5898,10 +5927,6 @@ Please install it manually. RSS RSS - - Web UI - Վեբ միջերես - Advanced @@ -5938,10 +5963,6 @@ Please install it manually. Always Միշտ - - Paused torrents only - Միայն դադարեցված torrent-ները - Action on double-click @@ -5952,10 +5973,6 @@ Please install it manually. Downloading torrents: Ներբեռնվող torrent-ներ՝ - - Start / Stop Torrent - Մեկնարկել/կանգնեցնել torrent-ները - @@ -6014,396 +6031,402 @@ Please install it manually. ԿԲ - + + Show free disk space in status bar + + + + Torrent content layout: - + Original Բնօրինակ - + Create subfolder Ստեղծել ենթապանակ - + Don't create subfolder Չստեղծել ենթապանակ - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Ավելացնել... - + Options.. - + Remove - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time Որտեղից՝ - + To: To end time Որտեղ՝ - + Find peers on the DHT network Փնտրել ցանցորդներ DHT ցանցում - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption Թույլատրել գաղտնագրումը - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader RSS ընթերցիչ - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: Յուրաքանչյուր ալիքի համար հոդվածների առավ. ք-ը. - - - + + + min minutes Նվազ. - + Seeding Limits Բաժանման սահմանաչափ - Pause torrent - Դադարեցնել torrent-ը - - - + Remove torrent Հեռացնել torrent-ը - + Remove torrent and its files Հեռացնել torrent-ը և իր ֆայլերը - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL՝ + URL՝ - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... Խմբագրել ինքնաներբեռնման կանոնները... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: Զտիչներ՝ - + Web User Interface (Remote control) - + IP address: IP հասցե՝ - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Երբեք - + ban for: - + Session timeout: - + Disabled Կասեցված է - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6412,37 +6435,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6454,7 +6477,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Որոնել + Որոնել @@ -6555,99 +6578,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Ջնջել պահուստային գրանցամատյանը, որը ավելի հին է քան՝ - + Show external IP in status bar - + When adding a torrent Torrent ավելացնելիս - + Bring torrent dialog to the front Երկխոսությունը պահել առջևում - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! Զգուշացո՛ւմ: Հնարավոր է տվյալների կորուստ: - + Saving Management Պահելու կառավարում - + Default Torrent Management Mode: - + Manual Ձեռքով - + Automatic Ինքնաբերաբար - + When Torrent Category changed: - + Relocate torrent Վերատեղորոշել torrent-ը - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories Օգտագործել ենթաանվանակարգեր - + Default Save Path: Պահելու սկզբնադիր ուղին՝ - + Copy .torrent files to: Պատճենել .torrent ֆայլերը դեպի՝ @@ -6657,26 +6680,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Ցուցա&դրել qBittorrent-ը ծանուցման տարածքում - &Log file - &Մատյանի ֆայլ - - - + Display &torrent content and some options Ցու&ցադրել torrent-ի պարունակությունը ու որոշ ընտրանքներ - + De&lete .torrent files afterwards Հետագայում ջնջ&ել .torrent ֆայլերը - + Copy .torrent files for finished downloads to: Պատճենել ավարտված ներբեռնումների .torrent ֆայլերը դեպի՝ - + Pre-allocate disk space for all files Նախապես սկավառակային տարածք հատկացնել բոլոր ֆայլերի համար @@ -6771,64 +6790,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.տարի - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state Միանգամից չսկսել բեռնումները - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Կցել .!qB ընդլայոնւմը անավարտ ֆայլերի համար - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6848,50 +6867,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked Ստուգված ֆայլեր - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: Ինքնաշխատորեն ավելացնել torrent-ները այստեղից՝ - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6908,511 +6927,506 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Ստացող - + To: To receiver Որտեղ՝ - + SMTP server: SMTP սպասարկիչ. - + Sender Ուղարկող - + From: From sender Որտեղից՝ - + This server requires a secure connection (SSL) Սպասարկիչը պահանջում է անվտանգ միացում (SSL) - - + + Authentication Նույնականացում - - - - + + + + Username: Մուտքանուն՝ - - - - + + + + Password: Գաղտնաբառ՝ - + Run external program Աշխատացնել արտաքին ծրագիր - + Show console window - + TCP and μTP TCP և μTP - + Listening Port Լսվում է մատույցը - + Port used for incoming connections: Մուտքային կապի մատույցը. - + Set to 0 to let your system pick an unused port - + Random Պատահական - + Use UPnP / NAT-PMP port forwarding from my router Օգտագործել UPnP / NAT-PMP դարպասի փոխանցում ռոութերից - + Connections Limits Միացումների սահ-ում - + Maximum number of connections per torrent: Կապուղիների առավ. քանակը torrent-ի համար. - + Global maximum number of connections: Կապուղիների առավ. քանակը - + Maximum number of upload slots per torrent: Փոխանցումների սլոթների առավ. քանակը torrent-ի համար. - + Global maximum number of upload slots: - + Proxy Server Միջնորդը - + Type: Տեսակ՝ - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Հյուրընկալ՝ - - - + + + Port: Մատույց՝ - + Otherwise, the proxy server is only used for tracker connections Այնուհանդերձ միջնորդը օգտ. է միայն ուղղորդիչներին միանալու համար - + Use proxy for peer connections Օգտվել փոխանորդից՝ ցանցորդային միացումների համար - + A&uthentication &Իսկորոշում - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): Ֆիլտրերի ճանապարհը (.dat, .p2p, .p2b). - + Reload the filter Վերաբեռնել զտիչը - + Manually banned IP addresses... Ձեռքով արգելափակված IP հասցեներ... - + Apply to trackers Գործադրել գրանցորդների նկատմամբ - + Global Rate Limits Սահմանափակումները - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s ԿԲ/վ - - + + Upload: Վերբեռ.՝ - - + + Download: Ներբեռ.՝ - + Alternative Rate Limits - + Start time Մեկնարկի ժամը - + End time Ավարտիի ժամը - + When: Երբ՝ - + Every day Ամեն օր - + Weekdays Աշխատանքային օրեր - + Weekends Հանգստյան օրեր - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead Կիրառել սահ-փակում գերազանցելու դեպքում - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy Գաղտնիություն - + Enable DHT (decentralized network) to find more peers Կարողացնել DHT-ն (ապակենտրոն ցանց)՝ ավելի շատ ցանցորդներ գտնելու համար - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Փոխանակել ցանցորդներով՝ համատեղելի Bittorrent կլիենտների միջև (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Կարողացնել ցանցորդների փոխանակումը (PeX)՝ ավելի շատ ցանցորդներ գտնելու համար - + Look for peers on your local network Փնտրել ցանորդներին Ձեր տեղական ցանցում - + Enable Local Peer Discovery to find more peers Կարողացնել տեղական ցանցորդների բացահայտումը՝ ավելի շատ ցանցորդներ գտնելու համար - + Encryption mode: Գաղտնագրման գործելաձև՝ - + Require encryption Պահանջել գաղտնագրում - + Disable encryption Անջատել գաղտնագրումը - + Enable when using a proxy or a VPN connection - + Enable anonymous mode Միացնել անանուն եղանակը - + Maximum active downloads: Առավելագ. ակտիվ բեռնումներ. - + Maximum active uploads: Առավելագ. ակտիվ փոխանցումներ. - + Maximum active torrents: Առավելագ. ակտիվ torrent-ներ. - + Do not count slow torrents in these limits Չհաշվել դանդաղ torrent-ները այս սահ-մբ - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds վ - + Torrent inactivity timer: - + then ապա - + Use UPnP / NAT-PMP to forward the port from my router Օգտ. UPnP / NAT-PMP՝ ռոութերից փոխանցելու համար - + Certificate: Վկայագիր՝ - + Key: Բանալի՝ - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Տեղեկություններ վկայագրերի մասին</a> - + Change current password Փոխել ընթացիկ գաղտնաբառը - + Files location: Ֆայլերի վայր՝՝ - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Անվտանգություն - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Սպասարկիչը. - + Register Գրանցվել - + Domain name: Տիրույթի անվանում՝ - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7422,12 +7436,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7447,183 +7461,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name - + %L: Category - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path - + %C: Number of files %C՝ Ֆայլերի քանակը - + %Z: Torrent size (bytes) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (չկա) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate Վկայագիր - + Select certificate Ընտրել վկայագիր - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Ընտրել պանակը մշտադիտարկելու համար - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory Ընտրեք արտածման տեղը - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7633,69 +7647,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: Պիտակներ (ստորակետով բաժանված) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Ընտրեք պահպանելու տեղը - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters Բոլոր աջակցվող զտիչները - + The alternative WebUI files location cannot be blank. - + Parsing error Սխալ - + Failed to parse the provided IP filter IP ֆիլտրի տրամադրման սխալ - + Successfully refreshed Հաջողությամբ թարմացվեց - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Հաջողությամբ է ստուգվել IP ֆիլտրով. %1 կանոններ են կիրառվել։ @@ -7706,18 +7720,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Նախընտրություններ - + Time Error - + The start time and the end time can't be the same. - - + + Length Error @@ -7808,163 +7822,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Երկիր/տարածաշրջան - + IP/Address IP/հասցե - + Port Մատույց - + Flags Դրոշակներ - + Connection Կապակցում - + Client i.e.: Client application Սպասառու - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Ընթացք - + Down Speed i.e: Download speed Ներբեռ. արագ. - + Up Speed i.e: Upload speed Վերբեռ. արագ. - + Downloaded i.e: total data downloaded Ներբեռնվել է - + Uploaded i.e: total data uploaded Վերբեռնվել է - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Այժմեականություն - + Files i.e. files that are being downloaded right now Ֆայլեր - + Column visibility Սյունակի տեսանելիություն - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... Ավելացնել ցանցորդներ... - - + + Adding peers Մասնակիցների ավելացում - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently Մեկընդմիշտ արգելափակել մասնակցին - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A - + Copy IP:port Պատճենել IP:port-ը @@ -8244,34 +8258,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent-ը գործուն է - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent-ը գործուն է @@ -8563,140 +8551,124 @@ Those plugins were disabled. Պահելու ուղին՝ - + Never Երբեք - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (առկա է %3) - - + + %1 (%2 this session) %1 (%2 այս անգամ) - - + + N/A - + Yes - Այո + Այո - + No - Ոչ + Ոչ - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (բաժանվել է %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 առավելագույնը) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 ընդհանուր) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 միջինում) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Նոր վեբ շղթա - - - Remove Web seed - Հեռացնել վեբ շղթան - - - Copy Web seed URL - Պատճենել վեբ շղթայի URL-ն - - - Edit Web seed URL - Խմբագրել վեբ շղթայի URL-ն - - - + Filter files... Զտել ֆայլերը... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - + Web seed editing Վեբ շղթայի խմբագրում - + Web seed URL: Վեբ հատիկի URL-ը՝ @@ -8704,33 +8676,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Տվյալների անվավեր ձևաչափ - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format Տվյալների անվավեր ձևաչափ - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8738,22 +8710,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8802,12 +8774,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8829,76 +8801,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. Տարրը գոյություն չունի՝ %1: - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Չի ստացվում ջնջել արմատային պանակը: - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL՝ + + + + Refresh interval: + + + + + sec + վ + + + + Default + Լռելայն + + RSSWidget @@ -8998,78 +9011,61 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Ընտրեք պանակի անվանում - + Folder name: Պանակի անվանում՝ - + New folder Նոր պանակ - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation Ջնջելու հաստատում - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed Ընտրեք RSS ալիքի անունը - + New feed name: Անունը. - + Rename failed Անվանափոխումը չհաջողվեց - + Date: Ամսաթիվ՝ - + Feed: - + Author: Հեղինակ՝ @@ -9206,10 +9202,6 @@ Those plugins were disabled. i.e: Number of partial sources Քաշողներ - - Search engine - Որոնիչ - Filter search results... @@ -9330,104 +9322,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories Բոլոր անվանակարգերը - + Movies Ֆիլմեր - + TV shows Հաղորդումներ - + Music Երաժշտություն - + Games Խաղեր - + Anime Անիմե - + Software Ծրագրեր - + Pictures Պատկերներ - + Books Գրքեր - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 Չհաջողվեց ներբեռնել բաղադրիչի ֆայլը: %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9452,135 +9444,127 @@ Click the "Search plugins..." button at the bottom right of the window Որոնող խրոցակներ... - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example Օրինակ՝ - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins Բոլոր խրոցակները - + Only enabled - - + + Invalid data format. - Տվյալների անվավեր ձևաչափ + Տվյալների անվավեր ձևաչափ - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab Փակել ներդիրը - + Close all tabs Փակել բոլոր ներդիրները - + Select... Նշել... - - + + Search Engine Որոնիչ - - + + Please install Python to use the Search Engine. - + Empty search pattern Դաշտը դատարկ է - + Please type a search pattern first Նախ գրեք, թե ինչ փնտրել - + Stop Կանգնեցնել - - Search has finished - Որոնումը ավարտվել է - - - Search has failed - Որոնումը ձախողվել է - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9978,67 +9962,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Միացման վիճակը՝ - - + + No direct connections. This may indicate network configuration problems. Չկան ուղիղ կապակցումներ։ - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT. %1 հանգույց - + qBittorrent needs to be restarted! - - + + Connection Status: Կապակցման վիճակը՝ - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Անցանց: Սա նշանակում է, որ qBittorrent-ը չկարողացավ կապակցել ընտրված միացքին։ - + Online Ցանցում է - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Սեղմեք՝ այլընտրանքային սահ-ներին անցնելու համար - + Click to switch to regular speed limits Սեղմեք՝ հիմնական սահ-ներին անցնելու համար @@ -10066,14 +10060,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Ավարտված (0) - - Resumed (0) - Վերսկսված (0) - - - Paused (0) - Դադարեցված է (0) - Running (0) @@ -10164,32 +10150,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - Դադարեցված է (%1) - Moving (%1) Տեղափոխվում է (%1) - - Resume torrents - Շարունակել torrent-ները - - - Pause torrents - Դադարեցնել torrent-ները - Remove torrents Հեռացնել torrent-ները - - Resumed (%1) - Վերսկսված (%1) - Active (%1) @@ -10261,23 +10231,11 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Հեռացնել չօգտագործվող պիտակները - - Resume torrents - Շարունակել torrent-ները - - - Pause torrents - Դադարեցնել torrent-ները - Remove torrents Հեռացնել torrent-ները - - New Tag - Նոր պիտակ - Start torrents @@ -10610,17 +10568,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10872,13 +10830,6 @@ Please choose a different name and try again. - - TorrentInfo - - Invalid metadata - Անվավեր մետատվյալներ - - TorrentOptionsDialog @@ -10948,10 +10899,6 @@ Please choose a different name and try again. Upload: Վերբեռ.՝ - - ratio - հարաբերություն - Disable DHT for this torrent @@ -11052,7 +10999,7 @@ Please choose a different name and try again. Remove torrent - Հեռացնել torrent-ը + Հեռացնել torrent-ը @@ -11077,10 +11024,6 @@ Please choose a different name and try again. Torrent Tags - - New Tag - Նոր պիտակ - Add tag @@ -11115,78 +11058,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer Առաջնահերթությունը պետք է ամբողջ թիվ լինի - + Priority is not valid Առաջնահերթությունը անվավեր է - + Torrent's metadata has not yet downloaded Torrent-ի մետատվյալները դեռ չեն ներբեռնվել - + File IDs must be integers Նիշքի ID-ները ամբողջ թվեր պիտի լինի - + File ID is not valid Նիշքի ID-ն անվավեր է - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty Պահելու ուղին չի կարող դատարկ լինել - - + + Cannot create target directory - - + + Category cannot be empty Անվանակարգը չի կարող դատարկ լինել - + Unable to create category Չհաջողվեց ստեղծել անվանակարգ - + Unable to edit category Չհաջողվեց խմբագրել անվանակարգը - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11206,39 +11149,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name Անվանակարգի սխալ անվանում @@ -11382,73 +11325,73 @@ Please choose a different name and try again. Այս torrent-ը անձնական է - + Tracker editing - + Tracker URL: - - + + Tracker editing failed - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker Ջնջել ուղղորդիչը - + Copy tracker URL Պատճենել գրանցորդի URL-ը - + Force reannounce to selected trackers Ստիպողաբար վերաազդարարել ընտրված գրանցորդներին - + Force reannounce to all trackers Ստիպողաբար վերաազդարարել բոլոր գրանցորդներին - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility Սյունակների տեսանելիությունը @@ -11538,14 +11481,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - Շարունակել torrent-ները - - - Pause torrents - Դադարեցնել torrent-ները - Remove torrents @@ -11668,10 +11603,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Շարունակման տվյալների վերստուգում - - Paused - Դադարեցված է - Completed @@ -11712,21 +11643,16 @@ Please choose a different name and try again. % Done Ընթացք - - Status - Torrent status (e.g. downloading, seeding, paused) - Վիճակ - Stopped - + Կանգնեցված Status Torrent status (e.g. downloading, seeding, stopped) - Վիճակ + Վիճակ @@ -11842,22 +11768,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Գործունության ժամանակ + Ակտիվ ժ-ը Yes - Այո + Այո No - Ոչ - - - Time Active - Time (duration) the torrent is active (not paused) - Գործունության ժամանակ + Ոչ @@ -11959,333 +11880,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Սյունակների տեսանելիությունը - + Recheck confirmation Վերստուգման հաստատում - + Are you sure you want to recheck the selected torrent(s)? Վստա՞հ եք, որ ուզում եք վերստուգել ընտրված torrent-(ներ)ը: - + Rename Անվանափոխել - + New name: Նոր անվանում՝ - + Choose save path Ընտրեք պահելու ուղին - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Ավելացնել պիտակներ - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error «.torrent» ֆայլի արտահանման սխալ - + Remove All Tags Հեռացնել բոլոր պիտակները - + Remove all tags from selected torrents? Հեռացնե՞լ բոլոր պիտակները ընտրված torrent-ներից: - + Comma-separated tags: Ստորակետով բաժանված պիտակներ՝ - + Invalid tag - + Tag name: '%1' is invalid - &Resume - Resume/start the torrent - &Շարունակել - - - &Pause - Pause the torrent - &Դադարեցնել - - - + Pre&view file... Նախա&դիտել ֆայլը... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... Ա&րտահանել .torrent-ը... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Բեռնել հաջորդական կարգով - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first Սկզբում ներբեռնել առաջին ու վերջին մասերը - + Automatic Torrent Management Torrent-ների ինքնաշխատ կառավարում - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode Գերբաժանման գործելաձև @@ -12417,32 +12324,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12534,52 +12441,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12637,7 +12544,7 @@ Please choose a different name and try again. Unknown error - Անհայտ սխալ + Անհայտ սխալ diff --git a/src/lang/qbittorrent_id.ts b/src/lang/qbittorrent_id.ts index 389b008e1..3ae52e437 100644 --- a/src/lang/qbittorrent_id.ts +++ b/src/lang/qbittorrent_id.ts @@ -170,10 +170,6 @@ Never show again Jangan pernah tampilkan lagi - - Torrent settings - Pengaturan torrent - Set as default category @@ -235,25 +231,25 @@ Kondisi penghentian: - - + + None Tidak ada - - + + Metadata received Metadata diterima - + Torrents that have metadata initially will be added as stopped. Torrent yang dilengkapi metadata akan ditambahkan dan ditandai sebagai dihentikan. - + Files checked File sudah diperiksa @@ -368,112 +364,112 @@ Simpan sebagai berkas .torrent... - + I/O Error Galat I/O - + Not Available This comment is unavailable Tidak Tersedia - + Not Available This date is unavailable Tidak Tersedia - + Not available Tidak tersedia - + Magnet link Tautan magnet - + Retrieving metadata... Mengambil metadata... - - + + Choose save path Pilih jalur penyimpanan - + No stop condition is set. Kondisi penghentian tidak ditentukan. - + Torrent will stop after metadata is received. Torrent akan berhenti setelah metadata diterima. - + Torrent will stop after files are initially checked. Torrent akan berhenti setelah berkas diperiksa lebih dahulu. - + This will also download metadata if it wasn't there initially. Ini juga akan mengunduh metadata jika sebelumnya tidak ada. - + N/A T/A - + %1 (Free space on disk: %2) %1 (Ruang kosong di disk: %2) - + Not available This size is unavailable. Tidak tersedia - + Torrent file (*%1) Berkas torrent (*%1) - + Save as torrent file Simpan sebagai berkas torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Tidak dapat mengekspor berkas metadata torrent '%1'. Alasan: %2. - + Cannot create v2 torrent until its data is fully downloaded. Tidak dapat membuat torrent v2 hingga datanya terunduh semua. - + Filter files... Filter berkas... - + Parsing metadata... Mengurai metadata... - + Metadata retrieval complete Pengambilan metadata komplet @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Mengunduh torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Gagal menambahkan torrent. Source: "%1". Reason: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Terdeteksi duplikat dalam penambahan torrent. Source: %1. Existing torrent: %2. Result: %3 + Terdeteksi duplikat dalam penambahan torrent. Source: %1. Existing torrent: %2. Result: %3 - + Merging of trackers is disabled Penggabungan pelacak dinonaktifkan - + Trackers cannot be merged because it is a private torrent Pelacak tidak dapat digabungkan karena merupakan torrent privat - + Trackers are merged from new source Pelacak digabungkan dari sumber baru + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Periksa ulang torrent saat selesai - - + + ms milliseconds ms - + Setting Pengaturan - + Value Value set for this setting Nilai - + (disabled) (nonaktif) - + (auto) (otomatis) - - + + min minutes menit - + All addresses Semua alamat - + qBittorrent Section Bagian qBittorrent - - + + Open documentation Buka dokumentasi - + All IPv4 addresses Semua alamat IPv4 - + All IPv6 addresses Semua alamat IPv6 - + libtorrent Section Bagian libtorrent - + Fastresume files Berkas lanjutan cepat - + SQLite database (experimental) Database SQLite (eksperimental) - + Resume data storage type (requires restart) Lanjutkan tipe data penyimpanan (memerlukan mulai ulang) - + Normal Normal - + Below normal Di bawah normal - + Medium Medium - + Low Rendah - + Very low Sangat rendah - + Physical memory (RAM) usage limit Batas penggunaan memori fisik (RAM) - + Asynchronous I/O threads Asingkron rangkaian I/O - + Hashing threads Threads hash - + File pool size Ukuran pool file - + Outstanding memory when checking torrents Memori berlebih saat melakukan pengecekan torrent - + Disk cache Cache diska - - - - + + + + + s seconds s - + Disk cache expiry interval Selang kedaluwarsa tembolok diska - + Disk queue size Ukuran antrian disk - - + + Enable OS cache Aktifkan tembolok OS - + Coalesce reads & writes Gabungkan baca & tulis - + Use piece extent affinity Gunakan afinitas tingkat potongan - + Send upload piece suggestions Kirim saran potongan unggahan - - - - - + + + + + 0 (disabled) 0 (nonaktif) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Interval menyimpan data yang perlu dilanjutkan [0: dimatikan] - + Outgoing ports (Min) [0: disabled] Port keluar (minimum) [0: dimatikan] - + Outgoing ports (Max) [0: disabled] Port keluar (maksimum) [0: dimatikan] - + 0 (permanent lease) 0 (sewa permanen) - + UPnP lease duration [0: permanent lease] Durasi sewa UPnP [0: sewa permanen] - + Stop tracker timeout [0: disabled] Hentikan batas waktu pelacak [0: dinonaktifkan] - + Notification timeout [0: infinite, -1: system default] Batas waktu durasi pemberitahuan [0: tak terbatas, -1: default sistem] - + Maximum outstanding requests to a single peer Maksimum permintaan yang belum terselesaikan ke satu rekan kerja - - - - - + + + + + KiB KiB - + (infinite) (tak ter-hingga) - + (system default) (bawaan sistem) - + Delete files permanently - + Menghapus file secara permanen - + Move files to trash (if possible) - + Pindahkan file ke tempat sampah (jika memungkinkan) - + Torrent content removing mode - + Mode menghapus konten torrent - + This option is less effective on Linux Pilihan ini kurang efektif di piranti Linux - + Process memory priority Prioritas proses memori - + Bdecode depth limit - + Bdecode token limit - + Default Bawaan - + Memory mapped files Berkas yang dipetakan pada memori - + POSIX-compliant POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) Tipe IO diska (perlu mulai ulang) - - + + Disable OS cache Matikan tembolok Sistem Operasi - + Disk IO read mode Mode baca IO diska - + Write-through Write-through - + Disk IO write mode Mode tulis IO diska - + Send buffer watermark Kirim tanda air buffer - + Send buffer low watermark Kirim tanda air buffer rendah - + Send buffer watermark factor Kirim tanda air buffer factor - + Outgoing connections per second Koneksi keluar per detik - - + + 0 (system default) 0 (bawaan sistem) - + Socket send buffer size [0: system default] Ukuran buffer keluar socket [0: default sistem] - + Socket receive buffer size [0: system default] Ukuran buffer masuk socket [0: default sistem] - + Socket backlog size Ukuran backlog socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit Batas ukuran file .torrent - + Type of service (ToS) for connections to peers - + Prefer TCP Pilih TCP - + Peer proportional (throttles TCP) Proporsi rekan (men-throttle TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Dukungan internationalized domain name (IDN) - + Allow multiple connections from the same IP address Izinkan banyak koneksi dari Alamat IP yang sama - + Validate HTTPS tracker certificates Validasi sertifikat pelacak HTTPS - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name Kustomisasikan instance nama aplikasi - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval Interval penyegaran - + Resolve peer host names Singkap nama host rekan - + IP address reported to trackers (requires restart) Alamat IP yang dilaporkan ke pelacak (perlu mulai ulang) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Umumkan kembali ke semua pelacak saat IP atau port diubah - + Enable icons in menus Aktifkan ikon di menu - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files Aktifkan karantina untuk file yang diunduh - + Enable Mark-of-the-Web (MOTW) for downloaded files Aktifkan Mark-of-the-Web (MOTW) untuk file yang diunduh - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) (Deteksi otomatis jika kosong) - + Python executable path (may require restart) Jalur file executable Python (mungkin perlu mulai ulang) - + Start BitTorrent session in paused state - + sec seconds - det + det - + -1 (unlimited) - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents Konfirmasi penghapusan pelacak dari semua torrent - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty Reset ke default jika kosong - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Tampilkan notifikasi - + Display notifications for added torrents Tampilkan notifikasi untuk torrent yang ditambahkan - + Download tracker's favicon Unduh favicon milik tracker - + Save path history length Simpan riwayat panjang jalur - + Enable speed graphs Aktifkan grafik kecepatan - + Fixed slots Slot tetap - + Upload rate based Laju unggah dasar - + Upload slots behavior Unggah tingkah laku slot - + Round-robin Usul - + Fastest upload Unggah cepat - + Anti-leech Anti-leech - + Upload choking algorithm Unggah algoritma tersendat - + Confirm torrent recheck Konfirmasi pemeriksaan ulang torrent - + Confirm removal of all tags Konfirmasi pembuangan semua tanda - + Always announce to all trackers in a tier Selalu umumkan kepada semua traker dalam satu deretan - + Always announce to all tiers Selalu umumkan kepada semua deretan - + Any interface i.e. Any network interface Antarmuka apapun - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algoritma mode campuran %1-TCP - + Resolve peer countries Singkap negara rekanan - + Network interface Antarmuka jaringan - + Optional IP address to bind to Opsional alamat IP untuk menghubungkan ke - + Max concurrent HTTP announces - + Enable embedded tracker Aktifkan pelacak tertanam - + Embedded tracker port Port pelacak tertanam @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Berjalan dalam mode portabel. Mendeteksi otomatis folder profil di: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 Menggunakan direktori konfigurasi: %1 - + Torrent name: %1 Nama torrent: %1 - + Torrent size: %1 Ukuran torrent: %1 - + Save path: %1 Jalur penyimpanan: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent telah diunduh dalam %1. - - + + Thank you for using qBittorrent. Terima kasih telah menggunakan qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, mengirimkan notifikasi email - + Add torrent failed Penambahan torrent gagal - + Couldn't add torrent '%1', reason: %2. Gagal menambahkan torrent '%1', reason: %2. - + The WebUI administrator username is: %1 Nama pengguna admin WebUI adalah: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. Anda harus mengatur kata sandimu sendiri di preferensi program. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI dimatikan! Untuk mengaktifkan WebUI, sunting file konfigurasi secara manual. - + Running external program. Torrent: "%1". Command: `%2` Jalankan program eksternal. Torrent: "%1". Perintah: '%2' - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torrent "%1%" sudah selesai diunduh. - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... Memuat torrent... - + E&xit &Keluar - + I/O Error i.e: Input/Output Error Galat I/O - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Alasan: %2 - + Torrent added Torrent ditambahkan - + '%1' was added. e.g: xxx.avi was added. '%1' telah ditambahkan. - + Download completed Unduhan Selesai - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started memulai %1 qBittorrent. ID berjalan: %2 - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' telah selesai diunduh. - + Information Informasi - + To fix the error, you may need to edit the config file manually. Untuk mengatasi masalah ini, anda harus menyunting file konfigurasi secara manual. - + To control qBittorrent, access the WebUI at: %1 Untuk mengontrol qBittorrent, akses WebUI di: %1 - + Exit Tutup - + Recursive download confirmation Konfirmasi unduh rekursif - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Jangan Pernah - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Menyimpan progres torrent... - + qBittorrent is now ready to exit @@ -1765,263 +1776,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Ekspor... - + Matches articles based on episode filter. Artikel yang cocok berdasarkan filter episode. - + Example: Contoh: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match akan cocok 2, 5, 8 sampai 15, 30 dan episode seterusnya dari musim pertama - + Episode filter rules: Aturan filter episode: - + Season number is a mandatory non-zero value Nomor musim wajib bernilai bukan nol - + Filter must end with semicolon Filter harus diakhiri dengan titik-koma - + Three range types for episodes are supported: Tiga jenis rentang untuk episode yang didukung: - + Single number: <b>1x25;</b> matches episode 25 of season one Nomor tunggal: <b>1x25;</ b> cocok dengan episode 25 dari musim pertama - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Rentang normal: <b>1x25-40;</b> cocok dengan episode 25 sampai 40 dari musim pertama - + Episode number is a mandatory positive value Nomor episode ialah wajib nilai positif - + Rules Aturan - + Rules (legacy) Aturan (lama) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Barisan tak terbatas:<b>1x25-;</b>sesuai episode 25 dan ke atas dari sesi satu, dan semua dari episode nanti - + Last Match: %1 days ago Cocok Terakhir: %1 hari yang lalu - + Last Match: Unknown Cocok Terakhir: Tidak Diketahui - + New rule name Nama aturan baru - + Please type the name of the new download rule. Mohon ketik nama dari aturan unduh baru. - - + + Rule name conflict Nama aturan konflik - - + + A rule with this name already exists, please choose another name. Aturan dengan nama ini telah ada, mohon pilih nama lain. - + Are you sure you want to remove the download rule named '%1'? Apakah Anda yakin ingin membuang aturan unduhan bernama '%1'? - + Are you sure you want to remove the selected download rules? Apakah Anda yakin ingin menghapus aturan unduh yang dipilih? - + Rule deletion confirmation Konfirmasi penghapusan aturan - + Invalid action Tindakan tidak valid - + The list is empty, there is nothing to export. Daftar kosong, tidak ada yang perlu diekspor. - + Export RSS rules Ekspor aturan RSS - + I/O Error Galat I/O - + Failed to create the destination file. Reason: %1 Gagal membuat berkas tujuan. Alasan: %1 - + Import RSS rules Impor aturan RSS - + Failed to import the selected rules file. Reason: %1 Gagal mengimpor berkas aturan yang dipilih. Alasan: %1 - + Add new rule... Tambah aturan baru... - + Delete rule Hapus aturan - + Rename rule... Ubah nama aturan... - + Delete selected rules Hapus aturan yang dipilih - + Clear downloaded episodes... Kosongkan daftar episode yang diunduh... - + Rule renaming Menamai ulang aturan - + Please type the new rule name Mohon ketik nama aturan baru - + Clear downloaded episodes Kosongkan daftar episode yang diunduh - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Apakah Anda yakin ingin mengosongkan daftar episode yang diunduh untuk aturan yang dipilih? - + Regex mode: use Perl-compatible regular expressions Mode regex: gunakan ekspresi reguler yang kompatibel dengan Perl - - + + Position %1: %2 Posisi %1: %2 - + Wildcard mode: you can use Mode wildcard: Anda bisa menggunakan - - + + Import error Kesalahan impor - + Failed to read the file. %1 Gagal membaca file ini: %1 - + ? to match any single character ? untuk mencocokkan semua jenis karakter tunggal - + * to match zero or more of any characters * untuk sesuai nol atau lebih dari karakter apapun - + Whitespaces count as AND operators (all words, any order) Ruang putih terhitung sebagai operator DAN (semua kata, urutan apapun) - + | is used as OR operator | digunakan sebagai operator OR - + If word order is important use * instead of whitespace. Jika urutan kata sangat penting gunakan * daripada ruang putih. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Ekspresi dengan kekosongan %1 klausa (cth. %2) - + will match all articles. akan sesuai semua pasal. - + will exclude all articles. akan tiadakan semua pasal. @@ -2073,28 +2084,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Tidak dapat menyimpan metadata torrent ke '%1'. Kesalahan: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2105,16 +2126,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 Tidak dapat menyimpan data ke '%1'. Kesalahan: %2 @@ -2122,38 +2144,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Tidak ditemukan. - + Couldn't load resume data of torrent '%1'. Error: %2 Tidak dapat melanjutkan data dari torrent '%1'. Kesalahan: %2 - - + + Database is corrupted. Basis data rusak. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2161,22 +2205,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Tidak dapat menyimpan metadata torrent. Kesalahan %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Tidak dapat melanjutkan menyimpan data untuk torrent '%1'. Kesalahan: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Tidak dapat menghapus data yang dilanjutkan dari torrent '%1'. Kesalahan: %2 - + Couldn't store torrents queue positions. Error: %1 Tidak dapat menyimpan posisi antrian torrent. Kesalahan: %1 @@ -2184,522 +2228,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON NYALA - - - - - - - - - + + + + + + + + + OFF MATI - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 Mode anonim: %1 - - + + Encryption support: %1 - - + + FORCED PAKSA - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Hapus torrent. - - - Torrent paused. - Torrent berhenti - - - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. Torrent mencapai batas waktu tidak aktif pembenihan. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - Penggabungan pelacak dinonaktifkan + Penggabungan pelacak dinonaktifkan - + Trackers cannot be merged because it is a private torrent - Pelacak tidak dapat digabungkan karena merupakan torrent privat + Pelacak tidak dapat digabungkan karena merupakan torrent privat - + Trackers are merged from new source - Pelacak digabungkan dari sumber baru + Pelacak digabungkan dari sumber baru - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent dihentikan. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent dilanjutkan. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Unduhan Torrent terselesaikan. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Memulai memindahkan torrent. Torrent: "%1". Tujuan: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent bermasalah. Torrent: "%1". Masalah: "%2" - Removed torrent. Torrent: "%1" - Hapus torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Hilangkan torrent dan hapus isi torrent. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filter IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" Sesi BitTorrent mengalami masalah serius. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 Gagal memuat Kategori. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Gagal memuat pengaturan Kategori. File: "%1". Kesalahan: "Format data tidak valid" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent dihapus tapi gagal menghapus isi dan/atau fail-sebagian. Torrent: "%1". Kesalahan: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 dinonaktifkan - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 dinonaktifkan - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2749,47 +2774,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' Unduh bagian awal dan akhir terlebih dahulu: %1, torrent: '%2' - + On Aktif - + Off Nonaktif - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata Metadata tidak ditemukan - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Gagal mengubah nama berkas. Torrent: "%1", berkas: "%2", alasan: "%3" - + Performance alert: %1. More info: %2 @@ -2826,11 +2851,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Diharapkan bilangan bulat berada dalam lingkungan variabel '%1', tetapi dapat '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' harus mengikuti sintaksis '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2871,7 +2891,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' harus mengikuti sintaksis '%1=%2' + Parameter '%1' harus mengikuti sintaksis '%1=%2' @@ -2961,10 +2981,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - Tambahkan torrrent sebagai dimulai atau dijeda - Skip hash check @@ -3061,14 +3077,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Lanjutkan torrent - - - Pause torrents - Jeda torrent - Remove torrents @@ -3167,10 +3175,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - Also permanently delete the files - Hapus juga fail secara permanen - Are you sure you want to remove '%1' from the transfer list? @@ -3402,26 +3406,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" Mengunduh torrent... Source: "%1" - Trackers cannot be merged because it is a private torrent - Pelacak tidak dapat digabungkan karena merupakan torrent privat - - - + Torrent is already present Torrent sudah ada - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' sudah masuk di daftar transfer. Apakah Anda ingin menggabung pencari dari sumber baru? @@ -3539,6 +3539,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Fail gambar yang didukung + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3680,10 +3714,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Opsi... - - &Resume - &Lanjutkan - &Remove @@ -3765,10 +3795,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Tutup Jendela - - R&esume All - Lanjutkan S&emua - Manage Cookies... @@ -3884,10 +3910,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Hibernasi Sistem - - S&hutdown System - &Matikan Sistem - &Statistics @@ -3908,14 +3930,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About Tent&ang - - &Pause - Tang&guhkan - - - P&ause All - Jed&a Semua - &Add Torrent File... @@ -3949,12 +3963,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Tampilkan - + Check for program updates Periksa pemutakhiran program @@ -3969,386 +3983,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Jika Anda suka qBittorrent, silakan donasi! - + Execution Log Log Eksekusi - + Clear the password Kosongkan sandi - + &Set Password Tetapkan &Kata Sandi - + Preferences Preferensi - + &Clear Password &Kosongkan Kata Sandi - + Transfers Transfer - - + + qBittorrent is minimized to tray qBittorrent dikecilkan di tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. Tindakan ini akan mengubah pengaturan. Anda takkan diingatkan lagi. - + Icons Only Hanya Ikon - + Text Only Hanya Teks - + Text Alongside Icons Teks di Samping Ikon - + Text Under Icons Teks di Bawah Ikon - + Follow System Style Ikuti Gaya Sistem - - + + UI lock password Sandi kunci UI - - + + Please type the UI lock password: Mohon ketik sandi kunci UI: - + Are you sure you want to clear the password? Apakah Anda yakin ingin mengosongkan sandi? - + Use regular expressions Gunakan ekspresi biasa - - + + Search Engine - Mesin Pencari + Mesin Pencari - + Search has failed - Pencarian telah gagal + Pencarian telah gagal - + Search has finished - + Pencarian sudah selesai - + Search Cari - + Transfers (%1) Transfer (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent sudah diperbaharui dan perlu dimulai-ulang untuk perubahan lagi efektif. - + qBittorrent is closed to tray qBittorrent ditutup ke tray - + Some files are currently transferring. Beberapa berkas saat ini ditransfer. - + Are you sure you want to quit qBittorrent? Apakah Anda yakin ingin keluar dari qBittorrent? - + &No &Tidak - + &Yes &Ya - + &Always Yes &Selalu Ya - + Options saved. Opsi tersimpan. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Runtime Python hilang - + qBittorrent Update Available Tersedia Pemutakhiran qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python dibutuhkan untuk dapat menggunakan mesin pencari tetapi sepertinya belum dipasang. Apakah Anda ingin memasangnya sekarang? - + Python is required to use the search engine but it does not seem to be installed. Python dibutuhkan untuk dapat menggunakan mesin pencari tetapi sepertinya belum dipasang. - - + + Old Python Runtime - + A new version is available. Versi baru tersedia. - + Do you want to download %1? Apakah Anda ingin mengunduh %1? - + Open changelog... Membuka logperubahan... - + No updates available. You are already using the latest version. Pemutakhiran tidak tersedia. Anda telah menggunakan versi terbaru. - + &Check for Updates &Periksa Pemutakhiran - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Dijeda + Ditangguhkan - + Checking for Updates... Memeriksa Pemutakhiran... - + Already checking for program updates in the background Sudah memeriksa pemutakhiran program di latar belakang - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Galat unduh - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python tidak bisa diunduh, alasan: %1. -Mohon pasang secara manual. - - - - + + Invalid password Sandi tidak valid - + Filter torrents... Saring torrent... - + Filter by: Saring berdasarkan: - + The password must be at least 3 characters long Panjang password setidaknya harus 3 karakter. - - - + + + RSS (%1) RSS (%1) - + The password is invalid Sandi tidak valid - + DL speed: %1 e.g: Download speed: 10 KiB/s Kecepatan DL: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Kecepatan UL: %1 - + Hide Sembunyikan - + Exiting qBittorrent Keluar qBittorrent - + Open Torrent Files Buka Berkas Torrent - + Torrent Files Berkas Torrent @@ -5842,47 +5850,47 @@ Mohon pasang secara manual. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5924,10 +5932,6 @@ Mohon pasang secara manual. RSS RSS - - Web UI - Web UI - Advanced @@ -5964,10 +5968,6 @@ Mohon pasang secara manual. Always Selalu - - Paused torrents only - Hanya torrent yang dijeda - Action on double-click @@ -5978,10 +5978,6 @@ Mohon pasang secara manual. Downloading torrents: Mengunduh torrent: - - Start / Stop Torrent - Jalankan / Hentikan Torrent - @@ -6040,175 +6036,175 @@ Mohon pasang secara manual. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Tata letak konten torrent: - + Original Asli - + Create subfolder Buat subfolder - + Don't create subfolder Jangan buat subfolder - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue Tambahkan ke antrian teratas - + When duplicate torrent is being added Saat torrent duplikat ditambahkan - + Merge trackers to existing torrent Gabungkan pelacak ke torrent yang sudah ada - + Keep unselected files in ".unwanted" folder Simpan file yang tidak dipilih ke folder ".unwanted" - + Add... Tambah... - + Options.. Opsi... - + Remove Buang - + Email notification &upon download completion Notifikasi surel dan di penyelesaian unduhan - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Protokol koneksi rekanan: - + Any Apapun - + I2P (experimental) - + Mixed mode Mode gabungan - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering IP Filtering - + Schedule &the use of alternative rate limits Jadwalkan penggunaan ba&tas laju alternatif - + From: From start time Dari: - + To: To end time Ke: - + Find peers on the DHT network Temukan rekanan pada jaringan DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6217,188 +6213,190 @@ Wajibkan enkripsi: Hanya tersambung ke rekanan dengan enkripsi protokol Nonaktifkan enkripsi: Hanya tersambung ke rekanan tanpa enkripsi protokol - + Allow encryption Izinkan enkripsi - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Informasi lebih lanjut</a>) - + Maximum active checking torrents: - + &Torrent Queueing Antrean &Torrent - + When total seeding time reaches Saat jumlah waktu pembenihan terpenuhi - + When inactive seeding time reaches Saat waktu tidak aktif pembenihan terpenuhi - A&utomatically add these trackers to new downloads: - &Otomatis tambahkan tracker berikut ke unduhan baru: - - - + RSS Reader Pembaca RSS - + Enable fetching RSS feeds Aktifkan pengambilan umpan RSS - + Feeds refresh interval: Interval penyegaran umpan: - + Same host request delay: - + Maximum number of articles per feed: Jumlah maksimum artikel per umpan: - - - + + + min minutes min - + Seeding Limits Batasan Berbagi - Pause torrent - Jeda torrent - - - + Remove torrent Buang torrent - + Remove torrent and its files Buang torrent dan berkasnya - + Enable super seeding for torrent Aktifkan berbagi super untuk torrent - + When ratio reaches Saat rasio telah tercapai - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS Torrent Unggah Otomatis - + Enable auto downloading of RSS torrents Aktifkan pengunduhan otomatis RSS torrent - + Edit auto downloading rules... Sunting aturan pengunduhan otomatis... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes Unduh episode REPACK/PROPER - + Filters: Filter: - + Web User Interface (Remote control) Antarmuka Pengguna Web (Pengendali jarak jauh) - + IP address: Alamat IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6407,41 +6405,37 @@ Tetapkan alamat IPv4 atau IPv6. Anda dapat tetapkan "0.0.0.0" untuk se "::" untuk setiap alamat IPv6, atau "*" untuk keduanya IPv4 dan IPv6. - + Ban client after consecutive failures: Blokir klien setelah kegagalan berturut-turut: - + Never Jangan pernah - + ban for: diblokir karena: - + Session timeout: Waktu habis sesi: - + Disabled Nonaktif - Enable cookie Secure flag (requires HTTPS) - Aktifkan tanda kuki Aman (membutuhkan HTTPS) - - - + Server domains: Domain server: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6454,37 +6448,37 @@ Anda dapat mengisi nama domain menggunakan Antarmuka Web server. Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. - + &Use HTTPS instead of HTTP &Gunakan HTTPS daripada HTTP - + Bypass authentication for clients on localhost Lewati otentikasi untuk klien pada lokalhost - + Bypass authentication for clients in whitelisted IP subnets Lewati otentikasi untuk klien dalam daftar putih IP subnet - + IP subnet whitelist... IP subnet daftar-putih... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Perbahar&ui nama domain dinamik saya @@ -6496,7 +6490,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard & Search - Cari + Cari @@ -6597,99 +6591,99 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard & Hapus cadangan log yang lebih lama dari: - + Show external IP in status bar - + When adding a torrent Ketika menambahkan torrent - + Bring torrent dialog to the front Tampilkan dialog torrent - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Juga hapus tambahan berkas .torrent yang dibatalkan - + Also when addition is cancelled Juga ketika penambahan dibatalkan - + Warning! Data loss possible! Peringatan! Ada kemungkinan kehilangan data! - + Saving Management Pengelola Penyimpanan - + Default Torrent Management Mode: Mode Baku Pengelolaan Torrent: - + Manual Manual - + Automatic Otomatis - + When Torrent Category changed: Ketika Kategori Torrent diubah: - + Relocate torrent Cari-ulang torrent - + Switch torrent to Manual Mode Pindahkan torrent ke Mode Manual - - + + Relocate affected torrents Cari-ulang torrent berpengaruh - - + + Switch affected torrents to Manual Mode Ganti torrent berpengaruh ke Mode Manual - + Use Subcategories Gunakan Subkategori - + Default Save Path: Tempat penyimpanan biasa: - + Copy .torrent files to: Salin berkas .torrent ke: @@ -6699,26 +6693,22 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard & Tampilkan &qBittorrent di dalam area notifikasi - &Log file - Berkas &Log - - - + Display &torrent content and some options Tampilkan konten &torrent dan beberapa opsi - + De&lete .torrent files afterwards Hap&us berkas .torrent kemudian - + Copy .torrent files for finished downloads to: Salin berkas .torrent untuk menyelesaikan unduhan ke: - + Pre-allocate disk space for all files Pre-alokasi ruang disk untuk semua berkas @@ -6748,10 +6738,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard & Preview file, otherwise open destination folder Pratinjau berkas, atau buka folder tujuan - - Show torrent options - Tampilkan opsi torrent - Shows a confirmation dialog when exiting with active torrents @@ -6817,68 +6803,64 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard & tahun - + Log performance warnings Log peringatan performa - The torrent will be added to download list in a paused state - Torrent akan ditambahkan ke daftar unduh dalam keadaan dijeda - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Jangan mulai mengunduh secara otomatis - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Tambahkan ekstensi .!qB ke berkas yang belum selesai - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog Izinkan dialog unduhan rekursif - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6898,50 +6880,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None Tidak ada - - + + Metadata received Metadata diterima - - + + Files checked File sudah diperiksa - + Ask for merging trackers when torrent is being added manually Tanya untuk menggabung pelacak ketika torrent ditambahkan secara manual - + Use another path for incomplete torrents: Gunakan jalur lain untuk torrent yang belum selesai: - + Automatically add torrents from: Otomatis menambahkan torrent dari: - + Excluded file names Tidak termasuk nama file - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6958,515 +6940,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Penerima - + To: To receiver Ke: - + SMTP server: Server SMTP: - + Sender Pengirim - + From: From sender Dari: - + This server requires a secure connection (SSL) Server ini membutuhkan sambungan aman (SSL) - - + + Authentication Otentikasi - - - - + + + + Username: Nama pengguna: - - - - + + + + Password: Sandi: - + Run external program - + Show console window Tampilkan jendela konsol - + TCP and μTP TCP dan μTP - + Listening Port Memperhatikan port - + Port used for incoming connections: Port yang digunakan untuk sambungan masuk: - + Set to 0 to let your system pick an unused port - + Random Acak - + Use UPnP / NAT-PMP port forwarding from my router Gunakan penerusan port UPnP / NAT-PMP dari router saya - + Connections Limits Batasan Sambungan - + Maximum number of connections per torrent: Jumlah maksimum sambungan per torrent: - + Global maximum number of connections: Jumlah maksimum sambungan global: - + Maximum number of upload slots per torrent: Jumlah maksimum slot unggah per torrent: - + Global maximum number of upload slots: Jumlah maksimum slot unggah global: - + Proxy Server Server Proksi - + Type: Tipe: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Kalau tidak, server proksi hanya digunakan untuk koneksi tracker - + Use proxy for peer connections Gunakan proksi untuk koneksi sejawat - + A&uthentication &Otentikasi - Info: The password is saved unencrypted - Info: Sandi disimpan tanpa enkripsi + Info: Sandi disimpan tanpa enkripsi - + Filter path (.dat, .p2p, .p2b): Jalur filter (.dat, .p2p, .p2b): - + Reload the filter Muat ulang filter - + Manually banned IP addresses... Secara manual memblokir alamat IP... - + Apply to trackers Terapkan ke pelacak - + Global Rate Limits Batas Laju Global - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Unggah: - - + + Download: Unduh: - + Alternative Rate Limits Batas Laju Alternatif - + Start time Waktu mulai - + End time Waktu selesai - + When: Kapan: - + Every day Setiap hari - + Weekdays Hari kerja - + Weekends Akhir pekan - + Rate Limits Settings Pengaturan Batas Laju - + Apply rate limit to peers on LAN Terapkan batas laju ke rekanan pada LAN - + Apply rate limit to transport overhead Tentukan nilai batas untuk transport diatas - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Terapkan batas laju ke protokol µTP - + Privacy Privasi - + Enable DHT (decentralized network) to find more peers Aktifkan DHT (jaringan terdesentralisasi) untuk menemukan lebih banyak rekanan - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Pertukaran rekanan dengan aplikasi Bittorrent yang kompatibel (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Aktifkan Pertukaran Rekanan (PeX) untuk menemukan lebih banyak rekanan - + Look for peers on your local network Temukan rekanan di jaringan lokal Anda - + Enable Local Peer Discovery to find more peers Aktifkan Pencarian Rekan Lokal untuk menemukan lebih banyak rekanan - + Encryption mode: Mode enkripsi: - + Require encryption Enkripsi wajib - + Disable encryption Enkripsi nonaktif - + Enable when using a proxy or a VPN connection Aktifkan saat menggunakan proksi atau koneksi VPN - + Enable anonymous mode Aktifkan mode anonim - + Maximum active downloads: Unduhan aktif maksimum: - + Maximum active uploads: Unggahan aktif maksimum: - + Maximum active torrents: Torrent aktif maksimum: - + Do not count slow torrents in these limits Jangan hitung torrent lambat dari limit ini - + Upload rate threshold: Nilai ambang unggah: - + Download rate threshold: Nilai ambang unduh: - - - - + + + + sec seconds det - + Torrent inactivity timer: Durasi torrent tanpa aktifitas: - + then lalu - + Use UPnP / NAT-PMP to forward the port from my router Gunakan UPnP / NAT-PMP untuk meneruskan port dari router saya - + Certificate: Sertifikat: - + Key: Kunci: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informasi tentang sertifikat</a> - + Change current password Ubah sandi saat ini - Use alternative Web UI - Gunakan UI Web alternatif - - - + Files location: Lokasi berkas: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Keamanan - + Enable clickjacking protection Izinkan perlindungan klikjacking - + Enable Cross-Site Request Forgery (CSRF) protection Aktifkan proteksi Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers Tambahkan kustom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: Daftar proxy terpercaya: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Layanan: - + Register Daftar - + Domain name: Nama domain: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Dengan mengaktifkan opsi ini, Anda bisa <strong>secara permanen kehilangan</strong> berkas .torrent Anda! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Jika Anda mengaktifkan opsi kedua (&ldquo;Juga ketika tambahan dibatalkan&rdquo;) berkas .torrent <strong>akan dihapus</strong>meski jika anda pencet&ldquo;<strong>Batal</strong>&rdquo; didalam &ldquo;Tambahkan torrent&rdquo; dialog @@ -7476,12 +7453,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Pilih berkas Tema UI qBittorrent - + Choose Alternative UI files location Pilih lokasi berkas UI Alternatif - + Supported parameters (case sensitive): Parameter yang didukung (sensitif besar kecil huruf): @@ -7501,183 +7478,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. Kondisi penghentian tidak ditentukan. - + Torrent will stop after metadata is received. Torrent akan berhenti setelah metadata diterima. - + Torrent will stop after files are initially checked. Torrent akan berhenti setelah berkas diperiksa lebih dahulu. - + This will also download metadata if it wasn't there initially. Ini juga akan mengunduh metadata jika sebelumnya tidak ada. - + %N: Torrent name %N: Nama torrent - + %L: Category %L: Kategori - + %F: Content path (same as root path for multifile torrent) %F: Jalur konten (sama dengan jalur root untuk torrent multi-berkas) - + %R: Root path (first torrent subdirectory path) %R: Jalur root (jalur subdirektori torrent pertama) - + %D: Save path %D: Jalur simpan - + %C: Number of files %C: Jumlah berkas - + %Z: Torrent size (bytes) %Z: Ukuran torrent (bita) - + %T: Current tracker %T: Pelacak saat ini - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: Merangkum parameter dengan tanda kutipan untuk menghindari teks terpotong di ruang putih (m.s., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Nihil) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Satu torrent akan menentukan lambat jika nilai unduh dan unggah bertahan dibawah nilai ini untuk "Timer Torrent ketidakaktifan" detik - + Certificate Sertifikat - + Select certificate Pilih sertifikat - + Private key Kunci privat - + Select private key Pilih kunci privat - + WebUI configuration failed. Reason: %1 Konfigurasi WebUI gagal. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Pilih folder untuk dimonitor - + Adding entry failed Gagal menambahkan entri - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Galat Lokasi - - + + Choose export directory Pilih direktori ekspor - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7687,69 +7664,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Pilih direktori simpan - + Torrents that have metadata initially will be added as stopped. Torrent yang dilengkapi metadata akan ditambahkan dan ditandai sebagai dihentikan. - + Choose an IP filter file Pilih berkas filter IP - + All supported filters Semua filter yang didukung - + The alternative WebUI files location cannot be blank. - + Parsing error Galat penguraian - + Failed to parse the provided IP filter Gagal mengurai filter IP yang diberikan - + Successfully refreshed Berhasil disegarkan - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Berhasil mengurai filter IP yang diberikan: %1 aturan diterapkan. @@ -7760,18 +7737,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Preferensi - + Time Error Galat Waktu - + The start time and the end time can't be the same. Waktu mulai dan berakhir tidak boleh sama. - - + + Length Error Galat Panjang @@ -7862,163 +7839,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Negara/Wilayah - + IP/Address Alamat/IP - + Port Port - + Flags Bendera - + Connection Koneksi - + Client i.e.: Client application Klien - + Peer ID Client i.e.: Client resolved from Peer ID Klien ID Peer - + Progress i.e: % downloaded Progres - + Down Speed i.e: Download speed Kecepatan Unduh - + Up Speed i.e: Upload speed Kecepatan Unggah - + Downloaded i.e: total data downloaded Terunduh - + Uploaded i.e: total data uploaded Terunggah - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevansi - + Files i.e. files that are being downloaded right now Berkas - + Column visibility Keterlihatan kolom - + Resize columns Ubah ukuran kolom - + Resize all non-hidden columns to the size of their contents Ubah ukuran semua kolom yang tidak disembunyikan sesuai ukuran konten kolom - + Add peers... Tambah peers... - - + + Adding peers Menambahkan rekanan - + Some peers cannot be added. Check the Log for details. Beberapa rekanan tidak bisa ditambahkan. Periksa Log untuk detail. - + Peers are added to this torrent. Rekanan telah ditambahkan ke torrent ini. - - + + Ban peer permanently Blokir rekanan secara permanen - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? Apakah Anda yakin ingin memblokir secara permanen rekanan yang dipilih? - + Peer "%1" is manually banned Rekanan "%1" diblokir secara manual - + N/A N/A - + Copy IP:port Salin IP:port @@ -8299,34 +8276,8 @@ Plugin ini semua dinonaktifkan. PowerManagement - qBittorrent is active - qBittorrent sedang aktif - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent sedang aktif @@ -8618,153 +8569,124 @@ Plugin ini semua dinonaktifkan. Jalur Simpan: - + Never Jangan Pernah - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (memiliki %3) - - + + %1 (%2 this session) %1 (%2 sesi ini) - - + + N/A T/A - + Yes - Ya + Ya - + No - Tidak + Tidak - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (dibibit selama %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 rerata.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Bibit Web baru - - - Remove Web seed - Buang bibit Web - - - Copy Web seed URL - Salin URL bibit Web - - - Edit Web seed URL - Sunting URL bibit Web - - - + Filter files... Filter berkas... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Grafik kecepatan dinonaktifkan - + You can enable it in Advanced Options - New URL seed - New HTTP source - Bibit URL baru - - - New URL seed: - Bibit URL baru: - - - This URL seed is already in the list. - Bibit URL ini telah ada di dalam daftar. - - - + Web seed editing Penyuntingan bibit web - + Web seed URL: URL bibit web: @@ -8772,33 +8694,33 @@ Plugin ini semua dinonaktifkan. RSS::AutoDownloader - - + + Invalid data format. Format data tidak valid. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Tidak dapat menyimpan data RSS AutoDownloader di %1. Galat: %2 - + Invalid data format Format data tidak valid - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Tidak dapat mengakses aturan RSS AutoDownloader di %1. Galat: %2 @@ -8806,22 +8728,22 @@ Plugin ini semua dinonaktifkan. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Gagal mengunduh RSS memasukkan di '%1'. Penyebab: %2 - + RSS feed at '%1' updated. Added %2 new articles. Masukan RSS di '%1' diperbaharui. Tambahkan %2 pasal baru. - + Failed to parse RSS feed at '%1'. Reason: %2 Gagal menguraikan RSS memasukkan di '%1'. Penyebab: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8870,12 +8792,12 @@ Plugin ini semua dinonaktifkan. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8897,76 +8819,117 @@ Plugin ini semua dinonaktifkan. - + Item doesn't exist: %1. Item tidak ada: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Tidak bisa menghapus folder root - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Jalur item RSS tidak benar: %1. - + RSS item with given path already exists: %1. Item RSS dengan jalur diberikan sudah ada: %1. - + Parent folder doesn't exist: %1. Folder induk tidak ditemukan: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + det + + + + Default + Bawaan + + RSSWidget @@ -9066,78 +9029,69 @@ Plugin ini semua dinonaktifkan. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Silakan pilih nama folder - + Folder name: Nama folder: - + New folder Folder baru - - Please type a RSS feed URL - Silakan ketik URL umpan RSS + Silakan ketik URL umpan RSS - - Feed URL: - URL Umpan: + URL Umpan: - + Deletion confirmation Konfirmasi penghapusan - + Are you sure you want to delete the selected RSS feeds? Anda yakin ingin menghapus masukkan terpilih RSS? - + Please choose a new name for this RSS feed Mohon tentukan nama baru untuk memasukkan RSS - + New feed name: Nama masukkan baru: - + Rename failed Rubah nama gagal - + Date: Tanggal: - + Feed: - + Author: Penulis: @@ -9274,10 +9228,6 @@ Plugin ini semua dinonaktifkan. i.e: Number of partial sources Lintah - - Search engine - Mesin pencari - Filter search results... @@ -9398,104 +9348,104 @@ Plugin ini semua dinonaktifkan. SearchPluginManager - + Unknown search engine plugin file format. Format berkas plugin mesin pencari tidak diketahui. - + Plugin already at version %1, which is greater than %2 Plugin berada di versi %1, yang mana lebih baru dari %2 - + A more recent version of this plugin is already installed. Versi lebih sekarang plugin sudah terpasang. - + Plugin %1 is not supported. - - + + Plugin is not supported. Plugin tidak didukung. - + Plugin %1 has been successfully updated. - + All categories Semua kategori - + Movies Movie - + TV shows TV show - + Music Musik - + Games Games - + Anime Anime - + Software Software - + Pictures Gambar - + Books Buku - + Update server is temporarily unavailable. %1 Server memperbaharui sementara tidak tersedia. %1 - - + + Failed to download the plugin file. %1 Gagal mengunduh berkas plugin. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" sudah lawas, perbarui ke versi %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') Mencari plugin '%1' terdapat kesalahan versi string ('%2') @@ -9521,135 +9471,127 @@ Klik tombol "Temukan plugin" tepat dibawah bagian jendela untuk memasa Plugin pencarian... - + A phrase to search for. Kata/frasa yang akan dicari. - + Spaces in a search term may be protected by double quotes. Kata/frasa berspasi bisa dibuka dan ditutup dengan tanda petik ganda. - + Example: Search phrase example Contoh: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: mencari <b>foo bar</b> - + All plugins Semua plugin - + Only enabled Hanya izinkan - - + + Invalid data format. - Format data tidak valid. + Format data tidak valid. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: mencari <b>foo</b> dan <b>bar</b> - + Refresh - + Close tab Tutup tab - + Close all tabs Tutup seluruh tab - + Select... Pilih... - - + + Search Engine Mesin Pencari - - + + Please install Python to use the Search Engine. Mohon pasang Python untuk menggunakan Mesin Pencari. - + Empty search pattern Pola pencarian kosong - + Please type a search pattern first Mohon ketik pola pencarian telebih dahulu - + Stop Hentikan - - Search has finished - Pencarian telah selesai - - - Search has failed - Pencarian telah gagal - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10047,67 +9989,77 @@ Klik tombol "Temukan plugin" tepat dibawah bagian jendela untuk memasa StatusBar - + Connection status: Status koneksi: - - + + No direct connections. This may indicate network configuration problems. Tidak ada koneksi langsung. Ini mungkin menunjukkan masalah konfigurasi jaringan. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 jalinan - + qBittorrent needs to be restarted! qBittorrent perlu dimulai ulang! - - + + Connection Status: Status Koneksi: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Luring. Ini biasanya berarti bahwa qBittorent gagal mendengarkan port yang dipilih untuk koneksi masuk. - + Online Daring - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Klik untuk beralih ke batas kecepatan alternatif - + Click to switch to regular speed limits Klik untuk beralih ke batas kecepatan reguler @@ -10135,14 +10087,6 @@ Klik tombol "Temukan plugin" tepat dibawah bagian jendela untuk memasa Completed (0) Selesai (0) - - Resumed (0) - Dilanjutkan (0) - - - Paused (0) - Dijeda (0) - Running (0) @@ -10233,32 +10177,16 @@ Klik tombol "Temukan plugin" tepat dibawah bagian jendela untuk memasa Stop torrents - - Paused (%1) - Dijeda (%1) - Moving (%1) Memindahkan (%1) - - Resume torrents - Lanjutkan torrent - - - Pause torrents - Tangguhkan torrent - Remove torrents Hilangkan Torrent - - Resumed (%1) - Dilanjutkan (%1) - Active (%1) @@ -10330,23 +10258,11 @@ Klik tombol "Temukan plugin" tepat dibawah bagian jendela untuk memasa Remove unused tags Buang tag yang tidak digunakan - - Resume torrents - Lanjutkan torrent - - - Pause torrents - Jeda torrent - Remove torrents Hilangkan Torrent - - New Tag - Tag Baru - Start torrents @@ -10682,17 +10598,17 @@ Mohon memilih nama lain dan coba lagi. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10944,13 +10860,6 @@ Mohon memilih nama lain dan coba lagi. Mengamati folder: "%1" - - TorrentInfo - - Invalid metadata - Metadata tidak valid - - TorrentOptionsDialog @@ -10988,10 +10897,6 @@ Mohon memilih nama lain dan coba lagi. Torrent Share Limits - - Torrent speed limits - Batasan kecepatan torrent - Download: @@ -11024,34 +10929,6 @@ Mohon memilih nama lain dan coba lagi. Upload: Unggahan: - - Torrent share limits - Batas berbagi torrent - - - Use global share limit - Gunakan batas berbagi global - - - Set no share limit - Atur tiada limit bagi - - - Set share limit to - Atur limit bagi ke - - - ratio - rasio - - - total minutes - jumlah menit - - - inactive minutes - menit tidak aktif - Disable DHT for this torrent @@ -11093,14 +10970,6 @@ Mohon memilih nama lain dan coba lagi. Not applicable to private torrents Tidak berlaku untuk torrent pribadi - - No share limit method selected - Tidak ada batasan berbagi metode terpilih - - - Please select a limit method first - Mohon pilih metode limit dahulu - TorrentShareLimitsWidget @@ -11160,7 +11029,7 @@ Mohon memilih nama lain dan coba lagi. Remove torrent - Buang torrent + Buang torrent @@ -11170,7 +11039,7 @@ Mohon memilih nama lain dan coba lagi. Enable super seeding for torrent - Aktifkan berbagi super untuk torrent + Aktifkan berbagi super untuk torrent @@ -11185,10 +11054,6 @@ Mohon memilih nama lain dan coba lagi. Torrent Tags Penanda Torrent - - New Tag - Tag Baru - Add tag @@ -11223,78 +11088,78 @@ Mohon memilih nama lain dan coba lagi. TorrentsController - + Error: '%1' is not a valid torrent file. Galat: '%1' bukan berkas torrent yang valid. - + Priority must be an integer Prioritas harus sebuah integer - + Priority is not valid Prioritas tidak sah - + Torrent's metadata has not yet downloaded - + File IDs must be integers ID berkas harus integer - + File ID is not valid ID berkas tidak sah - - - - + + + + Torrent queueing must be enabled Antrian torrent harus diaktifkan - - + + Save path cannot be empty Jalur penyimpanan tidak bisa kosong - - + + Cannot create target directory - - + + Category cannot be empty Kategori tidak bisa kosong - + Unable to create category Tidak bisa membuat kategori - + Unable to edit category Tidak bisa mengedit kategori - + Unable to export torrent file. Error: %1 - + Cannot make save path Tidak bisa membuat jalur penyimpanan @@ -11314,39 +11179,39 @@ Mohon memilih nama lain dan coba lagi. Parameter 'urutan' tidak sah - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Tidak bisa menulis jalur penyimpanan - + WebUI Set location: moving "%1", from "%2" to "%3" Lokasi Set WebUI: memindahkan "%1", dari "%2" ke "%3" - + Incorrect torrent name Nama torrent salah - - + + Incorrect category name Kesalahan kategori nama @@ -11446,19 +11311,11 @@ Mohon memilih nama lain dan coba lagi. Min Announce - - Invalid status! - Status tidak valid! - Tier Tingkatan - - Protocol - Protokol - Status @@ -11489,14 +11346,6 @@ Mohon memilih nama lain dan coba lagi. Message Pesan - - Next announce - Pengumuman selanjutnya - - - v%1 - v%1 - TrackerListWidget @@ -11506,73 +11355,73 @@ Mohon memilih nama lain dan coba lagi. Torrent ini pribadi - + Tracker editing Pengubahan Pencari - + Tracker URL: URL Pencari: - - + + Tracker editing failed Pengubahan pencari gagal - + The tracker URL entered is invalid. URL Pencari yang dimasukkan tidak sah. - + The tracker URL already exists. URL pencari sudah ada. - + Edit tracker URL... Ubah URL pelacak... - + Remove tracker Hapus pencari - + Copy tracker URL Salin URL pencari - + Force reannounce to selected trackers Paksa umumkan-ulang ke pencari terpilih - + Force reannounce to all trackers Paksa umumkan-ulang ke semua pencari - + Resize columns Ubah ukuran kolom - + Resize all non-hidden columns to the size of their contents Ubah ukuran semua kolom yang tidak disembunyikan sesuai ukuran konten kolom - + Add trackers... Tambah pelacak... - + Column visibility Keterlihatan Kolom @@ -11662,14 +11511,6 @@ Mohon memilih nama lain dan coba lagi. Stop torrents - - Resume torrents - Lanjutkan torrent - - - Pause torrents - Tangguhkan torrent - Remove torrents @@ -11792,10 +11633,6 @@ Mohon memilih nama lain dan coba lagi. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Memeriksa data kelanjutan - - Paused - Dijeda - Completed @@ -11836,21 +11673,16 @@ Mohon memilih nama lain dan coba lagi. % Done Kemajuan - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Dihentikan Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11966,22 +11798,17 @@ Mohon memilih nama lain dan coba lagi. Time Active Time (duration) the torrent is active (not stopped) - Waktu Aktif + Lama Aktif Yes - Ya + Ya No - Tidak - - - Time Active - Time (duration) the torrent is active (not paused) - Waktu Aktif + Tidak @@ -12083,341 +11910,319 @@ Mohon memilih nama lain dan coba lagi. TransferListWidget - + Column visibility Keterlihatan kolom - + Recheck confirmation Komfirmasi pemeriksaan ulang - + Are you sure you want to recheck the selected torrent(s)? Apakah Anda yakin ingin memeriksa ulang torrent yang dipilih? - + Rename Ubah nama - + New name: Nama baru: - + Choose save path Pilih jalur penyimpanan - Would you like to pause all torrents? - Ingin tunda semua torrents? - - - Would you like to resume all torrents? - Ingin lanjutkan semua torrents? - - - + Unable to preview Tidak dapat melihat pratinjau - + The selected torrent "%1" does not contain previewable files Torrent "%1" berisi berkas yang tidak bisa ditinjau - + Resize columns Ubah ukuran kolom - + Resize all non-hidden columns to the size of their contents Ubah ukuran semua kolom yang tidak disembunyikan sesuai ukuran konten kolom - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Tambah Tag - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags Buang Semua Tag - + Remove all tags from selected torrents? Buang semua tag dari torrent yang dipilih? - + Comma-separated tags: Koma-pemisah tag: - + Invalid tag Kesalahan tag - + Tag name: '%1' is invalid Nama tag: '%1' tidak valid - &Resume - Resume/start the torrent - &Lanjutkan - - - &Pause - Pause the torrent - Tang&guhkan - - - + Pre&view file... - + Torrent &options... - + Open destination &folder - + Move &up i.e. move up in the queue Pindah %atas - + Move &down i.e. Move down in the queue Pindah &bawah - + Move to &top i.e. Move to top of the queue - + Move to &bottom i.e. Move to bottom of the queue - + Set loc&ation... Atur lok&asi... - + Force rec&heck Paksa &periksa ulang - + Force r&eannounce Paksa r&announce - + &Magnet link Tautan &Magnet - + Torrent &ID &ID Torrent - + &Comment &Komentar - + &Name &Nama - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info &hash v2 - + Re&name... Na&mai ulang... - + Edit trac&kers... Sunting &pelacak... - + E&xport .torrent... Eks&por .torrent... - + Categor&y Kategor&i - + &New... New category... &Baru... - + &Reset Reset category &Kembalikan - + Ta&gs - + &Add... Add / assign multiple tags... &Tambahkan... - + &Remove All Remove all tags &Hapus Semua - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Antrian - + &Copy &Salin - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Unduh berurutan - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Kesalahan tidak diketahui ketika mengekspor file .torrent. Periksa log eksekusi untuk lebih detail. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &Hapus - + Download first and last pieces first Unduh bagian-bagian pertama dan akhir terlebih dahulu - + Automatic Torrent Management Manajemen Torrent Otomatis - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Mode otomatis berarti berbagai properti torrent (misal tempat penyimpanan) akan ditentukan dengan kategori terkait - + Super seeding mode Mode pembibitan super @@ -12549,32 +12354,32 @@ Mohon memilih nama lain dan coba lagi. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12666,52 +12471,52 @@ Mohon memilih nama lain dan coba lagi. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Tipe berkas tidak diterima, hanya berkas reguler diterima. - + Symlinks inside alternative UI folder are forbidden. Symlinks didalam alternatif folder UI dilarang. - + Using built-in WebUI. Gunakan built-in WebUI. - + Using custom WebUI. Location: "%1". Gunakan WebUI kustom. Lokasi "%1" - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 Web server error. %1 - + Web server error. Unknown error. @@ -12769,7 +12574,7 @@ Mohon memilih nama lain dan coba lagi. Unknown error - Galat tidak diketahui + Galat tidak diketahui diff --git a/src/lang/qbittorrent_is.ts b/src/lang/qbittorrent_is.ts index d0d78f382..889652b79 100644 --- a/src/lang/qbittorrent_is.ts +++ b/src/lang/qbittorrent_is.ts @@ -290,25 +290,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -439,12 +439,12 @@ Ekki sækja - + Filter files... - + I/O Error I/O Villa @@ -453,19 +453,19 @@ Þegar á niðurhal lista - + Not Available This comment is unavailable Ekki í boði - + Not Available This date is unavailable Ekki í boði - + Not available Ekki í boði @@ -474,12 +474,12 @@ Get ekki bætt við torrent - + Magnet link - + Retrieving metadata... @@ -489,8 +489,8 @@ Ekki í boði - - + + Choose save path Veldu vista slóðina @@ -507,59 +507,59 @@ Skráin gat ekki verið endurnefnd - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A - + %1 (Free space on disk: %2) - + Not available This size is unavailable. Ekki í boði - + Torrent file (*%1) - + Save as torrent file - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. @@ -580,12 +580,12 @@ Forgangur - + Parsing metadata... - + Metadata retrieval complete @@ -597,35 +597,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -788,549 +788,560 @@ AdvancedSettings - - - - + + + + MiB MiB - + Socket backlog size - + Recheck torrents on completion - - + + ms milliseconds ms - + Setting Stillingar - + Value Value set for this setting Gildi - + (disabled) - + (auto) (sjálfgefið) - - + + min minutes - + All addresses - + qBittorrent Section - - + + Open documentation - + All IPv4 addresses - + All IPv6 addresses - + libtorrent Section - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Venjulegt - + Below normal - + Medium - + Low - + Very low - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache - - - - + + + + + s seconds s - + Disk cache expiry interval - + Disk queue size - - + + Enable OS cache - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - + Stop tracker timeout [0: disabled] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Type of service (ToS) for connections to peers - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Server-side request forgery (SSRF) mitigation - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length @@ -1340,159 +1351,159 @@ m - + Prefer TCP - + Peer proportional (throttles TCP) - + Allow multiple connections from the same IP address - + Resolve peer host names - + Display notifications - + Display notifications for added torrents - + Notification timeout [0: infinite, -1: system default] - + Download tracker's favicon - + Save path history length - + Enable speed graphs - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck - + Confirm removal of all tags - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Validate HTTPS tracker certificates - + Disallow connection to peers on privileged ports - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker - + Embedded tracker port @@ -1533,84 +1544,84 @@ qBittorrent %1 byrjað - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 Torrent nafn: %1 - + Torrent size: %1 Torrent stærð: %1 - + Save path: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds - - + + Thank you for using qBittorrent. - + This is a test email. - + Test email - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. @@ -1619,55 +1630,55 @@ [qBittorrent] '%1' hefur lokið niðurhali - + Torrent: %1, sending mail notification - + Running external program. Torrent: "%1". Command: `%2` - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit H&ætta - + I/O Error i.e: Input/Output Error I/O Villa - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1679,23 +1690,23 @@ Villa - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. @@ -1705,72 +1716,72 @@ Gat ekki sótt torrent skrá af URL '%1', ástæða: %2. - + Information Upplýsingar - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Aldrei - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Vista torrent framfarir... - + qBittorrent is now ready to exit @@ -1922,145 +1933,145 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &útflutningur... - + Matches articles based on episode filter. - + Example: Dæmi: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match - + Episode filter rules: - + Season number is a mandatory non-zero value - + Filter must end with semicolon - + Three range types for episodes are supported: - + Single number: <b>1x25;</b> matches episode 25 of season one - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value - + Rules - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago - + Last Match: Unknown - + New rule name - + Please type the name of the new download rule. - - - - Rule name conflict - - + Rule name conflict + + + + + A rule with this name already exists, please choose another name. - + Are you sure you want to remove the download rule named '%1'? - + Are you sure you want to remove the selected download rules? - + Rule deletion confirmation - + Invalid action Ógild aðgerð - + The list is empty, there is nothing to export. - + Export RSS rules - + I/O Error I/O Villa - + Failed to create the destination file. Reason: %1 - + Import RSS rules @@ -2069,120 +2080,120 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also innflutnings Villa - + Failed to import the selected rules file. Reason: %1 - + Add new rule... - + Delete rule - + Rename rule... - + Delete selected rules - + Clear downloaded episodes... - + Rule renaming - + Please type the new rule name - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2241,28 +2252,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2273,16 +2294,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2290,38 +2312,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2329,22 +2373,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2383,498 +2427,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2931,47 +2980,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3603,22 +3652,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3913,6 +3962,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -4349,12 +4432,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Sýna - + Check for program updates @@ -4369,175 +4452,175 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Execution Log - + Clear the password - + &Set Password - + Preferences - + &Clear Password - + Transfers - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only - + Text Only - + Text Alongside Icons - + Text Under Icons - + Follow System Style - - + + UI lock password - - + + Please type the UI lock password: - + Are you sure you want to clear the password? - + Use regular expressions - - + + Search Engine Leitarvél - + Search has failed - + Search has finished Leit lokið - + Search Leita - + Transfers (%1) - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". @@ -4563,65 +4646,65 @@ Please install it manually. Aldrei - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? - + &No &Nei - + &Yes &Já - + &Always Yes &Alltaf já - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - - + + Missing Python Runtime - + qBittorrent Update Available qBittorrent uppfærsla í boði @@ -4636,72 +4719,72 @@ Viltu sækja %1? Gat ekki sótt torrent skrá af URL '%1', ástæða: %2. - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime - + A new version is available. - + Do you want to download %1? - + Open changelog... - + No updates available. You are already using the latest version. - + &Check for Updates &Athuga með uppfærslur - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - + Checking for Updates... Athuga með uppfærslur... - + Already checking for program updates in the background @@ -4710,51 +4793,51 @@ Minimum requirement: %2. Python fannst í '%1' - + Download error Niðurhal villa - - + + Invalid password - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid - + DL speed: %1 e.g: Download speed: 10 KiB/s - + UP speed: %1 e.g: Upload speed: 10 KiB/s @@ -4765,22 +4848,22 @@ Minimum requirement: %2. [D: %1, U: %2] qBittorrent %3 - + Hide Fela - + Exiting qBittorrent Hætti qBittorrent - + Open Torrent Files - + Torrent Files @@ -6289,47 +6372,47 @@ Minimum requirement: %2. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -6474,73 +6557,78 @@ Minimum requirement: %2. - + + Show free disk space in status bar + + + + Torrent content layout: - + Original - + Create subfolder - + Don't create subfolder - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... - + Options.. - + Remove - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6557,341 +6645,346 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + Start time - + From: From start time - + End time - + To: To end time - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: - - - + + + min minutes - + Seeding Limits - + Remove torrent - + Remove torrent and its files - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: Slóð: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: - + Web User Interface (Remote control) - + IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Aldrei - + ban for: - + Session timeout: - + Disabled - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6900,37 +6993,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -7043,99 +7136,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management - + Default Torrent Management Mode: - + Manual - + Automatic - + When Torrent Category changed: - + Relocate torrent - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories - + Default Save Path: - + Copy .torrent files to: @@ -7145,22 +7238,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files @@ -7255,64 +7348,64 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -7337,269 +7430,264 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Receiver - + To: To receiver - + SMTP server: - + Sender - + From: From sender - + This server requires a secure connection (SSL) - - + + Authentication - - - - + + + + Username: Notandanafn: - - - - + + + + Password: Lykilorð: - + Run external program - + Show console window - + TCP and μTP - + Listening Port - + Port used for incoming connections: - + Set to 0 to let your system pick an unused port - + Random - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits - + Maximum number of connections per torrent: - + Global maximum number of connections: - + Maximum number of upload slots per torrent: - + Global maximum number of upload slots: - + Proxy Server - + Type: - + SOCKS4 - + SOCKS5 - + HTTP - - + + Host: - - - + + + Port: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... - + Apply to trackers - + Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s - - + + Upload: @@ -7608,272 +7696,272 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyKiB/s - - + + Download: - + Alternative Rate Limits - + When: - + Every day Daglega - + Weekdays - + Weekends - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds - + Torrent inactivity timer: - + then - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: - + Key: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password - + Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: - + Register - + Domain name: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7883,12 +7971,12 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7908,183 +7996,183 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name - + %L: Category - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path - + %C: Number of files - + %Z: Torrent size (bytes) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -8094,69 +8182,69 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -8167,18 +8255,18 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Time Error - + The start time and the end time can't be the same. - - + + Length Error @@ -8269,163 +8357,163 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually PeerListWidget - + Country/Region - + IP/Address - + Port - + Flags - + Connection Tenging - + Client i.e.: Client application - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Framför - + Down Speed i.e: Download speed - + Up Speed i.e: Upload speed - + Downloaded i.e: total data downloaded Sótt - + Uploaded i.e: total data uploaded - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. - + Files i.e. files that are being downloaded right now Skrár - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A - + Copy IP:port @@ -8749,39 +8837,6 @@ Those plugins were disabled. - - PowerManagement - - - qBittorrent is active - - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - - - PreviewSelect @@ -9139,99 +9194,99 @@ Those plugins were disabled. Ekki sækja - + Never Aldrei - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (hafa %3) - - + + %1 (%2 this session) - - + + N/A - + Yes - + No Nei - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 mest) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 alls) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. @@ -9248,12 +9303,12 @@ Those plugins were disabled. Forgangur - + Speed graphs are disabled - + You can enable it in Advanced Options @@ -9282,17 +9337,17 @@ Those plugins were disabled. qBittorrent - + Filter files... - + Web seed editing - + Web seed URL: @@ -9386,33 +9441,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -9420,22 +9475,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -9484,12 +9539,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -9511,76 +9566,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Slóð: + + + + Refresh interval: + + + + + sec + + + + + Default + + + RSSImp @@ -9707,78 +9803,61 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name - + Folder name: Möppu nafn: - + New folder Ný mappa - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: Dagsetning: - + Feed: - + Author: Höfundur: @@ -10084,104 +10163,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories Allir flokkar - + Movies Kvikmyndir - + TV shows Sjónvarpsþættir - + Music Tónlist - + Games Leikir - + Anime - + Software - + Pictures Myndir - + Books Bækur - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -10239,94 +10318,94 @@ Click the "Search plugins..." button at the bottom right of the window - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins - + Only enabled - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab - + Close all tabs - + Select... - - + + Search Engine Leitarvél - - + + Please install Python to use the Search Engine. - + Empty search pattern - + Please type a search pattern first - + Stop @@ -10338,32 +10417,32 @@ Click the "Search plugins..." button at the bottom right of the window SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10769,67 +10848,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes - + qBittorrent needs to be restarted! - - + + Connection Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -11428,17 +11517,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -12080,78 +12169,78 @@ Please choose a different name and try again. Virkar ekki - + Error: '%1' is not a valid torrent file. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -12171,39 +12260,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name @@ -12423,53 +12512,53 @@ Please choose a different name and try again. Virkar ekki - + Tracker editing - + Tracker URL: - - + + Tracker editing failed - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker - + Copy tracker URL - + Force reannounce to selected trackers - + Force reannounce to all trackers @@ -12482,17 +12571,17 @@ Please choose a different name and try again. Staða - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... @@ -12505,7 +12594,7 @@ Please choose a different name and try again. Skilaboð - + Column visibility @@ -13094,117 +13183,117 @@ Please choose a different name and try again. TransferListWidget - + Column visibility - + Choose save path Veldu vista slóðina - + Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + Rename Endurnefna - + New name: Nýtt nafn: - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags - + Remove all tags from selected torrents? - + Comma-separated tags: - + Invalid tag - + Tag name: '%1' is invalid @@ -13214,179 +13303,179 @@ Please choose a different name and try again. &Eyða - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported @@ -13420,22 +13509,22 @@ Please choose a different name and try again. Nafn - + Download in sequential order - + Download first and last pieces first - + Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category @@ -13456,7 +13545,7 @@ Please choose a different name and try again. Afrita magnet slóð - + Super seeding mode @@ -13592,32 +13681,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -13717,52 +13806,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index 08d9ee029..4b53340c6 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -171,10 +171,6 @@ Il database è concesso in licenza con la licenza internazionale Creative Common Never show again Non visualizzare più - - Torrent settings - Impostazioni torrent - Set as default category @@ -208,7 +204,7 @@ Il database è concesso in licenza con la licenza internazionale Creative Common Torrent options - + Opzioni torrent @@ -236,25 +232,25 @@ Il database è concesso in licenza con la licenza internazionale Creative Common Condizione stop: - - + + None Nessuna - - + + Metadata received Ricevuti metadati - + Torrents that have metadata initially will be added as stopped. I torrent con metadati iniziali saranno aggiunti come fermati. - + Files checked File controllati @@ -369,112 +365,112 @@ Il database è concesso in licenza con la licenza internazionale Creative Common Salva come file .torrent... - + I/O Error Errore I/O - + Not Available This comment is unavailable Commento non disponibile - + Not Available This date is unavailable Non disponibile - + Not available Non disponibile - + Magnet link Collegamento magnet - + Retrieving metadata... Recupero metadati... - - + + Choose save path Scegli una cartella per il salvataggio - + No stop condition is set. Non è impostata alcuna condizione di arresto. - + Torrent will stop after metadata is received. Il torrent si interromperà dopo la ricezione dei metadati. - + Torrent will stop after files are initially checked. Il torrent si fermerà dopo che i file sono stati inizialmente controllati. - + This will also download metadata if it wasn't there initially. Questo scaricherà anche i metadati se inizialmente non erano presenti. - + N/A N/D - + %1 (Free space on disk: %2) %1 (Spazio libero nel disco: %2) - + Not available This size is unavailable. Non disponibile - + Torrent file (*%1) File torrent (*%1) - + Save as torrent file Salva come file torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Impossibile esportare file metadati torrent "%1": motivo %2. - + Cannot create v2 torrent until its data is fully downloaded. Impossibile creare torrent v2 fino a quando i relativi dati non sono stati completamente scaricati. - + Filter files... Filtra file... - + Parsing metadata... Analisi metadati... - + Metadata retrieval complete Recupero metadati completato @@ -482,41 +478,45 @@ Il database è concesso in licenza con la licenza internazionale Creative Common AddTorrentManager - + Downloading torrent... Source: "%1" Download torrent... Sorgente: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Impossibile aggiungere il torrent. Sorgente: "%1" Motivo: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Rilevato un tentativo di aggiungere un torrent duplicato. + Rilevato un tentativo di aggiungere un torrent duplicato. Sorgente: %1 Torrent esistente: %2 Risultato: %3 - + Merging of trackers is disabled L'unione dei tracker è disabilitata - + Trackers cannot be merged because it is a private torrent I tracker non possono essere uniti perché è un torrent privato - + Trackers are merged from new source I trackersono stati uniti dalla nuova sorgente + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -679,706 +679,717 @@ Risultato: %3 AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Ricontrolla torrent quando completato - - + + ms milliseconds ms - + Setting Impostazione - + Value Value set for this setting Valore - + (disabled) (disattivato) - + (auto) (auto) - - + + min minutes min - + All addresses Tutti gli indirizzi - + qBittorrent Section Sezione qBittorrent - - + + Open documentation Apri documentazione - + All IPv4 addresses Tutti gli indirizzi IPv4 - + All IPv6 addresses Tutti gli indirizzi IPv6 - + libtorrent Section Sezione libtorrent - + Fastresume files File ripresa rapida - + SQLite database (experimental) Database SQL (sperimentale) - + Resume data storage type (requires restart) Tipo storage dati ripristino (richiede riavvio) - + Normal Normale - + Below normal Inferiore a normale - + Medium Media - + Low Bassa - + Very low Molto bassa - + Physical memory (RAM) usage limit Limite uso memoria fisica (RAM). - + Asynchronous I/O threads Thread I/O asincroni - + Hashing threads Thread hashing - + File pool size Dimensione file pool - + Outstanding memory when checking torrents Memoria aggiuntiva durante controllo torrent - + Disk cache Cache disco - - - - + + + + + s seconds s - + Disk cache expiry interval Intervallo scadenza cache disco - + Disk queue size Dimensioni coda disco - - + + Enable OS cache Attiva cache del SO - + Coalesce reads & writes Combina letture e scritture - + Use piece extent affinity Usa affinità estensione segmento - + Send upload piece suggestions Invia suggerimenti parti per invio - - - - - + + + + + 0 (disabled) 0 (disabilitato) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Intervallo ripresa salvataggio dati [0: disabilitato] - + Outgoing ports (Min) [0: disabled] Porte in uscita (min) [0: disabilitata] - + Outgoing ports (Max) [0: disabled] Porte in uscita (max) [0: disabilitata] - + 0 (permanent lease) 0 (lease permanente) - + UPnP lease duration [0: permanent lease] Durata lease UPnP [0: lease permanente] - + Stop tracker timeout [0: disabled] Timeout stop tracker [0: disabilitato] - + Notification timeout [0: infinite, -1: system default] Timeout notifica [0: infinito, -1: predefinito sistema] - + Maximum outstanding requests to a single peer Numero max richieste in sospeso per singolo peer - - - - - + + + + + KiB KiB - + (infinite) (infinito) - + (system default) (predefinito sistema) - + Delete files permanently - + Elimina i file permanentemente - + Move files to trash (if possible) - + Sposta i file nel cestino (se possibile) - + Torrent content removing mode - + Modalità di rimozione contenuto torrent - + This option is less effective on Linux Questa opzione è meno efficace su Linux - + Process memory priority Priorità processo memoria - + Bdecode depth limit Limite profondità Bdecode - + Bdecode token limit Limite token Bdecode - + Default Predefinito - + Memory mapped files File mappati in memoria - + POSIX-compliant Conforme a POSIX - + Simple pread/pwrite - + Lettura/scrittura semplice - + Disk IO type (requires restart) Tipo di I/O del disco (richiede il riavvio) - - + + Disable OS cache Disabilita cache sistema operativo - + Disk IO read mode Modalità I/O lettura disco - + Write-through Write-through - + Disk IO write mode Modalità I/O scrittura disco - + Send buffer watermark Livello buffer invio - + Send buffer low watermark Livello buffer basso invio - + Send buffer watermark factor Fattore livello buffer invio - + Outgoing connections per second Connessioni in uscita per secondo - - + + 0 (system default) 0 (predefinito sistema) - + Socket send buffer size [0: system default] Dimensionei buffer socket invio [0: predefinita sistema] - + Socket receive buffer size [0: system default] Dimensione buffer ricezione socket [0: predefinita sistema] - + Socket backlog size Dimensione backlog socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Intervallo salvataggio statistiche [0: disabilitato] - + .torrent file size limit Limite dimensione file .torrent - + Type of service (ToS) for connections to peers Tipo di servizio (ToS) per le connessioni ai peer - + Prefer TCP Preferisci TCP - + Peer proportional (throttles TCP) Proporzionale per nodo (soffoca TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Supporto nome dominio internazionalizzato (IDN) - + Allow multiple connections from the same IP address Permetti connessioni multiple dallo stesso indirizzo IP - + Validate HTTPS tracker certificates Valida certificati tracker HTTPS - + Server-side request forgery (SSRF) mitigation Necessaria mitigazione falsificazione richieste lato server (SSRF) - + Disallow connection to peers on privileged ports Non consentire la connessione a peer su porte privilegiate - + It appends the text to the window title to help distinguish qBittorent instances Aggiunge il testo al titolo della finestra per aiutare a distinguere le istanze di qBittorent - + Customize application instance name Personalizza il nome dell'istanza dell'applicazione - + It controls the internal state update interval which in turn will affect UI updates Controlla l'intervallo di aggiornamento dello stato interno che a sua volta influenzerà gli aggiornamenti dell'interfaccia utente - + Refresh interval Intervallo aggiornamento - + Resolve peer host names Risolvi i nomi host dei nodi - + IP address reported to trackers (requires restart) Indirizzo IP segnalato ai tracker (richiede il riavvio) - + Port reported to trackers (requires restart) [0: listening port] - + Porta riportata al tracker (richiede riavvio) [0: porta in ascolto] - + Reannounce to all trackers when IP or port changed Riannuncia a tutti i tracker quando l'IP o la porta sono cambiati - + Enable icons in menus Abilita icone nei menu - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Abilita il port forwarding per il tracker incorporato - + Enable quarantine for downloaded files Abilita quarantena per i file scaricati - + Enable Mark-of-the-Web (MOTW) for downloaded files Abilita Mark-of-the-Web (MOTW) per i file scaricati - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Influisce sulla convalida del certificato e sulle attività del protocollo non torrent (ad esempio feed RSS, aggiornamenti programma, file torrent, db geoip, ecc.) - + Ignore SSL errors - + Ignora errori SSL - + (Auto detect if empty) (Rilevamento automatico se vuoto) - + Python executable path (may require restart) Percorso eseguibile Python (potrebbe richiedere il riavvio) - + Start BitTorrent session in paused state - + Avvia la sessione BitTorrent in stato di pausa - + sec seconds - s + s - + -1 (unlimited) - + -1 (illimitato) - + BitTorrent session shutdown timeout [-1: unlimited] - + Timeout di spegnimento della sessione BitTorrent [-1: illimitato] - + Confirm removal of tracker from all torrents Conferma rimozione tracker da tutti i torrent - + Peer turnover disconnect percentage Percentuale di disconnessione turnover peer - + Peer turnover threshold percentage Percentuale livello turnover peer - + Peer turnover disconnect interval Intervallo disconnessione turnover peer - + Resets to default if empty Ripristina il predefinito se vuoto - + DHT bootstrap nodes Nodi bootstrap DHT - + I2P inbound quantity Quantità I2P in entrata - + I2P outbound quantity Quantità I2P in uscita - + I2P inbound length Lunghezza I2P in entrata - + I2P outbound length Lunghezza I2P in uscita - + Display notifications Visualizza notifiche - + Display notifications for added torrents Visualizza notifiche per i torrent aggiunti - + Download tracker's favicon Scarica iconcina server traccia - + Save path history length Lunghezza storico percorso di salvataggio - + Enable speed graphs Abilita grafico velocità - + Fixed slots Posizioni fisse - + Upload rate based Secondo velocità di invio - + Upload slots behavior Comportamento slot invio - + Round-robin A turno - + Fastest upload Invio più veloce - + Anti-leech Anti-download - + Upload choking algorithm Algoritmo riduzione invio - + Confirm torrent recheck Conferma ricontrollo torrent - + Confirm removal of all tags Conferma rimozione di tutte le etichette - + Always announce to all trackers in a tier Annuncia sempre a tutti i server traccia in un livello - + Always announce to all tiers Annuncia sempre a tutti i livelli - + Any interface i.e. Any network interface Qualsiasi interfaccia - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algoritmo modalità mista %1-TCP - + Resolve peer countries Risolvi nazioni peer - + Network interface Interfaccia di rete - + Optional IP address to bind to Indirizzo IP opzionale a cui collegarsi - + Max concurrent HTTP announces Annunci HTTP contemporanei max - + Enable embedded tracker Abilita server traccia integrato - + Embedded tracker port Porta server traccia integrato @@ -1389,148 +1400,148 @@ Risultato: %3 Invalid directory path - + Percorso directory non valido Directory does not exist - + La directory non esiste Invalid mode, allowed values: %1 - + Modalità non valida, valori consentiti: %1 cookies must be array - + i cookie devono essere una matrice Application - + Running in portable mode. Auto detected profile folder at: %1 In esecuzione in modo portatile. Rilevamento automatico cartella profilo in: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Rilevato flag della riga di comando ridondante: "%1". La modalità portatile implica una relativa ripresa rapida. - + Using config directory: %1 Usa cartella config: %1 - + Torrent name: %1 Nome torrent: %1 - + Torrent size: %1 Dimensione torrent: %1 - + Save path: %1 Percorso di salvataggio: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Il torrent è stato scaricato in %1. - - + + Thank you for using qBittorrent. Grazie di usare qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, invio mail di notifica - + Add torrent failed Aggiunta torrent non riuscita - + Couldn't add torrent '%1', reason: %2. Impossibile aggiungere il torrent '%1'. Motivo: %2. - + The WebUI administrator username is: %1 Il nome utente dell'amministratore WebUI è: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 La password dell'amministratore WebUI non è stata impostata. Per questa sessione viene fornita una password temporanea: %1 - + You should set your own password in program preferences. Dovresti impostare la tua password nelle preferenze del programma. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. L'interfaccia utente Web è disabilitata! Per abilitare l'interfaccia utente Web, modificare manualmente il file di configurazione. - + Running external program. Torrent: "%1". Command: `%2` Esecuzione programma esterno. torrent: "%1". comando: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Impossibile eseguire il programma esterno. Torrent: "%1". Comando: `%2` - + Torrent "%1" has finished downloading Download completato torrent "%1" - + WebUI will be started shortly after internal preparations. Please wait... WebUI verrà avviats poco dopo i preparativi interni. Attendi... - - + + Loading torrents... Caricamento torrent... - + E&xit &Esci - + I/O Error i.e: Input/Output Error Errore I/O - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1539,95 +1550,95 @@ Comando: `%2` Motivo: %2 - + Torrent added Torrent aggiunto - + '%1' was added. e.g: xxx.avi was added. '%1' è stato aggiunto. - + Download completed Download completato - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 avviato. ID processo: %2 - + This is a test email. - + Questa è una email di prova. - + Test email - + Email di prova - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Download completato di '%1'. - + Information Informazioni - + To fix the error, you may need to edit the config file manually. Per correggere l'errore, potrebbe essere necessario modificare manualmente il file di configurazione. - + To control qBittorrent, access the WebUI at: %1 Per controllare qBittorrent, accedi alla WebUI a: %1 - + Exit Esci - + Recursive download confirmation Conferma ricorsiva download - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Il torrent '%1' contiene file .torrent. Vuoi procedere con il loro download? - + Never Mai - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Download ricorsivo di file .torrent all'interno di torrent. Sorgente torrent: "%1" File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Impossibile impostare il limite di uso della memoria fisica (RAM). Codice di errore: %1. Messaggio di errore: "%2". - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Impossibile impostare il limite fisso di uso della memoria fisica (RAM). Dimensione richiesta: %1. @@ -1636,22 +1647,22 @@ Codice errore: %3. Messaggio di errore: "%4" - + qBittorrent termination initiated Chiusura di qBittorrent avviata - + qBittorrent is shutting down... Chiusura di qBittorrent... - + Saving torrent progress... Salvataggio avazamento torrent in corso... - + qBittorrent is now ready to exit qBittorrent è ora pronto per la chiusura @@ -1790,263 +1801,263 @@ Supporta i formati: S01E01, 1x1, 2017.12.31 e 31.12.2017 (I formati a data suppo &Esporta... - + Matches articles based on episode filter. Seleziona gli elementi che corrispondono al filtro episodi. - + Example: Esempio: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match seleziona gli episodi 2, 5, 8 fino a 15, 30 e successivi della prima stagione - + Episode filter rules: Regola per filtrare gli episodi: - + Season number is a mandatory non-zero value Il numero della stagione non può essere pari a zero - + Filter must end with semicolon La regola deve terminare con un punto e virgola - + Three range types for episodes are supported: Sono supportarti tre diversi tipi di intervallo: - + Single number: <b>1x25;</b> matches episode 25 of season one Numero singolo:<b>1x25;</b> corrisponde all'episodio 25 della prima stagione - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Intervallo normale: <b>1x25-40;</b> corrisponde agli episodi dal 25 al 40 della prima stagione - + Episode number is a mandatory positive value Il numero dell'episodio deve essere positivo - + Rules Regole - + Rules (legacy) Regole (obsolete) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Intervallo infinito: <b>1x25-;</b> corrisponde agli episodi da 25 in su della prima stagione e a tutti gli episodi delle stagioni successive - + Last Match: %1 days ago Ultima occorrenza: %1 giorni fa - + Last Match: Unknown Ultima occorrenza: Sconosciuto - + New rule name Nuovo nome regola - + Please type the name of the new download rule. Inserisci il nome della nuova regola download. - - + + Rule name conflict Conflitto nel nome della regola - - + + A rule with this name already exists, please choose another name. Una regola con questo nome esiste già, scegli un nome differente. - + Are you sure you want to remove the download rule named '%1'? Sei sicuro di voler rimuovere la regola di download con nome '%1'? - + Are you sure you want to remove the selected download rules? Vuoi rimuovere la regole di download selezionata? - + Rule deletion confirmation Conferma eliminazione della regola - + Invalid action Azione non valida - + The list is empty, there is nothing to export. La lista è vuota, non c'è niente da esportare. - + Export RSS rules Esporta regole RSS - + I/O Error Errore I/O - + Failed to create the destination file. Reason: %1 Impossibile creare il file destinazione.Motivo: %1 - + Import RSS rules Importa regole RSS - + Failed to import the selected rules file. Reason: %1 Impossibile importare il file di regole selezionato. Motivo: %1 - + Add new rule... Aggiungi nuova regola... - + Delete rule Elimina regola - + Rename rule... Rinomina regola... - + Delete selected rules Elimina regole selezionate - + Clear downloaded episodes... Azzera episodi scaricati... - + Rule renaming Rinominazione regole - + Please type the new rule name Inserire il nuovo nome della regola - + Clear downloaded episodes Azzera episodi scaricati - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Sei sicuro di voler azzerare la lista degli episodi scaricati per la regola selezionata? - + Regex mode: use Perl-compatible regular expressions Modalità regex: usa espressioni regolari Perl - - + + Position %1: %2 Posizione %1: %2 - + Wildcard mode: you can use Modalità jolly: puoi usare - - + + Import error Errore importazione - + Failed to read the file. %1 Impossibile leggere il file. %1 - + ? to match any single character ? corrisponde a qualunque carattere singolo - + * to match zero or more of any characters * corrisponde a zero o più caratteri qualsiasi - + Whitespaces count as AND operators (all words, any order) Gli spazi contano come operatori AND (tutte le parole, qualsiasi ordine) - + | is used as OR operator | è usato come operatore OR - + If word order is important use * instead of whitespace. Se l'ordine delle parole è importante usa * invece di uno spazio. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Un'espressione con una clausola %1 (per esempio %2) - + will match all articles. corrispondenza per tutti gli articoli. - + will exclude all articles. esclude tutti gli articoli. @@ -2098,29 +2109,39 @@ Supporta i formati: S01E01, 1x1, 2017.12.31 e 31.12.2017 (I formati a data suppo Impossibile analizzare dati di recupero: formato non valido - - + + Cannot parse torrent info: %1 Impossibile analizzare informazioni sul torrent: %1 - + Cannot parse torrent info: invalid format Impossibile analizzare informazioni sul torrent: formato non valido - + Mismatching info-hash detected in resume data Rilevato hash informativo non corrispondente nei dati ripresa trasferimento - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Impossibile salvare i metadati del torrent in '%1'. Errore: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Impossibile salvare i dati di ripristino del torrent in '%1'. Errore: %2. @@ -2132,16 +2153,17 @@ Errore: %2. + Cannot parse resume data: %1 Impossibile analizzare i dati di recupero: %1 - + Resume data is invalid: neither metadata nor info-hash was found I dati di recupero non sono validi: non sono stati trovati né metadati né info hash - + Couldn't save data to '%1'. Error: %2 Impossibile salvare i dati in '%1'. Errore: %2 @@ -2150,40 +2172,62 @@ Errore: %2 BitTorrent::DBResumeDataStorage - + Not found. Non trovato. - + Couldn't load resume data of torrent '%1'. Error: %2 Impossibile caricare dati ripresa torrent '%1'. Errore: %2. - - + + Database is corrupted. Il database è danneggiato. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Impossibile abilitare la modalità di journaling WAL (Write-Ahead Logging). Errore: '%1'. - + Couldn't obtain query result. Impossibile ottenere il risultato della query. - + WAL mode is probably unsupported due to filesystem limitations. La modalità WAL probabilmente non è supportata a causa delle limitazioni del file system. - + + + Cannot parse resume data: %1 + Impossibile analizzare i dati di recupero: %1 + + + + + Cannot parse torrent info: %1 + Impossibile analizzare informazioni sul torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Impossibile iniziare la transazione. Errore: %1 @@ -2192,24 +2236,24 @@ Errore: %1 BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Impossibile salvare i metadati del torrent. Errore: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Impossibile salvare dati ripresa torrent '%1'. Errore: %2. - + Couldn't delete resume data of torrent '%1'. Error: %2 Impossibile eliminare dati ripresa torrent '%1'. Errore: %2. - + Couldn't store torrents queue positions. Error: %1 Impossibile salvare posizione coda. Errore: %1 @@ -2217,272 +2261,259 @@ Errore: %2. BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Supporto tabella hash distribuita (DHT): %1 - - - - - - - - - + + + + + + + + + ON ON - - - - - - - - - + + + + + + + + + OFF OFF - - + + Local Peer Discovery support: %1 Supporto rilevamento peer locale: %1 - + Restart is required to toggle Peer Exchange (PeX) support Per attivare il supporto Peer Exchange (PeX). è necessario il riavvio - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Impossibile riprendere il torrent. Torrent: "%1". Motivo: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Impossibile riprendere il torrent: è stato rilevato un ID torrent incoerente. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Rilevati dati incoerenti: la categoria non è presente nel file di configurazione. La categoria verrà ripristinata ma le sue impostazioni verranno ripristinate ai valori predefiniti. Torrent: "%1". categoria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Rilevati dati incoerenti: categoria non valida. Torrent: "%1". categoria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Rilevata mancata corrispondenza tra i percorsi di salvataggio della categoria recuperata e il percorso di salvataggio attuale del torrent. Il torrent è ora passato alla modalità manuale. Torrent: "%1". categoria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Rilevati dati incoerenti: tag mancante nel file di configurazione. Il tag verrà recuperato. Torrent: "%1". etichetta: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Rilevati dati incoerenti: tag non valido. Torrent: "%1". etichetta: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Rilevato evento di riattivazione del sistema. Nuovo annuncio a tutti i tracker... - + Peer ID: "%1" ID peer: "%1" - + HTTP User-Agent: "%1" User Agent HTTP: "%1" - + Peer Exchange (PeX) support: %1 Supporto Peer Exchangei(PeX): %1 - - + + Anonymous mode: %1 Modalità anonima: %1 - - + + Encryption support: %1 Supporto crittografia: %1 - - + + FORCED FORZATO - + Could not find GUID of network interface. Interface: "%1" Impossibile trovare la GUID dell'interfaccia di rete. Interfaccia: "%1" - + Trying to listen on the following list of IP addresses: "%1" Tentativo di ascolto nel seguente elenco di indirizzi IP: "%1" - + Torrent reached the share ratio limit. Il torrent ha raggiunto il limite del rapporto di condivisione. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent rimosso. - - - Removed torrent and deleted its content. - Torrent rimosso ed eliminato il suo contenuto. - - - Torrent paused. - Torrent in pausa. - - - + Super seeding enabled. Super seeding abilitato. - + Torrent reached the seeding time limit. Il torrent ha raggiunto il limite del tempo di seeding. - + Torrent reached the inactive seeding time limit. Il torrent ha raggiunto il limite di tempo di seeding non attivo. - + Failed to load torrent. Reason: "%1" Impossibile caricare il torrent. Motivo: "%1" - + I2P error. Message: "%1". Errore I2P. Messaggio: "%1". - + UPnP/NAT-PMP support: ON Supporto UPnP/NAT-PMP: ON - + Saving resume data completed. - + Salvataggio dei dati di recupero completato. - + BitTorrent session successfully finished. - + Sessione BitTorrent completata con successo. - + Session shutdown timed out. - + La chiusura della sessione è scaduta. - + Removing torrent. - + Rimozione del torrent. - + Removing torrent and deleting its content. - + Rimozione del torrent ed eliminazione del suo contenuto. - + Torrent stopped. - + Torrent fermato. - + Torrent content removed. Torrent: "%1" - + Contenuto del torrent rimosso. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Impossibile rimuovere il contenuto del torrent. Torrent: "%1". Errore: "%2" - + Torrent removed. Torrent: "%1" - + Torrent rimosso. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Rilevato un tentativo di aggiungere un torrent duplicato. +Torrente esistente: %1. +Risultato: %2 - + Merging of trackers is disabled - L'unione dei tracker è disabilitata + L'unione dei tracker è disabilitata - + Trackers cannot be merged because it is a private torrent - I tracker non possono essere uniti perché è un torrent privato + I tracker non possono essere uniti perché è un torrent privato - + Trackers are merged from new source - I trackersono stati uniti dalla nuova sorgente + I trackersono stati uniti dalla nuova sorgente - + UPnP/NAT-PMP support: OFF Supporto UPnP/NAT-PMP: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Impossibile esportare il torrent. Torrent: "%1". @@ -2490,98 +2521,94 @@ Destinazione: "%2". Motivo: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Salvataggio dei dati di ripristino interrotto. Numero di torrent in sospeso: %1 - + The configured network address is invalid. Address: "%1" L'indirizzo di rete configurato non è valido. Indirizzo "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Impossibile trovare l'indirizzo di rete configurato su cui ascoltare. Indirizzo "%1" - + The configured network interface is invalid. Interface: "%1" L'interfaccia di rete configurata non è valida. Interfaccia: "%1" - + Tracker list updated - + Elenco tracker aggiornato - + Failed to update tracker list. Reason: "%1" - + Impossibile aggiornare elenco tracker.. +Motivo: %1 - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Indirizzo IP non valido rifiutato durante l'applicazione dell'elenco di indirizzi IP vietati. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Aggiunto tracker a torrent. Torrent: "%1" Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Tracker rimosso dal torrent. Torrent: "%1" Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Aggiunto seed URL al torrent. Torrent: "%1" URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Seed URL rimosso dal torrent. Torrent: "%1" URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Impossibile rimuovere partfile. Torrent: "%1". Motivo: "%2". - Torrent paused. Torrent: "%1" - Torrent in pausa. -Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent ripreso. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Download del torrent completato. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Spostamento torrent annullato. Torrent: "%1" @@ -2589,12 +2616,24 @@ Sorgente: "%2" Destinazione: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent fermato. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Impossibile accodare lo spostamento del torrent. Torrent: "%1" @@ -2603,7 +2642,7 @@ Destinazione: "%3" Motivo: il torrent si sta attualmente spostando verso la destinazione - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Impossibile accodare lo spostamento del torrent. Torrent: "%1" @@ -2612,7 +2651,7 @@ Destinazione: "%3" Motivo: entrambi i percorsi puntano alla stessa posizione - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Spostamento torrent in coda. Torrent: "%1" @@ -2620,75 +2659,65 @@ Sorgente: "%2" Destinazione: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Avvio spostamento torrent. Torrent: "%1" Destinazione: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Impossibile salvare la configurazione delle categorie. File: "%1" Errore: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Impossibile analizzare la configurazione delle categorie. File: "%1" Errore: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Analisi completata file del filtro IP. Numero di regole applicate: %1 - + Failed to parse the IP filter file Impossibile analizzare il file del filtro IP - + Restored torrent. Torrent: "%1" Torrente ripristinato. Torrent: "%1" - + Added new torrent. Torrent: "%1" Aggiunto nuovo torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Errore torrent. Torrent: "%1" Errore: "%2" - Removed torrent. Torrent: "%1" - Torrent rimosso. -Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent rimosso e cancellato il suo contenuto. -Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent privo dei parametri SSL. Torrent: "%1". Messaggio: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Avviso di errore del file. Torrent: "%1" @@ -2696,97 +2725,88 @@ File: "%2" Motivo: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Mappatura porta UPnP/NAT-PMP non riuscita. Messaggio: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Mappatura porta UPnP/NAT-PMP riuscita. Messaggio: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtro IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). porta filtrata (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). porta privilegiata (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL seed connessione fallita. +Torrent: %1. +URL: %2. +Errore: %3. - + BitTorrent session encountered a serious error. Reason: "%1" La sessione BitTorrent ha riscontrato un errore grave. Motivo: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Errore proxy SOCKS5. Indirizzo "%1". Messaggio: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 restrizioni in modalità mista - + Failed to load Categories. %1 Impossibile caricare le categorie. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Impossibile caricare la configurazione delle categorie. File: "%1". Errore: "formato dati non valido" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent rimosso ma non è stato possibile eliminarne il contenuto e/o perte del file. -Torrent: "%1". Errore: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 è disabilitato - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 è disabilitato - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Ricerca DNS seed URL non riuscita. -Torrent: "%1" -URL: "%2" -Errore: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Messaggio di errore ricevuto dal seed dell'URL. Torrent: "%1" @@ -2794,14 +2814,14 @@ URL: "%2" Messaggio: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Ascolto riuscito su IP. IP: "%1" Porta: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Impossibile ascoltare su IP. IP: "%1" @@ -2809,26 +2829,26 @@ Porta: "%2/%3" Motivo: "%4" - + Detected external IP. IP: "%1" Rilevato IP esterno. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Errore: la coda degli avvisi interna è piena e gli avvisi vengono eliminati, potresti notare un peggioramento delle prestazioni. Tipo di avviso eliminato: "%1" Messaggio: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Spostamento torrent completato. Torrent: "%1" Destinazione: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Impossibile spostare il torrent. Torrent: "%1" @@ -2885,50 +2905,50 @@ Dati: total_wanted=%2 total_wanted_done=%3. Impossibile scrivere su file. Motivo: "%1". Il torrent è ora in modalità "solo upload". - + Download first and last piece first: %1, torrent: '%2' Sarica prima il primo e l'ultimo segmento: %1, torrent: '%2' - + On On - + Off Off - + Failed to reload torrent. Torrent: %1. Reason: %2 Impossibile ricaricare il torrent. Torrente: %1. Motivo: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Generazione dei dati per la ripresa del download non riuscita. Torrent: "%1". Motivo: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Impossibile ripristinare il torrent. I file sono stati probabilmente spostati o lo spazio di archiviazione non è accessibile. Torrente: "%1". Motivo: "%2" - + Missing metadata Metadati mancanti - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Rinomina file fallita. Torrent: "%1", file "%2", motivo: "%3" - + Performance alert: %1. More info: %2 Avviso sul rendimento: %1. Ulteriori informazioni: %2. @@ -2966,11 +2986,6 @@ Ulteriori informazioni: %2. Expected integer number in environment variable '%1', but got '%2' Atteso numero intero della variabile d'ambiente '%1', ma ottenuto '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Il parametro '%1' deve seguire la sintassi '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -3011,7 +3026,7 @@ Ulteriori informazioni: %2. Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Il parametro '%1' deve seguire la sintassi '%1=%2' + Il parametro '%1' deve seguire la sintassi '%1=%2' @@ -3099,11 +3114,7 @@ Ulteriori informazioni: %2. Add torrents as running or stopped - - - - Add torrents as started or paused - Aggiungi torrent avviati o in pausa + Aggiungi torrent come avviato o fermato @@ -3197,20 +3208,12 @@ Per esempio, per disabilitare la schermata d'avvio: Start torrents - + Avvia torrent Stop torrents - - - - Resume torrents - Riprendi torrent - - - Pause torrents - Metti in pausa torrent + Ferma torrent @@ -3233,7 +3236,7 @@ Per esempio, per disabilitare la schermata d'avvio: System - + Sistema @@ -3308,11 +3311,7 @@ Per esempio, per disabilitare la schermata d'avvio: Also remove the content files - - - - Also permanently delete the files - Elimina anche permanentemente i file + Rimuovi anche i file di contenuti @@ -3524,48 +3523,44 @@ Per esempio, per disabilitare la schermata d'avvio: Pattern Format - + Formato pattern Plain text - + Testo normale Wildcards - + Wildcards Regular expression - + Espressione regolare GUIAddTorrentManager - + Downloading torrent... Source: "%1" Download torrent... Sorgente: "%1" - Trackers cannot be merged because it is a private torrent - I tracker non possono essere uniti perché è un torrent privato - - - + Torrent is already present Il torrent è già presente - + Trackers cannot be merged because it is a private torrent. - + I tracker non possono essere uniti perché è un torrent privato. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Il torrent '%1' è già nell'elenco dei trasferimenti. Vuoi unire i tracker da una nuova fonte? @@ -3687,6 +3682,45 @@ IP: %1 File immagini supportati + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + La gestione alimentazione ha trovato un'interfaccia D-Bus adatta. +Interfaccia: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Errore gestione alimentazione. +Azione: %1. +Errore: %2. + + + + Power management unexpected error. State: %1. Error: %2 + Errore imprevisto gestione alimentazione. +Stato: %1. +Errore: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3835,10 +3869,6 @@ Codice errore: %2. &Options... &Impostazioni... - - &Resume - &Riprendi - &Remove @@ -3908,7 +3938,7 @@ Codice errore: %2. Sh&utdown System - + Speg&ni sistema @@ -3920,10 +3950,6 @@ Codice errore: %2. Close Window Chiudi finestra - - R&esume All - R&iprendi tutti - Manage Cookies... @@ -3962,22 +3988,22 @@ Codice errore: %2. Sta&rt - + &Avvia Sto&p - + Sto&p R&esume Session - + Ripr&endi sessione Pau&se Session - + Pau&sa sessione @@ -4039,10 +4065,6 @@ Codice errore: %2. &Hibernate System Sospendi su &disco - - S&hutdown System - Spe&gni - &Statistics @@ -4063,14 +4085,6 @@ Codice errore: %2. &About &Informazioni sul programma - - &Pause - Metti in &pausa - - - P&ause All - Metti in p&ausa tutti - &Add Torrent File... @@ -4104,12 +4118,12 @@ Codice errore: %2. - + Show Visualizza - + Check for program updates Controlla gli aggiornamenti del programma @@ -4124,275 +4138,280 @@ Codice errore: %2. Se ti piace qBittorrent, per favore fai una donazione! - + Execution Log Registro attività - + Clear the password Azzera la password - + &Set Password &Imposta password - + Preferences Preferenze - + &Clear Password &Azzera password - + Transfers Trasferimenti - - + + qBittorrent is minimized to tray qBittorent è ridotto a icona nell'area di notifica - - - + + + This behavior can be changed in the settings. You won't be reminded again. Questo comportamento può essere cambiato nelle impostazioni. Non verrà più ricordato. - + Icons Only Solo icone - + Text Only Solo testo - + Text Alongside Icons Testo accanto alle icone - + Text Under Icons Testo sotto le icone - + Follow System Style Segui stile di sistema - - + + UI lock password Password di blocco - - + + Please type the UI lock password: Inserire la password per il blocco di qBittorrent: - + Are you sure you want to clear the password? Sei sicuro di voler azzerare la password? - + Use regular expressions Usa espressioni regolari - - + + Search Engine - Motore di Ricerca + Motore di ricerca - + Search has failed - La ricerca non ha avuto successo + La ricerca non ha avuto successo - + Search has finished - + Riecrca completata - + Search Ricerca - + Transfers (%1) Trasferimenti (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent è stato appena aggiornato e bisogna riavviarlo affinché i cambiamenti siano effettivi. - + qBittorrent is closed to tray qBittorent è chiuso nell'area di notifica - + Some files are currently transferring. Alcuni file sono in trasferimento. - + Are you sure you want to quit qBittorrent? Sei sicuro di voler uscire da qBittorrent? - + &No &No - + &Yes &Sì - + &Always Yes Sem&pre sì - + Options saved. Opzioni salvate. - + [PAUSED] %1 %1 is the rest of the window title - + [IN PAUSA] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Impossibile scaricare il programma di installazione di Python. +Errore: %1. +Scarica il programma di installazione manualmente. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Rinomina del programma di installazione di Python non riuscita. +Sorgente: "%1". +Destinazione: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Installazione Phyton completata. + Exit code: %1. + Codice di uscita: %1 + + + + Reason: installer crashed. + Motivo: il programma di installazione si è chiuso. + + + Python installation failed. - + Installazione Python fallita - + Launching Python installer. File: "%1". - + Esecuzione programma di installazione Python. +File: %1. - - + + Missing Python Runtime Runtime Python non disponibile - + qBittorrent Update Available Disponibile aggiornamento qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python è necessario per poter usare il motore di ricerca, ma non risulta installato. Vuoi installarlo ora? - + Python is required to use the search engine but it does not seem to be installed. Python è necessario per poter usare il motore di ricerca, ma non risulta installato. - - + + Old Python Runtime Runtime Python obsoleto - + A new version is available. È disponibile una nuova versione di qBittorrent. - + Do you want to download %1? Vuoi scaricare la nuova versione (%1)? - + Open changelog... Apri elenco novità... - + No updates available. You are already using the latest version. Nessun aggiornamento disponibile. Questa versione è aggiornata. - + &Check for Updates &Controlla aggiornamenti - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? La versione di Python (%1) è obsoleta. Requisito minimo: %2. Vuoi installare una versione più recente adesso? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. La versione Python (%1) è obsoleta. @@ -4400,113 +4419,114 @@ Per far funzionare i motori di ricerca aggiorna alla versione più recente. Requisito minimo: v. %2. - + Paused - In pausa + In pausa - + Checking for Updates... Controllo aggiornamenti in corso... - + Already checking for program updates in the background Controllo aggiornamenti già attivo in background - + Python installation in progress... - + Installazione Python... - + Failed to open Python installer. File: "%1". - + Impossibile aprire programma installazione Python. +File: %1. - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Controllo hash MD5 programma installazione Python non riuscito. +File: "%1". +Hash risultato: "%2". +Hash previsto: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Controllo hash SHA3-512 programma installazione Python non risucito. +File: "%1". +Hash risultato: "%2". +Hash previsto: "%3". - + Download error Errore download - Python setup could not be downloaded, reason: %1. -Please install it manually. - Il setup di Python non è stato scaricato, motivo: %1. -Per favore installalo manualmente. - - - - + + Invalid password Password non valida - + Filter torrents... Filtra torrent... - + Filter by: Filtra per: - + The password must be at least 3 characters long La password deve essere lunga almeno 3 caratteri - - - + + + RSS (%1) RSS (%1) - + The password is invalid La password non è valida - + DL speed: %1 e.g: Download speed: 10 KiB/s Velocità DL: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Velocità UP: %1 - + Hide Minimizza nella barra di sistema - + Exiting qBittorrent Esci da qBittorrent - + Open Torrent Files Apri file torrent - + Torrent Files File torrent @@ -4703,7 +4723,7 @@ Per favore installalo manualmente. SSL error, URL: "%1", errors: "%2" - + Errore SSL, URL: "%1", errori: "%2" @@ -6004,47 +6024,47 @@ Motivo: %1 Net::Smtp - + Connection failed, unrecognized reply: %1 Connessione non riuscita, risposta non riconosciuta: %1 - + Authentication failed, msg: %1 Autenticazione non riuscita, messaggio: %1 - + <mail from> was rejected by server, msg: %1 <mail from> è stato rifiutato dal server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> è stato rifiutato dal server, msg: %1 - + <data> was rejected by server, msg: %1 <data> è stato rifiutato dal server, msg: %1 - + Message was rejected by the server, error: %1 Il messaggio è stato rifiutato dal server, errore: %1 - + Both EHLO and HELO failed, msg: %1 Entrambi EHLO e HELO hanno fallito, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Il server SMTP non sembra supportare nessuna delle modalità di autenticazione noi supportiamo [CRAM-MD5|PLAIN|LOGIN], saltare l'autenticazione, sapendo che è probabile che fallisca... Modalità di autenticazione del server: %1 - + Email Notification Error: %1 Errore Notifica Email: %1 @@ -6086,10 +6106,6 @@ Motivo: %1 RSS RSS - - Web UI - Interfaccia web - Advanced @@ -6110,14 +6126,6 @@ Motivo: %1 Confirm when deleting torrents Conferma eliminazione torrent - - Shows a confirmation dialog upon pausing/resuming all the torrents - Quando metti in pausa/riprendi tutti i torrent visualizza una finestra di dialogo di conferma - - - Confirm "Pause/Resume all" actions - Conferma le azioni "Pausa/riprendi tutto" - Use alternating row colors @@ -6134,10 +6142,6 @@ Motivo: %1 Always Sempre - - Paused torrents only - Solo torrent in pausa - Action on double-click @@ -6148,10 +6152,6 @@ Motivo: %1 Downloading torrents: Download torrent: - - Start / Stop Torrent - Avvia/arresta torrent - @@ -6210,180 +6210,179 @@ Motivo: %1 KiB - + + Show free disk space in status bar + + + + Torrent content layout: Layour contenuto torrent: - + Original Originale - + Create subfolder Crea sottocartella - + Don't create subfolder Non creare sottocartella - + The torrent will be added to the top of the download queue Il torrent verrà aggiunto in cima alla coda di download - + Add to top of queue The torrent will be added to the top of the download queue Aggiungi in cima alla coda - + When duplicate torrent is being added Quando viene aggiunto torrent duplicato - + Merge trackers to existing torrent Unisci i tracker al torrent esistente - + Keep unselected files in ".unwanted" folder Conserva file non selezionati nella cartella ".unwanted". - + Add... Aggiungi... - + Options.. Opzioni... - + Remove Rimuovi - + Email notification &upon download completion &Notifica email a download completato - + Send test email - + Invia email di test - + Run on torrent added: - + Esegui all'aggiunta del torrent. - + Run on torrent finished: - + Esegui al completamento del torrent: - + Peer connection protocol: Protocollo connessione peer: - + Any Qualsiasi - + I2P (experimental) I2P (sperimentale) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Se è abilitato &quot;modo mixed&quot; I torrent I2P possono anche ottenere peer da fonti diverse dal tracker e connettersi a IP regolari, senza fornire alcuna anonimizzazione. -Questo può essere utile se l'utente non è interessato all'anonimizzazione di I2P, ma vuole comunque essere in grado di connettersi ai peer I2P.</p></body></html> - - - + Mixed mode Modo mixed - Some options are incompatible with the chosen proxy type! - Alcune opzioni sono incompatibili con il tipo di proxy scelto! + Alcune opzioni sono incompatibili con il tipo di proxy scelto! - + If checked, hostname lookups are done via the proxy Se selezionata le ricerche del nome host vengono eseguite tramite il proxy - + Perform hostname lookup via proxy Esegui ricerca nome host tramite proxy - + Use proxy for BitTorrent purposes Usa proxy per scopi BitTorrent - + RSS feeds will use proxy I feed RSS useranno il proxy - + Use proxy for RSS purposes Usa proxy per scopi RSS - + Search engine, software updates or anything else will use proxy Motore di ricerca, aggiornamenti software o qualsiasi altra cosa userà il proxy - + Use proxy for general purposes Usa il proxy per scopi generali - + IP Fi&ltering Fi&ltraggio IP - + Schedule &the use of alternative rate limits Pianifica l'&uso di limiti di rapporto alternativi - + From: From start time Da: - + To: To end time A: - + Find peers on the DHT network Cerca peer sulla rete DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6392,188 +6391,190 @@ Richiedi crittografia: connettiti solo ai peer con crittografia protocollo Disabilita la crittografia: connettiti solo ai peer senza crittografia protocollo - + Allow encryption Permetti criptazione - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Più informazioni</a>) - + Maximum active checking torrents: Numero massimo di torrent di controllo attivi: - + &Torrent Queueing Accodamento &torrent - + When total seeding time reaches Quando viene raggiunto il tempo totale seeding - + When inactive seeding time reaches Quando viene raggiunto il tempo seeding non attivo - A&utomatically add these trackers to new downloads: - Aggiungi a&utomaticamente questi server traccia ai nuovi download: - - - + RSS Reader Lettore RSS - + Enable fetching RSS feeds Abilita recupero fonti RSS - + Feeds refresh interval: Intervallo aggiornamento fonti: - + Same host request delay: Ritardo richiesta per medesimo host: - + Maximum number of articles per feed: Numero massimo articoli per fonte: - - - + + + min minutes min - + Seeding Limits Limiti seeding - Pause torrent - Pausa torrent - - - + Remove torrent Rimuovi torrent - + Remove torrent and its files Rimuovi torrent e relativi file - + Enable super seeding for torrent Abilita super seeding per torrent - + When ratio reaches Quando raggiungi rapporto - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Ferma torrent - + A&utomatically append these trackers to new downloads: - + Aggiungi a&utomaticamente questi tracker ai nuovi download: - + Automatically append trackers from URL to new downloads: - + Aggiungi automaticamente ai nuovi download i tracker dall'URL: - + URL: - URL: + URL: - + Fetched trackers - + Tracker recuperati - + Search UI - + UI ricerca - + Store opened tabs - + Salva schede aperte - + Also store search results - + Salva anche risultati ricerca - + History length - + Lunghezza cronologia: - + RSS Torrent Auto Downloader Download automatico torrent RSS - + Enable auto downloading of RSS torrents Abilita download automatico di torrent RSS - + Edit auto downloading rules... Modifica regole download automatico... - + RSS Smart Episode Filter Filtro veloce episodi RSS - + Download REPACK/PROPER episodes Download episodi REPACK/PROPRI - + Filters: Filtri: - + Web User Interface (Remote control) Interfaccia utente web (controllo remoto) - + IP address: Indirizzo IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6582,41 +6583,37 @@ Specificare un indirizzo IPv4 o IPv6. Si può usare "0.0.0.0" per qual "::" per qualsiasi indirizzo IPv6, o "*" sia per IPv4 che IPv6. - + Ban client after consecutive failures: Ban client dopo fallimenti consecutivi: - + Never Mai - + ban for: ban per: - + Session timeout: Timeout sessione: - + Disabled Disabilitato - Enable cookie Secure flag (requires HTTPS) - Abilita flag cookie sicuro (richiede HTTPS) - - - + Server domains: Domini server: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6630,38 +6627,38 @@ Usa ';' per dividere voci multiple. Si può usare il carattere jolly '*'. - + &Use HTTPS instead of HTTP &Usa HTTPS invece di HTTP - + Bypass authentication for clients on localhost Salta autenticazione per i client in localhost - + Bypass authentication for clients in whitelisted IP subnets Salta autenticazione per i client nelle sottoreti IP in elenco autorizzati - + IP subnet whitelist... Sottoreti IP elenco autorizzati... - + Use alternative WebUI - + Usa WebUI alternativa - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Per usare l'indirizzo client inoltrato (intestazione X-Forwarded-For) specifica gli IP del proxy inverso (o le sottoreti, ad esempio 0.0.0.0/24). Usa ';' per dividere più voci. - + Upda&te my dynamic domain name Aggio&rna il mio nome dominio dinamico @@ -6673,12 +6670,12 @@ Usa ';' per dividere più voci. Search - + Cerca WebUI - + WebUI @@ -6693,29 +6690,29 @@ Usa ';' per dividere più voci. Style: - + Stile: Color scheme: - + Schema colori: Stopped torrents only - + Solo torrent bloccati Start / stop torrent - + Avvia/ferma torrent Open torrent options dialog - + Apri finestra di dialogo opzioni torrent @@ -6756,7 +6753,7 @@ Usa ';' per dividere più voci. &Log Files - + Fi&le registro eventi @@ -6774,99 +6771,99 @@ Usa ';' per dividere più voci. Elimina registri di backup più vecchi di: - + Show external IP in status bar - + Visualizza IP esterno nella barra di stato - + When adding a torrent All'aggiunta di un torrent - + Bring torrent dialog to the front Finestra torrent in primo piano - + The torrent will be added to download list in a stopped state - + Il torrent verrà aggiunto all'elenco dei download in stato fermato - + Also delete .torrent files whose addition was cancelled Elimina i file .torrent anche se l'aggiunta è stata annullata - + Also when addition is cancelled Anche se l'aggiunta è annullata - + Warning! Data loss possible! Attenzione! Possibile perdita di dati! - + Saving Management Gestione Salvataggi - + Default Torrent Management Mode: Modalità gestione torrent predefinita: - + Manual Manuale - + Automatic Automatica - + When Torrent Category changed: Quando la Categoria del Torrent viene cambiata: - + Relocate torrent Sposta torrent - + Switch torrent to Manual Mode Imposta torrent sulla Modalità Manuale - - + + Relocate affected torrents Sposta torrent interessati - - + + Switch affected torrents to Manual Mode Imposta i torrent interessati sulla Modalità Manuale - + Use Subcategories Usa sottocategorie - + Default Save Path: Percorso salvataggio predefinito: - + Copy .torrent files to: Copia i file .torrent in: @@ -6876,26 +6873,22 @@ Usa ';' per dividere più voci. Visualizza &qBittorrent nell'area di notifica - &Log file - Fi&le registro - - - + Display &torrent content and some options Visualizza contenuto &torrent e alcune opzioni - + De&lete .torrent files afterwards E&limina file .torrent alla fine - + Copy .torrent files for finished downloads to: Copia i file .torrent per i download completati in: - + Pre-allocate disk space for all files Prealloca lo spazio su disco per tutti i file @@ -6925,10 +6918,6 @@ Usa ';' per dividere più voci. Preview file, otherwise open destination folder Anteprima file, altrimenti apri cartella destinazione - - Show torrent options - Visualizza opzioni torrent - Shows a confirmation dialog when exiting with active torrents @@ -6994,70 +6983,66 @@ Usa ';' per dividere più voci. anni - + Log performance warnings Avvisi prestazioni registro - The torrent will be added to download list in a paused state - Il torrent verrà aggiunto all'elenco di download ma in uno stato di pausa - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Non avviare il download automaticamente - + Whether the .torrent file should be deleted after adding it Se il file .torrent deve essere eliminato dopo averlo aggiunto - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Alloca lo spazio pieno per il file su disco prima di avviare i download, per ridurre al minimo la frammentazione. Utile solo per gli HDD. - + Append .!qB extension to incomplete files Aggiungi l'estensione .!qB ai file incompleti - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Quando viene scaricato un torrent, chiede di aggiungere torrent da qualsiasi file .torrent trovato al suo interno - + Enable recursive download dialog Abilita la conferma ricorsiva dei download - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatico: varie proprietà del torrent (ad es. percorso salvataggio) saranno decise dalla categoria associata Manuale: varie proprietà del torrent (ad es. percorso salvataggio) vanno assegnate manualmente - + When Default Save/Incomplete Path changed: Quando il Percorso di Salvataggio Predefinito/Incompleto è cambiato: - + When Category Save Path changed: Quando modifichi percorso salvataggio categoria: - + Use Category paths in Manual Mode Usa percorsi categorie in modalità manuale - + Resolve relative Save Path against appropriate Category path instead of Default one Risolvi il percorso di salvataggio relativo rispetto al percorso di categoria appropriato invece di quello predefinito @@ -7077,50 +7062,50 @@ Manuale: varie proprietà del torrent (ad es. percorso salvataggio) vanno assegn Stato della finestra di qBittorrent all'avvio - + Torrent stop condition: Condizione stop torrent: - - + + None Nessuna - - + + Metadata received Ricevuti metadati - - + + Files checked File controllati - + Ask for merging trackers when torrent is being added manually Quando il torrent viene aggiunto manualmente chiedi di unire i tracker - + Use another path for incomplete torrents: Usa un altro percorso per i torrent incompleti: - + Automatically add torrents from: Aggiungi automaticamente i torrent da: - + Excluded file names Nomi file esclusi - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -7150,523 +7135,511 @@ readme.txt: filtra il nome esatto del file. readme[0-9].txt: filtro 'readme1.txt', 'readme2.txt' ma non 'readme10.txt'. - + Receiver Ricevitore - + To: To receiver A: - + SMTP server: Server SMTP: - + Sender Trasmittente - + From: From sender Da: - + This server requires a secure connection (SSL) Questo server richiede una connessione sicura (SSL) - - + + Authentication Autenticazione - - - - + + + + Username: Nome utente: - - - - + + + + Password: Password: - + Run external program Esegui programma esterno - Run on torrent added - Esegui a torrent aggiunto - - - Run on torrent finished - Esegui a torrent completato - - - + Show console window Visualizza finestra console - + TCP and μTP TCP e µTP - + Listening Port Porta di Ascolto - + Port used for incoming connections: Porta usata per le connessioni in entrata: - + Set to 0 to let your system pick an unused port Imposta a 0 per consentire al sistema di scegliere una porta non usata - + Random Casuale - + Use UPnP / NAT-PMP port forwarding from my router Usa UPnP / NAT-PMP per aprire le porte del mio router - + Connections Limits Limiti Connessioni - + Maximum number of connections per torrent: Numero massimo connessioni per torrent: - + Global maximum number of connections: Numero massimo globale di connessioni: - + Maximum number of upload slots per torrent: Numero massimo connessioni in invio per torrent: - + Global maximum number of upload slots: Numero massimo globale di connessioni in invio: - + Proxy Server Server Proxy - + Type: Tipo: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Porta: - + Otherwise, the proxy server is only used for tracker connections Altrimenti, il server proxy è usato solamente per le connessioni ai server traccia - + Use proxy for peer connections Usa il proxy per le connessioni ai nodi - + A&uthentication A&utenticazione - Info: The password is saved unencrypted - Info: La password è salvata in chiaro + Info: La password è salvata in chiaro - + Filter path (.dat, .p2p, .p2b): Percorso filtro (.dat, .p2p, p2b): - + Reload the filter Ricarica il filtro - + Manually banned IP addresses... Indirizzi IP messi al bando manualmente... - + Apply to trackers Applica ai server traccia - + Global Rate Limits Limiti di velocità globali - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Invio: - - + + Download: Download: - + Alternative Rate Limits Limiti di velocità alternativi - + Start time Data avvio - + End time Data fine - + When: Quando: - + Every day Ogni giorno - + Weekdays Giorni feriali - + Weekends Fine settimana - + Rate Limits Settings Impostazioni limiti di velocità - + Apply rate limit to peers on LAN Applica limiti di velocità ai nodi in LAN - + Apply rate limit to transport overhead Applica limiti di velocità al traffico di servizio - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>ISe abilitato "modo mixed" i torrent I2P sono autorizzati ad ottenere anche peer da altre sorgenti rispetto al tracker e connettersi a IPS regolari, non fornendo alcuna anonimizzazione. +Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P, ma vuole comunque essere in grado di connettersi ai peer I2P.</p></body></html> - + Apply rate limit to µTP protocol Applica limiti di velocità al protocollo µTP - + Privacy Privacy - + Enable DHT (decentralized network) to find more peers Abilita DHT (rete decentralizzata) per trovare più nodi - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Scambia nodi con client Bittorrent compatibili (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Abilita scambio nodi (PeX) per trovare più nodi - + Look for peers on your local network Cerca nodi nella rete locale - + Enable Local Peer Discovery to find more peers Abilita ricerca locale nodi per trovare più nodi - + Encryption mode: Modalità criptazione: - + Require encryption Richiedi criptazione - + Disable encryption Disabilita criptazione - + Enable when using a proxy or a VPN connection Attiva quando viene usato un proxy o una connessione VPN - + Enable anonymous mode Abilita modalità anonima - + Maximum active downloads: Numero massimo download attivi: - + Maximum active uploads: Numero massimo invii attivi: - + Maximum active torrents: Numero massimo torrent attivi: - + Do not count slow torrents in these limits Non contare torrent lenti in questi limiti - + Upload rate threshold: Soglia limite di invio: - + Download rate threshold: Soglia limite download: - - - - + + + + sec seconds s - + Torrent inactivity timer: Cronometro inattività torrent: - + then poi - + Use UPnP / NAT-PMP to forward the port from my router Usa UPnP / NAT-PMP per aprire le porte del mio router - + Certificate: Certificato: - + Key: Chiave: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informazioni sui certificati</a> - + Change current password Modifica password attuale - Use alternative Web UI - Usa interfaccia web alternativa - - - + Files location: Posizione file: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Elenco WebUI alternativa</a> - + Security Sicurezza - + Enable clickjacking protection Abilita la protezione al clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Abilita la protezione al Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Abilita flag di sicurezza cookie (richiede HTTPS o connessione LocalHost) - + Enable Host header validation Abilita validazione intestazione host - + Add custom HTTP headers Aggiungi intestazioni HTTP personalizzate - + Header: value pairs, one per line Intestazione: coppia di valori, uno per linea - + Enable reverse proxy support Abilita supporto proxy inverso - + Trusted proxies list: Elenco proxy attendibili: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Esempi impostazione proxy inverso</a> - + Service: Servizio: - + Register Registra - + Domain name: Nome dominio: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Abilitando queste opzioni puoi <strong>perdere irrimediabilmente</strong> i tuoi file .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Se abiliti la seconda opzione (&ldquo;Anche quando l'aggiunta viene annullata&rdquo;) il file .torrent <strong>verrà cancellato</strong> anche se premi &ldquo;<strong>Annulla</strong>&rdquo; nella finestra di dialogo &ldquo;Aggiungi torrent&rdquo; @@ -7676,12 +7649,12 @@ readme[0-9].txt: filtro 'readme1.txt', 'readme2.txt' ma non Seleziona file tema UI qBittorent - + Choose Alternative UI files location Scegli posizione alternativa file interfaccia - + Supported parameters (case sensitive): Parametri supportati (maiuscole/minuscole): @@ -7701,184 +7674,184 @@ readme[0-9].txt: filtro 'readme1.txt', 'readme2.txt' ma non Disabilitato a causa del mancato rilevamento della presenza della barra delle applicazioni - + No stop condition is set. Non è impostata alcuna condizione di stop. - + Torrent will stop after metadata is received. Il torrent si interromperà dopo la ricezione dei metadati. - + Torrent will stop after files are initially checked. Il torrent si fermerà dopo che i file sono stati inizialmente controllati. - + This will also download metadata if it wasn't there initially. Questo scaricherà anche i metadati se inizialmente non erano presenti. - + %N: Torrent name %N: nome torrent - + %L: Category %L: categoria - + %F: Content path (same as root path for multifile torrent) %F: percorso contenuto (uguale al percorso radice per i torrent multi-file) - + %R: Root path (first torrent subdirectory path) %R: percorso radice (primo percorso sottocartella torrent) - + %D: Save path %D: percorso salvataggio - + %C: Number of files %C: numero di file - + %Z: Torrent size (bytes) %Z: dimensione torrent (byte) - + %T: Current tracker %T: server traccia attuale - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Suggerimento: inserisci i parametri con i segni di quotazione per evitare tagli del testo negli spazi bianchi (per esempio "%N") - + Test email - + Email di prova - + Attempted to send email. Check your inbox to confirm success - + Tentativo di invio email. Controlla la tua posta in arrivo per confermare la ricezione - + (None) (Nessuno) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Un torrent sarà considerato lento se le sue velocità di download e upload resteranno sotto questi valori per "Cronometro inattività torrent" secondi - + Certificate Certificato - + Select certificate Seleziona certificato - + Private key Chiave privata - + Select private key Seleziona chiave privata - + WebUI configuration failed. Reason: %1 Configurazione WebUI non riuscita. Motivo: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 è consigliato per la migliore compatibilità con la modalità scura di Windows - + System System default Qt style - + Sistema - + Let Qt decide the style for this system - + Lascia che sia Qt a decidere lo stile di questo sistema - + Dark Dark color scheme - + Scuro - + Light Light color scheme - + Chiaro - + System System color scheme - + Sistema - + Select folder to monitor Seleziona cartella da monitorare - + Adding entry failed Aggiunta voce non riuscita - + The WebUI username must be at least 3 characters long. Il nome utente WebUI deve contenere almeno 3 caratteri. - + The WebUI password must be at least 6 characters long. La password WebUI deve contenere almeno 6 caratteri. - + Location Error Errore percorso - - + + Choose export directory Scegli cartella di esportazione - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Quando queste opzioni sono abilitate, qBittorrent <strong>eliminerà</strong> i file .torrent dopo che sono stati aggiunti alla sua coda di download correttamente (prima opzione) o meno (seconda opzione). Questa modalità verrà applicato <strong>non solo</strong> ai file aperti tramite l'azione del menu &ldquo;Aggiungi torrent&rdquo;, ma anche a quelli aperti tramite l'associazione del tipo di file @@ -7889,69 +7862,69 @@ Questa modalità verrà applicato <strong>non solo</strong> ai file File tema interfaccia utente qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: tag (separati da virgola) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (o '-' se non disponibile) - + %J: Info hash v2 (or '-' if unavailable) %I: Info hash v2 (o '-' se non disponibile) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ID torrent (hash info SHA-1 per torrent v1 o hash info SHA-256 troncato per torrent v2/ibrido) - - + + Choose a save directory Scegli una cartella di salvataggio - + Torrents that have metadata initially will be added as stopped. I torrent con metadati iniziali saranno aggiunti come fermati. - + Choose an IP filter file Scegli un file filtro IP - + All supported filters Tutti i filtri supportati - + The alternative WebUI files location cannot be blank. Il percorso alternativo dei file WebUI non può essere vuoto. - + Parsing error Errore di elaborazione - + Failed to parse the provided IP filter Impossibile analizzare il filtro IP fornito - + Successfully refreshed Aggiornato correttamente - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Analisi filtro IP completata: sono state applicate %1 regole. @@ -7962,18 +7935,18 @@ Questa modalità verrà applicato <strong>non solo</strong> ai file Preferenze - + Time Error Errore Orario - + The start time and the end time can't be the same. Gli orari di inizio e fine non possono coincidere. - - + + Length Error Errore di Lunghezza @@ -8058,170 +8031,170 @@ Questa modalità verrà applicato <strong>non solo</strong> ai file Peer is using NAT hole punching - + Il peer usa la perforazione NAT PeerListWidget - + Country/Region Nazione/regione - + IP/Address IP/Indirizzo - + Port Porta - + Flags Flag - + Connection Connessione - + Client i.e.: Client application Client - + Peer ID Client i.e.: Client resolved from Peer ID ID client peer - + Progress i.e: % downloaded Avanzamento - + Down Speed i.e: Download speed Velocità download - + Up Speed i.e: Upload speed Velocità upload - + Downloaded i.e: total data downloaded Scaricati - + Uploaded i.e: total data uploaded Inviati - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Rilevanza - + Files i.e. files that are being downloaded right now File - + Column visibility Visibilità colonna - + Resize columns Ridimensiona colonne - + Resize all non-hidden columns to the size of their contents Ridimensiona tutte le colonne non nascoste alla dimensione del loro contenuto - + Add peers... Aggiungi peers... - - + + Adding peers Aggiungi peer - + Some peers cannot be added. Check the Log for details. Alcuni peer non possono essere aggiunti. Per i dettagli controlla il registro eventi. - + Peers are added to this torrent. I peer sono stati aggiunti al torrent. - - + + Ban peer permanently Metti nodo permanentemente al bando - + Cannot add peers to a private torrent Impossibile aggiungere peer ad un torrent privato - + Cannot add peers when the torrent is checking Impossibile aggiungere peer durante il controllo del torrent - + Cannot add peers when the torrent is queued Impossibile aggiungere peer quando il torrent è in coda - + No peer was selected Nessun peer selezionato - + Are you sure you want to permanently ban the selected peers? Sei sicuro di voler bannare permanentemente i peer selezionati? - + Peer "%1" is manually banned Il peer "%1" è stato bannato manualmente - + N/A N/D - + Copy IP:port Copia IP:porta @@ -8503,38 +8476,31 @@ Questi plugin verranno disabilitati. PowerManagement - qBittorrent is active - qBittorrent è attivo + qBittorrent è attivo PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - La gestione alimentazione ha trovato un'interfaccia D-Bus adatta. + La gestione alimentazione ha trovato un'interfaccia D-Bus adatta. Interfaccia: %1 - Power management error. Did not found suitable D-Bus interface. - Errore gestione dell'alimentazione. + Errore gestione dell'alimentazione. Non è stata trovata l'interfaccia D-Bus adatta. - - - Power management error. Action: %1. Error: %2 - Errore gestione alimentazione. + Errore gestione alimentazione. Azione: %1. Errore: %2. - Power management unexpected error. State: %1. Error: %2 - Errore imprevisto gestione alimentazione. + Errore imprevisto gestione alimentazione. Stato: %1. Errore: %2 @@ -8780,12 +8746,12 @@ Errore: %2 Ratio / Time Active (in months), indicates how popular the torrent is - + Rapporto / Tempo Attivo (in mesi), indica quanto è popolare il torrent Popularity: - + Popolarità: @@ -8820,7 +8786,7 @@ Errore: %2 Private: - + Privato: @@ -8828,153 +8794,124 @@ Errore: %2 Percorso salvataggio: - + Never Mai - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ne hai %3) - - + + %1 (%2 this session) %1 (%2 in questa sessione) - - + + N/A N/D - + Yes - + - + No - No + No - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (condiviso per %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (max %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 in totale) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 in media) - + Add web seed Add HTTP source - + Aggiungi seed web - + Add web seed: - + Aggiungi seed web: - - + + This web seed is already in the list. - + Questo seed web è gia in elenco: - New Web seed - Nuovo distributore web - - - Remove Web seed - Rimuovi distributore web - - - Copy Web seed URL - Copia URL distributore web - - - Edit Web seed URL - Modifica URL distributore web - - - + Filter files... Filtra elenco file... - + Add web seed... - + Aggiungi seed web... - + Remove web seed - + Rimuovi seed web - + Copy web seed URL - + Copia URL seed web - + Edit web seed URL... - + Modifica URL seed web - + Speed graphs are disabled I grafici della velocità sono disabilitati - + You can enable it in Advanced Options Puoi abilitarlo in Opzioni avanzate - New URL seed - New HTTP source - Nuovo URL distributore - - - New URL seed: - Nuovo URL distributore: - - - This URL seed is already in the list. - Questo URL distributore è già nell'elenco. - - - + Web seed editing Modifica distributore web - + Web seed URL: URL distributore web: @@ -8982,34 +8919,34 @@ Errore: %2 RSS::AutoDownloader - - + + Invalid data format. Formato dati non valido. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Impossibile salvare dati download automatico RSS su %1. Errore: %2 - + Invalid data format Formato dati non valido - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... L'articolo RSS '%1' è accettato dalla regola '%2'. Tentativo di aggiunta torrent... - + Failed to read RSS AutoDownloader rules. %1 Impossibile leggere le regole di RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Impossibile caricare regole download automatico RSS. Motivo: %1 @@ -9017,22 +8954,22 @@ Tentativo di aggiunta torrent... RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Impossibile scaricare fonte RSS da '%1'. Motivo: %2 - + RSS feed at '%1' updated. Added %2 new articles. Fonte RSS su '%1' aggiornata. Aggiunti %2 nuovi articoli. - + Failed to parse RSS feed at '%1'. Reason: %2 Impossibile analizzare fonte RSS su '%1'. Motivo: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Download completato feed RSS in '%1'. Avvio analisi. @@ -9086,12 +9023,12 @@ Formato dati non valido. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Impossibile salvare la configurazione della sessione RSS. File: "%1". Errore: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Impossibile salvare i dati della sessione RSS. File: "%1". Errore: "%2" @@ -9113,80 +9050,125 @@ Formato dati non valido. - + Item doesn't exist: %1. L'elemento non esiste: %1. - Couldn't move folder into itself. - Impossibile spostare la cartella in se stessa. + Impossibile spostare la cartella in se stessa. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Impossibile eliminare percorso radice. - + Failed to read RSS session data. %1 Impossibile leggere i dati della sessione RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Impossibile analizzare i dati della sessione RSS. File: "%1". Errore: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Impossibile caricare i dati della sessione RSS. File: "%1". Errore: "formato dati non valido". - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Impossibile caricare il feed RSS. Feed: "%1". Motivo: URL è obbligatorio. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Impossibile caricare il feed RSS. Feed: "%1". Motivo: UID non valida. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Trovato feed RSS duplicato. UID: "%1". Errore: La configurazione sembra essere danneggiata. - + Couldn't load RSS item. Item: "%1". Invalid data format. Impossibile caricare articolo RSS. Item: "%1". Formato dati non valido. - + Corrupted RSS list, not loading it. Lista RSS corrotta, non è stata caricata. - + Incorrect RSS Item path: %1. Percorso elemento RSS non corretto: %1. - + RSS item with given path already exists: %1. Un elemento RSS col percorso fornito è già esistente: %1. - + Parent folder doesn't exist: %1. La cartella superiore non esiste: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Il feed non esiste: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + s + + + + Default + Predefinito + + RSSWidget @@ -9286,78 +9268,77 @@ Errore: "formato dati non valido". + Feed options... + + + Edit feed URL... - Modifica URL feed... + Modifica URL feed... - Edit feed URL - Modifica URL feed + Modifica URL feed - + Please choose a folder name Scegli un nome cartella - + Folder name: Nome cartella: - + New folder Nuova cartella - - Please type a RSS feed URL - Inserisci una URL fonte RSS + Inserisci una URL fonte RSS - - Feed URL: - URL fonte: + URL fonte: - + Deletion confirmation Conferma cancellazione - + Are you sure you want to delete the selected RSS feeds? Sei sicuro di voler cancellare le fonti RSS selezionate? - + Please choose a new name for this RSS feed Scegli un nuovo nome per questa fonte RSS - + New feed name: Nuovo nome fonte: - + Rename failed Rinominazione non riuscita - + Date: Data: - + Feed: Feed: - + Author: Autore: @@ -9494,10 +9475,6 @@ Errore: "formato dati non valido". i.e: Number of partial sources Sorgenti parziali - - Search engine - Motore ricerca - Filter search results... @@ -9587,17 +9564,17 @@ Errore: "formato dati non valido". Engine - + Engine Engine URL - + URL engine Published On - + Pubblicato il @@ -9618,104 +9595,104 @@ Errore: "formato dati non valido". SearchPluginManager - + Unknown search engine plugin file format. Formato estensione motore di ricerca sconosciuto. - + Plugin already at version %1, which is greater than %2 Plugin già versione %1, che è maggiroe di %2 - + A more recent version of this plugin is already installed. Una versione più recente di questa estensione è già installata. - + Plugin %1 is not supported. Plugin %1 non supportato. - - + + Plugin is not supported. Estensione non supportata. - + Plugin %1 has been successfully updated. Aggiornamento plugin %1 completato. - + All categories Tutte le categorie - + Movies Film - + TV shows Serie TV - + Music Musica - + Games Giochi - + Anime Animazione - + Software Applicazioni - + Pictures Immagini - + Books Libri - + Update server is temporarily unavailable. %1 Server aggiornamenti temporaneamente non disponibile. %1 - - + + Failed to download the plugin file. %1 Impossibile scaricare il file di estensione. %1 - + Plugin "%1" is outdated, updating to version %2 Il plugin "%1" è obsoleto - aggiornamento alla versione %2 - + Incorrect update info received for %1 out of %2 plugins. Info aggiornamento ricevute non corrette per %1 di %2 plugin. - + Search plugin '%1' contains invalid version string ('%2') L'estensione di ricerca '%1' contiene stringa di versione non valida ('%2') @@ -9741,137 +9718,143 @@ Fai clic sul pulsante "Estensioni di ricerca..." in basso a destra per Estensioni ricerca... - + A phrase to search for. Una frase da cercare. - + Spaces in a search term may be protected by double quotes. Gli spazi in un termine di ricerca possono essere conservati usando i caratteri di quotazione. - + Example: Search phrase example Esempio: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;testo esempio&quot;</b>: ricerca per <b>testo esempio</b> - + All plugins Tutte le estensioni - + Only enabled Solo abilitati - - + + Invalid data format. - Formato dati non valido. + Formato dati non valido. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: cerca <b>foo</b> e <b>bar</b> - + Refresh - + Aggiorna - + Close tab Chiudi scheda - + Close all tabs Chiudi tutte le schede - + Select... Seleziona... - - + + Search Engine Motore di Ricerca - - + + Please install Python to use the Search Engine. Installa Python per usare il motore di ricerca. - + Empty search pattern Campo di ricerca vuoto - + Please type a search pattern first È necessario inserire dei termini di ricerca prima - + Stop Ferma - - Search has finished - La ricerca è terminata - - - Search has failed - La ricerca non ha avuto successo - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Impossibile caricare i dati dello stato salvato dell'interfaccia utente. +File: "%1". +Errore: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Impossibile caricare i risultati di ricerca salvati. +Scheda: "%1". +File: "%2". +Errore: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Impossibile salvare lo stato dell'interfaccia utente ricerca. +File: "%1". +Errore: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Impossibile salvare i risultati della ricerca. +Scheda: "%1". +File: "%2". +Errore: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Impossibile caricare la cronologia dell'interfaccia utente. +File: "%1". +Errore: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Impossibile salvare la cronologia della ricerca. +File: "%1". +Errore: "%2" @@ -10268,67 +10251,77 @@ Uso il file di riserva per ripristinare le impostazioni: %1 StatusBar - + Connection status: Stato connessione: - - + + No direct connections. This may indicate network configuration problems. Nessuna connessione diretta. Questo potrebbe indicare problemi di configurazione della rete. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + IP esterno: n/d + + + + DHT: %1 nodes DHT: %1 nodi - + qBittorrent needs to be restarted! qBittorrent ha bisogno di essere riavviato! - - + + Connection Status: Stato connessione: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Non in linea. Questo di solito significa che qBittorrent non è riuscito a mettersi in ascolto sulla porta selezionata per le connessioni in entrata. - + Online Online - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + IP esterni: %1, %2 + + + + External IP: %1%2 + IP esterno: %1, %2 + + + Click to switch to alternative speed limits Clicca per passare ai limiti alternativi di velocità - + Click to switch to regular speed limits Clicca per passare ai limiti normali di velocità @@ -10356,23 +10349,15 @@ Uso il file di riserva per ripristinare le impostazioni: %1 Completed (0) Completati (0) - - Resumed (0) - Ripresi (0) - - - Paused (0) - In pausa (0) - Running (0) - + Avviati (0) Stopped (0) - + Fermati (0) @@ -10437,49 +10422,33 @@ Uso il file di riserva per ripristinare le impostazioni: %1 Running (%1) - + Avviati (%1) Stopped (%1) - + Fermati (%1) Start torrents - + Avvia torrents Stop torrents - - - - Paused (%1) - In pausa (%1) + Ferma torrents Moving (%1) Spostamento (%1) - - Resume torrents - Riprendi i torrent - - - Pause torrents - Metti in pausa i torrent - Remove torrents Rimuovi torrent - - Resumed (%1) - Ripresi (%1) - Active (%1) @@ -10551,32 +10520,20 @@ Uso il file di riserva per ripristinare le impostazioni: %1 Remove unused tags Rimuovi etichette non utilizzate - - Resume torrents - Riprendi torrent - - - Pause torrents - Metti torrent in pausa - Remove torrents Rimuovi torrent - - New Tag - Nuova etichetta - Start torrents - + Avvia torrent Stop torrents - + Ferma torrent @@ -10586,7 +10543,7 @@ Uso il file di riserva per ripristinare le impostazioni: %1 Add tag - + Aggiungi etichetta @@ -10903,17 +10860,17 @@ Scegli un nome diverso e riprova. TorrentCreatorController - + Too many active tasks Troppi task attivi - + Torrent creation is still unfinished. La creazione del torrent non è ancora completata. - + Torrent creation failed. Creazione del torrent non riuscita. @@ -11171,19 +11128,6 @@ File: %1 Cartella monitorata: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Impossibile allocare memoria durante la lettura del file. -File: "%1". -Errore: "%2" - - - Invalid metadata - Metadati non validi - - TorrentOptionsDialog @@ -11219,11 +11163,7 @@ Errore: "%2" Torrent Share Limits - - - - Torrent speed limits - Limiti velocità torrent + Limite condivisione torrent @@ -11239,7 +11179,7 @@ Errore: "%2" Torrent Speed Limits - + Limite velocità torrent @@ -11257,34 +11197,6 @@ Errore: "%2" Upload: Upload: - - Torrent share limits - Limiti condivisione torrent - - - Use global share limit - Usa limite condivisione globale - - - Set no share limit - Rimuovi limiti condivisione - - - Set share limit to - Imposta limite condivisione a - - - ratio - rapporto - - - total minutes - minuti totali - - - inactive minutes - minuti di inattività - Disable DHT for this torrent @@ -11326,14 +11238,6 @@ Errore: "%2" Not applicable to private torrents Non applicabile ai torrent privati - - No share limit method selected - Nessun metodo limite condivisione selezionato - - - Please select a limit method first - Prima scegli un metodo di limitazione - TorrentShareLimitsWidget @@ -11383,27 +11287,27 @@ Errore: "%2" Action when the limit is reached: - + Azione quando viene raggiunto il limite: Stop torrent - + Ferma torrent Remove torrent - Rimuovi torrent + Rimuovi torrent Remove torrent and its content - + Rimuovi torrent e il suo contenuto Enable super seeding for torrent - Abilita super seeding per torrent + Abilita super seeding per torrent @@ -11418,14 +11322,10 @@ Errore: "%2" Torrent Tags Tag torrent - - New Tag - Nuova etichetta - Add tag - + Aggiungi etichetta @@ -11456,90 +11356,90 @@ Errore: "%2" TorrentsController - + Error: '%1' is not a valid torrent file. Errore: '%1' non è un file torrent valido. - + Priority must be an integer La priorità deve essere un valore intero - + Priority is not valid Priorità non valida - + Torrent's metadata has not yet downloaded Metadato torrent non ancora scaricato - + File IDs must be integers Gli ID file devono essere valori interi - + File ID is not valid ID file non valido - - - - + + + + Torrent queueing must be enabled L'accodamento torrent deve essere abilitato - - + + Save path cannot be empty Il valore 'Percorso salvataggio' non può essere vuoto - - + + Cannot create target directory Impossibile creare la cartella destinazione - - + + Category cannot be empty Il valore 'Categoria' non può essere vuoto - + Unable to create category Impossibile creare la categoria - + Unable to edit category Impossibile modificare la categoria - + Unable to export torrent file. Error: %1 Impossibile esportare il file torrent. Errore: %1 - + Cannot make save path Impossibile creare percorso salvataggio "%1" is not a valid URL - + "%1" non è una URL valida URL scheme must be one of [%1] - + Lo schema URL deve essere uno di [%1] @@ -11547,39 +11447,39 @@ Errore: "%2" Parametro 'sort' non valido - + "%1" is not an existing URL - + "%1" non è una URL esistente - + "%1" is not a valid file index. '%1' non è un file indice valido. - + Index %1 is out of bounds. Indice '%1' fuori dai limiti. - - + + Cannot write to directory Impossibile scrivere nella cartella - + WebUI Set location: moving "%1", from "%2" to "%3" Interfaccia web imposta posizione: spostamento di "%1", da "%2" a "%3" - + Incorrect torrent name Nome torrent non corretto - - + + Incorrect category name Nome categoria non corretto @@ -11662,45 +11562,33 @@ Errore: "%2" Invalid state! - + Stato non valido! URL/Announce Endpoint - + URL/annuncio punto finale BT Protocol - + Protocollo BT Next Announce - + Annuncio successivo Min Announce - - - - Invalid status! - Stato non valido! - - - URL/Announce endpoint - URL/annuncio endpoint + Annuncio minimo Tier Livello - - Protocol - Protocollo - Status @@ -11731,18 +11619,6 @@ Errore: "%2" Message Messaggio - - Next announce - Annuncio successivo - - - Min announce - Annuncio min. - - - v%1 - v%1 - TrackerListWidget @@ -11752,73 +11628,73 @@ Errore: "%2" Questo torrent è privato - + Tracker editing Modifica tracker - + Tracker URL: URL tracker: - - + + Tracker editing failed Modifica tracker fallita - + The tracker URL entered is invalid. Il tracker inserito non è valido. - + The tracker URL already exists. L'URL tracker esiste già. - + Edit tracker URL... Modifica URL tracker... - + Remove tracker Rimuovi tracker - + Copy tracker URL Copia URL tracker - + Force reannounce to selected trackers Forza ri-annuncio ai tracker selezionati - + Force reannounce to all trackers Forza ri-annuncio a tutti i tracker - + Resize columns Ridimensiona colonne - + Resize all non-hidden columns to the size of their contents Ridimensiona tutte le colonne non nascoste alla dimensione del loro contenuto - + Add trackers... Aggiungi tracker... - + Column visibility Visbilità colonna @@ -11902,20 +11778,12 @@ Motivo: "%1" Start torrents - + Avvia torrent Stop torrents - - - - Resume torrents - Riprendi torrent - - - Pause torrents - Metti in pausa i torrent + Ferma torrent @@ -12039,10 +11907,6 @@ Motivo: "%1" Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Controllo dati recupero - - Paused - In pausa - Completed @@ -12083,21 +11947,16 @@ Motivo: "%1" % Done Avanzamento - - Status - Torrent status (e.g. downloading, seeding, paused) - Stato - Stopped - + Fermato Status Torrent status (e.g. downloading, seeding, stopped) - Stato + Stato @@ -12132,7 +11991,7 @@ Motivo: "%1" Popularity - + Popolarità @@ -12213,22 +12072,17 @@ Motivo: "%1" Time Active Time (duration) the torrent is active (not stopped) - Tempo attivo + Tempo attivo Yes - + No - No - - - Time Active - Time (duration) the torrent is active (not paused) - Tempo attivo + No @@ -12300,12 +12154,12 @@ Motivo: "%1" Private Flags private torrents - + Privato Ratio / Time Active (in months), indicates how popular the torrent is - + Rapporto/tempo attivo (in mesi), indica quanto è popolare il torrent @@ -12330,360 +12184,321 @@ Motivo: "%1" TransferListWidget - + Column visibility Visibilità colonna - + Recheck confirmation Conferma ricontrollo - + Are you sure you want to recheck the selected torrent(s)? Confermi di voler ricontrollare i torrent selezionati? - + Rename Rinomina - + New name: Nuovo nome: - + Choose save path Scegli una cartella per il salvataggio - Confirm pause - Conferma pausa - - - Would you like to pause all torrents? - Vuoi mettere in pausa tutti i torrent? - - - Confirm resume - Conferma ripresa - - - Would you like to resume all torrents? - Vuoi riprendere tutti i torrent? - - - + Unable to preview Anteprima non possibile - + The selected torrent "%1" does not contain previewable files Il torrent selezionato "%1" non contiene file compatibili con l'anteprima - + Resize columns Ridimensiona colonne - + Resize all non-hidden columns to the size of their contents Ridimensiona tutte le colonne non nascoste alla dimensione del loro contenuto - + Enable automatic torrent management Abilita gestione automatica torrent - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Sei sicuro di voler abilitare la gestione automatica torrent per i torrent selezionati? I torrent potranno essere spostati. - Add Tags - Aggiungi etichette - - - + Choose folder to save exported .torrent files Scegli la cartella in cui salvare i file .torrent esportati - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Esportazione file .torrent non riuscita. Torrent: "%1". Percorso salvataggio: "%2". Motivo: "%3" - + A file with the same name already exists Esiste già un file con lo stesso nome - + Export .torrent file error Errore esportazione del file .torrent - + Remove All Tags Rimuovi tutte le etichette - + Remove all tags from selected torrents? Rimuovere tutte le etichette dai torrent selezionati? - + Comma-separated tags: Etichette separate da virgola: - + Invalid tag Etichetta non valida - + Tag name: '%1' is invalid Nome etichetta: '%1' non è valido - &Resume - Resume/start the torrent - &Riprendi - - - &Pause - Pause the torrent - &Pausa - - - Force Resu&me - Force Resume/start the torrent - Forza rip&resa - - - + Pre&view file... A&nteprima file... - + Torrent &options... &Opzioni torrent... - + Open destination &folder Apri cartella &destinazione - + Move &up i.e. move up in the queue Sposta s&u - + Move &down i.e. Move down in the queue Sposta &giù - + Move to &top i.e. Move to top of the queue Sposta in &alto - + Move to &bottom i.e. Move to bottom of the queue Sposta in &basso - + Set loc&ation... Impost&a percorso... - + Force rec&heck Forza ri&controllo - + Force r&eannounce Forza ri&annuncio - + &Magnet link Collegamento &magnet - + Torrent &ID &ID torrent - + &Comment &Commento - + &Name &Nome - + Info &hash v1 Info&hash 1 - + Info h&ash v2 Info h&ash 2 - + Re&name... Ri&nomina... - + Edit trac&kers... Modifica trac&ker... - + E&xport .torrent... E&sporta .torrent... - + Categor&y &Categoria - + &New... New category... &Nuovo... - + &Reset Reset category &Ripristina - + Ta&gs Ta&g - + &Add... Add / assign multiple tags... &Aggiungi... - + &Remove All Remove all tags &Rimuovi tutto - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Impossibile forzare il riannuncio se il torrent è arrestato/in coda/in errore/in controllo - + &Queue &Coda - + &Copy &Copia - + Exported torrent is not necessarily the same as the imported Il torrent esportato non è necessariamente lo stesso di quello importato - + Download in sequential order Scarica in ordine sequenziale - + Add tags - + Aggiungi etichetta - + Errors occurred when exporting .torrent files. Check execution log for details. Si sono verificati errori durante l'esportazione di file .torrent. Per i dettagli controlla il registro di esecuzione. - + &Start Resume/start the torrent - + &Avvia - + Sto&p Stop the torrent - + Sto&p - + Force Star&t Force Resume/start the torrent - + For&za avvio - + &Remove Remove the torrent &Rimuovi - + Download first and last pieces first Scarica la prima e l'ultima parte per prime - + Automatic Torrent Management Gestione Torrent Automatica - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category La modalità automatica significa che le varie proprietà torrent (ad esempio il percorso di salvataggio) saranno decise dalla categoria associata - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Non è possibile forzare il nuovo annuncio se il torrent è In Pausa/In Coda/Errore/Controllo - - - + Super seeding mode Modalità super distribuzione @@ -12764,7 +12579,8 @@ Destinazione: %2. Set app style failed. Unknown style: "%1" - + Impostazione stile app non riuscita. +Stile sconosciuto: "%1". @@ -12827,37 +12643,37 @@ Valore non valido: "%2". Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Trovato eseguibile Python. Nome: "%1". Versione: "%2" - + Failed to find Python executable. Path: "%1". Impossibile trovare l'eseguibile Python. Percorso: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Impossibile trovare l'eseguibile `python3` nella variabile di ambiente PATH. PERCORSO: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Impossibile trovare l'eseguibile `python` nella variabile di ambiente PATH. PERCORSO: "%1" - + Failed to find `python` executable in Windows Registry. Impossibile trovare l'eseguibile `python` nel registro di Windows. - + Failed to find Python executable Impossibile trovare l'eseguibile Python @@ -12962,54 +12778,54 @@ Effettiva: %3 WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. È stato specificato un nome di cookie di sessione non accettabile: '%1'. Verrà utilizzato quello predefinito. - + Unacceptable file type, only regular file is allowed. Tipo file non accettabile, sono permessi solo file regolari. - + Symlinks inside alternative UI folder are forbidden. I collegamenti simbolici in cartelle interfaccia alternative non sono permessi. - + Using built-in WebUI. Usa WebUI integrata. - + Using custom WebUI. Location: "%1". Usa WebUI personalizzata. Percorso: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. La traduzione della WebUI per la lingua selezionata (%1) è stata caricata correttamente. - + Couldn't load WebUI translation for selected locale (%1). Impossibile caricare la traduzione della WebUI per la lingua selezionata (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Separatore ':' mancante in intestazione HTTP personalizzata WebUI: "%1" - + Web server error. %1 Errore server web. %1 - + Web server error. Unknown error. Errore server web. Errore sconosciuto. @@ -13069,7 +12885,7 @@ Motivo: %3 Unknown error - Errore sconosciuto + Errore sconosciuto diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index 4407cca26..7948719ef 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -170,10 +170,6 @@ Never show again 次回から表示しない - - Torrent settings - Torrentの設定 - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrentのオプション @@ -235,25 +231,25 @@ 停止条件: - - + + None なし - - + + Metadata received メタデータを受信後 - + Torrents that have metadata initially will be added as stopped. 最初からメタデータを持つTorrentは、停止状態で追加されます。 - + Files checked ファイルのチェック後 @@ -368,112 +364,112 @@ ".torrent"ファイルとして保存... - + I/O Error I/Oエラー - + Not Available This comment is unavailable 取得できません - + Not Available This date is unavailable 取得できません - + Not available 取得できません - + Magnet link マグネットリンク - + Retrieving metadata... メタデータを取得しています... - - + + Choose save path 保存パスの選択 - + No stop condition is set. 停止条件は設定されていません。 - + Torrent will stop after metadata is received. メタデータの受信後、Torrentは停止します。 - + Torrent will stop after files are initially checked. ファイルの初期チェック後、Torrentは停止します。 - + This will also download metadata if it wasn't there initially. また、メタデータが存在しない場合は、メタデータもダウンロードされます。 - + N/A N/A - + %1 (Free space on disk: %2) %1 (ディスクの空き容量: %2) - + Not available This size is unavailable. 取得できません - + Torrent file (*%1) Torrentファイル (*%1) - + Save as torrent file ".torrent"ファイルとして保存 - + Couldn't export torrent metadata file '%1'. Reason: %2. Torrentのメタデータファイル(%1)をエクスポートできませんでした。理由: %2。 - + Cannot create v2 torrent until its data is fully downloaded. v2のデータが完全にダウンロードされるまではv2のTorrentを作成できません。 - + Filter files... ファイルを絞り込む... - + Parsing metadata... メタデータを解析しています... - + Metadata retrieval complete メタデータの取得が完了しました @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Torrentをダウンロード中... ソース: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Torrentが追加できませんでした。 ソース: "%1". 理由: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 重複したTorrentの追加が検出されました。ソース: %1. 既存Torrent: %2. 結果: %3. + 重複したTorrentの追加が検出されました。ソース: %1. 既存Torrent: %2. 結果: %3. - + Merging of trackers is disabled トラッカーのマージは無効です - + Trackers cannot be merged because it is a private torrent プライベートTorrentのため、トラッカーはマージできません。 - + Trackers are merged from new source トラッカーは新しいソースからマージされます。 + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrentの完了時に再チェックする - - + + ms milliseconds ミリ秒 - + Setting 設定 - + Value Value set for this setting - + (disabled) (無効) - + (auto) (自動) - - + + min minutes - + All addresses すべてのアドレス - + qBittorrent Section qBittorrentセクション - - + + Open documentation ドキュメントを開く - + All IPv4 addresses すべてのIPv4アドレス - + All IPv6 addresses すべてのIPv6アドレス - + libtorrent Section libtorrentセクション - + Fastresume files Fastresumeファイル - + SQLite database (experimental) SQLiteデータベース(実験的) - + Resume data storage type (requires restart) 再開データのストレージタイプ(再起動が必要) - + Normal 標準 - + Below normal 標準以下 - + Medium - + Low - + Very low 最低 - + Physical memory (RAM) usage limit 物理メモリ(RAM)の使用限度 - + Asynchronous I/O threads 非同期I/Oスレッド数 - + Hashing threads スレッドのハッシュ化 - + File pool size ファイルプールサイズ - + Outstanding memory when checking torrents Torrentのチェックに使用するメモリー量 - + Disk cache ディスクキャッシュ - - - - + + + + + s seconds - + Disk cache expiry interval ディスクキャッシュの書き込み間隔 - + Disk queue size ディスクキューサイズ - - + + Enable OS cache OSのキャッシュを有効にする - + Coalesce reads & writes コアレス読み込み/書き込み - + Use piece extent affinity ピースのエクステントアフィニティを使用する - + Send upload piece suggestions アップロードピースの提案を送信する - - - - - + + + + + 0 (disabled) 0 (無効) - + Save resume data interval [0: disabled] How often the fastresume file is saved. 再開データ保存間隔 [0: 無効] - + Outgoing ports (Min) [0: disabled] 送信ポート(最小) [0: 無効] - + Outgoing ports (Max) [0: disabled] 送信ポート(最大) [0: 無効] - + 0 (permanent lease) 0 (永続リース) - + UPnP lease duration [0: permanent lease] UPnPのリース期間 [0: 永続リース] - + Stop tracker timeout [0: disabled] 停止トラッカーのタイムアウト [0: 無効] - + Notification timeout [0: infinite, -1: system default] 通知のタイムアウト [0: 無限, -1: システムデフォルト] - + Maximum outstanding requests to a single peer 1つのピアへ送信する未処理リクエストの最大数 - - - - - + + + + + KiB KiB - + (infinite) (無限) - + (system default) (システムデフォルト) - + Delete files permanently - + ファイルを完全に削除する - + Move files to trash (if possible) - + ファイルをゴミ箱に移動する (可能な場合) - + Torrent content removing mode - + Torrentコンテンツ削除モード - + This option is less effective on Linux このオプションは、Linuxではあまり効果がありません - + Process memory priority プロセスのメモリー優先度 - + Bdecode depth limit Bdecodeの深度制限 - + Bdecode token limit Bdecodeのトークン制限 - + Default デフォルト - + Memory mapped files メモリーマップドファイル - + POSIX-compliant POSIX準拠 - + Simple pread/pwrite - + シンプルなpread/pwrite - + Disk IO type (requires restart) Disk IOタイプ(再起動が必要) - - + + Disable OS cache OSのキャッシュを無効にする - + Disk IO read mode ディスクI/O読み込みモード - + Write-through ライトスルー - + Disk IO write mode ディスクI/O書き込みモード - + Send buffer watermark 送信バッファーのウォーターマーク - + Send buffer low watermark 送信バッファーのウォーターマーク最小値 - + Send buffer watermark factor 送信バッファーのウォーターマーク係数 - + Outgoing connections per second 1秒あたりの外部接続数 - - + + 0 (system default) 0 (システムデフォルト) - + Socket send buffer size [0: system default] ソケットの送信バッファサイズ [0: システムデフォルト] - + Socket receive buffer size [0: system default] ソケットの受信バッファサイズ [0: システムデフォルト] - + Socket backlog size ソケットで保留にできる接続待ちの数 - + Save statistics interval [0: disabled] How often the statistics file is saved. - + 統計保存間隔 [0: 無効] - + .torrent file size limit ".torrent"ファイルのサイズ制限 - + Type of service (ToS) for connections to peers ピアに接続するサービスの種類(ToS) - + Prefer TCP TCPを優先 - + Peer proportional (throttles TCP) ピアに比例(TCPをスロットル) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) 国際化ドメイン名(IDN)に対応する - + Allow multiple connections from the same IP address 同じIPアドレスから複数の接続を許可する - + Validate HTTPS tracker certificates HTTPSトラッカーの証明書を検証する - + Server-side request forgery (SSRF) mitigation サーバーサイドリクエストフォージェリ(SSRF)の軽減 - + Disallow connection to peers on privileged ports 特権ポートでのピアへの接続を許可しない - + It appends the text to the window title to help distinguish qBittorent instances qBittorentインスタンスを区別するために、ウィンドウタイトルにテキストを付加します。 - + Customize application instance name アプリケーションインスタンスのカスタマイズ - + It controls the internal state update interval which in turn will affect UI updates UIの更新に影響を与える内部状態の更新間隔をコントロールします。 - + Refresh interval 更新間隔 - + Resolve peer host names ピアのホスト名を解決する - + IP address reported to trackers (requires restart) トラッカーに報告するIPアドレス(再起動が必要) - + Port reported to trackers (requires restart) [0: listening port] - + トラッカーに報告されるポート(再起動が必要) [0: 接続待ちポート] - + Reannounce to all trackers when IP or port changed IPまたはポートに変更があったとき、すべてのトラッカーに再アナウンスする - + Enable icons in menus メニューのアイコン表示を有効にする - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker 組み込みトラッカーのポート転送を有効にする - + Enable quarantine for downloaded files ダウンロードされたファイルの隔離を有効にする - + Enable Mark-of-the-Web (MOTW) for downloaded files ダウンロードされたファイルのMark-of-the-Web (MOTW)を有効にする - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + 証明書の検証とtorrentプロトコル以外のアクティビティ (RSSフィード、プログラムの更新、torrentファイル、geoip dbなど) に影響します。 - + Ignore SSL errors - + SSLエラーを無視する - + (Auto detect if empty) (空欄の場合は自動検出) - + Python executable path (may require restart) Pythonの実行パス(再起動が必要) - + Start BitTorrent session in paused state - + BitTorrentセッションを一時停止状態で開始する - + sec seconds - + - + -1 (unlimited) - + -1 (無制限) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrentセッションのシャットダウンのタイムアウト [-1: 無制限] - + Confirm removal of tracker from all torrents すべてのTorrentからトラッカーを削除するときは確認する - + Peer turnover disconnect percentage ピアターンオーバーの切断の割合 - + Peer turnover threshold percentage ピアターンオーバーのしきい値の割合 - + Peer turnover disconnect interval ピアターンオーバーの切断の間隔 - + Resets to default if empty 空欄の場合はデフォルトにリセット - + DHT bootstrap nodes DHTブートストラップノード - + I2P inbound quantity I2Pインバウンド量 - + I2P outbound quantity I2Pアウトバウンド量 - + I2P inbound length I2Pインバウンド長 - + I2P outbound length I2Pアウトバウンド長 - + Display notifications 通知を表示する - + Display notifications for added torrents 追加されたTorrentの通知を表示する - + Download tracker's favicon トラッカーのファビコンをダウンロードする - + Save path history length 保存パスの履歴数 - + Enable speed graphs 速度グラフを有効にする - + Fixed slots 固定スロット数 - + Upload rate based アップロード速度基準 - + Upload slots behavior アップロードスロットの動作 - + Round-robin ラウンドロビン - + Fastest upload 最速アップロード - + Anti-leech アンチリーチ - + Upload choking algorithm アップロードのチョークアルゴリズム - + Confirm torrent recheck Torrentを再チェックするときは確認する - + Confirm removal of all tags すべてのタグを削除するときは確認する - + Always announce to all trackers in a tier 常にティア内のすべてのトラッカーにアナウンスする - + Always announce to all tiers 常にすべてのティアにアナウンスする - + Any interface i.e. Any network interface すべてのインターフェース - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP混合モードのアルゴリズム - + Resolve peer countries ピアの国籍を解決する - + Network interface ネットワークインターフェース - + Optional IP address to bind to バインドする任意のIPアドレス - + Max concurrent HTTP announces HTTPアナウンスの最大同時接続数 - + Enable embedded tracker 組み込みトラッカーを有効にする - + Embedded tracker port 組み込みトラッカーのポート @@ -1382,142 +1393,142 @@ Invalid directory path - + 無効なディレクトリーパスです Directory does not exist - + ディレクトリーが存在しません Invalid mode, allowed values: %1 - + 無効なモードです。使用できる値: %1 cookies must be array - + クッキーは配列でなければなりません Application - + Running in portable mode. Auto detected profile folder at: %1 ポータブルモードで実行中です。自動検出されたプロファイルフォルダー: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. 不要なコマンドラインオプションを検出しました: "%1" 。 ポータブルモードには、"relative fastresume"機能が含まれています。 - + Using config directory: %1 次の設定ディレクトリーを使用します: %1 - + Torrent name: %1 Torrent名: %1 - + Torrent size: %1 Torrentサイズ: %1 - + Save path: %1 保存パス: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrentは%1にダウンロードされました。 - - + + Thank you for using qBittorrent. qBittorrentをご利用いただきありがとうございます。 - + Torrent: %1, sending mail notification Torrent: %1で通知メールが送信されました - + Add torrent failed Torrentが追加できませんでした - + Couldn't add torrent '%1', reason: %2. Torrent(%1)を追加できませんでした。理由: %2 - + The WebUI administrator username is: %1 WebUI管理者のユーザー名: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 WebUI管理者のパスワードが設定されていません。このセッションは、一時的なパスワードが与えられます: %1 - + You should set your own password in program preferences. プログラムの設定で独自のパスワードを設定する必要があります。 - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUIが無効です。WebUIを有効にするには設定ファイルを手動で編集します。 - + Running external program. Torrent: "%1". Command: `%2` 外部プログラムを実行中。 Torrent: "%1". コマンド: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` 外部プログラムが実行できませんでした。Torrent: "%1." コマンド: "%2" - + Torrent "%1" has finished downloading Torrent(%1)のダウンロードが完了しました - + WebUI will be started shortly after internal preparations. Please wait... 準備ができ次第、WebUIが開始されます。しばらくお待ちください... - - + + Loading torrents... Torrentを読み込み中... - + E&xit 終了(&X) - + I/O Error i.e: Input/Output Error I/Oエラー - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ 理由: %2 - + Torrent added Torrentが追加されました - + '%1' was added. e.g: xxx.avi was added. '%1'が追加されました。 - + Download completed ダウンロードが完了しました - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 が開始されました。プロセスID: %2 - + This is a test email. - + これはテストメールです。 - + Test email - + テストメール - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1'のダウンロードが完了しました。 - + Information 情報 - + To fix the error, you may need to edit the config file manually. エラーを修正するには、設定ファイルを手動で編集する必要があります。 - + To control qBittorrent, access the WebUI at: %1 qBittorrentを操作するには、Web UI(%1)にアクセスしてください - + Exit 終了 - + Recursive download confirmation 再帰的なダウンロードの確認 - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent(%1)は".torrent"ファイルを含んでいます。これらのダウンロードを行いますか? - + Never しない - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Torrent内の".torrent"ファイルが再帰的にダウンロードされます。ソースTorrent: "%1". ファイル: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" 物理メモリー(RAM)の使用限度を設定できませんでした。エラーコード: %1. エラーメッセージ: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" 物理メモリー(RAM)の絶対的な使用量を設定できませんでした。要求サイズ: %1. システムの絶対制限: %2. エラーコード: %3. エラーメッセージ: "%4" - + qBittorrent termination initiated qBittorrentの終了を開始しました - + qBittorrent is shutting down... qBittorrentはシャットダウンしています... - + Saving torrent progress... Torrentの進捗状況を保存しています... - + qBittorrent is now ready to exit qBittorrentは終了準備ができました @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also エクスポート(&E)... - + Matches articles based on episode filter. エピソードフィルターを使用して記事をマッチします。 - + Example: 例: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match シーズン1の2、5、8から15、30以降の各エピソードにマッチします - + Episode filter rules: エピソードフィルターのルール: - + Season number is a mandatory non-zero value シーズン番号は、0以外の値(必須)です - + Filter must end with semicolon フィルターはセミコロンで終わる必要があります - + Three range types for episodes are supported: エピソードの範囲指定は3種類あります: - + Single number: <b>1x25;</b> matches episode 25 of season one 単数: <b>1x25;</b> は、シーズン1のエピソード25にマッチします - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one 標準範囲: <b>1x25-40;</b> は、シーズン1のエピソード25から40にマッチします - + Episode number is a mandatory positive value エピソード番号は、整数値(必須)です - + Rules ルール - + Rules (legacy) ルール(レガシー) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons 無限範囲: <b>1x25-;</b> は、シーズン1のエピソード25以降と、それ以降のすべてのシーズンのすべてのエピソードにマッチします - + Last Match: %1 days ago 前回のマッチ: %1日前 - + Last Match: Unknown 前回のマッチ: 不明 - + New rule name 新しいルール名 - + Please type the name of the new download rule. 新しいダウンロードルールの名前を入力してください。 - - + + Rule name conflict ルール名の競合 - - + + A rule with this name already exists, please choose another name. 入力された名前のルールはすでに存在しています。別の名前を選んでください。 - + Are you sure you want to remove the download rule named '%1'? ダウンロードルール'%1'を削除しますか? - + Are you sure you want to remove the selected download rules? 選択したダウンロードルールを削除しますか? - + Rule deletion confirmation ルール削除の確認 - + Invalid action 無効な操作 - + The list is empty, there is nothing to export. リストが空のため、エクスポートするものがありません。 - + Export RSS rules RSSルールのエクスポート - + I/O Error I/Oエラー - + Failed to create the destination file. Reason: %1 出力ファイルを作成できませんでした。理由: %1 - + Import RSS rules RSSルールのインポート - + Failed to import the selected rules file. Reason: %1 選択したルールファイルをインポートできませんでした。理由: %1 - + Add new rule... 新しいルールを追加... - + Delete rule ルールを削除 - + Rename rule... ルール名を変更... - + Delete selected rules 選択したルールを削除 - + Clear downloaded episodes... ダウンロードしたエピソードをクリア... - + Rule renaming ルール名の変更 - + Please type the new rule name 新しいルール名を入力してください - + Clear downloaded episodes ダウンロードしたエピソードのクリア - + Are you sure you want to clear the list of downloaded episodes for the selected rule? 選択されたルールのダウンロード済みエピソードのリストをクリアしますか? - + Regex mode: use Perl-compatible regular expressions 正規表現モード: Perl互換の正規表現を使用します - - + + Position %1: %2 位置 %1: %2 - + Wildcard mode: you can use ワイルドカードモード: 以下の文字が使用できます - - + + Import error インポートエラー - + Failed to read the file. %1 ファイル(%1)を読み込めませんでした。 - + ? to match any single character "?"は任意の1文字にマッチします - + * to match zero or more of any characters "*"は任意の0文字以上の文字列にマッチします - + Whitespaces count as AND operators (all words, any order) 空白は"AND"演算子とみなされます(すべての単語、語順は任意) - + | is used as OR operator "|"は"OR"演算子として使用します - + If word order is important use * instead of whitespace. 語順が重要な場合は、空白ではなく'"*"を使用します。 - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) 空の"%1"を指定した場合(例: %2)は、 - + will match all articles. すべての記事にマッチします。 - + will exclude all articles. すべての記事にマッチしません。 @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 再開データの解析ができませんでした: 無効なフォーマット - - + + Cannot parse torrent info: %1 Torrent情報の解析ができませんでした: %1 - + Cannot parse torrent info: invalid format Torrent情報の解析ができませんでした: 無効なフォーマット - + Mismatching info-hash detected in resume data 再開データでinfoハッシュの不一致が検出されました - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. %1にTorrentのメタデータを保存できませんでした。 エラー: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. %1 にTorrentの再開データを保存できませんでした。 エラー: %2。 @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 再開データの解析ができませんでした: %1 - + Resume data is invalid: neither metadata nor info-hash was found 再開データが無効です。メタデータもinfoハッシュも見つかりませんでした。 - + Couldn't save data to '%1'. Error: %2 %1 にデータを保存できませんでした。 エラー: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. 見つかりません。 - + Couldn't load resume data of torrent '%1'. Error: %2 Torrent(%1)の再開データを読み込めませんでした。 エラー: %2 - - + + Database is corrupted. データベースが破損しています。 - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. ログ先行書き込み(WAL)ジャーナリングモードを有効にできませんでした。エラー: %1 - + Couldn't obtain query result. クエリーの結果を取得できませんでした。 - + WAL mode is probably unsupported due to filesystem limitations. WALモードは、ファイルシステムの制限により、おそらくサポートされていません。 - + + + Cannot parse resume data: %1 + 再開データの解析ができませんでした: %1 + + + + + Cannot parse torrent info: %1 + Torrent情報の解析ができませんでした: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 トランザクションを開始できませんでした。エラー: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Torrentのメタデータを保存できませんでした。 エラー: %1。 - + Couldn't store resume data for torrent '%1'. Error: %2 Torrent(%1)の再開データを保存できませんでした。 エラー: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Torrent(%1)の再開データを削除できませんでした。 エラー: %2 - + Couldn't store torrents queue positions. Error: %1 Torrentキューの位置を保存できませんでした。エラー: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 分散ハッシュテーブル(DHT)サポート: %1 - - - - - - - - - + + + + + + + + + ON ON - - - - - - - - - + + + + + + + + + OFF OFF - - + + Local Peer Discovery support: %1 ローカルピア検出サポート: %1 - + Restart is required to toggle Peer Exchange (PeX) support ピア交換(PeX)サポートに切り換えるには再起動が必要です - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrent(%1)が再開できませんでした。理由: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrentが再開できませんでした: 不整合なTorrent IDが検出されました。 Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" 不整合なデータが検出されました: 設定ファイルからカテゴリーが欠落しています。カテゴリーは復元されますが、設定はデフォルトにリセットされます。 Torrent: "%1". カテゴリー: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" 不整合なデータが検出されました: 無効なカテゴリーです。 Torrent: "%1". カテゴリー: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" 復元されたカテゴリーの保存パスとTorrentの現在の保存パスの不一致が検出されました。Torrentは手動モードに切り替わりました。 Torrent: "%1". カテゴリー: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" 不整合なデータが検出されました: 設定ファイルからタグが欠落しています。タグは復元されます。 Torrent: "%1". タグ: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" 不整合なデータが検出されました: 無効なタグです。 Torrent: "%1". タグ: "%2" - + System wake-up event detected. Re-announcing to all the trackers... システムのウェイクアップイベントが検出されました。すべてのトラッカーに再アナウンス中です... - + Peer ID: "%1" ピアID: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 ピア交換(PeX)サポート: %1 - - + + Anonymous mode: %1 匿名モード: %1 - - + + Encryption support: %1 暗号化サポート: %1 - - + + FORCED 強制 - + Could not find GUID of network interface. Interface: "%1" ネットワークインターフェースのGUIDが見つかりませんでした。インターフェース: "%1" - + Trying to listen on the following list of IP addresses: "%1" 次のIPアドレスリストで接続待ちを試行しています: "%1" - + Torrent reached the share ratio limit. Torrentが共有比制限に達しました。 - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrentが削除されました。 - - - Removed torrent and deleted its content. - Torrentとそのコンテンツが削除されました。 - - - Torrent paused. - Torrentが一時停止されました。 - - - + Super seeding enabled. スーパーシードが有効になりました。 - + Torrent reached the seeding time limit. Torrentがシード時間制限に達しました。 - + Torrent reached the inactive seeding time limit. Torrentが非稼働シードの時間制限に達しました。 - + Failed to load torrent. Reason: "%1" Torrentが読み込めませんでした。 理由: "%1" - + I2P error. Message: "%1". I2Pエラー。 メッセージ: %1 - + UPnP/NAT-PMP support: ON UPnP/NAT-PMPサポート: ON - + Saving resume data completed. - + 再開データが保存されました。 - + BitTorrent session successfully finished. - + BitTorrentセッションが正常に終了しました。 - + Session shutdown timed out. - + セッションのシャットダウンがタイムアウトしました。 - + Removing torrent. - + Torrentを削除しています。 - + Removing torrent and deleting its content. - + Torrentとそのコンテンツを削除しています。 - + Torrent stopped. - + Torrentが停止されました。 - + Torrent content removed. Torrent: "%1" - + Torrent(%1)のコンテンツが削除されました。 - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent(%1)のコンテンツが削除できませんでした。理由: "%2" - + Torrent removed. Torrent: "%1" - + Torrent(%1)が削除されました。 - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + 重複したTorrentの追加が検出されました。既存Torrent: %1. 結果: %2 - + Merging of trackers is disabled - トラッカーのマージは無効です + トラッカーのマージは無効です - + Trackers cannot be merged because it is a private torrent - プライベートTorrentのため、トラッカーはマージできません。 + プライベートTorrentのため、トラッカーはマージできません。 - + Trackers are merged from new source - トラッカーは新しいソースからマージされます。 + トラッカーは新しいソースからマージされます。 - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMPサポート: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Torrentがエクスポートできませんでした。 Torrent: "%1". 保存先: "%2". 理由: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 再開データの保存が中断されました。未処理Torrent数: %1 - + The configured network address is invalid. Address: "%1" 構成されたネットワークアドレスが無効です。 アドレス: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" 接続待ちをする構成されたネットワークアドレスが見つかりませんでした。アドレス: "%1" - + The configured network interface is invalid. Interface: "%1" 構成されたネットワークインターフェースが無効です。 インターフェース: "%1" - + Tracker list updated - + トラッカーリストが更新されました - + Failed to update tracker list. Reason: "%1" - + トラッカーリストが更新できませんでした。 理由: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" アクセス禁止IPアドレスのリストを適用中に無効なIPは除外されました。IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Torrentにトラッカーが追加されました。 Torrent: "%1". トラッカー: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Torrentからトラッカーが削除されました。 Torrent: "%1". トラッカー: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" TorrentにURLシードが追加されました。 Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" TorrentからURLシードが削除されました。 Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent(%1)の部分ファイルが削除できませんでした。理由: "%2" - Torrent paused. Torrent: "%1" - Torrentが一時停止されました。 Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrentが再開されました。 Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrentのダウンロードが完了しました。Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrentの移動がキャンセルされました。 Torrent: "%1". 移動元: "%2". 移動先: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent(%1)が停止されました。 + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Torrentの移動準備ができませんでした。Torrent: "%1". 移動元: "%2". 移動先: "%3". 理由: Torrentは現在移動先に移動中です。 - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Torrentの移動準備ができませんでした。Torrent: "%1". 移動元: "%2". 移動先: "%3". 理由: 両方のパスが同じ場所を指定しています - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrentの移動が実行待ちになりました。 Torrent: "%1". 移動元: "%2". 移動先: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Torrentの移動が開始されました。 Torrent: "%1". 保存先: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" カテゴリー設定が保存できませんでした。 ファイル: "%1". エラー: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" カテゴリー設定が解析できませんでした。 ファイル: "%1". エラー: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IPフィルターファイルが正常に解析されました。適用されたルール数: %1 - + Failed to parse the IP filter file IPフィルターファイルが解析できませんでした - + Restored torrent. Torrent: "%1" Torrentが復元されました。 Torrent: "%1" - + Added new torrent. Torrent: "%1" Torrentが追加されました。 Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrentのエラーです。Torrent: "%1". エラー: "%2" - Removed torrent. Torrent: "%1" - Torrentが削除されました。 Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrentとそのコンテンツが削除されました。 Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" TorrentにSSLパラメーターがありません。 Torrent: "%1". メッセージ: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" ファイルエラーアラート。 理由: %3. Torrent: "%1". ファイル: "%2". - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMPポートをマッピングできませんでした。メッセージ: %1 - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMPポートのマッピングに成功しました。メッセージ: %1 - + IP filter this peer was blocked. Reason: IP filter. IPフィルター - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). フィルター適用ポート(%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). 特権ポート(%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URLシードに接続できませんでした。Torrent: "%1". URL: "%2". エラー: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrentセッションで深刻なエラーが発生しました。理由: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5プロキシエラー。アドレス: %1。メッセージ: %2 - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 混在モード制限 - + Failed to load Categories. %1 カテゴリー(%1)を読み込めませんでした。 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" カテゴリー設定が読み込めませんでした。 ファイル: "%1". エラー: 無効なデータ形式 - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrentは削除されましたが、そのコンテンツや部分ファイルは削除できませんでした。 Torrent: "%1". エラー: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1が無効 - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1が無効 - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URLシードの名前解決ができませんでした。Torrent: "%1". URL: "%2". エラー: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" URLシードからエラーメッセージを受け取りました。 Torrent: "%1". URL: "%2". メッセージ: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" 接続待ちに成功しました。IP: "%1". ポート: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" 接続待ちに失敗しました。IP: "%1". ポート: "%2/%3". 理由: "%4" - + Detected external IP. IP: "%1" 外部IPを検出しました。 IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" エラー: 内部のアラートキューが一杯でアラートがドロップしているため、パフォーマンスが低下する可能性があります。ドロップしたアラートのタイプ: "%1". メッセージ: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrentが正常に移動されました。 Torrent: "%1". 保存先: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrentが移動できませんでした。 Torrent: "%1". 保存元: "%2". 保存先: "%3". 理由: "%4" @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also ファイルに書き込めませんでした。理由: "%1". Torrentは「アップロードのみ」モードになりました。 - + Download first and last piece first: %1, torrent: '%2' 最初と最後のピースを先にダウンロード: %1, Torrent: '%2' - + On On - + Off Off - + Failed to reload torrent. Torrent: %1. Reason: %2 Torrent(%1)がリロードできませんでした。理由: "%2" - + Generate resume data failed. Torrent: "%1". Reason: "%2" Torrent(%1)の再開データを生成できませんでした。エラー: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrentが復元できませんでした。ファイルが移動されたか、ストレージにアクセスできない可能性があります。Torrent: "%1". 理由: "%2" - + Missing metadata メタデータ不足 - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Torrent(%1)のファイル(%2)のファイル名を変更できませんでした。 理由: "%3" - + Performance alert: %1. More info: %2 パフォーマンスアラート: %1. 詳細: %2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' 環境変数'%1'は整数であることを期待していますが'%2'が得られました - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - 引数'%1'は'%1=%2'の構文で指定する必要があります - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - 引数'%1'は'%1=%2'の構文で指定する必要があります + 引数'%1'は'%1=%2'の構文で指定する必要があります @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - 追加時に開始するかしないか + Torrentを実行中または停止中で追加する @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Torrentを開始する Stop torrents - - - - Resume torrents - Torrentの再開 - - - Pause torrents - Torrentの停止 + Torrentを停止する @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + システム @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - ファイルを完全に削除する + コンテンツファイルも削除する @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + パターン形式 Plain text - + プレーンテキスト Wildcards - + ワイルドカード Regular expression - + 正規表現 GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrentをダウンロード中... ソース: "%1" - Trackers cannot be merged because it is a private torrent - プライベートTorrentのため、トラッカーはマージできません。 - - - + Torrent is already present Torrentはすでに存在します - + Trackers cannot be merged because it is a private torrent. - + プライベートTorrentのため、トラッカーはマージできません。 - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent(%1)はすでに転送リストにあります。新しいソースからトラッカーをマージしますか? @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 対応する画像ファイル + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + 電源管理で適切なD-Busインターフェースが見つかりました。インターフェース: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + 電源管理エラー。 操作: %1. エラー: %2 + + + + Power management unexpected error. State: %1. Error: %2 + 電源管理の予期せぬエラー。 状態: %1. エラー: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... オプション(&O)... - - &Resume - 再開(&R) - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + システムをシャットダウン(&U) @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window ウィンドウを閉じる - - R&esume All - すべて再開(&E) - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + 開始(&R) Sto&p - + 停止(&P) R&esume Session - + セッションの再開(&E) Pau&se Session - + セッションの一時停止(&S) @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System システムをハイバネート(&H) - - S&hutdown System - システムをシャットダウン(&H) - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About qBittorrentについて(&A) - - &Pause - 停止(&P) - - - P&ause All - すべて一時停止(&A) - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 表示 - + Check for program updates プログラムのアップデートを確認する @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also qBittorrentを気に入っていただけたら、ぜひ寄付をお願いします。 - + Execution Log 実行ログ - + Clear the password パスワードのクリア - + &Set Password パスワードの設定(&S) - + Preferences 設定 - + &Clear Password パスワードのクリア(&C) - + Transfers 転送 - - + + qBittorrent is minimized to tray qBittorrentはシステムトレイに最小化されました - - - + + + This behavior can be changed in the settings. You won't be reminded again. この動作は設定から変更できます。この通知は次回からは表示されません。 - + Icons Only アイコンのみ - + Text Only 文字のみ - + Text Alongside Icons アイコンの横に文字 - + Text Under Icons アイコンの下に文字 - + Follow System Style システムのスタイルに従う - - + + UI lock password UIのロックに使用するパスワード - - + + Please type the UI lock password: UIのロックに使用するパスワードを入力してください: - + Are you sure you want to clear the password? パスワードをクリアしてもよろしいですか? - + Use regular expressions 正規表現を使用 - - + + Search Engine - 検索エンジン + 検索エンジン - + Search has failed - 検索に失敗しました + 検索に失敗しました - + Search has finished - 検索完了 + 検索完了 - + Search 検索 - + Transfers (%1) 転送 (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrentがアップデートされました。反映には再起動が必要です。 - + qBittorrent is closed to tray qBittorrentはシステムトレイに最小化されました。 - + Some files are currently transferring. いくつかのファイルが現在転送中です。 - + Are you sure you want to quit qBittorrent? qBittorrentを終了しますか? - + &No いいえ(&N) - + &Yes はい(&Y) - + &Always Yes 常に「はい」(&A) - + Options saved. オプションは保存されました。 - + [PAUSED] %1 %1 is the rest of the window title - + [一時停止] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Pythonインストーラーをダウンロードできませんでした。エラー: %1。 +手動でインストールしてください。 - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Pythonインストーラーの名前を変更できませんでした。変更前: "%1". 変更後: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Pythonのインストールに成功しました。 + Exit code: %1. + 終了コード: %1. + + + + Reason: installer crashed. + 理由: インストーラーがクラッシュしました。 + + + Python installation failed. - + Pythonをインストールできませんでした。 - + Launching Python installer. File: "%1". - + Pythonインストーラーを起動中。ファイル: "%1". - - + + Missing Python Runtime Pythonのランタイムが見つかりません - + qBittorrent Update Available qBittorrentのアップデートがあります - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? 検索エンジンを使用するために必要なPythonがインストールされていません。 今すぐインストールしますか? - + Python is required to use the search engine but it does not seem to be installed. 検索エンジンを使用するために必要なPythonがインストールされていません。 - - + + Old Python Runtime 古いPythonのランタイム - + A new version is available. 最新版が利用可能です。 - + Do you want to download %1? %1をダウンロードしますか? - + Open changelog... 変更履歴を開く... - + No updates available. You are already using the latest version. アップデートはありません。 すでに最新バージョンを使用しています。 - + &Check for Updates アップデートの確認(&C) - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Python(%1)が最低要件の%2より古いバージョンです。 今すぐ新しいバージョンをインストールしますか? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. 使用中のPythonバージョン(%1)が古すぎます。検索エンジンを使用するには、最新バージョンにアップグレードしてください。 最低要件: %2 - + Paused - 一時停止 + 停止 - + Checking for Updates... アップデートを確認中... - + Already checking for program updates in the background すでにバックグラウンドでプログラムのアップデートをチェックしています - + Python installation in progress... - + Pythonをインストール中... - + Failed to open Python installer. File: "%1". - + Pythonインストーラーを開けませんでした。ファイル: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + PythonインストーラーのMD5ハッシュのチェックが失敗しました。 ファイル: "%1". 結果のハッシュ: "%2". 正しいハッシュ: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + PythonインストーラーのSHA3-512ハッシュのチェックが失敗しました。 ファイル: "%1". 結果のハッシュ: "%2". 正しいハッシュ: "%3". - + Download error ダウンロードエラー - Python setup could not be downloaded, reason: %1. -Please install it manually. - Pythonのセットアップをダウンロードできませんでした。理由: %1。 -手動でインストールしてください。 - - - - + + Invalid password 無効なパスワード - + Filter torrents... Torrentをフィルター... - + Filter by: フィルター: - + The password must be at least 3 characters long パスワードは、最低でも3文字以上が必要です - - - + + + RSS (%1) RSS (%1) - + The password is invalid パスワードが無効です - + DL speed: %1 e.g: Download speed: 10 KiB/s ダウン速度: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s アップ速度: %1 - + Hide 非表示 - + Exiting qBittorrent qBittorrentの終了 - + Open Torrent Files Torrentファイルを開く - + Torrent Files Torrentファイル @@ -4556,7 +4561,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + SSLエラー, URL: "%1", エラ=: "%2" @@ -5853,47 +5858,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 接続できませんでした。認識できない応答: %1 - + Authentication failed, msg: %1 認証に失敗しました。メッセージ: %1 - + <mail from> was rejected by server, msg: %1 <mail from> がサーバに拒否されました。メッセージ: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> がサーバに拒否されました。メッセージ: %1 - + <data> was rejected by server, msg: %1 <data> がサーバに拒否されました。メッセージ: %1 - + Message was rejected by the server, error: %1 メッセージがサーバに拒否されました。エラー: %1 - + Both EHLO and HELO failed, msg: %1 EHLOとHELOの両方が失敗しました。メッセージ: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTPサーバーが[CRAM-MD5|PLAIN|LOGIN]のいずれもサポートしていないようです。おそらく失敗しますが、認証をスキップしています... サーバー認証モード: %1 - + Email Notification Error: %1 メール通知エラー: %1 @@ -5935,10 +5940,6 @@ Please install it manually. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5960,6 @@ Please install it manually. Confirm when deleting torrents Torrentを削除するときは確認する - - Shows a confirmation dialog upon pausing/resuming all the torrents - すべてのTorrentを一時停止/再開する場合は、確認ダイアログを表示します - - - Confirm "Pause/Resume all" actions - "すべて一時停止/すべて再開"のときは確認する - Use alternating row colors @@ -5983,10 +5976,6 @@ Please install it manually. Always 常に - - Paused torrents only - 停止中のTorrentだけ - Action on double-click @@ -5997,10 +5986,6 @@ Please install it manually. Downloading torrents: ダウンロード中のTorrent: - - Start / Stop Torrent - Torrentの開始/停止 - @@ -6059,179 +6044,179 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrentのコンテンツのレイアウト: - + Original オリジナル - + Create subfolder サブフォルダーを作成する - + Don't create subfolder サブフォルダーを作成しない - + The torrent will be added to the top of the download queue Torrentはダウンロードキューの先頭に追加されます - + Add to top of queue The torrent will be added to the top of the download queue キューの先頭に追加する - + When duplicate torrent is being added 重複したTorrentの追加時 - + Merge trackers to existing torrent 既存のTorrentにトラッカーをマージする - + Keep unselected files in ".unwanted" folder 選択されていないファイルを".unwanted"フォルダーに保存する - + Add... 追加... - + Options.. オプション... - + Remove 削除 - + Email notification &upon download completion ダウンロード完了時にメールで通知する(&U) - + Send test email - + テストメールを送信 - + Run on torrent added: - + Torrentの追加時に実行: - + Run on torrent finished: - + Torrentの完了時に実行: - + Peer connection protocol: ピア接続プロトコル: - + Any すべて - + I2P (experimental) I2P (実験的) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p> &quot;混合モード &quot;を有効にすると、I2P Torrentはトラッカー以外のソースからピアを取得し、通常のIPに接続し、匿名化を提供しません。これは、I2Pの匿名化には興味はないが、I2Pピアに接続できるようにしたい場合に便利です。</p></body></html> - - - + Mixed mode 混合モード - Some options are incompatible with the chosen proxy type! - 一部のオプションは、選択したプロキシタイプと互換性がありません。 + 一部のオプションは、選択したプロキシタイプと互換性がありません。 - + If checked, hostname lookups are done via the proxy チェックを入れると、ホスト名の名前解決はプロキシ経由で行われます - + Perform hostname lookup via proxy プロキシー経由でホスト名の名前解決を行う - + Use proxy for BitTorrent purposes BitTorrentにプロキシを使用する - + RSS feeds will use proxy RSSフィードでプロキシを使用します - + Use proxy for RSS purposes RSSにプロキシを使用する - + Search engine, software updates or anything else will use proxy 検索エンジン、ソフトウェアの更新、その他にプロキシを使用します - + Use proxy for general purposes 全般にプロキシを使用する - + IP Fi&ltering IPフィルタリング(&L) - + Schedule &the use of alternative rate limits 代替速度制限を使用するスケジュール(&T) - + From: From start time 開始: - + To: To end time 終了: - + Find peers on the DHT network DHTネットワーク上のピアを検出します - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Disable encryption: Only connect to peers without protocol encryption 暗号化を無効にする: プロトコルの暗号化がされていないピアにだけ接続します - + Allow encryption 暗号化を許可する - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">詳細情報</a>) - + Maximum active checking torrents: Torrentをチェックする最大アクティブ数 - + &Torrent Queueing Torrentキュー(&T) - + When total seeding time reaches 合計シード時間に達したとき - + When inactive seeding time reaches 非稼働シード時間に達したとき - A&utomatically add these trackers to new downloads: - 以下のトラッカーを新しいダウンロードに自動追加する(&U): - - - + RSS Reader RSSリーダー - + Enable fetching RSS feeds RSSフィードの取得を有効にする - + Feeds refresh interval: フィードの更新間隔: - + Same host request delay: 同じホストへのリクエストの遅延: - + Maximum number of articles per feed: フィードごとの記事数の上限: - - - + + + min minutes - + Seeding Limits シードの制限 - Pause torrent - Torrentを一時停止 - - - + Remove torrent Torrentを削除 - + Remove torrent and its files Torrentとそのファイルを削除 - + Enable super seeding for torrent Torrentをスーパーシードにする - + When ratio reaches 次の比率に達したとき - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Torrentを停止する - + A&utomatically append these trackers to new downloads: - + 新しいダウンロードに以下のトラッカーを自動的に付加する(&U): - + Automatically append trackers from URL to new downloads: - + 新しいダウンロードにURLから自動的にトラッカーを追加する: - + URL: - URL: + URL: - + Fetched trackers - + 取得されたトラッカー - + Search UI - + 検索UI - + Store opened tabs - + 開いたタブを保存する - + Also store search results - + 検索結果も保存する - + History length - + 履歴数 - + RSS Torrent Auto Downloader RSS Torrent自動ダウンローダー - + Enable auto downloading of RSS torrents RSS Torrentの自動ダウンロードを有効にする - + Edit auto downloading rules... 自動ダウンロードルールを編集... - + RSS Smart Episode Filter RSSスマートエピソードフィルター - + Download REPACK/PROPER episodes REPACK/PROPERエピソードをダウンロードする - + Filters: フィルター: - + Web User Interface (Remote control) ウェブユーザーインターフェース(遠隔操作) - + IP address: IPアドレス: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6431,41 +6418,37 @@ IPv4、またはIPv6アドレスを指定します。 "*"でIPv4とIPv6のすべてのアドレスが指定できます。 - + Ban client after consecutive failures: 続けて失敗した場合、クライアントをアクセス禁止: - + Never しない - + ban for: アクセス禁止時間: - + Session timeout: セッションのタイムアウト - + Disabled 無効 - Enable cookie Secure flag (requires HTTPS) - CookieのSecureフラグを有効にする(HTTPSが必要) - - - + Server domains: サーバードメイン: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6478,37 +6461,37 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 複数のエントリに分けるには';'を使用します。ワイルドカード'*'を使用できます。 - + &Use HTTPS instead of HTTP HTTPの代わりにHTTPSを使用する(&U) - + Bypass authentication for clients on localhost ローカルホストではクライアントの認証を行わない - + Bypass authentication for clients in whitelisted IP subnets ホワイトリストに登録されたIPサブネット内のクライアントは認証を行わない - + IP subnet whitelist... IPサブネットのホワイトリスト... - + Use alternative WebUI - + 別のWebUIを使用する - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. 転送クライアントアドレス(X-Forwarded-For ヘッダー)を使用するためのリバースプロキシのIP(または 0.0.0.0/24 などのサブネット)を指定します。複数項目は';'で区切ります。 - + Upda&te my dynamic domain name 使用中のダイナミックドメイン名を更新する(&T) @@ -6520,12 +6503,12 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 Search - 検索 + 検索 WebUI - + WebUI @@ -6540,29 +6523,29 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 Style: - + スタイル: Color scheme: - + 配色: Stopped torrents only - + 停止中のTorrentのみ Start / stop torrent - + Torrentの開始/停止 Open torrent options dialog - + Torrentオプションのダイアログを開く @@ -6603,7 +6586,7 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 &Log Files - + ログファイル(&L) @@ -6621,99 +6604,99 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 次の期間を超えたバックアップログを削除する: - + Show external IP in status bar - + ステータスバーに外部IPを表示する - + When adding a torrent Torrentの追加時 - + Bring torrent dialog to the front Torrentダイアログを前面に表示 - + The torrent will be added to download list in a stopped state - + Torrentは停止状態でダウンロードリストに追加されます - + Also delete .torrent files whose addition was cancelled 追加をキャンセルした場合でも".torrent"ファイルが削除されます - + Also when addition is cancelled 追加がキャンセルされた場合でも削除する - + Warning! Data loss possible! 注意: データが失われる可能性があります。 - + Saving Management 保存管理 - + Default Torrent Management Mode: デフォルトのTorrent管理モード: - + Manual 手動 - + Automatic 自動 - + When Torrent Category changed: Torrentのカテゴリーが変更されたとき: - + Relocate torrent Torrentを再配置する - + Switch torrent to Manual Mode Torrentを手動モードに切り換える - - + + Relocate affected torrents 影響を受けるTorrentを再配置する - - + + Switch affected torrents to Manual Mode 影響を受けるTorrentを手動モードに切り換える - + Use Subcategories サブカテゴリーを使用する - + Default Save Path: デフォルトの保存パス: - + Copy .torrent files to: ".torrent"ファイルを次のパスにコピーする: @@ -6723,26 +6706,22 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 qBittorrentを通知エリアに表示する(&Q) - &Log file - ログファイル(&L) - - - + Display &torrent content and some options Torrentのコンテンツといくつかのオプションを表示する(&T) - + De&lete .torrent files afterwards 追加後に".torrent"ファイルを削除する(&L) - + Copy .torrent files for finished downloads to: 完了した".torrent"ファイルを次のパスにコピーする: - + Pre-allocate disk space for all files すべてのファイルにディスク領域を事前に割り当てる @@ -6772,10 +6751,6 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 Preview file, otherwise open destination folder ファイルをプレビューするか保存先フォルダーを開く - - Show torrent options - Torrentのオプションを表示する - Shows a confirmation dialog when exiting with active torrents @@ -6841,69 +6816,65 @@ DNSリバインディング攻撃を防ぐために、Web UIサーバーが使 - + Log performance warnings パフォーマンス警告を記録する - The torrent will be added to download list in a paused state - Torrentは一時停止の状態でダウンロードリストに追加されます - - - + Do not start the download automatically The torrent will be added to download list in a stopped state ダウンロードを自動的に開始しない - + Whether the .torrent file should be deleted after adding it ".torrent"ファイルを追加後に削除するかどうか - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. ダウンロードを開始する前にディスクに総ファイルサイズを割り当て、断片化を最小限に抑えます。これはHDDだけに役立ちます。 - + Append .!qB extension to incomplete files 完了していないファイルに拡張子(.!qB)を付加する - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Torrentがダウンロードされたとき、その中にある".torrent"ファイルからTorrentを追加することを提案します - + Enable recursive download dialog 「再帰的ダウンロード」ダイアログを有効にする - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually 自動: Torrentの各種プロパティー(保存先など)は、関連付けられたカテゴリーに応じて決定されます 手動: Torrentの各種プロパティー(保存先など)は、手作業で割り当てる必要があります - + When Default Save/Incomplete Path changed: デフォルトの保存/未完了パスが変更されたとき: - + When Category Save Path changed: カテゴリーの保存パスが変更されたとき: - + Use Category paths in Manual Mode 手動モードでカテゴリーのパスを使用する - + Resolve relative Save Path against appropriate Category path instead of Default one 相対的な保存パスを、デフォルトのパスではなく適切なカテゴリーのパスで解決します @@ -6923,50 +6894,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually起動時のqBittorrentのウィンドウ状態 - + Torrent stop condition: Torrentの停止条件: - - + + None なし - - + + Metadata received メタデータを受信後 - - + + Files checked ファイルのチェック後 - + Ask for merging trackers when torrent is being added manually Torrentが手動で追加されるときにトラッカーのマージを求める - + Use another path for incomplete torrents: 未完了のTorrentは別のパスを使用する: - + Automatically add torrents from: 次のフォルダーからTorrentを自動的に追加する: - + Excluded file names 除外ファイル名 - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6995,523 +6966,510 @@ readme.txt: 正確なファイル名をフィルタリングします。 readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタリングしますが、'readme10.txt'はフィルタリングしません。 - + Receiver 受信者 - + To: To receiver 宛先(To): - + SMTP server: SMTPサーバー: - + Sender 送信者 - + From: From sender 差出人(From): - + This server requires a secure connection (SSL) このサーバーは安全な接続(SSL)を必要とする - - + + Authentication 認証 - - - - + + + + Username: ユーザー名: - - - - + + + + Password: パスワード: - + Run external program 外部プログラムの実行 - Run on torrent added - Torrentの追加時に実行 - - - Run on torrent finished - Torrentの完了時に実行 - - - + Show console window コンソールウィンドウを表示する - + TCP and μTP TCPとμTP - + Listening Port 接続待ちポート - + Port used for incoming connections: 受信接続に使用するポート: - + Set to 0 to let your system pick an unused port 0に設定すると、システムが未使用のポートを選択します - + Random ランダム - + Use UPnP / NAT-PMP port forwarding from my router ルーターからのポート転送にUPnP/NAT-PMPを使用する - + Connections Limits 接続制限 - + Maximum number of connections per torrent: Torrentごとの接続数の上限: - + Global maximum number of connections: グローバルの最大接続数: - + Maximum number of upload slots per torrent: Torrentごとのアップロードスロット数の上限: - + Global maximum number of upload slots: グローバルの最大アップロードスロット数: - + Proxy Server プロキシサーバー - + Type: タイプ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: ホスト: - - - + + + Port: ポート: - + Otherwise, the proxy server is only used for tracker connections 無効の場合、プロキシサーバーはトラッカー接続だけに使用されます - + Use proxy for peer connections ピア接続にプロキシを使用する - + A&uthentication 認証(&U) - Info: The password is saved unencrypted - 注意: パスワードは暗号化せずに保存されます + 注意: パスワードは暗号化せずに保存されます - + Filter path (.dat, .p2p, .p2b): フィルターのパス(.dat, .p2p, .p2b): - + Reload the filter フィルターの再読み込み - + Manually banned IP addresses... 手動でアクセス禁止にしたIPアドレス... - + Apply to trackers トラッカーに適用する - + Global Rate Limits グローバルの速度制限 - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/秒 - - + + Upload: アップロード: - - + + Download: ダウンロード: - + Alternative Rate Limits 代替速度制限 - + Start time 開始時刻 - + End time 終了時刻 - + When: 日: - + Every day 毎日 - + Weekdays 平日 - + Weekends 週末 - + Rate Limits Settings 速度制限の設定 - + Apply rate limit to peers on LAN LAN上のピアに速度制限を適用する - + Apply rate limit to transport overhead トランスポートオーバーヘッドに制限を適用する - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p> "混合モード"を有効にすると、I2P Torrentはトラッカー以外のソースからピアを取得し、通常のIPに接続し、匿名化を提供しません。これは、I2Pの匿名化には興味はないが、I2Pピアに接続できるようにしたい場合に便利です。</p></body></html> - + Apply rate limit to µTP protocol µTPプロトコルに速度制限を適用する - + Privacy プライバシー - + Enable DHT (decentralized network) to find more peers DHT(分散ネットワーク)を有効にする(ピア検出数の向上) - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) BitTorrentの互換クライアント(µTorrentやVuzeなど)とピアを交換します - + Enable Peer Exchange (PeX) to find more peers ピア交換(PeX)を有効にする(ピア検出数の向上) - + Look for peers on your local network ローカルネットワーク内のピアを探します - + Enable Local Peer Discovery to find more peers ローカルピア検出(LSD)を有効にする(ピア検出数の向上) - + Encryption mode: 暗号化モード: - + Require encryption 暗号化を必須にする - + Disable encryption 暗号化を無効にする - + Enable when using a proxy or a VPN connection プロキシやVPN接続を使用する場合は有効にします - + Enable anonymous mode 匿名モードを有効にする - + Maximum active downloads: 稼働中ダウンロード数の上限: - + Maximum active uploads: 稼働中アップロード数の上限: - + Maximum active torrents: 稼働中Torrent数の上限: - + Do not count slow torrents in these limits これらの制限で遅いTorrentは数に含めない - + Upload rate threshold: アップロード速度のしきい値: - + Download rate threshold: ダウンロード速度のしきい値: - - - - + + + + sec seconds - + Torrent inactivity timer: Torrent非稼働中タイマー: - + then 次の処理を行う - + Use UPnP / NAT-PMP to forward the port from my router ルーターからのポート転送にUPnP/NAT-PMPを使用する - + Certificate: 証明書: - + Key: 鍵: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>証明書に関する情報</a> - + Change current password 現在のパスワードを変更 - Use alternative Web UI - 別のWeb UIを使用する - - - + Files location: ファイルの場所: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">代替WebUIのリスト</a> - + Security セキュリティー - + Enable clickjacking protection クリックジャッキング保護を有効にする - + Enable Cross-Site Request Forgery (CSRF) protection クロスサイトリクエストフォージェリ(CSRF)保護を有効にする - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + クッキーのSecure属性を有効にする(HTTPSまたはローカルホスト接続が必要) - + Enable Host header validation ホストヘッダー検証を有効にする - + Add custom HTTP headers カスタムHTTPヘッダーを追加する - + Header: value pairs, one per line ヘッダー: 値 の対を1行に1つ - + Enable reverse proxy support リバースプロキシ対応を有効にする - + Trusted proxies list: 信頼プロキシリスト - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>リバースプロキシの設定例</a> - + Service: サービス: - + Register 登録 - + Domain name: ドメイン名: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! これらのオプションを有効にすると、".torrent"ファイルが<strong>完全に削除</strong>されます。 - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog 2番目のオプション(「追加がキャンセルされた場合でも削除する」)を有効にした場合、「Torrentの追加」ダイアログで<strong>キャンセル</strong>を押したときでも".torrent"ファイルが<strong>削除されます</strong>。 @@ -7521,12 +7479,12 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタ qBittorrentのUIテーマファイルを選択 - + Choose Alternative UI files location 別のUIファイルの場所の選択 - + Supported parameters (case sensitive): 使用できるパラメーター(大文字と小文字を区別): @@ -7546,183 +7504,183 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタ システムトレイが検出できなかったため、無効にされました - + No stop condition is set. 停止条件は設定されていません。 - + Torrent will stop after metadata is received. メタデータの受信後、Torrentは停止します。 - + Torrent will stop after files are initially checked. ファイルの初期チェック後、Torrentは停止します。 - + This will also download metadata if it wasn't there initially. また、メタデータが存在しない場合は、メタデータもダウンロードされます。 - + %N: Torrent name %N: Torrent名 - + %L: Category %L: カテゴリー - + %F: Content path (same as root path for multifile torrent) %F: コンテンツパス(複数ファイルTorrentのルートと同じ) - + %R: Root path (first torrent subdirectory path) %R: ルートパス(最初のTorrentサブディレクトリーのパス) - + %D: Save path %D: 保存パス - + %C: Number of files %C: ファイル数 - + %Z: Torrent size (bytes) %Z: Torrentのサイズ(バイト) - + %T: Current tracker %T: 現在のトラッカー - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") ヒント: 空白文字でテキストが切れることを防ぐために、パラメーターはダブルクオーテーションで囲います(例: "%N") - + Test email - + テストメール - + Attempted to send email. Check your inbox to confirm success - + メールを送信しました。受信箱を確認してください。 - + (None) (なし) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds 「Torrent非稼働中タイマー」で指定された秒数の間、ダウンロードとアップロードの速度が指定されたしきい値を下回った場合に遅いTorrentとみなされます - + Certificate 証明書 - + Select certificate 証明書の選択 - + Private key 秘密鍵 - + Select private key 秘密鍵の選択 - + WebUI configuration failed. Reason: %1 WebUIが設定できませんでした。理由: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + Windowsのダークモードとの最高の相性のために %1 を推奨します。 - + System System default Qt style - + システム - + Let Qt decide the style for this system - + Qtにこのシステムのスタイルを決めさせます - + Dark Dark color scheme - + ダーク - + Light Light color scheme - + ライト - + System System color scheme - + システム - + Select folder to monitor 監視するフォルダーを選択 - + Adding entry failed エントリーを追加できませんでした - + The WebUI username must be at least 3 characters long. Web UIのユーザー名は、最低3文字が必要です。 - + The WebUI password must be at least 6 characters long. WebUIのパスワードは、最低6文字が必要です。 - + Location Error 場所エラー - - + + Choose export directory エクスポートするディレクトリーの選択 - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well 最初のオプションが有効の場合、ダウンロードキューに正常に追加された後に".torrent"ファイルが<strong>削除されます</strong>。2番目のオプションが有効の場合、キューに追加されなくても削除されます。 これは、メニュー項目の「Torrentリンクの追加」から追加した場合<strong>だけでなく</strong>、<strong>ファイルタイプの関連付け</strong>で開いた場合も適用されます。 @@ -7733,69 +7691,69 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタ qBittorrentのUIテーマファイル(*.qbtheme config.json) - + %G: Tags (separated by comma) %G: タグ(カンマ区切り) - + %I: Info hash v1 (or '-' if unavailable) %I: Infoハッシュ v1(利用できない場合は'-') - + %J: Info hash v2 (or '-' if unavailable) %I: Infoハッシュ v2(利用できない場合は'-') - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (v1 Torrentはsha-1 infoハッシュ、v2/ハイプリッドTorrentは省略したsha-256 infoハッシュ) - - + + Choose a save directory 保存するディレクトリーの選択 - + Torrents that have metadata initially will be added as stopped. 最初からメタデータを持つTorrentは、停止状態で追加されます。 - + Choose an IP filter file IPフィルターファイルの選択 - + All supported filters すべての対応フィルター - + The alternative WebUI files location cannot be blank. 代替WebUIファイルの場所を空欄にすることはできません。 - + Parsing error 解析エラー - + Failed to parse the provided IP filter 指定されたIPフィルターを解析できませんでした - + Successfully refreshed 正常に再読み込みされました - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number 指定されたIPフィルターは正常に解析され、ルール(%1)が適用されました。 @@ -7806,18 +7764,18 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタ 設定 - + Time Error 時刻エラー - + The start time and the end time can't be the same. 開始と終了の時刻を同じにすることはできません。 - - + + Length Error 文字数エラー @@ -7902,169 +7860,169 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタ Peer is using NAT hole punching - + ピアはNATホールパンチグを使用 PeerListWidget - + Country/Region 国/地域 - + IP/Address IP/アドレス - + Port ポート - + Flags フラグ - + Connection 接続 - + Client i.e.: Client application クライアント - + Peer ID Client i.e.: Client resolved from Peer ID ピアIDのクライアント - + Progress i.e: % downloaded 進捗状況 - + Down Speed i.e: Download speed ダウン速度 - + Up Speed i.e: Upload speed アップ速度 - + Downloaded i.e: total data downloaded ダウン量 - + Uploaded i.e: total data uploaded アップ量 - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. 適合性 - + Files i.e. files that are being downloaded right now ファイル - + Column visibility 表示する列 - + Resize columns 列のリサイズ - + Resize all non-hidden columns to the size of their contents 非表示以外のすべての列をコンテンツのサイズにリサイズします - + Add peers... ピアを追加... - - + + Adding peers ピアの追加 - + Some peers cannot be added. Check the Log for details. 一部のピアを追加できません。詳細はログを参照してください。 - + Peers are added to this torrent. このTorrentにピアを追加しました。 - - + + Ban peer permanently 恒久的にピアをアクセス禁止にする - + Cannot add peers to a private torrent プライベートTorrentにはピアを追加できません - + Cannot add peers when the torrent is checking チェック中のTorrentにはピアを追加できません - + Cannot add peers when the torrent is queued 待機中のTorrentにはピアを追加できません - + No peer was selected ピアが選択されていません - + Are you sure you want to permanently ban the selected peers? 選択したピアを恒久的にアクセス禁止にしますか? - + Peer "%1" is manually banned ピア %1 が手動でアクセス禁止にされました - + N/A N/A - + Copy IP:port IP:ポートをコピー @@ -8345,34 +8303,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrentは稼働中です + qBittorrentは稼働中です PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - 電源管理で適切なD-Busインターフェースが見つかりました。インターフェース: %1 + 電源管理で適切なD-Busインターフェースが見つかりました。インターフェース: %1 - Power management error. Did not found suitable D-Bus interface. - 電源管理エラー。適切なD-Busインターフェースが見つかりませんでした。 + 電源管理エラー。適切なD-Busインターフェースが見つかりませんでした。 - - - Power management error. Action: %1. Error: %2 - 電源管理エラー。 操作: %1. エラー: %2 + 電源管理エラー。 操作: %1. エラー: %2 - Power management unexpected error. State: %1. Error: %2 - 電源管理の予期せぬエラー。 状態: %1. エラー: %2 + 電源管理の予期せぬエラー。 状態: %1. エラー: %2 @@ -8616,12 +8567,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Torrentの人気度を示す、比率/稼働時間(月単位) Popularity: - + 人気: @@ -8656,7 +8607,7 @@ Those plugins were disabled. Private: - + プライベート: @@ -8664,153 +8615,124 @@ Those plugins were disabled. 保存パス: - + Never なし - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (保有%3) - - + + %1 (%2 this session) %1 (このセッション%2) - - + + N/A N/A - + Yes - はい + はい - + No - いいえ + いいえ - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (シードから%2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (最大%2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (合計%2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (平均%2) - + Add web seed Add HTTP source - + ウェブシードの追加 - + Add web seed: - + ウェブシードの追加: - - + + This web seed is already in the list. - + このウェブシードはすでにリストにあります。 - New Web seed - 新規ウェブシード - - - Remove Web seed - ウェブシードの削除 - - - Copy Web seed URL - ウェブシードURLのコピー - - - Edit Web seed URL - ウェブシードURLの編集 - - - + Filter files... ファイルを絞り込む... - + Add web seed... - + ウェブシードを追加... - + Remove web seed - + ウェブシードの削除 - + Copy web seed URL - + ウェブシードURLのコピー - + Edit web seed URL... - + ウェブシードURLを編集... - + Speed graphs are disabled 速度グラフが無効になっています - + You can enable it in Advanced Options 高度な設定で有効にできます - New URL seed - New HTTP source - 新規URLシード - - - New URL seed: - 新規URLシード: - - - This URL seed is already in the list. - このURLシードはすでにリストにあります。 - - - + Web seed editing ウェブシードの編集 - + Web seed URL: ウェブシードURL: @@ -8818,33 +8740,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. 不正なデータ形式です。 - + Couldn't save RSS AutoDownloader data in %1. Error: %2 %1のRSS自動ダウンローダーを保存できませんでした。エラー: %2 - + Invalid data format 不正なデータ形式 - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS記事(%1)はルール(%2)によって受け入れられました。Torrentの追加を試みています... - + Failed to read RSS AutoDownloader rules. %1 RSS自動ダウンローダーのルールが読み込めませんでした。%1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 RSS自動ダウンローダールールを読み込めませんでした。理由: %1 @@ -8852,22 +8774,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 '%1'のRSSフィードをダウンロードできませんでした。理由: %2 - + RSS feed at '%1' updated. Added %2 new articles. '%1'のRSSフィードが更新されました。%2件の新着記事が追加されました。 - + Failed to parse RSS feed at '%1'. Reason: %2 '%1'のRSSフィードを解析できませんでした。理由: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSSフィード'%1'は正常にダウンロードされ、解析が開始されました。 @@ -8916,12 +8838,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" RSSセッションの設定を保存できませんでした。 ファイル: "%1". エラー: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" RSSセッションのデータを保存できませんでした。 ファイル: "%1". エラー: "%2" @@ -8943,76 +8865,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. アイテムが存在しません: %1. - Couldn't move folder into itself. - フォルダーをフォルダー自身に移動できませんでした。 + フォルダーをフォルダー自身に移動できませんでした。 - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. ルートフォルダーは削除できません。 - + Failed to read RSS session data. %1 RSSセッションデータが読み込めませんでした。%1 - + Failed to parse RSS session data. File: "%1". Error: "%2" RSSセッションデータが解析できませんでした。 ファイル: "%1". エラー: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." RSSセッションデータが読み込めませんでした。 ファイル: "%1". エラー: 無効なデータ形式です。 - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. RSSフィードを読み込めませんでした。 フィード: "%1". 理由: URLが必要です。 - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. RSSフィードが読み込めませんでした。 フィード: "%1". 理由: UIDが無効です。 - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. 重複したRSSフィードが見つかりました。 UID: "%1". エラー: 設定が破損している可能性があります。 - + Couldn't load RSS item. Item: "%1". Invalid data format. RSS項目が読み込めませんでした。 項目: "%1". 無効なデータ形式です。 - + Corrupted RSS list, not loading it. RSSリストが破損しているため、読み込めません。 - + Incorrect RSS Item path: %1. RSSアイテムのパスが正しくありません: %1. - + RSS item with given path already exists: %1. 指定されたパスのRSSアイテムはすでに存在します: %1. - + Parent folder doesn't exist: %1. 親フォルダーが存在しません: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + フィードが存在しません: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + + + + + Default + デフォルト + + RSSWidget @@ -9112,78 +9079,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - フィードURLを編集... + フィードURLを編集... - Edit feed URL - フィードURLの編集 + フィードURLの編集 - + Please choose a folder name フォルダー名を選択してください - + Folder name: フォルダー名: - + New folder 新しいフォルダー - - Please type a RSS feed URL - RSSフィードのURLを入力してください + RSSフィードのURLを入力してください - - Feed URL: - フィード URL: + フィード URL: - + Deletion confirmation 削除の確認 - + Are you sure you want to delete the selected RSS feeds? 選択したRSSフィードを削除しますか? - + Please choose a new name for this RSS feed このRSSフィードの新しい名前を入力してください - + New feed name: 新しいフィード名: - + Rename failed 名前の変更に失敗 - + Date: 日付: - + Feed: フィード: - + Author: 作者: @@ -9320,10 +9286,6 @@ Those plugins were disabled. i.e: Number of partial sources リーチャー - - Search engine - 検索エンジン - Filter search results... @@ -9413,17 +9375,17 @@ Those plugins were disabled. Engine - + エンジン Engine URL - + エンジンのURL Published On - + 公開日 @@ -9444,104 +9406,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. 不明な検索エンジンプラグインのファイル形式です。 - + Plugin already at version %1, which is greater than %2 プラグインはすでに%1で、%2より新しくなっています - + A more recent version of this plugin is already installed. このプラグインの新しいバージョンがすでにインストールされています。 - + Plugin %1 is not supported. プラグイン"%1"は対応していません。 - - + + Plugin is not supported. プラグインは対応していません。 - + Plugin %1 has been successfully updated. プラグイン"%1"は正常に更新されました。 - + All categories 全カテゴリ - + Movies 映画 - + TV shows テレビ番組 - + Music 音楽 - + Games ゲーム - + Anime アニメ - + Software ソフトウェア - + Pictures 画像 - + Books 書籍 - + Update server is temporarily unavailable. %1 アップデートサーバーは一時的に利用できません。%1 - - + + Failed to download the plugin file. %1 プラグインファイルをダウンロードできませんでした。%1 - + Plugin "%1" is outdated, updating to version %2 プラグイン"%1"は古いため、バージョン%2に更新しています - + Incorrect update info received for %1 out of %2 plugins. %2のプラグインのうち%1から不正な更新情報を受信しました。 - + Search plugin '%1' contains invalid version string ('%2') 検索プラグイン'%1'に無効なバージョン文字列('%2')が含まれています @@ -9567,137 +9529,129 @@ Click the "Search plugins..." button at the bottom right of the window プラグインを検索... - + A phrase to search for. 検索文字列を入力してください。 - + Spaces in a search term may be protected by double quotes. 空白を含む文字列を検索したい場合はダブルクォーテーションで括ってください。 - + Example: Search phrase example 例: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: 文字列「<b>foo bar</b>」を検索します - + All plugins すべてのプラグイン - + Only enabled 有効なものだけ - - + + Invalid data format. - 不正なデータ形式です。 + 不正なデータ形式です。 - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: 文字列「<b>foo</b>」と「<b>bar</b>」を検索します - + Refresh - + 更新 - + Close tab タブを閉じる - + Close all tabs すべてのタブを閉じる - + Select... 選択... - - + + Search Engine 検索エンジン - - + + Please install Python to use the Search Engine. 検索エンジンを使用するにはPythonをインストールしてください。 - + Empty search pattern 空の検索パターン - + Please type a search pattern first はじめに検索パターンを入力してください - + Stop 停止 - - Search has finished - 検索完了 - - - Search has failed - 検索に失敗しました - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + 検索UIの状態が保存されたデータを読み込めませんでした。 ファイル: "%1". エラー: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + 保存された検索結果を読み込めませんでした。タブ: "%1". ファイル: "%2". エラー: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + 検索UIの状態を保存できませんでした。 ファイル: "%1". エラー: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + 検索結果を保存できませんでした。タブ: "%1". ファイル: "%2". エラー: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + 検索UIの履歴を読み込めませんでした。 ファイル: "%1". エラー: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + 検索履歴を保存できませんでした。 ファイル: "%1". エラー: "%2" @@ -10093,67 +10047,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: 接続状態: - - + + No direct connections. This may indicate network configuration problems. ネットワークに接続されていません。ネットワーク構成に問題がある可能性があります。 - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + 外部 IP: N/A + + + + DHT: %1 nodes DHT: %1 ノード - + qBittorrent needs to be restarted! qBittorrentの再起動が必要です。 - - + + Connection Status: 接続状態: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. オフライン。通常これは、受信用に指定されたポートでの接続待ちができなかったことを意味します。 - + Online オンライン - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + 外部 IP: %1, %2 + + + + External IP: %1%2 + 外部 IP: %1%2 + + + Click to switch to alternative speed limits クリックすると代替速度制限に切り替わります - + Click to switch to regular speed limits クリックすると通常の速度制限に切り替わります @@ -10181,23 +10145,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) 完了 (0) - - Resumed (0) - 再開 (0) - - - Paused (0) - 一時停止 (0) - Running (0) - + 実行中 (0) Stopped (0) - + 停止中 (0) @@ -10262,49 +10218,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + 実行中 (%1) Stopped (%1) - + 停止中 (%1) Start torrents - + Torrentを開始する Stop torrents - - - - Paused (%1) - 一時停止 (%1) + Torrentを停止する Moving (%1) 移動中 (%1) - - Resume torrents - Torrentの再開 - - - Pause torrents - Torrentの一時停止 - Remove torrents Torrentを削除 - - Resumed (%1) - 再開 (%1) - Active (%1) @@ -10376,32 +10316,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags 未使用のタグの削除 - - Resume torrents - Torrentを再開 - - - Pause torrents - Torrentを一時停止 - Remove torrents Torrentを削除 - - New Tag - 新規タグ - Start torrents - + Torrentを開始する Stop torrents - + Torrentを停止する @@ -10411,7 +10339,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + タグを追加 @@ -10728,17 +10656,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks アクティブなタスクが多すぎます - + Torrent creation is still unfinished. Torrentの作成は、まだ完了していません。 - + Torrent creation failed. Torrentを作成できませんでした。 @@ -10990,17 +10918,6 @@ Please choose a different name and try again. 次のフォルダーを監視中です: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - ファイルの読み込み時にメモリーを割り当てられませんでした。ファイル:"%1". エラー: "%2" - - - Invalid metadata - 無効なメタデータです - - TorrentOptionsDialog @@ -11036,11 +10953,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Torrentの速度制限 + Torrentの共有制限 @@ -11056,7 +10969,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Torrentの速度制限 @@ -11074,34 +10987,6 @@ Please choose a different name and try again. Upload: アップロード: - - Torrent share limits - Torrentの共有制限 - - - Use global share limit - グローバルの共有比制限を使用する - - - Set no share limit - 共有比を制限しない - - - Set share limit to - 共有比制限を指定する - - - ratio - 比率 - - - total minutes - 合計(分) - - - inactive minutes - 非稼働(分) - Disable DHT for this torrent @@ -11143,14 +11028,6 @@ Please choose a different name and try again. Not applicable to private torrents プライベートTorrentには適用できません - - No share limit method selected - 共有比の制限方法が指定されていません - - - Please select a limit method first - はじめに制限方法を指定してください - TorrentShareLimitsWidget @@ -11200,27 +11077,27 @@ Please choose a different name and try again. Action when the limit is reached: - + 制限に達したときのアクション: Stop torrent - + Torrentを停止する Remove torrent - Torrentを削除 + Torrentを削除 Remove torrent and its content - + Torrentとそのコンテンツを削除する Enable super seeding for torrent - Torrentをスーパーシードにする + Torrentをスーパーシードにする @@ -11235,14 +11112,10 @@ Please choose a different name and try again. Torrent Tags Torrentのタグ - - New Tag - 新規タグ - Add tag - + タグを追加 @@ -11273,90 +11146,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. エラー: '%1'は有効なTorrentファイルではありません。 - + Priority must be an integer 優先度は整数で指定してください - + Priority is not valid 優先度が正しくありません - + Torrent's metadata has not yet downloaded Torrentのメタデータがダウンロードされていません - + File IDs must be integers ファイルIDは整数でなければなりません - + File ID is not valid ファイルIDが正しくありません - - - - + + + + Torrent queueing must be enabled Torrentのキューを有効にする必要があります - - + + Save path cannot be empty 保存先パスは空欄にできません - - + + Cannot create target directory 対象ディレクトリーを作成できませんでした - - + + Category cannot be empty カテゴリーは空欄にできません - + Unable to create category カテゴリーを作成できません - + Unable to edit category カテゴリーを編集できません - + Unable to export torrent file. Error: %1 Torrentファイルをエクスポートできません。エラー: %1 - + Cannot make save path 保存パスを作成できません "%1" is not a valid URL - + '%1' は有効なURLではありません URL scheme must be one of [%1] - + URLスキームは [%1] のいずれかでなければなりません。 @@ -11364,39 +11237,39 @@ Please choose a different name and try again. 'sort'パラメーターが無効です - + "%1" is not an existing URL - + '%1' は既存のURLではありません - + "%1" is not a valid file index. '%1' は有効なファイルインデックスではありません。 - + Index %1 is out of bounds. インデックス%1は範囲外です。 - - + + Cannot write to directory ディレクトリーに書き込めません - + WebUI Set location: moving "%1", from "%2" to "%3" WebUIの保存場所を設定しました: '%1'は'%2'から'%3'へ移動されました - + Incorrect torrent name 不正なTorrent名です - - + + Incorrect category name 不正なカテゴリ名 @@ -11479,45 +11352,33 @@ Please choose a different name and try again. Invalid state! - + 無効な状態です。 URL/Announce Endpoint - + URL/アナウンスエンドポイント BT Protocol - + BTプロトコル Next Announce - + 次のアナウンス Min Announce - - - - Invalid status! - 無効な状態です。 - - - URL/Announce endpoint - URL/アナウンスエンドポイント + 最低アナウンス Tier ティア - - Protocol - プロトコル - Status @@ -11548,18 +11409,6 @@ Please choose a different name and try again. Message メッセージ - - Next announce - 次のアナウンス - - - Min announce - 最低アナウンス - - - v%1 - v%1 - TrackerListWidget @@ -11569,73 +11418,73 @@ Please choose a different name and try again. このTorrentはプライベートです - + Tracker editing トラッカー編集中 - + Tracker URL: トラッカーURL: - - + + Tracker editing failed トラッカー編集失敗 - + The tracker URL entered is invalid. 入力されたトラッカーURLは無効です。 - + The tracker URL already exists. トラッカーURLはすでに存在します。 - + Edit tracker URL... トラッカーURLを編集... - + Remove tracker トラッカーを削除 - + Copy tracker URL トラッカーURLをコピー - + Force reannounce to selected trackers 選択したトラッカーに強制再アナウンス - + Force reannounce to all trackers 全トラッカーに強制再アナウンス - + Resize columns 列のリサイズ - + Resize all non-hidden columns to the size of their contents 非表示以外のすべての列をコンテンツのサイズにリサイズします - + Add trackers... トラッカーを追加... - + Column visibility 表示カラム @@ -11718,20 +11567,12 @@ Please choose a different name and try again. Start torrents - + Torrentを開始する Stop torrents - - - - Resume torrents - Torrentの再開 - - - Pause torrents - Torrentの一時停止 + Torrentを停止する @@ -11855,10 +11696,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. 再開データのチェック中 - - Paused - 一時停止 - Completed @@ -11899,21 +11736,16 @@ Please choose a different name and try again. % Done 進捗状況 - - Status - Torrent status (e.g. downloading, seeding, paused) - 状態 - Stopped - + 停止 Status Torrent status (e.g. downloading, seeding, stopped) - 状態 + 状態 @@ -11948,7 +11780,7 @@ Please choose a different name and try again. Popularity - + 人気 @@ -12029,22 +11861,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - 稼働時間 + 稼働時間 Yes - はい + はい No - いいえ - - - Time Active - Time (duration) the torrent is active (not paused) - 稼働時間 + いいえ @@ -12116,12 +11943,12 @@ Please choose a different name and try again. Private Flags private torrents - + プライベート Ratio / Time Active (in months), indicates how popular the torrent is - + Torrentの人気度を示す、比率/稼働時間(月単位) @@ -12146,358 +11973,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility 列の表示 - + Recheck confirmation 再チェックの確認 - + Are you sure you want to recheck the selected torrent(s)? 選択されたTorrentを再チェックしますか? - + Rename 名前の変更 - + New name: 新しい名前: - + Choose save path 保存先の選択 - Confirm pause - 一時停止の確認 - - - Would you like to pause all torrents? - すべてのTorrentを一時停止にしますか? - - - Confirm resume - 再開の確認 - - - Would you like to resume all torrents? - すべてのTorrentを再開しますか? - - - + Unable to preview プレビューできません - + The selected torrent "%1" does not contain previewable files 選択されたTorrent(%1)にプレビュー可能なファイルはありません。 - + Resize columns 列のリサイズ - + Resize all non-hidden columns to the size of their contents 非表示以外のすべての列をコンテンツのサイズにリサイズします - + Enable automatic torrent management 自動Torrent管理を有効にする - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. 選択されたTorrentの自動Torrent管理を有効にしますか? それらは再配置される可能性があります。 - Add Tags - タグの追加 - - - + Choose folder to save exported .torrent files エクスポートされた".torrent"ファイルを保存するフォルダーを選択します - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" ".torrent"ファイルがエクスポートできませんでした。Torrent: "%1". 保存パス: "%2". 理由: "%3" - + A file with the same name already exists 同名のファイルがすでに存在します - + Export .torrent file error ".torrent"ファイルのエクスポートエラー - + Remove All Tags すべてのタグを削除 - + Remove all tags from selected torrents? 選択されたTorrentからすべてのタグを削除しますか? - + Comma-separated tags: カンマ区切りのタグ: - + Invalid tag 不正なタグ - + Tag name: '%1' is invalid タグ名: '%1'は正しくありません - &Resume - Resume/start the torrent - 再開(&R) - - - &Pause - Pause the torrent - 一時停止(&P) - - - Force Resu&me - Force Resume/start the torrent - 強制再開(&M) - - - + Pre&view file... ファイルをプレビュー(&V)... - + Torrent &options... Torrentのオプション(&O)... - + Open destination &folder 保存先のフォルダーを開く(&F) - + Move &up i.e. move up in the queue 上へ(&U) - + Move &down i.e. Move down in the queue 下へ(&D) - + Move to &top i.e. Move to top of the queue 一番上へ(&T) - + Move to &bottom i.e. Move to bottom of the queue 一番下へ(&B) - + Set loc&ation... 場所を設定(&A)... - + Force rec&heck 強制再チェック(&H) - + Force r&eannounce 強制再アナウンス(&E) - + &Magnet link マグネットリンク(&M) - + Torrent &ID Torrent ID(&I) - + &Comment コメント(&C) - + &Name 名前(&N) - + Info &hash v1 Infoハッシュ v1(&H) - + Info h&ash v2 Infoハッシュ v2(&A) - + Re&name... 名前を変更(&N)... - + Edit trac&kers... トラッカーを編集(&K)... - + E&xport .torrent... ".torrent"をエクスポート(&X)... - + Categor&y カテゴリー(&Y) - + &New... New category... 新規(&N)... - + &Reset Reset category リセット(&R) - + Ta&gs タグ(&G) - + &Add... Add / assign multiple tags... 追加(&A)... - + &Remove All Remove all tags すべて削除(&R) - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Torrentが停止/待機中/エラー/チェック中は強制アナウンスはできません - + &Queue キュー(&Q) - + &Copy コピー(&C) - + Exported torrent is not necessarily the same as the imported エクスポートされたTorrentは、インポートされたものと同一とは限りません - + Download in sequential order ピースを先頭から順番にダウンロード - + Add tags - + タグの追加 - + Errors occurred when exporting .torrent files. Check execution log for details. ".torrent"ファイルのエクスポート中にエラーが発生しました。詳細は実行ログを参照してください。 - + &Start Resume/start the torrent - + 開始(&S) - + Sto&p Stop the torrent - + 停止(&P) - + Force Star&t Force Resume/start the torrent - + 強制開始(&T) - + &Remove Remove the torrent 削除(&R) - + Download first and last pieces first 先頭と最後のピースを先にダウンロード - + Automatic Torrent Management 自動Torrent管理 - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category 自動モードでは、関連付けられたカテゴリーに応じて、Torrentの各種プロパティー(保存先など)が決定されます - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Torrentが一時停止/待機中/エラー/チェック中は強制アナウンスはできません - - - + Super seeding mode スーパーシードモード @@ -12573,7 +12361,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + アプリスタイルの設定ができませんでした。 不明なスタイル: "%1" @@ -12629,32 +12417,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Pythonの実行ファイルが見つかりました。 名前: "%1". バージョン: "%2" - + Failed to find Python executable. Path: "%1". Pythonの実行ファイルが見つかりませんでした。 パス: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" 環境変数PATHから`python3`の実行ファイルが見つかりませんでした。 PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" 環境変数PATHから`python`の実行ファイルが見つかりませんでした。 PATH: "%1" - + Failed to find `python` executable in Windows Registry. Windowsのレジストリで`python`の実行ファイルが見つかりませんでした。 - + Failed to find Python executable Pythonの実行ファイルが見つかりませんでした。 @@ -12746,52 +12534,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. 許容されないセッションクッキー名が指定されました: %1。デフォルト名が使用されます。 - + Unacceptable file type, only regular file is allowed. 許可されないファイルタイプです。通常のファイルだけが許可されます。 - + Symlinks inside alternative UI folder are forbidden. 独自UIフォルダー内にシンボリックリンクは使用できません。 - + Using built-in WebUI. ビルトインWebUIを使用しています。 - + Using custom WebUI. Location: "%1". カスタムWebUI (%1)を使用しています。 - + WebUI translation for selected locale (%1) has been successfully loaded. 選択された言語(%1)のWebUIが正しく読み込まれました。 - + Couldn't load WebUI translation for selected locale (%1). 選択された言語(%1)のWebUIを読み込めませんでした。 - + Missing ':' separator in WebUI custom HTTP header: "%1" WebUIカスタムHTTPヘッダーに区切り文字(:)がありません: "%1" - + Web server error. %1 ウェブサーバーエラー。%1 - + Web server error. Unknown error. ウェブサーバーエラー。不明なエラー。 @@ -12849,7 +12637,7 @@ Please choose a different name and try again. Unknown error - 不明なエラー + 不明なエラー diff --git a/src/lang/qbittorrent_ka.ts b/src/lang/qbittorrent_ka.ts index 80959d518..cd1c38b43 100644 --- a/src/lang/qbittorrent_ka.ts +++ b/src/lang/qbittorrent_ka.ts @@ -170,10 +170,6 @@ Never show again აღარასოდეს გამოტანა - - Torrent settings - ტორენტის პარამეტრები - Set as default category @@ -235,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -368,112 +364,112 @@ .torrent ფაილის სახით შენახვა... - + I/O Error I/O შეცდომა - + Not Available This comment is unavailable ხელმიუწვდომელი - + Not Available This date is unavailable ხელმიუწვდომელი - + Not available მიუწვდომელი - + Magnet link მაგნიტური ბმული - + Retrieving metadata... მეტამონაცემების მიღება... - - + + Choose save path აირჩიეთ შენახვის ადგილი - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A N/A - + %1 (Free space on disk: %2) %1 (ცარიელი ადგილი დისკზე: %2) - + Not available This size is unavailable. არ არის ხელმისაწვდომი - + Torrent file (*%1) ტორენტ ფაილი (*%1) - + Save as torrent file ტორენტ ფაილის სახით დამახსოვრება - + Couldn't export torrent metadata file '%1'. Reason: %2. ვერ მოხერხდა ტორენტის მეტამონაცემების ფაილის ექსპორტი '%1'. მიზეზი: %2. - + Cannot create v2 torrent until its data is fully downloaded. შეუძლებელია ტორენტ v2 შექმნა, სანამ მისი მინაცემები არ იქნება მთლიანად ჩამოტვირთული. - + Filter files... ფაილების ფილტრი... - + Parsing metadata... მეტამონაცემების ანალიზი... - + Metadata retrieval complete მეტამონაცემების მიღება დასრულებულია @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB მიბ - + Recheck torrents on completion ტორენტების გადამოწმება დასრულებისას - - + + ms milliseconds მწ - + Setting პარამეტრი - + Value Value set for this setting მნიშვნელობა - + (disabled) (გამორთული) - + (auto) (ავტო) - - + + min minutes წუთი - + All addresses ყველა მისამართები - + qBittorrent Section qBittorrent-ის სექცია - - + + Open documentation დოკუმენტაციის გახსნა - + All IPv4 addresses ყველა IPv4 მისამართები - + All IPv6 addresses ყველა IPv6 მისამართები - + libtorrent Section libtorrent სექცია - + Fastresume files Fastresume ფაილები - + SQLite database (experimental) SQLite მონაცემთა ბაზა (ექსპერიმენტალური) - + Resume data storage type (requires restart) - + Normal ჩვეულებრივი - + Below normal ჩვეულებრივზე დაბალი - + Medium საშუალო - + Low დაბალი - + Very low ძალიან დაბალი - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache დისკის ჰეში - - - - + + + + + s seconds წამი - + Disk cache expiry interval დისკის ქეშის ვადის გასვლის ინტერვალი - + Disk queue size - - + + Enable OS cache OS ქეშის ჩართვა - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB კბ - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address ნების დართბა მრავალ კავშირზე ერთი IP მისამართიდან - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names პირების ჰოსტის სახელის დადგენა - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - წამი + წამი - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications შეტყობინებების ჩვენება - + Display notifications for added torrents ტამატებული ტორენტების შეტყობინებების ჩვენება - + Download tracker's favicon - + Save path history length - + Enable speed graphs სიჩქარის გრაფიკების ჩართვა - + Fixed slots - + Upload rate based - + Upload slots behavior ატვირთვის სლოტების ქცევა - + Round-robin - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck ტორენტის გადამოწმების დასტური - + Confirm removal of all tags - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface ნებისმიერი ინტერფეისი - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker ჩაშენებული ტრეკერის ჩართვა - + Embedded tracker port ჩაშენებული ტრეკერის პორტი @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 ტორენტის სახელი: %1 - + Torrent size: %1 ტორენტის ზომა: %1 - + Save path: %1 შენახვის გზა: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds ტორენტი ჩამოტვირთულია. %1 - - + + Thank you for using qBittorrent. გმადლობთ qBittorrent-ის გამოყენებისთვის - + Torrent: %1, sending mail notification - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit &გამოსვლა - + I/O Error i.e: Input/Output Error I/O შეცდომა - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1525,110 +1532,110 @@ - + Torrent added ტორენტი დამატებულია - + '%1' was added. e.g: xxx.avi was added. '%1' დამატებულია - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' ჩამოტვირთვა დასრულდა - + Information ინფორმაცია - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit გამოსვლა - + Recursive download confirmation რეკურსიული ჩამოტვირთვის დასტური - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never არასოდეს - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... ტორენტის პროგრესის შენახვა... - + qBittorrent is now ready to exit @@ -1764,263 +1771,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &ექსპორტი - + Matches articles based on episode filter. - + Example: მაგალითი: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match - + Episode filter rules: - + Season number is a mandatory non-zero value - + Filter must end with semicolon - + Three range types for episodes are supported: - + Single number: <b>1x25;</b> matches episode 25 of season one - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one - + Episode number is a mandatory positive value - + Rules წესები - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago - + Last Match: Unknown - + New rule name ახალი წესის სახელი - + Please type the name of the new download rule. გთხოვთ ჩაწერეთ ახალი ჩამოტვირთვის წესის სახელი - - + + Rule name conflict წესის სახელის კონფლიქტი - - + + A rule with this name already exists, please choose another name. წესი იგივე სახელით უკვე არსებობს, გთხოვთ აირჩიეთ სხვა სახელი. - + Are you sure you want to remove the download rule named '%1'? დარწყმუნებული ხართ რომ გსურთ წაშალოთ ჩამოტვირთვის წესი '%1'? - + Are you sure you want to remove the selected download rules? დარწმუნებული ხართ რომ არჩეული ჩამოტვირთვის წესების წაშლა გსურთ? - + Rule deletion confirmation წესის წაშლის დასტური - + Invalid action არასწორი მოქმედება - + The list is empty, there is nothing to export. სია ცარიელია, აქ არაფერი არ არის ექსპორტისთვის. - + Export RSS rules RSS წესების ექსპორტი - + I/O Error I/O შეცდომა - + Failed to create the destination file. Reason: %1 დანიშნულების ფაილის შექმნა ვერ მოხერხდა. მიზეზი: %1 - + Import RSS rules RSS წესების იმპორტი - + Failed to import the selected rules file. Reason: %1 ამორჩეული წესების იმპორტი ვერ მოხერხდა. მიზეზი: %1 - + Add new rule... ახალი წესის დამატება... - + Delete rule წესის წაშლა - + Rename rule... წესის გადარქმევა... - + Delete selected rules არჩეული წესების წაშლა - + Clear downloaded episodes... ჩამოტვირთული ეპიზოდების წაშლა... - + Rule renaming წესის გადარქმევა - + Please type the new rule name გთხოვთ ჩაწერეთ ახალი წესის სახელი - + Clear downloaded episodes ჩამოტვირთული ეპიზოდების წაშლა - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 პოზიცია %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2072,28 +2079,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2104,16 +2121,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2121,38 +2139,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. არ მოიძებნა. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2160,22 +2200,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2183,498 +2223,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP ფილტრი - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2724,47 +2769,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3027,14 +3072,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - ტორენტების გაგრძელება - - - Pause torrents - ტორენტების დაპაუზება - Remove torrents @@ -3364,22 +3401,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present ტორენტი უკვე არსებობს - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3497,6 +3534,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3638,10 +3709,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &პარამეტრები... - - &Resume - &გაგრძელება - &Remove @@ -3723,10 +3790,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window ფანჯრის დახურვა - - R&esume All - &ყველას გაგრძელება - Manage Cookies... @@ -3842,10 +3905,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &სისტემის ძილის რეჟიმში გადაყვანა - - S&hutdown System - &სისტემის გამორთვა - &Statistics @@ -3866,14 +3925,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &შესახებ - - &Pause - &პაუზა - - - P&ause All - &ყველას დაპაუ&ზება - &Add Torrent File... @@ -3907,12 +3958,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show ჩვენება - + Check for program updates პროგრამული განახლების შემოწმება @@ -3927,386 +3978,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also თუ qBittorrent მოგწონთ, გთხოვთ გააკეთეთ ფულადი შემოწირულობა! - + Execution Log გაშვების ჟურნალი - + Clear the password პაროლის წაშლა - + &Set Password &პაროლის დაყენება - + Preferences - + &Clear Password &პაროლის წაშლა - + Transfers ტრანსფერები - - + + qBittorrent is minimized to tray qBittorrent-ი უჯრაშია ჩახურული - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only - + Text Only მატრო ტექსტი - + Text Alongside Icons - + Text Under Icons - + Follow System Style სისტემის სტილის გამოყენება - - + + UI lock password ინტერფეისის ჩაკეტვის პაროლი - - + + Please type the UI lock password: გთხოვთ შეიყვანეთ ინტერფეისის ჩაკეტვის პაროლი: - + Are you sure you want to clear the password? დარწყმულებული ხართ რომ პაროლის წაშლა გნებავთ? - + Use regular expressions სტანდარტული გამოსახულებების გამოყენება - - + + Search Engine - საძიებო სისტემა + საძიებო სისტემა - + Search has failed - ძიება ვერ შესრულდა + ძიება ვერ შესრულდა - + Search has finished - + ძიება დამთავრებულია - + Search ძებნა - + Transfers (%1) ტრანსფერები (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent-ი განახლდა. შეტანილი ცვლილებები რომ გააქტიურდეს, საჭიროა აპლიკაციის თავიდან ჩართვა. - + qBittorrent is closed to tray qBittorrent-ი უჯრაშია დახურული - + Some files are currently transferring. ზოგი-ერთი ფაილის ტრანსფერი ხორციელდება. - + Are you sure you want to quit qBittorrent? qBittorrent-იდან გასვლა გსურთ? - + &No &არა - + &Yes &კი - + &Always Yes &ყოველთვის კი - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime - + qBittorrent Update Available qBittorrent განახლება ხელმისაწვდომია - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? საძიებო სისტემის გამოსაყენებლად საჭიროა Python-ის დაინსტალირება, მაგრამ სავარაუდოდ ის არ არის დაინსტალირებული. გხურთ მისი ახლავე დაინსტალირება? - + Python is required to use the search engine but it does not seem to be installed. საძიებო სისტემის გამოსაყენებლად საჭიროა Python-ის დაინსტალირება, მაგრამ სავარაუდოდ ის არ არის დაინსტრალირებული. - - + + Old Python Runtime - + A new version is available. ახალი ვერსია ხელმისაწვდომია - + Do you want to download %1? გსურთ %1 ჩამოტვირთვა? - + Open changelog... - + No updates available. You are already using the latest version. განახლებები არაა ხელმისაწვდომი. თქვენ უკვე იყენებთ უახლეს ვერსიას. - + &Check for Updates &განახლების შემოწმება - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - დაპაუზებული + დაპაუზებული - + Checking for Updates... განახლების შემოწმება მიმდინარეობს... - + Already checking for program updates in the background პროგრამული განახლება ფონურად უკვე მოზმდება - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error ჩამოტვირთვის შეცდომა - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python-ის ჩამოტვირთვა ვერ მოხერხდა, მიზეზი: %1. -გთხოვთ ხელით დააყენეთ ის. - - - - + + Invalid password პაროლი არასწორია - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid პაროლი არასწორია - + DL speed: %1 e.g: Download speed: 10 KiB/s ჩამოტვირთვის სიჩქარე: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s ატვირთვის სიჩქარე: %1 - + Hide დამალვა - + Exiting qBittorrent qBittorrent-იდან გამოსვლა - + Open Torrent Files ტორენტ ფაილის გახსნა - + Torrent Files ტორენტ ფაილები @@ -5800,47 +5845,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5882,10 +5927,6 @@ Please install it manually. RSS RSS - - Web UI - ვებ ინტერფეისი - Advanced @@ -5922,10 +5963,6 @@ Please install it manually. Always ყოველთვის - - Paused torrents only - მარტო დაპაუზებულებისთვის - Action on double-click @@ -5936,10 +5973,6 @@ Please install it manually. Downloading torrents: ტორენტები ჩამოტვირთვის პროცესში: - - Start / Stop Torrent - ტორენტის დაწყება / შეჩერება - @@ -5998,175 +6031,175 @@ Please install it manually. კბ - + + Show free disk space in status bar + + + + Torrent content layout: ტორენტის შიგთავსის განლაგება: - + Original ორიგინალი - + Create subfolder სუბდირექტორიის შექმნა - + Don't create subfolder არ შეიქმნას სუბდირექტორია - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... დამატება... - + Options.. პარამეტრები... - + Remove წაშლა - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: პირის კავშირის პროტოკოლი: - + Any ნებისმიერი - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time ვისგან: - + To: To end time ვისთვის: - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6175,221 +6208,227 @@ Disable encryption: Only connect to peers without protocol encryption დაშიფრვის გამორთვა: პირებთან დაკავშირება მარტო პროტოკოლური დაშიფრვის გარეშე - + Allow encryption დაშიფრვაზე ნების დართვა - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">მეტი ინფორმაცია</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader RSS წამკითხველი - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: სტატიების მაქს. რაოდენობა ერთი არხიდან: - - - + + + min minutes წ. - + Seeding Limits სიდირების ლიმიტები - Pause torrent - ტორენტის დაპაუზება - - - + Remove torrent ტორენტის წაშლა - + Remove torrent and its files ტორენტის და მისი ფაილების დაშლა - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - ბმული: + ბმული: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: ფილტრები: - + Web User Interface (Remote control) ვებ მომხმარებლის ინტერფეისი (დისტანციური კონტროლი) - + IP address: IP მისამართი: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never არასდროს - + ban for: - + Session timeout: - + Disabled გამორთულია - + Server domains: სერვერის დომეინები: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6398,37 +6437,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP HTTPS გამოყენება HTTP-ს ნაცვლად - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6440,7 +6479,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - + ძებნა @@ -6541,99 +6580,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent ტორენტის დამატებისას - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! ყურადღება! შესაძლოა ინფორმაციის დაკარგვა - + Saving Management შენახვის მართვა - + Default Torrent Management Mode: ჩვეულებრივი ტირენტის კონტროლის რეჟიმი: - + Manual არაავტომატური - + Automatic ავტომატური - + When Torrent Category changed: როდესაც ტორენტის კატეგორია იცვლება: - + Relocate torrent ტორენტის ლოკაციის შეცვლა - + Switch torrent to Manual Mode ტორენტის გადართვა არაავტომატურ რეჟიმში - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories სუბკატეგორიების გამოყენება - + Default Save Path: ჩვეულებრივი შენახვის გზა: - + Copy .torrent files to: .torrent ფაილების კომირება მისამართით: @@ -6643,26 +6682,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.&qBittorrent-ის ჩვენება სისტემურ არეში - &Log file - &ლოგ ფაილი - - - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: დასრულებული ჩამოტვირთვიანი .torrent ფაილების კოპირება შემდეგი მისიმართით: - + Pre-allocate disk space for all files დისკის ადგილის წინასწარ გამოყოფა ყველა ფაილისთვის @@ -6757,64 +6792,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.წელი - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state ჩამოტვირთვა ავტომატურად არ დაიწყოს - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. ჩამოტვირთვის დაწყებამდე დისკზე ადგილის რეზერვაცია მოხდეს, ფრაგმენტაციის მინიმალიზაციისთვის. სასარგებლოა მხოლოდ HDD დისკებისთვის. - + Append .!qB extension to incomplete files არადამთავრებულ ფაილებისთვის .!qB გაფართოების დამატება - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: როდესაც კატეგორიის შენახვის გზა იცვლება: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6834,50 +6869,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: ტორენტების ავტომატური დამატება მდებარეობიდან: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6894,515 +6929,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + To: To receiver ვისთვის: - + SMTP server: SMTP სერვერი: - + Sender გამგზავნელუ - + From: From sender ვისგან: - + This server requires a secure connection (SSL) ეს სერვერი საჭიროებს დაცულ კავშირს (SSL) - - + + Authentication აუტენფიკაცია - - - - + + + + Username: მომხმარებლის სახელი: - - - - + + + + Password: პაროლი: - + Run external program - + Show console window - + TCP and μTP TCP და μTP  - + Listening Port მოსამსენი პორტი - + Port used for incoming connections: შემომავალი კავშირებისთვის გამოყენებული პორტი: - + Set to 0 to let your system pick an unused port - + Random შემთხვევითი - + Use UPnP / NAT-PMP port forwarding from my router UPnP / NAT-PMP-ს გამოყენება ჩემი როუტერიდან პორტის გადამისამართებისთვის - + Connections Limits კავშირების ლიმიტი - + Maximum number of connections per torrent: მაქსიმალური კავშირის რაოდენობა ერთ ტორენტზე: - + Global maximum number of connections: კავშირების რაოდენობის მაქსიმალური რაოდენობა: - + Maximum number of upload slots per torrent: ატვირთვის სლოტების მაქსიმალური რაოდენობა ერთ ტორენტზე: - + Global maximum number of upload slots: ატვირთვის სლოტების გლობალური მაქსიმალური რაოდენობა: - + Proxy Server Proxy სერვერი - + Type: ტიპი: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: ჰოსტი: - - - + + + Port: პორტი: - + Otherwise, the proxy server is only used for tracker connections სხვა შემთხვევაში, Proxy სერვერი გამოიყენება მარტო ტრეკერის კავშირებისთვის - + Use proxy for peer connections Proxy-ს გამოყენება პირებთან კავშირებისთვის - + A&uthentication &აუტენფიკაცია - Info: The password is saved unencrypted - შენიშვნა: პაროლი არადაშიფრულად არის შენახული + შენიშვნა: პაროლი არადაშიფრულად არის შენახული - + Filter path (.dat, .p2p, .p2b): ფილტრის გზა (.dat, .p2p, .p2b): - + Reload the filter ფილტრის გადატვირთვა - + Manually banned IP addresses... ხელით დაბლოკირებული IP მისამართები - + Apply to trackers დასტური ტრეკერებისთვის - + Global Rate Limits გლობალური სიჩქარის ლიმიტი - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s კბ/წ - - + + Upload: ატვირთვა: - - + + Download: ჩამოტვირთვა: - + Alternative Rate Limits ალტერნატიული სიჩქარის ლიმიტი - + Start time - + End time - + When: როდის: - + Every day ყოველ დღე - + Weekdays სამუშაო დღეები - + Weekends დასასვენი დღეები - + Rate Limits Settings სიჩქარის ლიმიტის პარამეტრები - + Apply rate limit to peers on LAN სიჩქარის ლიმიტის გამოყენება LAN-პირებისთვის - + Apply rate limit to transport overhead შეფარდების ლიმიტის მორგება ზედა ტრანსფერებზე - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol სიჩქარის ლიმიტის გამოყენება µTP პროკოტოკლთან - + Privacy კონფიდენციალურობა - + Enable DHT (decentralized network) to find more peers დეცენტრალიზებული ქსელის (DHT) ჩართვა მეტი პირის მოსაძიებლად - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) პირების გაცვლა თავსებად Bittorrent კლიენტებთან (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers პირების გაცვლის ჩართვა (PeX) მეტი პირის მოსაძიებლად - + Look for peers on your local network პირების ძებნა თქვენ ლოკალურ ქსელში - + Enable Local Peer Discovery to find more peers ლოკალური პირების აღმოჩენის მხარდაჭერის ჩართვა მეტი პირების საპოვნად - + Encryption mode: დაშიფრვის რეჟიმი: - + Require encryption დაშიფრვის მოთხოვნა - + Disable encryption დაშიფრვის გამორთვა - + Enable when using a proxy or a VPN connection ჩართვა როდესაც VPN ან Proxy კავშირი გამოიყენება - + Enable anonymous mode ანონიმური რეჟიმის ჩართვა - + Maximum active downloads: აქტიური ჩამოტვირთების მაქსიმაული რაოდენობა: - + Maximum active uploads: აქტიური ატვირთბის მაქსიმალური რაოდენობა: - + Maximum active torrents: აქტიური ტორენტების მაქსიმალური რაოდენობა: - + Do not count slow torrents in these limits ნელი ტორენტები ამ ლიმიტებში არ ჩაითვალოს - + Upload rate threshold: ატვირთვის სიჩქარის ბარიერი: - + Download rate threshold: ჩამოტვირთვის სიჩქარის ბარიერი: - - - - + + + + sec seconds წამი - + Torrent inactivity timer: ტორენტის უაქტიურობის წამზომი: - + then შემდეგ კი - + Use UPnP / NAT-PMP to forward the port from my router UPnP / NAT-PMP-ს გამოყენება პორტის გადამისამართებისთვის ჩემი როუტერიდან - + Certificate: სერთიფიკატი: - + Key: გასაღები: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>ინფორმაცია სერთიფიკატების შესახებ</a> - + Change current password ახლანდელი პაროლის შეცვლა - Use alternative Web UI - ალტერნატიული ვებ ინტერფეისის გამოყენება - - - + Files location: ფაილების ლოკაცია: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security დაცულობა - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: სანდო proxy-ს სია: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: მომსახურება: - + Register რეგისტრაცია - + Domain name: დომენის სახელი: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7412,12 +7442,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not ამოირჩიეთ qBittorrent-ის ინტერფეისის თემის ფაილი - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7437,183 +7467,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: ტორენტის სახელი - + %L: Category %L: კატეგორია - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path %D: შენახვის მისამართი - + %C: Number of files %C: ფაილების რაოდენობა - + %Z: Torrent size (bytes) %Z: ტორენტის ზომა (ბაიტებში) - + %T: Current tracker %Z: მიმდინარე ტრეკერი - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (არცერთი) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key პრივატული გასაღები - + Select private key პრივატული გასაღების ამორჩევა - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory აირჩიეთ გასატანი მდებარეობა - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7623,69 +7653,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: თეგები (მძიმეებით იყოფება) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory შენახვის დირექტორიის ამორჩევა - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error ანალიზის შეცდომა - + Failed to parse the provided IP filter მოწოდებული IP ფილტრის ანალიზი ჩაიშალა - + Successfully refreshed წარმატებით განახლდა - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7696,18 +7726,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Time Error დროის შეცდომა - + The start time and the end time can't be the same. - - + + Length Error სიგრძის შეცდომა @@ -7798,163 +7828,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region ქვეყანა/რეგიონი - + IP/Address - + Port პორტი - + Flags ფლაგები - + Connection კავშირი - + Client i.e.: Client application კლიენტი - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded პროგრესი - + Down Speed i.e: Download speed ჩამოტვირთვის სიჩქარე - + Up Speed i.e: Upload speed ატვირთვის სიჩქარე - + Downloaded i.e: total data downloaded ჩამოტვირთული - + Uploaded i.e: total data uploaded ატვირთული - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. შესაბამისობა - + Files i.e. files that are being downloaded right now ფაილები - + Column visibility სვეტის ხილვადობა - + Resize columns სვეტების ზომის შეცვლა - + Resize all non-hidden columns to the size of their contents ყველა ხილული სვეტის ზომის გასწორება მათი შიგთავსის მიხედვით. - + Add peers... - - + + Adding peers პირები დამატების პროცესში - + Some peers cannot be added. Check the Log for details. ზოგი-ერთი პირის დამატება შეუძლებელია. იზილეთ ლოგ ფაილი დეტალებისთვის - + Peers are added to this torrent. პირები დამატებულია ამ ტორენტთან - - + + Ban peer permanently პირის დაბლოკვა სამუდამოდ - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A N/A - + Copy IP:port @@ -8234,34 +8264,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent-ი აქტიურია - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent-ი აქტიურია @@ -8553,153 +8557,124 @@ Those plugins were disabled. შენახვის გზა: - + Never არასოდეს - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - - + + %1 (%2 this session) %1 (%2 ამ სესიაში) - - + + N/A N/A - + Yes - კი + კი - + No - არა + არა - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (სიდირდება %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 მაქსიმუმ) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 სულ) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - ახალი ვებ სიდი - - - Remove Web seed - ვებ სიდის წაშლა - - - Copy Web seed URL - ვებ სიდის ბმულის კოპირება - - - Edit Web seed URL - ვებ სიდის ბმულის რედაქტირება - - - + Filter files... ფაილების ფილტრი... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - ახალი URL სიდი - - - New URL seed: - ახალი URL სიდი: - - - This URL seed is already in the list. - ეს URL სიდი უკვე სიაშია. - - - + Web seed editing ვებ სიდის რედაქტირება - + Web seed URL: ვებ სიდის URL: @@ -8707,33 +8682,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8741,22 +8716,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8805,12 +8780,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8832,76 +8807,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + ბმული: + + + + Refresh interval: + + + + + sec + წამი + + + + Default + + + RSSWidget @@ -9001,78 +9017,61 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name გთხოვთ, ამოირჩიეთ დირექტორიის სახელი - + Folder name: დირექტორიის სახელი: - + New folder ახალი დირექტორია - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation წაშლის დადასტურება - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed გთხოვთ აირჩიეთ ახალი სახელი ამ RSS არხისთვის - + New feed name: არხის ახალი სახელი: - + Rename failed გადარქმევა ჩაიშალა - + Date: თარიღი: - + Feed: - + Author: ავტორი: @@ -9209,10 +9208,6 @@ Those plugins were disabled. i.e: Number of partial sources ლიჩები: - - Search engine - საძიებო მოდული - Filter search results... @@ -9333,104 +9328,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories ყველა კატეგორია - + Movies კინო - + TV shows TV შოუ - + Music მუსიკა - + Games თამაშები - + Anime ანიმე - + Software სოფტი - + Pictures სურათები - + Books წიგნები - + Update server is temporarily unavailable. %1 განახლების სერვერი დროებით მიუწვდომელია. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 მოდული "%1" დაძველებულია, განახლება ვერსიამდე %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9455,135 +9450,127 @@ Click the "Search plugins..." button at the bottom right of the window საძიებო მოდულები... - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example მაგალითი: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins ყველა პლაგინი - + Only enabled - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab ჩანართის დახურვა - + Close all tabs ყველა ჩანართის დახურვა - + Select... ამორჩევა... - - + + Search Engine საძიებო სისტემა - - + + Please install Python to use the Search Engine. გთხოვთ დააყენოთ Python-ი საძიებო სისტემის გამოყენებისთვის. - + Empty search pattern ცარიელი საძიებო შაბლონი - + Please type a search pattern first გთხოვთ პირველ რიგში შეიყვანეთ საძიებო შაბლონი - + Stop გაჩერება - - Search has finished - ძიება დასრულდა - - - Search has failed - ძიება ვერ შესრულდა - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9981,67 +9968,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: კავშირის სტატუსი: - - + + No direct connections. This may indicate network configuration problems. პიდაპირი კავშირები არ არის. ამას შესაძლოა იწვევდეს ქსელის კონფიგურაციის პრობლემები. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 კვანძები - + qBittorrent needs to be restarted! qBittorrent-ს ხელახლა ჩართვა სჭირდება! - - + + Connection Status: კავშირის სტატუსი: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. კავშირგარეშე. ეს ჩვეულებრივ ხდება მაშინ როდესაც qBittorrent ვერ ახერხებს ერთ-ერთი შემომავალი პორტის მოსმენას. - + Online ხაზზეა - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits დააწკაპუნეთ სიჩქარის ალტერნატიულ ლიმიტებზე გადასართველად - + Click to switch to regular speed limits დააწკაპუნეთ სიჩქარის ჩვეულებრივ ლიმიტებზე გადასართველად @@ -10069,14 +10066,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) დასრულებულია (0) - - Resumed (0) - განახლებულია (0) - - - Paused (0) - დაპაუზებულია (0) - Running (0) @@ -10167,32 +10156,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - დაპაუზებულია (%1) - Moving (%1) - - Resume torrents - ტორენტების განახლება - - - Pause torrents - ტორენტების დაპაუზება - Remove torrents - - Resumed (%1) - განახლებულია (%1) - Active (%1) @@ -10264,23 +10237,11 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags არგამოყენებული ტეგების წაშლა - - Resume torrents - ტორენტების განახლება - - - Pause torrents - ტორენტების დაპაუზება - Remove torrents - - New Tag - ახალი ტეგი - Start torrents @@ -10613,17 +10574,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10875,13 +10836,6 @@ Please choose a different name and try again. - - TorrentInfo - - Invalid metadata - არასწორი მეტაინფორმაცია - - TorrentOptionsDialog @@ -10919,10 +10873,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - ტორენტის სიჩქარის ლიმიტი - Download: @@ -10955,10 +10905,6 @@ Please choose a different name and try again. Upload: ატვირთვა: - - Torrent share limits - ტორენტის გაზიარების ლიმიტი - Disable DHT for this torrent @@ -11059,7 +11005,7 @@ Please choose a different name and try again. Remove torrent - ტორენტის წაშლა + ტორენტის წაშლა @@ -11084,10 +11030,6 @@ Please choose a different name and try again. Torrent Tags - - New Tag - ახალი ტეგი - Add tag @@ -11122,78 +11064,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer - + Priority is not valid პრიორიტეტი არ არის მოქმედი - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty შენახვის გზა არ უნდა იყოს ცარიელი - - + + Cannot create target directory - - + + Category cannot be empty კატეგორია არ უნდა იყოს ცარიელი - + Unable to create category შეუძლებელია კატეგორიის შექმნა - + Unable to edit category შეუძლებელია კატეგორიის რედაქტირება - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11213,39 +11155,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name არასწორი ტორენტის სახელი - - + + Incorrect category name არასწორი კატეგორიის სახელი @@ -11389,73 +11331,73 @@ Please choose a different name and try again. ეს ტორენტი პრივატულია - + Tracker editing ტრეკერის რედაქტირება - + Tracker URL: ტრეკერის URL: - - + + Tracker editing failed ტრეკერის რედაქტირება ვერ მოხერხდა - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... ტრეკერის URL-ის რედაქტირება... - + Remove tracker ტრეკეტის წაშლა - + Copy tracker URL ტრეკერის URL-ის ასლი - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns სვეტების ზომის შეცვლა - + Resize all non-hidden columns to the size of their contents ყველა ხილული სვეტის ზომის გასწორება მათი შიგთავსის მიხედვით. - + Add trackers... - + Column visibility სვეტის ხილვადობა @@ -11545,14 +11487,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - ტორენტების განახლება - - - Pause torrents - ტორენტების დაპაუზება - Remove torrents @@ -11675,10 +11609,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. - - Paused - დაპაუზებული - Completed @@ -11719,21 +11649,16 @@ Please choose a different name and try again. % Done პროგრესი - - Status - Torrent status (e.g. downloading, seeding, paused) - სტატუსი - Stopped - + შეჩერებულია Status Torrent status (e.g. downloading, seeding, stopped) - სტატუსი + სტატუსი @@ -11849,22 +11774,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - აქტიური დრო + აქტიურობის დრო Yes - კი + დიახ No - არა - - - Time Active - Time (duration) the torrent is active (not paused) - აქტიური დრო + არა @@ -11966,333 +11886,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility სვეტის ხილვადობა - + Recheck confirmation დასტურის გადამოწმება - + Are you sure you want to recheck the selected torrent(s)? დარწყმუნებული ხართ რომ გსურთ ამორჩეული ტორენტის(ების) გადამოწმება? - + Rename გადარქმევა - + New name: ახალი სახელი: - + Choose save path აირჩიეთ შესანახი მდებარეობა - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns სვეტების ზომის შეცვლა - + Resize all non-hidden columns to the size of their contents ყველა ხილული სვეტის ზომის გასწორება მათი შიგთავსის მიხედვით. - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - ტეგების დამატება - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags ყველა ტეგის წაშლა - + Remove all tags from selected torrents? ყველა ტეგის წაშლა ამორჩეული ტორენტებიდან? - + Comma-separated tags: - + Invalid tag არასწორი ტეგი - + Tag name: '%1' is invalid ტეგის სახელი '%1' არასწორია - &Resume - Resume/start the torrent - &გაგრძელება - - - &Pause - Pause the torrent - &პაუზა - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order თანმიმდევრობით ჩამოტვირთვა - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first პირველ რიგში ჩამოიტვირთოს პირველი და ბოლო ნაწილი - + Automatic Torrent Management ტორენტის ავტომატური მართვა - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode სუპერ სიდირების რეჟიმი @@ -12424,32 +12330,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12541,52 +12447,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12644,7 +12550,7 @@ Please choose a different name and try again. Unknown error - უცნობი შეცდომა + უცნობი შეცდომა diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index 36b0e2e9d..a27ecfd7c 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -170,10 +170,6 @@ Never show again 다시 표시 안함 - - Torrent settings - 토렌트 설정 - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrent 옵션 @@ -235,25 +231,25 @@ 중지 조건: - - + + None 없음 - - + + Metadata received 수신된 메타데이터 - + Torrents that have metadata initially will be added as stopped. 처음에 메타데이터가 포함된 토렌트는 중지된 상태로 추가됩니다. - + Files checked 파일 확인됨 @@ -368,112 +364,112 @@ .torrent 파일로 저장… - + I/O Error I/O 오류 - + Not Available This comment is unavailable 사용할 수 없음 - + Not Available This date is unavailable 사용할 수 없음 - + Not available 사용할 수 없음 - + Magnet link 마그넷 링크 - + Retrieving metadata... 메타데이터 검색 중… - - + + Choose save path 저장 경로 선정 - + No stop condition is set. 중지 조건이 설정되지 않았습니다. - + Torrent will stop after metadata is received. 메타데이터가 수신되면 토렌트가 중지됩니다. - + Torrent will stop after files are initially checked. 파일을 처음 확인한 후에는 토렌트가 중지됩니다. - + This will also download metadata if it wasn't there initially. 처음에 메타데이터가 없는 경우 메타데이터 또한 내려받기됩니다. - + N/A 해당 없음 - + %1 (Free space on disk: %2) %1 (디스크 남은 용량: %2) - + Not available This size is unavailable. 사용할 수 없음 - + Torrent file (*%1) 토렌트 파일 (*%1) - + Save as torrent file 토렌트 파일로 저장 - + Couldn't export torrent metadata file '%1'. Reason: %2. '%1' 토렌트 메타데이터 파일을 내보낼 수 없습니다. 원인: %2. - + Cannot create v2 torrent until its data is fully downloaded. 데이터를 완전히 내려받을 때까지 v2 토렌트를 만들 수 없습니다. - + Filter files... 파일 필터링... - + Parsing metadata... 메타데이터 분석 중… - + Metadata retrieval complete 메타데이터 복구 완료 @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" 토렌트 내려받는 중... 소스 : "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" 토렌트를 추가하지 못했습니다. 소스 : "%1". 이유 : "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 중복 토렌트를 추가하려는 시도를 감지했습니다. 소스 : %1. 기존 토렌트 : %2. 결과 : %3 + 중복 토렌트를 추가하려는 시도를 감지했습니다. 소스 : %1. 기존 토렌트 : %2. 결과 : %3 - + Merging of trackers is disabled 트래커 병합이 비활성화됨 - + Trackers cannot be merged because it is a private torrent 비공개 토렌트이기 때문에 트래커를 병합할 수 없음 - + Trackers are merged from new source 새 소스에서 트래커가 병합됨 + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 완료했을 때 토렌트 다시 검사 - - + + ms milliseconds ms - + Setting 설정 - + Value Value set for this setting - + (disabled) (비활성화됨) - + (auto) (자동) - - + + min minutes - + All addresses 모든 주소 - + qBittorrent Section qBittorrent 부분 - - + + Open documentation 문서 열기 - + All IPv4 addresses 모든 IPv4 주소 - + All IPv6 addresses 모든 IPv6 주소 - + libtorrent Section libtorrent 부분 - + Fastresume files Fastresume 파일 - + SQLite database (experimental) SQLite 데이터베이스 (실험적) - + Resume data storage type (requires restart) 이어받기 데이터 저장소 유형 (다시 시작 필요) - + Normal 보통 - + Below normal 보통 이하 - + Medium 중간 - + Low 낮음 - + Very low 매우 낮음 - + Physical memory (RAM) usage limit 물리적 메모리(RAM) 사용량 제한 - + Asynchronous I/O threads 비동기 I/O 스레드 - + Hashing threads 해싱 스레드 - + File pool size 파일 풀 크기 - + Outstanding memory when checking torrents 토렌트를 확인할 때 사용할 초과 메모리 - + Disk cache 디스크 캐시 - - - - + + + + + s seconds - + Disk cache expiry interval 디스크 캐시 만료 간격 - + Disk queue size 디스크 대기열 크기 - - + + Enable OS cache OS 캐시 활성화 - + Coalesce reads & writes 읽기 및 쓰기 통합 - + Use piece extent affinity 조각 범위 선호도 사용 - + Send upload piece suggestions 조각 올려주기 제안 보내기 - - - - - + + + + + 0 (disabled) 0 (비활성화됨) - + Save resume data interval [0: disabled] How often the fastresume file is saved. 이어받기 데이터 저장 간격 [0: 비활성화됨] - + Outgoing ports (Min) [0: disabled] 나가는 포트 (최소) [0: 비활성화됨] - + Outgoing ports (Max) [0: disabled] 나가는 포트 (최대) [0: 비활성화됨] - + 0 (permanent lease) 0 (영구 임대) - + UPnP lease duration [0: permanent lease] UPnP 임대 기간 [0: 영구 임대] - + Stop tracker timeout [0: disabled] 중지 트래커 만료시간 [0: 비활성화됨] - + Notification timeout [0: infinite, -1: system default] 알림 만료시간 [0: 무한, -1: 시스템 기본값] - + Maximum outstanding requests to a single peer 단일 피어에 대한 최대 미해결 요청 - - - - - + + + + + KiB KiB - + (infinite) (무한) - + (system default) (시스템 기본값) - + Delete files permanently - + 파일을 영구적으로 삭제 - + Move files to trash (if possible) - + 쓰레기통으로 파일 이동 (가능한 경우) - + Torrent content removing mode - + 토렌트 내용 제거 모드 - + This option is less effective on Linux 이 옵션은 Linux에서 효과적이지 않습니다 - + Process memory priority 프로세스 메모리 우선순위 - + Bdecode depth limit Bdecode 깊이 제한 - + Bdecode token limit Bdecode 토큰 제한 - + Default 기본값 - + Memory mapped files 메모리 매핑된 파일 - + POSIX-compliant POSIX 호환 - + Simple pread/pwrite - + 단순 미리 읽기/다시 쓰기 - + Disk IO type (requires restart) 디스크 IO 유형 (다시 시작 필요) - - + + Disable OS cache OS 캐시 비활성화 - + Disk IO read mode 디스크 IO 읽기 모드 - + Write-through 연속 기입 - + Disk IO write mode 디스크 IO 쓰기 모드 - + Send buffer watermark 전송 버퍼 워터마크 - + Send buffer low watermark 전송 버퍼 낮은 워터마크 - + Send buffer watermark factor 전송 버퍼 워터마크 인자 - + Outgoing connections per second 초당 나가는 연결 수 - - + + 0 (system default) 0 (시스템 기본값) - + Socket send buffer size [0: system default] 소켓 전송 버퍼 크기 [0: 시스템 기본값] - + Socket receive buffer size [0: system default] 소켓 수신 버퍼 크기 [0: 시스템 기본값] - + Socket backlog size 소켓 백로그 크기 - + Save statistics interval [0: disabled] How often the statistics file is saved. - + 통계 저장 간격 [0: 비활성화] - + .torrent file size limit .torrent 파일 크기 제한 - + Type of service (ToS) for connections to peers 피어 연결에 대한 서비스 유형 (ToS) - + Prefer TCP TCP 우선 - + Peer proportional (throttles TCP) 피어 비례 (TCP 조절) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) 국제 도메인 이름(IDN) 지원 - + Allow multiple connections from the same IP address 같은 IP 주소의 다중 접속 허용하기 - + Validate HTTPS tracker certificates HTTPS 트래커 인증서 유효성 검사 - + Server-side request forgery (SSRF) mitigation SSRF(서버 측 요청 변조) 완화 - + Disallow connection to peers on privileged ports 권한 있는 포트에 대한 피어 연결 허용 안 함 - + It appends the text to the window title to help distinguish qBittorent instances qBittorent 인스턴스를 구별할 수 있도록 창 제목에 텍스트를 추가 - + Customize application instance name 앱 인스턴스 이름 사용자 지정 - + It controls the internal state update interval which in turn will affect UI updates UI 업데이트에 영향을 주는 내부 상태 업데이트 간격을 제어합니다 - + Refresh interval 새로고침 간격 - + Resolve peer host names 피어 호스트 이름 분석 - + IP address reported to trackers (requires restart) 트래커에 보고된 IP 주소 (다시 시작 필요) - + Port reported to trackers (requires restart) [0: listening port] - + 트래커에 보고된 포트 (재시작 필요) [0: 수신 포트] - + Reannounce to all trackers when IP or port changed IP 또는 포트가 변경되면 모든 트래커에게 다시 알림 - + Enable icons in menus 메뉴에서 아이콘 활성화 - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker 임베디드 트래커에 대한 포트 포워딩 활성화 - + Enable quarantine for downloaded files 내려받은 파일에 대한 격리 활성화 - + Enable Mark-of-the-Web (MOTW) for downloaded files 내려받은 파일에 대해 MOTW(Mark-of-the-Web) 활성화 - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + 인증서 유효성 검사 및 비 토렌트 프로토콜 활동(예: RSS 피드, 프로그램 업데이트, 토렌트 파일, geoip db 등)에 영향을 미칩니다. - + Ignore SSL errors - + SSL 오류 무시 - + (Auto detect if empty) (비어있는 경우 자동 감지) - + Python executable path (may require restart) Python 실행 경로(다시 시작해야 할 수 있음) - + Start BitTorrent session in paused state - + 일시정지 상태에서 BitTorrent 세션 시작 - + sec seconds - + - + -1 (unlimited) - + -1 (무제한) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent 세션 종료 만료 시간 [-1: 무제한] - + Confirm removal of tracker from all torrents 모든 토렌트에서 트래커 제거 확인 - + Peer turnover disconnect percentage 피어 전환 연결 해제율(%) - + Peer turnover threshold percentage 피어 전환 임계율(%) - + Peer turnover disconnect interval 피어 전환 연결 해제 간격 - + Resets to default if empty 비어 있는 경우 기본값으로 재설정 - + DHT bootstrap nodes DHT 부트스트랩 노드 - + I2P inbound quantity I2P 인바운드 분량 - + I2P outbound quantity I2P 아웃바운드 분량 - + I2P inbound length I2P 인바운드 길이 - + I2P outbound length I2P 아웃바운드 길이 - + Display notifications 알림 표시 - + Display notifications for added torrents 추가된 토렌트에 대한 알림 화면표시 - + Download tracker's favicon 내려받기 트래커의 즐겨찾기 아이콘 - + Save path history length 저장 경로 목록 길이 - + Enable speed graphs 속도 그래프 활성화 - + Fixed slots 고정 슬롯 - + Upload rate based 올려주기 속도 기반 - + Upload slots behavior 올려주기 슬롯 동작 - + Round-robin 라운드 로빈 - + Fastest upload 가장 빠른 올려주기 - + Anti-leech 리치 방지 - + Upload choking algorithm 올려주기 억제 알고리즘 - + Confirm torrent recheck 토렌트 다시 검사 확인 - + Confirm removal of all tags 모든 태그 제거 확인 - + Always announce to all trackers in a tier 계층 내 모든 트래커에 항상 알리기 - + Always announce to all tiers 모든 계층에 항상 알리기 - + Any interface i.e. Any network interface 모든 인터페이스 - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP 혼합 모드 알고리즘 - + Resolve peer countries 피어 국가 분석 - + Network interface 네트워크 인터페이스 - + Optional IP address to bind to 결합할 선택적 IP 주소 - + Max concurrent HTTP announces 최대 동시 HTTP 알림 - + Enable embedded tracker 내장 트래커 활성화 - + Embedded tracker port 내장 트래커 포트 @@ -1382,142 +1393,142 @@ Invalid directory path - + 잘못된 디렉터리 경로 Directory does not exist - + 디렉터리 경로가 존재하지 않음 Invalid mode, allowed values: %1 - + 잘못된 모드, 허용되는 값: %1 cookies must be array - + 쿠키는 배열이어야 합니다 Application - + Running in portable mode. Auto detected profile folder at: %1 휴대 모드로 실행 중입니다. %1에서 프로필 폴더가 자동으로 탐지되었습니다. - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. 중복 명령줄 플래그가 감지됨: "%1". 포터블 모드는 상대적인 fastresume을 사용합니다. - + Using config directory: %1 사용할 구성 디렉터리: %1 - + Torrent name: %1 토렌트 이름: %1 - + Torrent size: %1 토렌트 크기: %1 - + Save path: %1 저장 경로: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds 토렌트가 %1에 내려받았습니다. - - + + Thank you for using qBittorrent. qBittorrent를 사용해 주셔서 감사합니다. - + Torrent: %1, sending mail notification 토렌트: %1, 알림 메일 전송 중 - + Add torrent failed 토렌트 추가 실패 - + Couldn't add torrent '%1', reason: %2. 토렌트 '%1'을(를) 추가할 수 없음, 이유 : %2. - + The WebUI administrator username is: %1 WebUI 관리자 사용자 이름: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 WebUI 관리자 비밀번호가 설정되지 않았습니다. 이 세션에 임시 비밀번호가 제공되었습니다: %1 - + You should set your own password in program preferences. 프로그램 환경설정에서 자신만의 비밀번호를 설정해야 합니다. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI가 비활성화되었습니다! WebUI를 활성화하려면 구성 파일을 수동으로 편집하세요. - + Running external program. Torrent: "%1". Command: `%2` 외부 프로그램을 실행 중입니다. 토렌트: "%1". 명령: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` 외부 프로그램을 실행하지 못했습니다. 토렌트: "%1". 명령: `%2` - + Torrent "%1" has finished downloading "%1" 토렌트 내려받기를 완료했습니다 - + WebUI will be started shortly after internal preparations. Please wait... WebUI는 내부 준비를 마친 후 곧 시작할 예정입니다. 기다려 주십시오... - - + + Loading torrents... 토렌트 불러오는 중... - + E&xit 종료(&X) - + I/O Error i.e: Input/Output Error I/O 오류 - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ 원인: %2 - + Torrent added 토렌트 추가됨 - + '%1' was added. e.g: xxx.avi was added. '%1'이(가) 추가되었습니다. - + Download completed 내려받기 완료됨 - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1이(가) 시작되었습니다. 프로세스 ID : %2 - + This is a test email. - + 이건 테스트 이메일입니다. - + Test email - + 테스트 이메일 - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' 내려받기를 완료했습니다. - + Information 정보 - + To fix the error, you may need to edit the config file manually. 오류를 수정하려면 구성 파일을 수동으로 편집해야 할 수 있습니다. - + To control qBittorrent, access the WebUI at: %1 qBittorrent를 제어하려면 다음에서 웹 UI에 접속: %1 - + Exit 종료 - + Recursive download confirmation 반복적으로 내려받기 확인 - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? 토렌트 '%1'에 .torrent 파일이 포함되어 있습니다. 내려받기를 계속하시겠습니까? - + Never 절대 안함 - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" 토렌트 내의 .torent 파일을 반복적으로 내려받기합니다. 원본 토렌트: "%1". 파일: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" 물리적 메모리(RAM) 사용량 제한을 설정하지 못했습니다. 오류 코드: %1. 오류 메시지: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" 물리적 메모리(RAM) 사용량 하드 제한을 설정하지 못했습니다. 요청된 크기: %1. 시스템 하드 제한: %2. 오류 코드: %3. 오류 메시지: "%4" - + qBittorrent termination initiated qBittorrent 종료가 시작되었습니다 - + qBittorrent is shutting down... qBittorrent가 종료되고 있습니다... - + Saving torrent progress... 토렌트 진행 상태 저장 중… - + qBittorrent is now ready to exit qBittorrent가 이제 종료할 준비가 되었습니다. @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 내보내기(&E)… - + Matches articles based on episode filter. 에피소드 필터를 기반으로 규약을 일치시킵니다. - + Example: 예시: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match 시즌 1의 2, 5, 8~15, 30 및 이후 에피소드와 일치됩니다 - + Episode filter rules: 에피소드 필터 규칙: - + Season number is a mandatory non-zero value 시즌 번호는 0이 아닌 값을 적어야 합니다 - + Filter must end with semicolon 필터는 쌍반점으로 끝나야 합니다 - + Three range types for episodes are supported: 에피소드에 대한 세 가지 범위 유형이 지원됩니다: - + Single number: <b>1x25;</b> matches episode 25 of season one 단일 번호: <b>1x25;</b> 시즌 1의 에피소드 25와 일치됩니다 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one 정상 범위: <b>1x25-40;</b> 가 시즌 1의 에피소드 25~40과 일치됩니다 - + Episode number is a mandatory positive value 에피소드 숫자는 양수여야 합니다 - + Rules 규칙 - + Rules (legacy) 규칙 (이전) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons 무한 범위: <b>1x25-;</b> 시즌 1의 회차 25 이후, 그리고 이후 시즌의 모든 회차를 찾습니다 - + Last Match: %1 days ago 최근 일치: %1일 전 - + Last Match: Unknown 최근 일치: 알 수 없음 - + New rule name 새 규칙 이름 - + Please type the name of the new download rule. 새 내려받기 규칙의 이름을 입력하십시오. - - + + Rule name conflict 규칙 이름 충돌 - - + + A rule with this name already exists, please choose another name. 같은 이름의 규칙이 있습니다. 다른 이름을 선정하십시오. - + Are you sure you want to remove the download rule named '%1'? '%1' 내려받기 규칙을 제거하시겠습니까? - + Are you sure you want to remove the selected download rules? 선택한 내려받기 규칙을 제거하시겠습니까? - + Rule deletion confirmation 규칙 삭제 확인 - + Invalid action 잘못된 동작 - + The list is empty, there is nothing to export. 목록이 비어 있으므로 내보낼 항목이 없습니다. - + Export RSS rules RSS 규칙 내보내기 - + I/O Error I/O 오류 - + Failed to create the destination file. Reason: %1 대상 파일을 만들지 못했습니다. 원인: %1 - + Import RSS rules RSS 규칙 가져오기 - + Failed to import the selected rules file. Reason: %1 선택한 규칙 파일을 가져오지 못했습니다. 원인: %1 - + Add new rule... 새 규칙 추가… - + Delete rule 규칙 삭제 - + Rename rule... 규칙 이름 바꾸기… - + Delete selected rules 선택한 규칙 삭제 - + Clear downloaded episodes... 내려받은 에피소드 지우기… - + Rule renaming 규칙 이름 바꾸기 - + Please type the new rule name 새 규칙 이름을 입력하십시오 - + Clear downloaded episodes 내려받은 에피소드 지우기 - + Are you sure you want to clear the list of downloaded episodes for the selected rule? 선택한 규칙으로 내려받은 에피소드 목록을 지우시겠습니까? - + Regex mode: use Perl-compatible regular expressions 정규표현식 모드: Perl 호환 정규표현식 사용 - - + + Position %1: %2 위치 %1: %2 - + Wildcard mode: you can use 와일드카드 모드: 사용 가능 - - + + Import error 가져오기 오류 - + Failed to read the file. %1 파일을 읽지 못했습니다. %1 - + ? to match any single character ? = 임의의 글자 하나와 일치 - + * to match zero or more of any characters * = 0개 이상의 모든 글자 - + Whitespaces count as AND operators (all words, any order) 공백 = AND 연산자 (모든 단어, 모든 순서) - + | is used as OR operator | = OR 연산자 - + If word order is important use * instead of whitespace. 단어 순서가 중요하다면 공백 대신 *를 사용하십시오. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) 빈 %1 절이 있는 표현식 (예: %2) - + will match all articles. 은(는) 모든 규약과 일치됩니다. - + will exclude all articles. 은(는) 모든 규약을 제외합니다. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 이어받기 데이터를 구문 분석할 수 없음: 잘못된 형식 - - + + Cannot parse torrent info: %1 토렌트 정보를 분석할 수 없음: %1 - + Cannot parse torrent info: invalid format 토렌트 정보를 분석할 수 없음: 잘못된 형식 - + Mismatching info-hash detected in resume data 이력 데이터에서 불일치하는 정보 해시 발견 - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. 토렌트 메타데이터를 '%1'에 저장할 수 없습니다. 오류: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. 토렌트 이어받기 데이터를 '%1'에 저장할 수 없습니다. 오류: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 이어받기 데이터를 분석할 수 없음: %1 - + Resume data is invalid: neither metadata nor info-hash was found 이어받기 데이터가 잘못되었습니다. 메타데이터나 정보 해시를 찾을 수 없습니다. - + Couldn't save data to '%1'. Error: %2 데이터를 '%1'에 저장할 수 없습니다. 오류: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. 찾지 못했습니다. - + Couldn't load resume data of torrent '%1'. Error: %2 토렌트 '%1'의 이어받기 데이터를 불러올 수 없습니다. 오류: %2 - - + + Database is corrupted. 데이터베이스가 손상되었습니다. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. WAL(Write-Ahead Logging) 저널링 모드를 활성화할 수 없습니다. 오류: %1. - + Couldn't obtain query result. 쿼리 결과를 확인할 수 없습니다. - + WAL mode is probably unsupported due to filesystem limitations. 파일 시스템 제한으로 인해 WAL 모드가 지원되지 않을 수 있습니다. - + + + Cannot parse resume data: %1 + 이어받기 데이터를 분석할 수 없음: %1 + + + + + Cannot parse torrent info: %1 + 토렌트 정보를 분석할 수 없음: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 트랜잭션을 시작할 수 없습니다. 오류: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. 토렌트 메타데이터를 저장할 수 없습니다. 오류: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 토렌트 '%1'의 이어받기 데이터를 저장할 수 없습니다. 오류: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 토렌트 '%1'의 이어받기 데이터를 삭제할 수 없습니다. 오류: %2 - + Couldn't store torrents queue positions. Error: %1 토렌트 대기열 위치를 저장할 수 없습니다. 오류: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 분산 해시 테이블(DHT) 지원: %1 - - - - - - - - - + + + + + + + + + ON 켜짐 - - - - - - - - - + + + + + + + + + OFF 꺼짐 - - + + Local Peer Discovery support: %1 로컬 피어 찾기 지원: %1 - + Restart is required to toggle Peer Exchange (PeX) support 피어 익스체인지(PeX) 지원을 전환하려면 다시 시작해야 합니다 - + Failed to resume torrent. Torrent: "%1". Reason: "%2" 토렌트를 이어받지 못했습니다. 토렌트: "%1". 원인: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" 토렌트 이어받기 실패: 일치하지 않는 토렌트 ID가 감지되었습니다. 토렌트: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" 일치하지 않는 데이터 감지됨: 구성 파일에서 범주가 누락되었습니다. 범주는 복구되지만 해당 설정은 기본값으로 재설정됩니다. 토렌트: "%1". 범주: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" 일치하지 않는 데이터 감지됨: 잘못된 범주입니다. 토렌트: "%1". 범주: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" 복구된 범주의 저장 경로와 토렌트의 현재 저장 경로 간의 불일치가 감지되었습니다. 지금부터 토렌트가 수동 모드로 전환되었습니다. 토렌트: "%1". 범주: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" 일치하지 않는 데이터 감지됨: 구성 파일에서 태그가 누락되었습니다. 태그가 복구됩니다. 토렌트: "%1". 태그: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" 일치하지 않는 데이터 감지됨: 잘못된 태그입니다. 토렌트: "%1". 태그: "%2" - + System wake-up event detected. Re-announcing to all the trackers... 시스템 깨우기 이벤트가 감지되었습니다. 모든 트래커에게 다시 알립니다... - + Peer ID: "%1" 피어 ID: "%1" - + HTTP User-Agent: "%1" HTTP 사용자-에이전트: "%1" - + Peer Exchange (PeX) support: %1 피어 익스체인지(PeX) 지원: %1 - - + + Anonymous mode: %1 익명 모드: %1 - - + + Encryption support: %1 암호화 지원: %1 - - + + FORCED 강제 적용됨 - + Could not find GUID of network interface. Interface: "%1" 네트워크 인터페이스의 GUID를 찾을 수 없습니다. 인터페이스: "%1" - + Trying to listen on the following list of IP addresses: "%1" 다음 IP 주소 목록에서 수신하기 위해 시도하는 중: "%1" - + Torrent reached the share ratio limit. 토렌트가 공유 비율 제한에 도달했습니다. - + Torrent: "%1". 토렌트: "%1". - Removed torrent. - 토렌트를 제거했습니다. - - - Removed torrent and deleted its content. - 토렌트를 제거하고 내용을 삭제했습니다. - - - Torrent paused. - 토렌트가 일시정지되었습니다. - - - + Super seeding enabled. 초도 배포가 활성화되었습니다. - + Torrent reached the seeding time limit. 토렌트가 배포 제한 시간에 도달했습니다. - + Torrent reached the inactive seeding time limit. 토렌트가 비활성 시드 시간 제한에 도달했습니다. - + Failed to load torrent. Reason: "%1" 토렌트를 불러오지 못했습니다. 원인: "%1" - + I2P error. Message: "%1". I2P 오류. 메시지: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP 지원: 켬 - + Saving resume data completed. - + 이력 데이터 저장이 완료되었습니다. - + BitTorrent session successfully finished. - + BitTorrent 세션이 성공적으로 완료되었습니다. - + Session shutdown timed out. - + 세션 종료 시간이 초과되었습니다. - + Removing torrent. - + 토렌트를 제거합니다. - + Removing torrent and deleting its content. - + 토렌트 및 내용을 제거합니다. - + Torrent stopped. - + 토렌트가 중지되었습니다. - + Torrent content removed. Torrent: "%1" - + 토렌트 내용이 제거되었습니다. 토렌트: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + 토렌트 내용을 제거하지 못했습니다. 토렌트: "%1". 오류: "%2" - + Torrent removed. Torrent: "%1" - + 토렌트가 제거되었습니다. 토렌트: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + 중복된 토렌트를 추가하려는 시도를 감지했습니다. 기존 토런트 : %1. 결과 : %2 - + Merging of trackers is disabled - 트래커 병합이 비활성화됨 + 트래커 병합이 비활성화됨 - + Trackers cannot be merged because it is a private torrent - 비공개 토렌트이기 때문에 트래커를 병합할 수 없음 + 비공개 토렌트이기 때문에 트래커를 병합할 수 없음 - + Trackers are merged from new source - 새 소스에서 트래커가 병합됨 + 새 소스에서 트래커가 병합됨 - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP 지원: 끔 - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" 토렌트를 내보내지 못했습니다. 토렌트: "%1". 대상: %2. 원인: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 이어받기 데이터 저장을 중단했습니다. 미해결 토렌트 수: %1 - + The configured network address is invalid. Address: "%1" 구성된 네트워크 주소가 잘못되었습니다. 주소: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" 수신 대기하도록 구성된 네트워크 주소를 찾지 못했습니다. 주소: "%1" - + The configured network interface is invalid. Interface: "%1" 구성된 네트워크 인터페이스가 잘못되었습니다. 인터페이스: "%1" - + Tracker list updated - + 트래커 목록 업데이트 - + Failed to update tracker list. Reason: "%1" - + 트랙커 목록을 업데이트하지 못했습니다. 이유: “%1” - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" 금지된 IP 주소 목록을 적용하는 동안 잘못된 IP 주소를 거부했습니다. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" 토렌트에 트래커를 추가했습니다. 토렌트: "%1". 트래커: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" 토렌트에서 트래커를 제거했습니다. 토렌트: "%1". 트래커: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" 토렌트에 URL 배포를 추가했습니다. 토렌트: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" 토렌트에서 URL 배포를 제거했습니다. 토렌트: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + 조각 파일을 제거하지 못했습니다. 토런트 : "%1". 이유 : "%2". - Torrent paused. Torrent: "%1" - 토렌트가 일시정지되었습니다. 토렌트: "%1" - - - + Torrent resumed. Torrent: "%1" 토렌트가 이어받기되었습니다. 토렌트: "%1" - + Torrent download finished. Torrent: "%1" 토렌트 내려받기를 완료했습니다. 토렌트: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" 토렌트 이동이 취소되었습니다. 토렌트: "%1". 소스: "%2". 대상: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + 토렌트가 정지되었습니다. 토렌트: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination 토렌트 이동을 대기열에 넣지 못했습니다. 토렌트: "%1". 소스: "%2". 대상: "%3". 원인: 현재 토렌트가 대상으로 이동 중입니다 - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location 토렌트 이동을 대기열에 넣지 못했습니다. 토렌트: "%1". 소스: "%2" 대상: "%3". 원인: 두 경로 모두 동일한 위치를 가리킵니다 - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" 대기열에 있는 토렌트 이동입니다. 토렌트: "%1". 소스: "%2". 대상: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" 토렌트 이동을 시작합니다. 토렌트: "%1". 대상: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" 범주 구성을 저장하지 못했습니다. 파일: "%1". 오류: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" 범주 구성을 분석하지 못했습니다. 파일: "%1". 오류: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IP 필터 파일을 성공적으로 분석했습니다. 적용된 규칙 수: %1 - + Failed to parse the IP filter file IP 필터 파일을 분석하지 못했습니다 - + Restored torrent. Torrent: "%1" 토렌트를 복원했습니다. 토렌트: "%1" - + Added new torrent. Torrent: "%1" 새로운 토렌트를 추가했습니다. 토렌트: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" 토렌트 오류가 발생했습니다. 토렌트: "%1". 오류: "%2" - Removed torrent. Torrent: "%1" - 토렌트를 제거했습니다. 토렌트: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - 토렌트를 제거하고 내용을 삭제했습니다. 토렌트: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" 토렌트에 SSL 매개변수가 누락되었음. 토렌트: "%1". 메시지: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" 파일 오류 경고입니다. 토렌트: "%1". 파일: "%2" 원인: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP 포트 매핑에 실패했습니다. 메시지: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP 포트 매핑에 성공했습니다. 메시지: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP 필터 - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). 필터링된 포트 (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). 특별 허가된 포트 (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL 시드 연결에 실패했습니다. 토렌트: “%1”. URL: “%2”. 오류: “%3” - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent 세션에 심각한 오류가 발생했습니다. 이유: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 프록시 오류입니다. 주소: %1. 메시지: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 혼합 모드 제한 - + Failed to load Categories. %1 범주를 불러오지 못했습니다. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" 범주 구성을 불러오지 못했습니다. 파일: "%1". 오류: "잘못된 데이터 형식" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - 토렌트를 제거했지만 해당 콘텐츠 및/또는 파트파일을 삭제하지 못했습니다. 토렌트: "%1". 오류: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 비활성화됨 - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 비활성화됨 - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL 배포 DNS를 조회하지 못했습니다. 토렌트: "%1". URL: "%2". 오류: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" URL 배포에서 오류 메시지를 수신했습니다. 토렌트: "%1". URL: "%2". 메시지: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" IP에서 성공적으로 수신 대기 중입니다. IP: "%1". 포트: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" IP 수신에 실패했습니다. IP: "%1" 포트: %2/%3. 원인: "%4" - + Detected external IP. IP: "%1" 외부 IP를 감지했습니다. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" 오류: 내부 경고 대기열이 가득 차서 경고가 삭제되었습니다. 성능이 저하될 수 있습니다. 삭제된 경고 유형: "%1". 메시지: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" 토렌트를 성공적으로 이동했습니다. 토렌트: "%1". 대상: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" 토렌트를 이동하지 못했습니다. 토렌트: "%1". 소스: "%2". 대상: %3. 원인: "%4" @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 파일에 쓸 수 없습니다. 원인: %1. 토렌트는 이제 "올려주기 전용" 모드입니다. - + Download first and last piece first: %1, torrent: '%2' 처음과 마지막 조각 먼저 내려받기: %1, 토렌트: '%2' - + On 켜기 - + Off 끄기 - + Failed to reload torrent. Torrent: %1. Reason: %2 토렌트를 다시 불러오지 못했습니다. 토렌트: "%1". 사유: "%2" - + Generate resume data failed. Torrent: "%1". Reason: "%2" 이어받기 데이터를 생성하지 못했습니다. 토렌트: "%1". 원인: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" 토렌트를 복원하지 못했습니다. 파일이 이동했거나 저장소에 접속할 수 없습니다. 토렌트: %1. 원인: %2 - + Missing metadata 누락된 메타데이터 - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" 파일 이름 바꾸기 실패. 토렌트: "%1". 파일: "%2", 원인: "%3" - + Performance alert: %1. More info: %2 성능 경고: %1. 추가 정보: %2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' 환경 변수 '%1'에 정수가 있어야 하지만 '%2'(이)가 있습니다 - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - 매개변수 '%1'은(는) '%1=%2' 구문을 따라야 합니다 - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - 매개변수 '%1'은(는) '%1=%2' 구문을 따라야 합니다 + 매개변수 '%1'은(는) '%1=%2' 구문을 따라야 합니다 @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - 시작 또는 일시정지된 토렌트 추가 + 토렌트를 실행 또는 중단 상태로 추가 @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + 토렌트 시작 Stop torrents - - - - Resume torrents - 토렌트 이어받기 - - - Pause torrents - 토렌트 일시정지 + 토렌트 정지 @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + 시스템 @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - 또한 파일을 영구적으로 삭제합니다 + 내용 파일 또한 제거 @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + 패턴 형식 Plain text - + 평문 Wildcards - + 와일드카드 Regular expression - + 정규표현식 GUIAddTorrentManager - + Downloading torrent... Source: "%1" 토렌트 내려받는 중... 소스 : "%1" - Trackers cannot be merged because it is a private torrent - 비공개 토렌트이기 때문에 트래커를 병합할 수 없음 - - - + Torrent is already present 토렌트가 이미 존재합니다 - + Trackers cannot be merged because it is a private torrent. - + 비공개 토렌트이기 때문에 트래커를 병합할 수 없습니다. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? '%1' 토렌트가 이미 전송 목록에 있습니다. 새 소스의 트래커를 병합하시겠습니까? @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 지원되는 이미지 파일 + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + 전원 관리에서 적합한 D-Bus 인터페이스를 찾았습니다. 인터페이스 : %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + 전원 관리 오류입니다. 작업 : %1. 오류 : %2 + + + + Power management unexpected error. State: %1. Error: %2 + 전원 관리 예기치 않은 오류가 발생했습니다. 상태 : %1. 오류 : %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... 옵션(&O)… - - &Resume - 이어받기(&R) - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + 시스템 종료(&U) @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window 창 닫기 - - R&esume All - 모두 이어받기(&E) - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + 시작(&R) Sto&p - + 정지(&P) R&esume Session - + 세션 재개(&E) Pau&se Session - + 세션 일시정지(&S) @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System 시스템 최대 절전모드(&H) - - S&hutdown System - 시스템 전원 끄기(&H) - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About 정보(&A) - - &Pause - 일시정지(&P) - - - P&ause All - 모두 일시정지(&A) - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 표시 - + Check for program updates 프로그램 업데이트 확인 @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also qBittorrent가 마음에 든다면 기부하세요! - + Execution Log 실행 로그 - + Clear the password 암호 지우기 - + &Set Password 암호 설정(&S) - + Preferences 환경설정 - + &Clear Password 암호 지우기(&C) - + Transfers 전송 - - + + qBittorrent is minimized to tray 알림 영역으로 최소화 - - - + + + This behavior can be changed in the settings. You won't be reminded again. 이 동작은 설정에서 변경할 수 있으며 다시 알리지 않습니다. - + Icons Only 아이콘만 - + Text Only 이름만 - + Text Alongside Icons 아이콘 옆 이름 - + Text Under Icons 아이콘 아래 이름 - + Follow System Style 시스템 스타일에 따름 - - + + UI lock password UI 잠금 암호 - - + + Please type the UI lock password: UI 잠금 암호를 입력하십시오: - + Are you sure you want to clear the password? 암호를 지우시겠습니까? - + Use regular expressions 정규표현식 사용 - - + + Search Engine - 검색 엔진 + 검색 엔진 - + Search has failed - 검색이 실패했습니다 + 검색이 실패했습니다 - + Search has finished - 검색이 완료되었습니다 + 검색이 완료되었습니다 - + Search 검색 - + Transfers (%1) 전송 (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent가 방금 업데이트되었으며 변경 사항을 적용하려면 다시 시작해야 합니다. - + qBittorrent is closed to tray 종료하지 않고 알림 영역으로 최소화 - + Some files are currently transferring. 현재 파일 전송 중입니다. - + Are you sure you want to quit qBittorrent? qBittorrent를 종료하시겠습니까? - + &No 아니요(&N) - + &Yes 예(&Y) - + &Always Yes 항상 예(&A) - + Options saved. 옵션이 저장되었습니다. - + [PAUSED] %1 %1 is the rest of the window title - + [일시정지됨] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D : %1, U : %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Python 설치 프로그램을 다운로드할 수 없습니다. 오류: %1. +수동으로 설치하세요. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python 설치 프로그램의 이름을 바꾸지 못했습니다. 소스: “%1”. 대상: “%2”. - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python 설치에 성공했습니다. + Exit code: %1. + 종료 코드: %1. + + + + Reason: installer crashed. + 이유: 설치 프로그램이 충돌했습니다. + + + Python installation failed. - + Python 설치에 실패했습니다. - + Launching Python installer. File: "%1". - + Python 설치 프로그램을 시작합니다. 파일: "%1". - - + + Missing Python Runtime Python 런타임 누락 - + qBittorrent Update Available qBittorrent 업데이트 사용 가능 - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? 검색 엔진을 사용하기 위해서는 Python이 필요하지만 설치되지 않은 것 같습니다. 지금 설치하시겠습니까? - + Python is required to use the search engine but it does not seem to be installed. 검색 엔진을 사용하기 위해서는 Python이 필요하지만 설치되지 않은 것 같습니다. - - + + Old Python Runtime 오래된 Python 런타임 - + A new version is available. 새 버전을 사용할 수 있습니다. - + Do you want to download %1? %1을(를) 내려받기하시겠습니까? - + Open changelog... 변경 내역 열기… - + No updates available. You are already using the latest version. 사용 가능한 업데이트가 없습니다. 이미 최신 버전을 사용하고 있습니다. - + &Check for Updates 업데이트 확인(&C) - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Python 버전(%1)이 오래되었습니다. 최소 요구 사항: %2. 지금 최신 버전을 설치하시겠습니까? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Python 버전(%1)이 오래되었습니다. 검색 엔진을 사용하려면 최신 버전으로 업그레이드하십시오. 최소 요구 사항: %2. - + Paused - 일시정지됨 + 일시정지됨 - + Checking for Updates... 업데이트 확인 중… - + Already checking for program updates in the background 이미 백그라운드에서 프로그램 업데이트를 확인 중입니다 - + Python installation in progress... - + Python 설치 진행 중... - + Failed to open Python installer. File: "%1". - + Python 설치 프로그램을 열지 못했습니다. 파일: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python 설치 프로그램에 대한 MD5 해시 검사에 실패했습니다. 파일: "%1". 결과 해시: "%2". 예상 해시: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python 설치 프로그램에 대한 SHA3-512 해시 검사에 실패했습니다. 파일: "%1". 결과 해시: "%2". 예상 해시: "%3". - + Download error 내려받기 오류 - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python 설치 파일을 내려받을 수 없습니다. 원인: %1. -직접 설치하십시오. - - - - + + Invalid password 잘못된 암호 - + Filter torrents... 토렌트 필터링... - + Filter by: 필터링 기준: - + The password must be at least 3 characters long 비밀번호는 3자 이상이어야 합니다 - - - + + + RSS (%1) RSS (%1) - + The password is invalid 암호가 올바르지 않습니다 - + DL speed: %1 e.g: Download speed: 10 KiB/s DL 속도: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s UP 속도: %1 - + Hide 숨김 - + Exiting qBittorrent qBittorrent 종료 중 - + Open Torrent Files 토렌트 파일 열기 - + Torrent Files 토렌트 파일 @@ -4556,7 +4561,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + SSL 오류, URL : "%1", 오류 : "%2" @@ -5853,47 +5858,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 연결 실패, 인식할 수 없는 응답: %1 - + Authentication failed, msg: %1 인증 실패, 메시지: %1 - + <mail from> was rejected by server, msg: %1 <mail from>(이)가 서버에서 거부되었습니다. 메시지: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to>(이)가 서버에서 거부되었습니다. 메시지: %1 - + <data> was rejected by server, msg: %1 <data>(이)가 서버에서 거부되었습니다. 메시지: %1 - + Message was rejected by the server, error: %1 서버에서 메시지를 거부했습니다. 오류: %1 - + Both EHLO and HELO failed, msg: %1 EHLO와 HELO 모두 실패함. 메시지: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP 서버가 지원되는 [CRAM-MD5|PLAIN|LOGIN] 인증 모드를 지원하지 않는 것 같습니다. 인증이 실패할 가능성이 높기 때문에 건너뜁니다. 서버 인증 모드: %1 - + Email Notification Error: %1 이메일 알림 오류: %1 @@ -5935,10 +5940,6 @@ Please install it manually. RSS RSS - - Web UI - 웹 UI - Advanced @@ -5959,14 +5960,6 @@ Please install it manually. Confirm when deleting torrents 토렌트를 삭제할 때 확인 - - Shows a confirmation dialog upon pausing/resuming all the torrents - 모든 토렌트를 일시정지/이어받기할 때 확인 대화상자를 표시합니다 - - - Confirm "Pause/Resume all" actions - '모두 일시정지/이어받기' 작업 확인 - Use alternating row colors @@ -5983,10 +5976,6 @@ Please install it manually. Always 항상 - - Paused torrents only - 일시정지한 토렌트만 - Action on double-click @@ -5997,10 +5986,6 @@ Please install it manually. Downloading torrents: 내려받는 중인 토렌트: - - Start / Stop Torrent - 토렌트 시작/중지 - @@ -6059,179 +6044,179 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: 토렌트 내용 배치: - + Original 원본 - + Create subfolder 하위 폴더 만들기 - + Don't create subfolder 하위 폴더 만들지 않기 - + The torrent will be added to the top of the download queue 토렌트가 내려받기 대기열의 맨 위에 추가됩니다 - + Add to top of queue The torrent will be added to the top of the download queue 대기열 맨 위에 추가 - + When duplicate torrent is being added 중복 토렌트가 추가되는 경우 - + Merge trackers to existing torrent 트래커를 기존 토렌트에 병합 - + Keep unselected files in ".unwanted" folder 선택하지 않은 파일을 ".unwanted" 폴더에 보관하기 - + Add... 추가… - + Options.. 옵션… - + Remove 제거 - + Email notification &upon download completion 내려받기가 완료되면 이메일로 알림(&U) - + Send test email - + 테스트 이메일 보내기 - + Run on torrent added: - + 토렌트에서 실행이 추가되었습니다: - + Run on torrent finished: - + 토렌트에서 실행 완료: - + Peer connection protocol: 피어 연결 프로토콜: - + Any 전체 - + I2P (experimental) I2P (실험적) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>&quot;혼합 모드&quot;를 활성화하면 I2P 토렌트는 트래커가 아닌 다른 소스에서 피어를 가져올 수 있으며 익명화를 제공하지 않고 일반 IP에 연결할 수 있습니다. 이 모드는 사용자가 I2P 익명화에는 관심이 없지만 I2P 피어에 연결할 수 있기를 원하는 경우에 유용할 수 있습니다.</p></body></html> - - - + Mixed mode 혼합 모드 - Some options are incompatible with the chosen proxy type! - 일부 옵션은 선택한 프록시 유형과 호환되지 않습니다! + 일부 옵션은 선택한 프록시 유형과 호환되지 않습니다! - + If checked, hostname lookups are done via the proxy 체크하면, 프록시를 통해 호스트 이름 조회가 수행됩니다 - + Perform hostname lookup via proxy 프록시를 통한 호스트 이름 조회 수행 - + Use proxy for BitTorrent purposes BitTorrent 용도로 프록시 사용 - + RSS feeds will use proxy RSS 피드는 프록시를 사용합니다 - + Use proxy for RSS purposes RSS 용도로 프록시 사용 - + Search engine, software updates or anything else will use proxy 검색 엔진, 소프트웨어 업데이트 또는 기타 모든 항목은 프록시를 사용합니다 - + Use proxy for general purposes 일반적인 용도로 프록시 사용 - + IP Fi&ltering IP 필터링(&l) - + Schedule &the use of alternative rate limits 대체 속도 제한 사용 예정(&T) - + From: From start time 발신: - + To: To end time 수신: - + Find peers on the DHT network DHT 네트워크에서 피어를 찾습니다 - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Disable encryption: Only connect to peers without protocol encryption 암호화 비활성화: 프로토콜 암호화 없이 피어에만 연결 - + Allow encryption 암호화 허용 - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">더 많은 정보</a>) - + Maximum active checking torrents: 최대 활성 확인 토렌트: - + &Torrent Queueing 토렌트 대기열(&T) - + When total seeding time reaches 총 시딩 시간에 도달한 경우 - + When inactive seeding time reaches 비활성 시딩 시간에 도달한 경우 - A&utomatically add these trackers to new downloads: - 새 내려받기에 자동 추가할 트래커(&U): - - - + RSS Reader RSS 리더 - + Enable fetching RSS feeds RSS 피드 가져오기 활성화 - + Feeds refresh interval: 피드 갱신 간격: - + Same host request delay: 동일 호스트 요청 지연 시간: - + Maximum number of articles per feed: 피드당 최대 규약 수: - - - + + + min minutes - + Seeding Limits 배포 제한 - Pause torrent - 토렌트 일시정지 - - - + Remove torrent 토렌트 제거 - + Remove torrent and its files 토렌트 및 파일 제거 - + Enable super seeding for torrent 토렌트에 대해 초도 배포 활성화 - + When ratio reaches 비율에 도달했을 때 - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + 토렌트 정지 - + A&utomatically append these trackers to new downloads: - + 이 트래커들을 새 다운로드에 자동으로 추가(&U): - + Automatically append trackers from URL to new downloads: - + URL에서 새 다운로드에 트래커를 자동으로 추가: - + URL: - URL: + URL: - + Fetched trackers - + 가져온 트래커 - + Search UI - + 검색 UI - + Store opened tabs - + 열린 탭 저장 - + Also store search results - + 검색 결과 저장 - + History length - + 기록 길이 - + RSS Torrent Auto Downloader RSS 토렌트 자동 내려받기 도구 - + Enable auto downloading of RSS torrents RSS 자동 내려받기 활성화 - + Edit auto downloading rules... 자동 내려받기 규칙 편집… - + RSS Smart Episode Filter RSS 스마트 에피소드 필터 - + Download REPACK/PROPER episodes REPACK/PROPER된 에피소드 내려받기 - + Filters: 필터: - + Web User Interface (Remote control) 웹 인터페이스 (원격 제어) - + IP address: IP 주소: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ IPv4나 IPV6 주소를 지정하십시오. IPv4 주소에 "0.0.0.0"을 또는 IPV4/IPv6 모두 "*"를 지정할 수 있습니다. - + Ban client after consecutive failures: 클라이언트를 차단할 연속 시도 횟수: - + Never 절대 안함 - + ban for: 차단할 시간: - + Session timeout: 세션 만료 시간: - + Disabled 비활성화됨 - Enable cookie Secure flag (requires HTTPS) - 쿠키 보안 플래그 활성화 (HTTPS 필요) - - - + Server domains: 서버 도메인: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ DNS 재결합 공격을 방어하기 위해 ';'를 사용해서 항목을 구분하며 와일드카드 '*'를 사용할 수 있습니다. - + &Use HTTPS instead of HTTP HTTP 대신 HTTPS 사용(&U) - + Bypass authentication for clients on localhost localhost의 클라이언트에 대한 인증 우회 - + Bypass authentication for clients in whitelisted IP subnets 허용 목록에 있는 IP 서브넷의 클라이언트에 대한 인증 우회 - + IP subnet whitelist... IP 서브넷 허용 목록… - + Use alternative WebUI - + 대체 WebUI 사용 - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. 전달된 클라이언트 주소(X-Forwarded-헤더의 경우)를 사용하려면 역방향 프록시 IP(또는 서브넷, 예: 0.0.0.0/24)를 지정합니다. 여러 항목을 분할하려면 ';'를 사용하십시오. - + Upda&te my dynamic domain name 내 동적 도메인 이름 업데이트(&T) @@ -6519,12 +6502,12 @@ DNS 재결합 공격을 방어하기 위해 Search - 검색 + 검색 WebUI - + WebUI @@ -6539,29 +6522,29 @@ DNS 재결합 공격을 방어하기 위해 Style: - + 스타일 : Color scheme: - + 색 구성표 : Stopped torrents only - + 정지된 토렌트만 Start / stop torrent - + 토렌트 시작 / 중지 Open torrent options dialog - + 토렌트 옵션 대화 상자 열기 @@ -6602,7 +6585,7 @@ DNS 재결합 공격을 방어하기 위해 &Log Files - + 로그 파일(&L) @@ -6620,99 +6603,99 @@ DNS 재결합 공격을 방어하기 위해 다음 기간보다 오래된 백업 로그 삭제: - + Show external IP in status bar - + 상태 표시줄에 외부 IP 표시 - + When adding a torrent 토렌트를 추가할 때 - + Bring torrent dialog to the front 토렌트 창을 맨 앞으로 가져오기 - + The torrent will be added to download list in a stopped state - + 토렌트가 다운로드 목록에 정지 상태로 추가될 것입니다. - + Also delete .torrent files whose addition was cancelled 또한 추가가 취소된 .torrent 파일을 삭제합니다 - + Also when addition is cancelled 또한 추가가 취소된 경우에도 삭제 - + Warning! Data loss possible! 경고! 데이터를 잃을 수 있습니다! - + Saving Management 저장 관리 - + Default Torrent Management Mode: 기본 토렌트 관리 모드: - + Manual 수동 - + Automatic 자동 - + When Torrent Category changed: 토렌트 범주가 바뀌었을 때: - + Relocate torrent 토렌트 위치 이동 - + Switch torrent to Manual Mode 토렌트를 수동 모드로 전환 - - + + Relocate affected torrents 영향 받는 토렌트 이동 - - + + Switch affected torrents to Manual Mode 영향 받는 토렌트를 수동 모드로 전환 - + Use Subcategories 하위 범주 사용 - + Default Save Path: 기본 저장 경로: - + Copy .torrent files to: .torrent 파일을 복사할 경로: @@ -6722,26 +6705,22 @@ DNS 재결합 공격을 방어하기 위해 알림 영역에 qBittorrent 아이콘 표시(&Q) - &Log file - 로그 파일(&L) - - - + Display &torrent content and some options 토렌트 내용 및 일부 옵션 표시(&T) - + De&lete .torrent files afterwards 완료 후 .torrent 파일 삭제(&L) - + Copy .torrent files for finished downloads to: 다운로드 완료된 .torrent 파일을 복사할 경로: - + Pre-allocate disk space for all files 모든 파일에 디스크 공간 미리 할당 @@ -6771,10 +6750,6 @@ DNS 재결합 공격을 방어하기 위해 Preview file, otherwise open destination folder 파일 미리보기, 그렇지 않으면 대상 폴더 열기 - - Show torrent options - 토렌트 옵션 표시 - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ DNS 재결합 공격을 방어하기 위해 - + Log performance warnings 성능 경고 로그 - The torrent will be added to download list in a paused state - 일시정지된 상태에서 토렌트가 내려받기 목록에 추가됩니다 - - - + Do not start the download automatically The torrent will be added to download list in a stopped state 자동으로 내려받지 않음 - + Whether the .torrent file should be deleted after adding it .torrent 파일을 추가한 후 삭제할지 여부 - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. 조각화를 최소화하기 위해 내려받기를 시작하기 전에 디스크에 전체 파일 크기를 할당합니다. HDD에만 유용합니다. - + Append .!qB extension to incomplete files 내려받기 중인 파일에 .!qB 확장자 덧붙이기 - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it 토렌트가 내려받기되면, 그 안에 있는 .torrent 파일에서 토렌트를 추가하도록 제안합니다 - + Enable recursive download dialog 반복적으로 내려받기 창 활성화 - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually 자동: 여러 토렌트 속성(예: 저장 경로)은 관련 범주에 따라 결정됩니다 수동: 여러 토렌트 속성(예: 저장 경로)을 수동으로 할당해야 합니다 - + When Default Save/Incomplete Path changed: 기본 저장/불완전 경로가 변경된 경우: - + When Category Save Path changed: 범주 저장 경로가 바뀌었을 때: - + Use Category paths in Manual Mode 수동 모드에서 범주 경로 사용 - + Resolve relative Save Path against appropriate Category path instead of Default one 기본 경로 대신 적절한 범주 경로에 대해 상대 저장 경로를 확인합니다 @@ -6922,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually시작 시 qBittorrent 창 상태 - + Torrent stop condition: 토렌트 중지 조건: - - + + None 없음 - - + + Metadata received 수신된 메타데이터 - - + + Files checked 파일 확인됨 - + Ask for merging trackers when torrent is being added manually 토렌트를 수동으로 추가할 때 트래커 병합 요청 - + Use another path for incomplete torrents: 불완전한 토렌트에 다른 경로 사용: - + Automatically add torrents from: 토렌트를 자동 추가할 경로: - + Excluded file names 제외된 파일 이름 - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: 정확한 파일 이름을 필터링합니다. readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링하지만, 'readme10.txt'는 필터링하지 않습니다. - + Receiver 받는사람 - + To: To receiver 받는사람: - + SMTP server: SMTP 서버: - + Sender 보낸사람 - + From: From sender 보낸사람: - + This server requires a secure connection (SSL) 이 서버는 보안 연결(SSL)이 필요합니다 - - + + Authentication 인증 - - - - + + + + Username: 사용자 이름: - - - - + + + + Password: 암호: - + Run external program 외부 프로그램 실행 - Run on torrent added - 추가된 토렌트에서 실행 - - - Run on torrent finished - 완료된 토렌트에서 실행 - - - + Show console window 콘솔 창 표시 - + TCP and μTP TCP 및 μTP - + Listening Port 수신 포트 - + Port used for incoming connections: 수신 연결에 사용되는 포트: - + Set to 0 to let your system pick an unused port 시스템이 사용하지 않는 포트를 선택하도록 하려면 0으로 설정하십시오 - + Random 무작위 - + Use UPnP / NAT-PMP port forwarding from my router 라우터에서 포트 포워딩하기 위해 UPnP / NAT-PMP 사용 - + Connections Limits 연결 제한 - + Maximum number of connections per torrent: 토렌트당 최대 연결: - + Global maximum number of connections: 전역 최대 연결: - + Maximum number of upload slots per torrent: 토렌트당 최대 올려주기 슬롯: - + Global maximum number of upload slots: 전역 최대 올려주기 슬롯: - + Proxy Server 프록시 서버 - + Type: 형식: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: 호스트: - - - + + + Port: 포트: - + Otherwise, the proxy server is only used for tracker connections 설정하지 않으면 프록시 서버는 트래커 연결에만 사용됩니다. - + Use proxy for peer connections 피어 연결에 프록시 사용 - + A&uthentication 인증(&A) - Info: The password is saved unencrypted - 정보: 암호는 평문으로 저장됩니다 + 정보: 암호는 평문으로 저장됩니다 - + Filter path (.dat, .p2p, .p2b): 필터 경로 (.dat, .p2p, .p2b): - + Reload the filter 필터 다시 불러오기 - + Manually banned IP addresses... 직접 차단한 IP 주소… - + Apply to trackers 트래커에 적용 - + Global Rate Limits 전역 속도 제한 - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: 올려주기: - - + + Download: 내려받기: - + Alternative Rate Limits 대체 속도 제한 - + Start time 시작 시간 - + End time 종료 시간 - + When: 시기: - + Every day 매일 - + Weekdays 평일 - + Weekends 주말 - + Rate Limits Settings 속도 제한 설정 - + Apply rate limit to peers on LAN LAN 피어에 속도 제한 적용 - + Apply rate limit to transport overhead 오버헤드 전송에 속도 제한 적용 - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>“혼합 모드”를 활성화하면 I2P 토렌트는 트래커가 아닌 다른 소스에서 피어를 가져와 일반 IP에 연결할 수 있으며 익명화를 제공하지 않습니다. 이 모드는 사용자가 I2P 익명화에 관심이 없지만 I2P 피어에 연결할 수 있기를 원하는 경우에 유용할 수 있습니다.</p></body></html> - + Apply rate limit to µTP protocol μTP 프로토콜에 속도 제한 적용 - + Privacy 개인 정보 - + Enable DHT (decentralized network) to find more peers DHT(분산 네트워크)를 활성화하여 더 많은 피어 찾기 - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) 호환 BitTorrent 클라이언트(µTorrent, Vuze 등)와 피어 교환 - + Enable Peer Exchange (PeX) to find more peers 피어 교환(PeX)을 활성화하여 더 많은 피어 찾기 - + Look for peers on your local network 로컬 네트워크 피어 찾기 - + Enable Local Peer Discovery to find more peers 로컬 피어 찾기를 활성화해서 더 많은 피어 찾기 - + Encryption mode: 암호화 모드: - + Require encryption 암호화 필요 - + Disable encryption 암호화 비활성화 - + Enable when using a proxy or a VPN connection 프록시나 VPN 연결을 이용할 때 활성화 - + Enable anonymous mode 익명 모드 활성화 - + Maximum active downloads: 최대 내려받기: - + Maximum active uploads: 최대 올려주기: - + Maximum active torrents: 최대 활성 토렌트: - + Do not count slow torrents in these limits 이 제한에 느린 토렌트는 계산하지 않음 - + Upload rate threshold: 올려주기 속도 임계값: - + Download rate threshold: 내려받기 속도 임계값: - - - - + + + + sec seconds - + Torrent inactivity timer: 토렌트 비활성 타이머: - + then 제한 조치: - + Use UPnP / NAT-PMP to forward the port from my router 라우터에서 포트 포워딩하기 위해 UPnP / NAT-PMP 사용 - + Certificate: 인증서: - + Key: 키: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>인증서 정보</a> - + Change current password 현재 암호 바꾸기 - Use alternative Web UI - 대체 웹 UI 사용 - - - + Files location: 파일 위치: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">대체 웹UI 목록</a> - + Security 보안 - + Enable clickjacking protection 클릭 가로채기 방지 활성화 - + Enable Cross-Site Request Forgery (CSRF) protection 사이트 간 요청 위조(CSRF) 보호 활성화 - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + 쿠키 보안 플래그 사용 (HTTPS 또는 로컬 호스트 연결 필요) - + Enable Host header validation 호스트 헤더 유효성 검사 활성화 - + Add custom HTTP headers 사용자 지정 HTTP 헤더 추가 - + Header: value pairs, one per line 헤더: 값, 한 줄에 하나 - + Enable reverse proxy support 역방향 프록시 지원 활성화 - + Trusted proxies list: 신뢰할 수 있는 프록시 목록: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>역방향 프록시 설정 예시</a> - + Service: 서비스: - + Register 등록 - + Domain name: 도메인 이름: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! 이 옵션으로 .torrent 파일을 <strong>복구 불가능하게 제거</strong>할 수 있습니다! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog 두 번째 옵션을 활성화하도록 설정하면(&ldquo;또한 추가가 취소된 경우에도&rdquo;) &ldquo;토렌트 추가&rdquo; 대화상자에서 &ldquo;<strong>취소</strong>&rdquo; 버튼을 누르면 .torrent 파일이 <strong>삭제</strong>됩니다 @@ -7520,12 +7478,12 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 qBittorrent UI 테마 파일 선택 - + Choose Alternative UI files location 대체 UI 파일 위치 선정 - + Supported parameters (case sensitive): 지원 변수 (대소문자 구분): @@ -7545,183 +7503,183 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 시스템 트레이 존재를 감지하지 못하여 비활성화됨 - + No stop condition is set. 중지 조건이 설정되지 않았습니다. - + Torrent will stop after metadata is received. 메타데이터가 수신되면 토렌트가 중지됩니다. - + Torrent will stop after files are initially checked. 파일을 처음 확인한 후에는 토렌트가 중지됩니다. - + This will also download metadata if it wasn't there initially. 처음에 메타데이터가 없는 경우 메타데이터 또한 내려받기됩니다. - + %N: Torrent name %N: 토렌트 이름 - + %L: Category %L: 범주 - + %F: Content path (same as root path for multifile torrent) %F: 내용 경로 (다중 파일 토렌트의 루트 경로와 동일) - + %R: Root path (first torrent subdirectory path) %R: 루트 경로 (첫 토렌트의 하위 디렉터리 경로) - + %D: Save path %D: 저장 경로 - + %C: Number of files %C: 파일 수 - + %Z: Torrent size (bytes) %Z: 토렌트 크기 (바이트) - + %T: Current tracker %T: 현재 트래커 - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") 도움말: 텍스트가 공백에서 잘리지 않게 하려면 변수를 따옴표로 감싸십시오. (예: "%N") - + Test email - + 테스트 메일 - + Attempted to send email. Check your inbox to confirm success - + 이메일 전송을 시도했습니다. 받은 편지함을 확인하여 성공 여부를 확인하세요. - + (None) (없음) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds "토렌트 비활성 시간(초)"동안 내려받기/올려주기 속도가 이 값 이하면 느린 토렌트로 간주합니다. - + Certificate 자격 증명 - + Select certificate 자격 증명 선택 - + Private key 개인 키 - + Select private key 개인 키 선택 - + WebUI configuration failed. Reason: %1 WebUI 구성에 실패했습니다. 원인: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + 윈도 다크 모드와의 최상의 호환성을 위해 %1을(를) 권장합니다. - + System System default Qt style - + 시스템 - + Let Qt decide the style for this system - + Qt가 이 시스템의 스타일을 결정하도록 하세요. - + Dark Dark color scheme - + 다크 - + Light Light color scheme - + 라이트 - + System System color scheme - + 시스템 - + Select folder to monitor 모니터할 폴더 선택 - + Adding entry failed 항목을 추가하지 못했습니다 - + The WebUI username must be at least 3 characters long. WebUI 사용자이름은 3자 이상이어야 합니다. - + The WebUI password must be at least 6 characters long. WebUI 비밀번호는 6자 이상이어야 합니다. - + Location Error 위치 오류 - - + + Choose export directory 내보낼 디렉터리 선정 - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well 이 옵션이 활성화되면, qBittorrent는 .torrent 파일이 내려받기 대기열에 성공적으로 추가되거나(첫 번째 옵션) 추가되지 않았을 때(두 번째 옵션) 해당 파일을 <strong>삭제</strong>합니다. 이 옵션은 &ldquo;토렌트 추가&rdquo; 메뉴를 통해 연 파일<strong>뿐만 아니라</strong> <strong>파일 유형 연계</strong>를 통해 연 파일에도 적용됩니다. @@ -7731,69 +7689,69 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 qBittorrent UI 테마 파일(*.qbtheme config.json) - + %G: Tags (separated by comma) %G: 태그(쉼표로 분리) - + %I: Info hash v1 (or '-' if unavailable) %J: 정보 해시 v1 (사용할 수 없는 경우 '-') - + %J: Info hash v2 (or '-' if unavailable) %J: 정보 해시 v2 (사용할 수 없는 경우 '-') - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: 토렌트 ID (v1 토렌트에 대한 sha-1 정보 해시 또는 v2/하이브리드 토렌트에 대한 몹시 생략된 sha-256 정보 해시) - - + + Choose a save directory 저장 디렉터리 선정 - + Torrents that have metadata initially will be added as stopped. 처음에 메타데이터가 포함된 토렌트는 중지된 상태로 추가 - + Choose an IP filter file IP 필터 파일 선정 - + All supported filters 지원하는 모든 필터 - + The alternative WebUI files location cannot be blank. 대체 WebUI 파일 위치는 비워둘 수 없습니다. - + Parsing error 분석 오류 - + Failed to parse the provided IP filter 제공한 IP 필터를 분석하지 못했습니다 - + Successfully refreshed 새로 고쳤습니다 - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number 제공한 IP 필터를 분석했습니다: %1개 규칙을 적용했습니다. @@ -7804,18 +7762,18 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 환경설정 - + Time Error 시간 오류 - + The start time and the end time can't be the same. 시작 시간과 종료 시간은 같을 수 없습니다. - - + + Length Error 길이 오류 @@ -7900,169 +7858,169 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 Peer is using NAT hole punching - + 피어에서 NAT 홀 펀칭 사용 중 PeerListWidget - + Country/Region 국가/지역 - + IP/Address IP/주소 - + Port 포트 - + Flags 플래그 - + Connection 연결 - + Client i.e.: Client application 클라이언트 - + Peer ID Client i.e.: Client resolved from Peer ID 피어 ID 클라이언트 - + Progress i.e: % downloaded 진행률 - + Down Speed i.e: Download speed 받기 속도 - + Up Speed i.e: Upload speed 업로드 속도 - + Downloaded i.e: total data downloaded 내려받음 - + Uploaded i.e: total data uploaded 올려줌 - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. 관련성 - + Files i.e. files that are being downloaded right now 파일 - + Column visibility 열 표시 여부 - + Resize columns 열 크기조정 - + Resize all non-hidden columns to the size of their contents 숨겨지지 않은 모든 열의 크기를 해당 콘텐츠 크기로 조정합니다 - + Add peers... 피어 추가… - - + + Adding peers 피어 추가 중 - + Some peers cannot be added. Check the Log for details. 일부 피어를 추가할 수 없습니다. 자세한 내용은 로그를 참조하십시오. - + Peers are added to this torrent. 피어가 이 토렌트에 추가됩니다. - - + + Ban peer permanently 영구적으로 피어 차단 - + Cannot add peers to a private torrent 개인 토렌트에 피어를 추가할 수 없습니다 - + Cannot add peers when the torrent is checking 토렌트가 확인 중일 때 피어를 추가할 수 없습니다 - + Cannot add peers when the torrent is queued 토렌트가 대기 중일 때 피어를 추가할 수 없습니다 - + No peer was selected 선택된 피어가 없습니다 - + Are you sure you want to permanently ban the selected peers? 선택한 피어를 영구적으로 차단하시겠습니까? - + Peer "%1" is manually banned "%1" 피어가 수동으로 차단되었습니다 - + N/A 없음 - + Copy IP:port IP:포트 복사 @@ -8343,34 +8301,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent가 실행 중입니다 + qBittorrent가 실행 중입니다 PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - 전원 관리에서 적합한 D-Bus 인터페이스를 찾았습니다. 인터페이스 : %1 + 전원 관리에서 적합한 D-Bus 인터페이스를 찾았습니다. 인터페이스 : %1 - Power management error. Did not found suitable D-Bus interface. - 전원 관리 오류입니다. 적합한 D-Bus 인터페이스를 찾지 못했습니다. + 전원 관리 오류입니다. 적합한 D-Bus 인터페이스를 찾지 못했습니다. - - - Power management error. Action: %1. Error: %2 - 전원 관리 오류입니다. 작업 : %1. 오류 : %2 + 전원 관리 오류입니다. 작업 : %1. 오류 : %2 - Power management unexpected error. State: %1. Error: %2 - 전원 관리 예기치 않은 오류가 발생했습니다. 상태 : %1. 오류 : %2 + 전원 관리 예기치 않은 오류가 발생했습니다. 상태 : %1. 오류 : %2 @@ -8614,12 +8565,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + 비율/활성 시간(개월), 토렌트의 인기도를 나타냅니다. Popularity: - + 인지도: @@ -8654,7 +8605,7 @@ Those plugins were disabled. Private: - + 비공개: @@ -8662,153 +8613,124 @@ Those plugins were disabled. 저장 경로: - + Never 절대 안함 - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (%3개) - - + + %1 (%2 this session) %1 (%2 이 세션) - - + + N/A 해당 없음 - + Yes - + - + No - 아니요 + 아니요 - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (%2 동안 배포됨) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (최대 %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (전체 %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (평균 %2) - + Add web seed Add HTTP source - + 웹 시드 추가 - + Add web seed: - + 웹 시드 추가: - - + + This web seed is already in the list. - + 이 웹 시드는 이미 목록에 있습니다. - New Web seed - 새 웹 배포 - - - Remove Web seed - 웹 배포 제거 - - - Copy Web seed URL - 웹 배포 URL 복사 - - - Edit Web seed URL - 웹 배포 URL 편집 - - - + Filter files... 파일 필터링… - + Add web seed... - + 웹 시드 추가... - + Remove web seed - + 웹 시드 제거 - + Copy web seed URL - + 웹 시드 URL 복사 - + Edit web seed URL... - + 웹 시드 URL 수정... - + Speed graphs are disabled 속도 그래프가 비활성화되었습니다 - + You can enable it in Advanced Options 고급 옵션에서 활성화할 수 있습니다 - New URL seed - New HTTP source - 새 URL 배포 - - - New URL seed: - 새 URL 배포: - - - This URL seed is already in the list. - 이 URL 배포는 이미 목록에 있습니다. - - - + Web seed editing 웹 배포 편집 - + Web seed URL: 웹 배포 URL: @@ -8816,33 +8738,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. 잘못된 데이터 형식. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 %1에 RSS AutoDownloader 데이터를 저장할 수 없습니다. 오류: %2 - + Invalid data format 잘못된 데이터 형식 - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... '%1' RSS 규약은 규칙 '%2'에서 허용됩니다. 토렌트를 추가하는 중... - + Failed to read RSS AutoDownloader rules. %1 RSS 자동다운로더 규칙을 읽지 못했습니다. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 RSS AutoDownloader 규칙을 불러올 수 없습니다. 원인: %1 @@ -8850,22 +8772,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 '%1'에서 RSS 피드를 내려받기하지 못했습니다. 원인: %2 - + RSS feed at '%1' updated. Added %2 new articles. '%1'의 RSS 피드를 업데이트했습니다. %2개의 새 규약을 추가했습니다. - + Failed to parse RSS feed at '%1'. Reason: %2 '%1'에서 RSS 피드를 분석하지 못했습니다. 원인: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. "%1"에서 RSS 피드를 성공적으로 내려받았습니다. 분석을 시작합니다. @@ -8914,12 +8836,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" RSS 세션 구성을 저장할 수 없습니다. 파일: "%1". 오류: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" RSS 세션 데이터를 저장할 수 없습니다. 파일: "%1". 오류: "%2" @@ -8941,76 +8863,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. 항목이 존재하지 않습니다: %1. - Couldn't move folder into itself. - 폴더를 자체적으로 이동할 수 없습니다. + 폴더를 자체적으로 이동할 수 없습니다. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. 루트 폴더를 삭제할 수 없습니다. - + Failed to read RSS session data. %1 RSS 세션 데이터를 읽지 못했습니다. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" RSS 세션 데이터를 분석하지 못했습니다. 파일: "%1". 오류: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." RSS 세션 데이터를 불러오지 못했습니다. 파일: "%1". 오류: "잘못된 데이터 형식" - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. RSS 피드를 불러올 수 없습니다. 피드: "%1". 원인: URL 필요. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. RSS 피드를 불러올 수 없습니다. 피드: "%1". 원인: UID 잘못됨. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. 중복 RSS 피드를 찾았습니다. UID: "%1". 오류: 구성이 손상된 것 같습니다. - + Couldn't load RSS item. Item: "%1". Invalid data format. RSS 항목을 불러올 수 없습니다. 항목: "%1". 잘못된 데이터 형식입니다. - + Corrupted RSS list, not loading it. RSS 목록이 손상되어 불러오지 못했습니다. - + Incorrect RSS Item path: %1. 잘못된 RSS 항목 경로: %1. - + RSS item with given path already exists: %1. 같은 경로를 가진 RSS 항목이 존재합니다: %1. - + Parent folder doesn't exist: %1. 상위 폴더가 존재하지 않습니다: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + 피드가 존재하지 않습니다: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + + + + + Default + + + RSSWidget @@ -9110,78 +9077,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - 피드 URL 편집... + 피드 URL 편집... - Edit feed URL - 피드 URL 편집 + 피드 URL 편집 - + Please choose a folder name 폴더 이름을 선정하십시오 - + Folder name: 폴더 이름: - + New folder 새 폴더 - - Please type a RSS feed URL - RSS 피드 URL을 입력하십시오 + RSS 피드 URL을 입력하십시오 - - Feed URL: - 피드 URL: + 피드 URL: - + Deletion confirmation 삭제 확인 - + Are you sure you want to delete the selected RSS feeds? 선택한 RSS 피드를 정말 삭제하시겠습니까? - + Please choose a new name for this RSS feed 이 RSS 피드에 사용할 새 이름을 선정하십시오 - + New feed name: 새 피드 이름: - + Rename failed 이름 바꾸기 실패 - + Date: 날짜: - + Feed: 피드 : - + Author: 작성자: @@ -9318,10 +9284,6 @@ Those plugins were disabled. i.e: Number of partial sources 공유자 - - Search engine - 검색 엔진 - Filter search results... @@ -9411,17 +9373,17 @@ Those plugins were disabled. Engine - + 엔진 Engine URL - + 엔진 URL Published On - + 게시일 @@ -9442,104 +9404,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. 알 수 없는 검색 엔진 플러그인 파일 형식입니다. - + Plugin already at version %1, which is greater than %2 플러그인은 이미 %1 버전에 있으며, %2보다 더 큽니다 - + A more recent version of this plugin is already installed. 이 플러그인의 최신 버전이 이미 설치되어 있습니다. - + Plugin %1 is not supported. %1 플러그인을 지원하지 않습니다. - - + + Plugin is not supported. 플러그인을 지원하지 않습니다. - + Plugin %1 has been successfully updated. %1 플러그인을 성공적으로 업데이트했습니다. - + All categories 모든 범주 - + Movies 영화 - + TV shows TV 프로그램 - + Music 음악 - + Games 게임 - + Anime 애니메이션 - + Software 소프트웨어 - + Pictures 사진 - + Books - + Update server is temporarily unavailable. %1 업데이트 서버를 일시적으로 사용할 수 없습니다. %1 - - + + Failed to download the plugin file. %1 플러그인 파일을 내려받기하지 못했습니다. %1 - + Plugin "%1" is outdated, updating to version %2 "%1" 플러그인이 오래되어 %2 버전으로 업데이트됩니다 - + Incorrect update info received for %1 out of %2 plugins. 플러그인 %2개 중 %1개에 대해 잘못된 업데이트 정보를 받았습니다. - + Search plugin '%1' contains invalid version string ('%2') 검색 플러그인 '%1'에 잘못된 버전 문자열('%2')이 포함되어 있습니다 @@ -9565,137 +9527,129 @@ Click the "Search plugins..." button at the bottom right of the window 플러그인 검색… - + A phrase to search for. 검색할 구문입니다. - + Spaces in a search term may be protected by double quotes. 검색 항목의 공백은 큰따옴표로 감쌉니다. - + Example: Search phrase example 예시: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: <b>foo bar</b>에 대해 검색 - + All plugins 모든 플러그인 - + Only enabled 활성화된 경우만 - - + + Invalid data format. - 잘못된 데이터 형식. + 잘못된 데이터 형식. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: <b>foo</b> 및 <b>bar</b>에 대해 검색 - + Refresh - + 새로 고침 - + Close tab 탭 닫기 - + Close all tabs 모든 탭 닫기 - + Select... 선택… - - + + Search Engine 검색 엔진 - - + + Please install Python to use the Search Engine. 검색 엔진을 사용하려면 Python을 설치하십시오. - + Empty search pattern 검색 패턴 비우기 - + Please type a search pattern first 검색 패턴을 먼저 입력하십시오 - + Stop 중지 - - Search has finished - 검색이 완료되었습니다 - - - Search has failed - 검색이 실패했습니다 - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + 검색 UI 저장 상태 데이터를 로드하지 못했습니다. 파일: “%1”. 오류: “%2” - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + 저장된 검색 결과를 로드하지 못했습니다. Tab: "%1". 파일: "%2". 오류: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + 검색 UI 상태를 저장하지 못했습니다. 파일: “%1”. 오류: “%2” - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + 검색 결과를 저장하지 못했습니다. Tab: “%1”. 파일: “%2”. 오류: “%3” - + Failed to load Search UI history. File: "%1". Error: "%2" - + 검색 UI 기록을 로드하지 못했습니다. 파일: “%1”. 오류: “%2” - + Failed to save search history. File: "%1". Error: "%2" - + 검색 기록을 저장하지 못했습니다. 파일: “%1”. 오류: “%2” @@ -10091,67 +10045,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: 연결 상태: - - + + No direct connections. This may indicate network configuration problems. 직접적인 연결이 없습니다. 네트워크 구성에 문제가 있을 수 있습니다. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + 외부 IP: 해당 없음 + + + + DHT: %1 nodes DHT: %1 노드 - + qBittorrent needs to be restarted! qBittorrent를 다시 시작해야 합니다! - - + + Connection Status: 연결 상태: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. 오프라인입니다. 보통 qBittorrent가 들어오는 연결을 위해 선택한 포트를 수신 대기하지 못했을 수 있습니다. - + Online 온라인 - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + 외부 IP: %1, %2 + + + + External IP: %1%2 + 외부 IP: %1%2 + + + Click to switch to alternative speed limits 클릭해서 대체 속도 제한으로 전환 - + Click to switch to regular speed limits 클릭해서 일반 속도 제한으로 전환 @@ -10179,23 +10143,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) 완료됨 (0) - - Resumed (0) - 이어받음 (0) - - - Paused (0) - 일시정지됨 (0) - Running (0) - + 실행 중 (0) Stopped (0) - + 정지됨 (0) @@ -10260,49 +10216,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + 실행 중 (%1) Stopped (%1) - + 정지됨 (%1) Start torrents - + 토렌트 시작 Stop torrents - - - - Paused (%1) - 일시정지됨 (%1) + 토렌트 정지 Moving (%1) 이동 중 (%1) - - Resume torrents - 토렌트 이어받기 - - - Pause torrents - 토렌트 일시정지 - Remove torrents 토렌트 제거 - - Resumed (%1) - 이어받음 (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags 미사용 태그 제거 - - Resume torrents - 토렌트 이어받기 - - - Pause torrents - 토렌트 일시정지 - Remove torrents 토렌트 제거 - - New Tag - 새 태그 - Start torrents - + 토렌트 시작 Stop torrents - + 토렌트 정지 @@ -10409,7 +10337,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + 태그 추가 @@ -10726,17 +10654,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks 활성화된 작업이 너무 많습니다. - + Torrent creation is still unfinished. 토렌트 생성이 여전히 끝나지 않았습니다. - + Torrent creation failed. 토렌트 생성이 실패했습니다. @@ -10988,17 +10916,6 @@ Please choose a different name and try again. 주시 중인 폴더: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - 파일을 읽을 때 메모리 할당에 실패했습니다. 파일: "%1". 오류: "%2" - - - Invalid metadata - 잘못된 메타데이터 - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - 토렌트 속도 제한 + 토렌트 공유 제한 @@ -11054,7 +10967,7 @@ Please choose a different name and try again. Torrent Speed Limits - + 토렌트 속도 제한 @@ -11072,34 +10985,6 @@ Please choose a different name and try again. Upload: 올려주기: - - Torrent share limits - 토렌트 공유 제한 - - - Use global share limit - 전역 공유 제한 사용 - - - Set no share limit - 공유 제한 없음 설정 - - - Set share limit to - 공유 제한 설정 - - - ratio - 비율 - - - total minutes - 총 시간(분) - - - inactive minutes - 활동하지 않는 시간(분) - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Please choose a different name and try again. Not applicable to private torrents 비공개 토렌트에는 적용할 수 없음 - - No share limit method selected - 공유 제한 방법을 선택하지 않았습니다 - - - Please select a limit method first - 제한 방법을 먼저 선택하세요 - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Please choose a different name and try again. Action when the limit is reached: - + 한계에 도달했을 때의 조치 : Stop torrent - + 토렌트 정지 Remove torrent - 토렌트 제거 + 토렌트 제거 Remove torrent and its content - + 토렌트 및 해당 내용물 제거 Enable super seeding for torrent - 토렌트에 대해 초도 배포 활성화 + 토렌트에 대해 초도 배포 활성화 @@ -11233,14 +11110,10 @@ Please choose a different name and try again. Torrent Tags 토렌트 태그 - - New Tag - 새 태그 - Add tag - + 태그 추가 @@ -11271,90 +11144,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. 오류: '%1'은(는) 올바른 토렌트 파일이 아닙니다. - + Priority must be an integer 우선순위는 정수여야 합니다 - + Priority is not valid 우선순위가 잘못되었습니다 - + Torrent's metadata has not yet downloaded 토렌트 메타데이터를 아직 내려받지 못했습니다 - + File IDs must be integers 파일 ID는 정수여야 합니다 - + File ID is not valid 파일 ID가 유효하지 않습니다 - - - - + + + + Torrent queueing must be enabled 토렌트 대기열은 반드시 활성화해야 합니다 - - + + Save path cannot be empty 저장 경로는 반드시 입력해야 합니다 - - + + Cannot create target directory 대상 디렉터리를 만들 수 없습니다 - - + + Category cannot be empty 범주는 비워둘 수 없습니다 - + Unable to create category 범주를 만들 수 없습니다 - + Unable to edit category 범주를 편집할 수 없습니다 - + Unable to export torrent file. Error: %1 토렌트 파일을 내보낼 수 없습니다. 오류: %1 - + Cannot make save path 저장 경로를 만들 수 없습니다 "%1" is not a valid URL - + "%1"은 올바른 URL이 아닙니다 URL scheme must be one of [%1] - + URL 구성표는 [%1] 중 하나여야 합니다. @@ -11362,39 +11235,39 @@ Please choose a different name and try again. '정렬' 매개변수가 올바르지 않습니다 - + "%1" is not an existing URL - + “%1”은(는) 기존 URL이 아닙니다 - + "%1" is not a valid file index. %1'은(는) 올바른 파일 인덱스가 아닙니다. - + Index %1 is out of bounds. %1 인덱스가 범위를 벗어났습니다. - - + + Cannot write to directory 디렉터리에 쓸 수 없습니다 - + WebUI Set location: moving "%1", from "%2" to "%3" 웹 UI 설정 위치: "%1"을 "%2"에서 "%3"으로 이동 - + Incorrect torrent name 잘못된 토렌트 이름 - - + + Incorrect category name 잘못된 범주 이름 @@ -11477,45 +11350,33 @@ Please choose a different name and try again. Invalid state! - + 잘못된 상태! URL/Announce Endpoint - + URL/Announce 엔드포인트 BT Protocol - + BT 프로토콜 Next Announce - + 다음 갱신 Min Announce - - - - Invalid status! - 유효하지 않은 상태입니다! - - - URL/Announce endpoint - URL/공지 엔드포인트 + 최소 갱신 Tier 계증 - - Protocol - 프로토콜 - Status @@ -11546,18 +11407,6 @@ Please choose a different name and try again. Message 메시지 - - Next announce - 다음 공지 - - - Min announce - 최소 공지 - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Please choose a different name and try again. 이 토렌트는 비공개입니다 - + Tracker editing 트래커 편집 - + Tracker URL: 트래커 URL: - - + + Tracker editing failed 트래커 편집 실패 - + The tracker URL entered is invalid. 입력한 트래커 URL이 올바르지 않습니다. - + The tracker URL already exists. 트래커 URL이 존재합니다. - + Edit tracker URL... 트래커 URL 편집… - + Remove tracker 트래커 제거 - + Copy tracker URL 트래커 URL 복사 - + Force reannounce to selected trackers 선택한 트래커에 강제로 다시 알리기 - + Force reannounce to all trackers 모든 트래커에 강제로 다시 알리기 - + Resize columns 열 크기조정 - + Resize all non-hidden columns to the size of their contents 숨겨지지 않은 모든 열의 크기를 해당 콘텐츠 크기로 조정합니다 - + Add trackers... 트래커 추가… - + Column visibility 열 표시 여부 @@ -11716,20 +11565,12 @@ Please choose a different name and try again. Start torrents - + 토렌트 시작 Stop torrents - - - - Resume torrents - 토렌트 이어받기 - - - Pause torrents - 토렌트 일시정지 + 토렌트 정지 @@ -11853,10 +11694,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. 이어받기 데이터 확인 중 - - Paused - 일시정지됨 - Completed @@ -11897,21 +11734,16 @@ Please choose a different name and try again. % Done 진행률 - - Status - Torrent status (e.g. downloading, seeding, paused) - 상태 - Stopped - + 정지됨 Status Torrent status (e.g. downloading, seeding, stopped) - 상태 + 상태 @@ -11946,7 +11778,7 @@ Please choose a different name and try again. Popularity - + 인지도 @@ -12027,22 +11859,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - 활성 시간 + 활성 시간 Yes - + No - 아니요 - - - Time Active - Time (duration) the torrent is active (not paused) - 활성 시간 + 아니요 @@ -12114,12 +11941,12 @@ Please choose a different name and try again. Private Flags private torrents - + 비공개 Ratio / Time Active (in months), indicates how popular the torrent is - + 비율/활성 시간(개월)은 토렌트의 인기도를 나타냄 @@ -12144,358 +11971,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility 열 표시 여부 - + Recheck confirmation 다시 검사 확인 - + Are you sure you want to recheck the selected torrent(s)? 선택한 토렌트를 다시 검사하시겠습니까? - + Rename 이름 바꾸기 - + New name: 새 이름: - + Choose save path 저장 경로 선정 - Confirm pause - 일시중지 확인 - - - Would you like to pause all torrents? - 모든 토렌트를 일시 정지하시겠습니까? - - - Confirm resume - 이어받기 확인 - - - Would you like to resume all torrents? - 모든 토렌트를 이어받기하시겠습니까? - - - + Unable to preview 미리볼 수 없음 - + The selected torrent "%1" does not contain previewable files 선택한 "%1" 토렌트는 미리볼 수 있는 파일을 포함하고 있지 않습니다 - + Resize columns 열 크기조정 - + Resize all non-hidden columns to the size of their contents 숨겨지지 않은 모든 열의 크기를 해당 콘텐츠 크기로 조정합니다 - + Enable automatic torrent management 자동 토렌트 관리 활성화 - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. 선택한 토렌트에 대해 자동 토렌트 관리를 활성화하시겠습니까? 재배치될 수 있습니다. - Add Tags - 태그 추가 - - - + Choose folder to save exported .torrent files 내보낸 .torrent 파일을 저장할 폴더 선정 - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" .torrent 파일을 내보내지 못했습니다. 토렌트: %1. 저장 경로: %2. 원인: "%3" - + A file with the same name already exists 이름이 같은 파일이 이미 있습니다 - + Export .torrent file error .torrent 파일 오류 내보내기 - + Remove All Tags 모든 태그 제거 - + Remove all tags from selected torrents? 선택한 토렌트에서 모든 태그를 제거하시겠습니까? - + Comma-separated tags: 쉼표로 구분된 태그: - + Invalid tag 잘못된 태그 - + Tag name: '%1' is invalid 태그 이름: '%1'이(가) 잘못됐습니다 - &Resume - Resume/start the torrent - 이어받기(&R) - - - &Pause - Pause the torrent - 일시정지(&P) - - - Force Resu&me - Force Resume/start the torrent - 강제 이어받기(&M) - - - + Pre&view file... 파일 미리보기(&V)… - + Torrent &options... 토렌트 옵션(&O)… - + Open destination &folder 대상 폴더 열기(&F) - + Move &up i.e. move up in the queue 위로 이동(&U) - + Move &down i.e. Move down in the queue 아래로 이동(&D) - + Move to &top i.e. Move to top of the queue 맨 위로 이동(&T) - + Move to &bottom i.e. Move to bottom of the queue 맨 아래로 이동(&B) - + Set loc&ation... 위치 설정(&A)… - + Force rec&heck 강제 다시 검사(&H) - + Force r&eannounce 강제 다시 알림(&E) - + &Magnet link 마그넷 링크(&M) - + Torrent &ID 토렌트 ID(&I) - + &Comment 주석(&C) - + &Name 이름(&N) - + Info &hash v1 정보 해시 v1(&H) - + Info h&ash v2 정보 해시 v2(&A) - + Re&name... 이름 바꾸기(&N)… - + Edit trac&kers... 트래커 편집(&K)… - + E&xport .torrent... .torrent 내보내기(&X)… - + Categor&y 범주(&Y) - + &New... New category... 신규(&N)… - + &Reset Reset category 초기화(&R) - + Ta&gs 태그(&G) - + &Add... Add / assign multiple tags... 추가(&A)… - + &Remove All Remove all tags 모두 제거(&R) - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + 토렌트가 중지/대기/오류/확인 중인 경우 재공지를 강제할 수 없습니다 - + &Queue 대기열(&Q) - + &Copy 복사(&C) - + Exported torrent is not necessarily the same as the imported 내보낸 토렌트가 가져온 토렌트와 반드시 같을 필요는 없습니다 - + Download in sequential order 순차 내려받기 - + Add tags - + 태그 추가 - + Errors occurred when exporting .torrent files. Check execution log for details. .torrent 파일을 내보내는 동안 오류가 발생했습니다. 자세한 내용은 실행 로그를 확인하십시오. - + &Start Resume/start the torrent - + 시작(&S) - + Sto&p Stop the torrent - + 정지(&P) - + Force Star&t Force Resume/start the torrent - + 강제 시작(&T) - + &Remove Remove the torrent 제거(&R) - + Download first and last pieces first 처음과 마지막 조각 먼저 내려받기 - + Automatic Torrent Management 자동 토렌트 관리 - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category 자동 모드는 다양한 토렌트 특성(예: 저장 경로)이 관련 범주에 의해 결정됨을 의미합니다 - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - 토렌트가 [일시정지/대기 중/오류 발생/확인 중]이면 강제로 다시 알릴 수 없습니다 - - - + Super seeding mode 초도 배포 모드 @@ -12571,7 +12359,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + 앱 스타일을 설정하지 못했습니다. 알 수 없는 스타일 : "%1" @@ -12627,32 +12415,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" 파이썬 실행 파일을 찾았습니다. 이름 : "%1". 버전 : "%2" - + Failed to find Python executable. Path: "%1". 파이썬 실행 파일을 찾지 못했습니다. 경로 : "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" 경로 환경 변수에서 `파이썬3` 실행 파일을 찾지 못했습니다. 경로 : "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" 경로 환경 변수에서 `파이썬` 실행 파일을 찾지 못했습니다. 경로 : "%1" - + Failed to find `python` executable in Windows Registry. 윈도 레지스트리에서 `파이썬` 실행 파일을 찾지 못했습니다. - + Failed to find Python executable 파이썬 실행 파일을 찾지 못함 @@ -12744,52 +12532,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. 허용할 수 없는 세션 쿠키 이름이 지정되었습니다: '%1'. 기본 쿠키가 사용됩니다. - + Unacceptable file type, only regular file is allowed. 허용되지 않는 파일 형식, 일반 파일만 허용됩니다. - + Symlinks inside alternative UI folder are forbidden. 대체 UI 폴더의 심볼릭 링크는 금지되어 있습니다. - + Using built-in WebUI. 기본 제공 WebUI를 사용합니다. - + Using custom WebUI. Location: "%1". 사용자 정의 WebUI를 사용합니다. 위치: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. 선택한 로케일 (%1)에 대한 WebUI 번역을 성공적으로 불러왔습니다. - + Couldn't load WebUI translation for selected locale (%1). 선택한 로케일 (%1)에 대한 WebUI 번역을 불러올 수 없습니다. - + Missing ':' separator in WebUI custom HTTP header: "%1" WebUI 사용자 지정 HTTP 헤더에 ':' 구분자 누락: "%1" - + Web server error. %1 웹 서버 오류입니다. %1 - + Web server error. Unknown error. 웹 서버 오류입니다. 알 수 없는 오류입니다. @@ -12847,7 +12635,7 @@ Please choose a different name and try again. Unknown error - 알 수 없는 오류 + 알 수 없는 오류 diff --git a/src/lang/qbittorrent_lt.ts b/src/lang/qbittorrent_lt.ts index d6cd2ed9f..3c2993811 100644 --- a/src/lang/qbittorrent_lt.ts +++ b/src/lang/qbittorrent_lt.ts @@ -170,10 +170,6 @@ Never show again Daugiau neberodyti - - Torrent settings - Torento nuostatos - Set as default category @@ -235,25 +231,25 @@ Sustabdymo sąlyga: - - + + None Nė vienas - - + + Metadata received Gauti metaduomenys - + Torrents that have metadata initially will be added as stopped. - + Files checked Failų patikrinta @@ -368,112 +364,112 @@ Išsaugoti kaip .torrent file... - + I/O Error I/O klaida - + Not Available This comment is unavailable Neprieinama - + Not Available This date is unavailable Neprieinama - + Not available Neprieinama - + Magnet link Magnet nuoroda - + Retrieving metadata... Atsiunčiami metaduomenys... - - + + Choose save path Pasirinkite išsaugojimo kelią - + No stop condition is set. Nenustatyta jokia sustabdymo sąlyga. - + Torrent will stop after metadata is received. Torentas bus sustabdytas gavus metaduomenis. - + Torrent will stop after files are initially checked. Torentas bus sustabdytas, kai failai bus iš pradžių patikrinti. - + This will also download metadata if it wasn't there initially. Taip pat bus atsisiunčiami metaduomenys, jei jų iš pradžių nebuvo. - + N/A Nėra - + %1 (Free space on disk: %2) %1 (Laisva vieta diske: %2) - + Not available This size is unavailable. Neprieinama - + Torrent file (*%1) Torento failas (*%1) - + Save as torrent file Išsaugoti torento failo pavidalu - + Couldn't export torrent metadata file '%1'. Reason: %2. Nepavyko eksportuoti torento metaduomenų failo '%1'. Priežastis: %2. - + Cannot create v2 torrent until its data is fully downloaded. Negalima sukurti v2 torento, kol jo duomenys nebus visiškai parsiųsti. - + Filter files... Filtruoti failus... - + Parsing metadata... Analizuojami metaduomenys... - + Metadata retrieval complete Metaduomenų atsiuntimas baigtas @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Atsiunčiamas torentas... Šaltinis: „%1“ - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Pertikrinti torentus baigus atsiuntimą - - + + ms milliseconds ms - + Setting Nuostata - + Value Value set for this setting Reikšmė - + (disabled) (išjungta) - + (auto) (automatinis) - - + + min minutes min. - + All addresses Visi adresai - + qBittorrent Section qBittorrent sekcija - - + + Open documentation Atverti žinyną - + All IPv4 addresses Visi IPv4 adresai - + All IPv6 addresses Visi IPv6 adresai - + libtorrent Section libtorrent sekcija - + Fastresume files Fastresume failas - + SQLite database (experimental) SQLite duomenų bazė (eksperimentinė) - + Resume data storage type (requires restart) Tęsti duomenų saugojimo tipą (reikia paleisti iš naujo) - + Normal Normali - + Below normal Žemesnė nei normali - + Medium Vidutinė - + Low Žema - + Very low Labai žema - + Physical memory (RAM) usage limit Fizinės atminties (RAM) naudojimo apribojimas - + Asynchronous I/O threads Asinchroninės I/O gijos - + Hashing threads Maišos gijos - + File pool size Failų telkinio dydis - + Outstanding memory when checking torrents Išsiskirianti atmintis tikrinant torentus - + Disk cache Disko podėlis - - - - + + + + + s seconds s - + Disk cache expiry interval Podėlio diske galiojimo trukmė - + Disk queue size Disko eilės dydis - - + + Enable OS cache Įgalinti operacinės sistemos spartinančiąją atmintinę - + Coalesce reads & writes Sujungti skaitymai ir rašymai - + Use piece extent affinity Giminingas dalių atsisiuntimas - + Send upload piece suggestions Siųsti išsiuntimo dalių pasiūlymus - - - - - + + + + + 0 (disabled) 0 (išjungta) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Pratęsimo duomenų saugojimo intervalas [0: išjungta] - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer Didžiausias neįvykdytų užklausų skaičius vienam partneriui - - - - - + + + + + KiB KiB - + (infinite) - + (system default) (sistemos numatytasis) - + Delete files permanently - + Ištrinti failus visam laikui - + Move files to trash (if possible) - + Perkelti failus į šiukšlinę (jei įmanoma) - + Torrent content removing mode - + This option is less effective on Linux Ši parinktis yra mažiau efektyvi Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Numatyta - + Memory mapped files Atmintyje susieti failai - + POSIX-compliant Suderinamas su POSIX - + Simple pread/pwrite - + Disk IO type (requires restart) Disko IO tipas (reikia paleisti iš naujo) - - + + Disable OS cache Išjungti OS talpyklą - + Disk IO read mode Disko IO skaitymo režimas - + Write-through Perrašymas - + Disk IO write mode Disko IO rašymo režimas - + Send buffer watermark Siųsti buferio vandenženklį - + Send buffer low watermark Siųsti buferio žemą vandenženklį - + Send buffer watermark factor Siųsti buferio vandenženklio faktorių - + Outgoing connections per second Išeinantys ryšiai per sekundę - - + + 0 (system default) 0 (sistemos numatytasis) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Lizdų atsilikimo dydis - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit .torrent failo dydžio riba - + Type of service (ToS) for connections to peers Paslaugos tipas (ToS), skirtas ryšiams su partneriais - + Prefer TCP Teikti pirmenybę TCP - + Peer proportional (throttles TCP) Proporcionalus siuntėjams (uždusina TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Internacionalizuoto domeno vardo (IDN) palaikymas - + Allow multiple connections from the same IP address Leisti kelis sujungimus iš to paties IP adreso - + Validate HTTPS tracker certificates Patvirtinkite HTTPS stebėjimo priemonės sertifikatus - + Server-side request forgery (SSRF) mitigation Serverio pusės užklausų klastojimo (SSRF) mažinimas - + Disallow connection to peers on privileged ports Neleisti prisijungti prie partnerių privilegijuotuose prievaduose - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates Jis valdo vidinės būsenos atnaujinimo intervalą, kuris savo ruožtu turės įtakos vartotojo sąsajos naujinimams - + Refresh interval Atnaujinimo intervalas - + Resolve peer host names Gauti siuntėjų stočių vardus - + IP address reported to trackers (requires restart) IP adresas praneštas stebėjimo priemonėms (reikia paleisti iš naujo) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Pakeitus IP arba prievadą, dar kartą pranešti visiems stebėjimo priemonėms - + Enable icons in menus Įjungti meniu piktogramas - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Įjungti įterptosios sekimo priemonės prievado persiuntimą - + Enable quarantine for downloaded files Įjungti karantiną parsiųstiems failams - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + Nepaisyti SSL klaidų - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - sek. + sek. - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage Partnerių apyvartos atsijungimo procentas - + Peer turnover threshold percentage Partnerių apyvartos slenkstis procentais - + Peer turnover disconnect interval Partnerių apyvartos atjungimo intervalas - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Rodyti pranešimus - + Display notifications for added torrents Rodyti pranešimus pridedamiems torentams - + Download tracker's favicon Atsisiųsti seklio svetainės piktogramą - + Save path history length Išsaugojimo kelio istorijos ilgis - + Enable speed graphs Įjungti greičio kreives - + Fixed slots Fiksuoti prisijungimai - + Upload rate based Pagrįsta išsiuntimo greičiu - + Upload slots behavior Išsiuntimo prisijungimų elgsena - + Round-robin Ratelio algoritmas - + Fastest upload Greičiausias išsiuntimas - + Anti-leech Anti-siuntėjų - + Upload choking algorithm Išsiuntimo prismaugimo algoritmas - + Confirm torrent recheck Patvirtinti torentų pertikrinimą - + Confirm removal of all tags Patvirtinti visų žymių šalinimą - + Always announce to all trackers in a tier Visada siųsti atnaujinimus visiems sekliams pakopoje - + Always announce to all tiers Visada siųsti atnaujinimus visoms pakopoms - + Any interface i.e. Any network interface Bet kokia sąsaja - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP maišytos veiksenos algoritmas - + Resolve peer countries Išspręskite partnerių šalis - + Network interface Tinklo sąsaja. - + Optional IP address to bind to Pasirenkamas IP adresas, prie kurio reikia susieti - + Max concurrent HTTP announces Maksimalus lygiagretus HTTP pranešimas - + Enable embedded tracker Įjungti įtaisytąjį seklį - + Embedded tracker port Įtaisytojo seklio prievadas @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Veikia nešiojamuoju režimu. Automatiškai aptiktas profilio aplankas: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Aptikta perteklinė komandų eilutės vėliavėlė: „%1“. Nešiojamasis režimas reiškia santykinį greitą atnaujinimą. - + Using config directory: %1 Naudojant konfigūracijos katalogą: %1 - + Torrent name: %1 Torento pavadinimas: %1 - + Torrent size: %1 Torento dydis: %1 - + Save path: %1 Išsaugojimo kelias: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torentas atsiųstas per %1. - - + + Thank you for using qBittorrent. Ačiū, kad naudojatės qBittorrent. - + Torrent: %1, sending mail notification Torentas: %1, siunčiamas pašto pranešimas - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` Vykdoma išorinė programa. Torentas: "%1". Komanda: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torento „%1“ atsisiuntimas baigtas - + WebUI will be started shortly after internal preparations. Please wait... WebUI bus paleista netrukus po vidinių pasiruošimų. Prašome palaukti... - - + + Loading torrents... Įkeliami torrentai... - + E&xit Iš&eiti - + I/O Error i.e: Input/Output Error I/O klaida - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ Priežastis: %2 - + Torrent added Torentas pridėtas - + '%1' was added. e.g: xxx.avi was added. '%1' buvo pridėtas. - + Download completed Parsisiuntimas baigtas - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' buvo baigtas siųstis. - + Information Informacija - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 Norėdami valdyti qBittorrent, prieikite prie WebUI adresu: %1 - + Exit Išeiti - + Recursive download confirmation Rekursyvaus siuntimo patvirtinimas - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torentą sudaro '%1' .torrent failų, ar norite tęsti jų atsisiuntimą? - + Never Niekada - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Nepavyko nustatyti fizinės atminties (RAM) naudojimo limito. Klaidos kodas: %1. Klaidos pranešimas: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated Inicijuotas qBitTorrent nutraukimas - + qBittorrent is shutting down... qBittorrent yra išjungiamas... - + Saving torrent progress... Išsaugoma torento eiga... - + qBittorrent is now ready to exit qBittorrent dabar paruoštas išeiti @@ -1766,263 +1773,263 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat &Eksportuoti... - + Matches articles based on episode filter. Atitinka epizodų filtru pagrįstus įrašus. - + Example: Pavyzdys: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match atitiks pirmojo sezono 2, 5, nuo 8 iki 15, 30 ir tolesnius epizodus - + Episode filter rules: Epizodų filtravimo taisyklės: - + Season number is a mandatory non-zero value Sezono numeris yra privaloma nenulinė reikšmė - + Filter must end with semicolon Filtras privalo užsibaigti kabliataškiu - + Three range types for episodes are supported: Yra palaikomi trys epizodų rėžiai: - + Single number: <b>1x25;</b> matches episode 25 of season one Pavienis skaičius: <b>1x25;</b> atitinka 25, pirmojo sezono, epizodą - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normalus rėžis: <b>1x25-40;</b> atitinka pirmojo sezono epizodus nuo 25 iki 40 - + Episode number is a mandatory positive value Epizodo numeris yra privaloma teigiama reikšmė - + Rules Taisyklės - + Rules (legacy) Taisyklės (pasenusios) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Begalinis rėžis: <b>1x25-;</b> atitinka pirmojo sezono epizodus nuo 25 ir toliau bei visus vėlesnių sezonų epizodus - + Last Match: %1 days ago Paskutinis atitikimas: prieš %1 dienų - + Last Match: Unknown Paskutinis atitikimas: Nežinoma - + New rule name Naujas taisyklės vardas - + Please type the name of the new download rule. Įveskite vardą naujai atsiuntimo taisyklei. - - + + Rule name conflict Taisyklių vardų nesuderinamumas - - + + A rule with this name already exists, please choose another name. Taisyklė tokiu vardu jau egzistuoja, pasirinkite kitokį vardą. - + Are you sure you want to remove the download rule named '%1'? Ar tikrai norite pašalinti atsiuntimo taisyklę, pavadinimu "%1"? - + Are you sure you want to remove the selected download rules? Ar tikrai norite pašalinti pasirinktas atsiuntimo taisykles? - + Rule deletion confirmation Taisyklių pašalinimo patvirtinimas - + Invalid action Netinkamas veiksmas - + The list is empty, there is nothing to export. Sąrašas tuščias, nėra ką eksportuoti. - + Export RSS rules Eksportuoti RSS taisykles - + I/O Error I/O klaida - + Failed to create the destination file. Reason: %1 Nepavyko sukurti paskirties failo. Priežastis: %1 - + Import RSS rules Importuoti RSS taisykles - + Failed to import the selected rules file. Reason: %1 Nepavyko importuoti pasirinkto taisyklių failo. Priežastis: %1 - + Add new rule... Pridėti naują taisyklę... - + Delete rule Ištrinti taisyklę - + Rename rule... Pervadinti taisyklę... - + Delete selected rules Ištrinti pasirinktas taisykles - + Clear downloaded episodes... Išvalyti atsisiųstus epizodus... - + Rule renaming Taisyklių pervadinimas - + Please type the new rule name Įveskite naują taisyklės vardą - + Clear downloaded episodes Išvalyti atsisiųstus epizodus - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Ar tikrai norite išvalyti pasirinktos taisyklės atsisiųstų epizodų sąrašą? - + Regex mode: use Perl-compatible regular expressions Reguliariųjų reiškinių veiksena: naudoti su Perl suderinamus reguliariuosius reiškinius - - + + Position %1: %2 Pozicija %1: %2 - + Wildcard mode: you can use Pakaitos simbolių veiksena: galite naudoti - - + + Import error Importavimo klaida - + Failed to read the file. %1 Nepavyko perskaityti failo. %1 - + ? to match any single character ? norėdami atitikti bet kurį vieną simbolį - + * to match zero or more of any characters * norėdami atitikti nulį ar daugiau bet kokių simbolių - + Whitespaces count as AND operators (all words, any order) Tarpai yra laikomi IR operatoriais (visi žodžiai, bet kokia tvarka) - + | is used as OR operator | yra naudojamas kaip AR operatorius - + If word order is important use * instead of whitespace. Jeigu yra svarbi žodžių tvarka, vietoj tarpų naudokite * - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Reiškinys su tuščia %1 sąlyga (pvz., %2) - + will match all articles. atitiks visus įrašus. - + will exclude all articles. išskirs visus įrašus. @@ -2074,28 +2081,38 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Neįmanoma išanalizuoti atnaujinimo duomenų: netinkamas formatas - - + + Cannot parse torrent info: %1 Nepavyko išanalizuoti torento informacijos: %1 - + Cannot parse torrent info: invalid format Negalima išanalizuoti torento informacijos: netinkamas formatas - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Nepavyko išsaugoti torento metaduomenų '%1'. Klaida: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Nepavyko išsaugoti torrent atnaujinimo duomenų į '%1'. Klaida: %2. @@ -2106,16 +2123,17 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat + Cannot parse resume data: %1 Nepavyko išanalizuoti atnaujinimo duomenų: %1 - + Resume data is invalid: neither metadata nor info-hash was found Netinkami atnaujinimo duomenys: nerasta nei metaduomenų, nei hash informacijos - + Couldn't save data to '%1'. Error: %2 Nepavyko išsaugoti duomenų '%1'. Klaida: %2 @@ -2123,38 +2141,60 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat BitTorrent::DBResumeDataStorage - + Not found. Nerasta. - + Couldn't load resume data of torrent '%1'. Error: %2 Nepavyko įkelti torento '%1' atnaujinimo duomenų. Klaida: %2 - - + + Database is corrupted. Duomenų bazė yra pažeista. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + Nepavyko išanalizuoti atnaujinimo duomenų: %1 + + + + + Cannot parse torrent info: %1 + Nepavyko išanalizuoti torento informacijos: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2202,22 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2185,514 +2225,503 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON ĮJUNGTA - - - - - - - - - + + + + + + + + + OFF IŠJUNGTA - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" Siuntėjo ID: "%1" - + HTTP User-Agent: "%1" HTTP naudotojo agentas: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 Anoniminė veiksena: %1 - - + + Encryption support: %1 Šifravimo palaikymas: %1 - - + + FORCED PRIVERSTINAI - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". Torentas: "%1". - Removed torrent. - Pašalintas torentas. - - - Torrent paused. - Torentas sustabdytas. - - - + Super seeding enabled. Super skleidimas įjungtas. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Nepavyko įkelti torento. Priežastis: „%1“ - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torentas pristabdytas. Torentas: „%1“ - - - + Torrent resumed. Torrent: "%1" Torentas pratęstas. Torentas: „%1“ - + Torrent download finished. Torrent: "%1" Torento atsisiuntimas baigtas. Torentas: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file Nepavyko išanalizuoti IP filtro failo - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Pridėtas naujas torentas. Torentas: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - Removed torrent. Torrent: "%1" - Pašalintas torentas. Torentas: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filtras - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 Nepavyko įkelti kategorijų. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 yra išjungta - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 yra išjungta - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" Aptiktas išorinis IP adresas. IP: „%1“ - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2742,47 +2771,47 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat - + Download first and last piece first: %1, torrent: '%2' Visų pirma atsisiųsti pirmą ir paskutinę dalį: %1, torentas: "%2" - + On Įjungta - + Off Išjungta - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata Trūksta metaduomenų - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Failo pervadinimas nepavyko. Torentas: "%1", failas: "%2", priežastis: "%3" - + Performance alert: %1. More info: %2 @@ -2819,11 +2848,6 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Expected integer number in environment variable '%1', but got '%2' Aplinkos kintamajame "%1" tikėtasi sveiko skaičiaus, tačiau gauta "%2" - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parametras "%1" privalo atitikti sintaksę "%1=%2" - Expected %1 in environment variable '%2', but got '%3' @@ -2864,7 +2888,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parametras "%1" privalo atitikti sintaksę "%1=%2" + Parametras "%1" privalo atitikti sintaksę "%1=%2" @@ -2954,10 +2978,6 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Add torrents as running or stopped - - Add torrents as started or paused - Pridėti torentus kaip pradėtus ar pristabdytus - Skip hash check @@ -3047,20 +3067,12 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Start torrents - + Paleisti torentus Stop torrents - - - - Resume torrents - Pratęsti torentus - - - Pause torrents - Pristabdyti torentus + Stabdyti torentus @@ -3158,11 +3170,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Also remove the content files - - - - Also permanently delete the files - Taip pat visam laikui ištrinti failus + Taip pat šalinti turinio failus @@ -3395,22 +3403,22 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat GUIAddTorrentManager - + Downloading torrent... Source: "%1" Atsiunčiamas torentas... Šaltinis: „%1“ - + Torrent is already present Torentas jau yra - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torentas '%1' jau yra perdavimo sąraše. Ar norite sujungti stebėjimo priemones iš naujo šaltinio? @@ -3528,6 +3536,40 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3669,10 +3711,6 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat &Options... &Parinktys... - - &Resume - &Tęsti - &Remove @@ -3754,10 +3792,6 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Close Window Užverti langą - - R&esume All - T&ęsti visus - Manage Cookies... @@ -3873,10 +3907,6 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat &Hibernate System &Užmigdyti sistemą - - S&hutdown System - Iš&jungti kompiuterį - &Statistics @@ -3897,14 +3927,6 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat &About &Apie - - &Pause - &Pristabdyti - - - P&ause All - Prist&abdyti visus - &Add Torrent File... @@ -3938,12 +3960,12 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat - + Show Rodyti - + Check for program updates Tikrinti, ar yra programos atnaujinimų @@ -3958,388 +3980,382 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Jei Jums patinka qBittorrent, paaukokite! - + Execution Log Vykdymo žurnalas - + Clear the password Išvalyti slaptažodį - + &Set Password &Nustatyti slaptažodį - + Preferences Nuostatos - + &Clear Password &Išvalyti slaptažodį - + Transfers Siuntimai - - + + qBittorrent is minimized to tray qBittorrent suskleista į dėklą - - - + + + This behavior can be changed in the settings. You won't be reminded again. Ši elgsena gali būti pakeista nustatymuose. Daugiau jums apie tai nebebus priminta. - + Icons Only Tik piktogramos - + Text Only Tik tekstas - + Text Alongside Icons Tekstas šalia piktogramų - + Text Under Icons Tekstas po piktogramomis - + Follow System Style Sekti sistemos stilių - - + + UI lock password Naudotojo sąsajos užrakinimo slaptažodis - - + + Please type the UI lock password: Įveskite naudotojo sąsajos užrakinimo slaptažodį: - + Are you sure you want to clear the password? Ar tikrai norite išvalyti slaptažodį? - + Use regular expressions Naudoti reguliariuosius reiškinius - - + + Search Engine - Paieškos sistema + Paieškos sistema - + Search has failed - Paieška nepavyko + Paieška nepavyko - + Search has finished - Paieška baigta + Paieška baigta - + Search Paieška - + Transfers (%1) Siuntimai (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent ką tik buvo atnaujinta ir ją reikia paleisti iš naujo, norint, kad įsigaliotų nauji pakeitimai. - + qBittorrent is closed to tray qBittorrent užverta į dėklą - + Some files are currently transferring. Šiuo metu yra persiunčiami kai kurie failai. - + Are you sure you want to quit qBittorrent? Ar tikrai norite išeiti iš qBittorrent? - + &No &Ne - + &Yes &Taip - + &Always Yes &Visada taip - + Options saved. Parinktys išsaugotos. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Trūksta Python vykdymo aplinkos - + qBittorrent Update Available Yra prieinamas qBittorrent atnaujinimas - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Norint naudoti paieškos sistemą, būtinas Python interpretatorius, tačiau neatrodo, jog jis būtų įdiegtas. Ar norite įdiegti jį dabar? - + Python is required to use the search engine but it does not seem to be installed. Norint naudoti paieškos sistemą, būtinas Python interpretatorius, tačiau neatrodo, jog jis būtų įdiegtas. - - + + Old Python Runtime Sena Python vykdymo aplinka - + A new version is available. Yra prieinama nauja versija. - + Do you want to download %1? Ar norite atsisiųsti %1? - + Open changelog... Atverti keitinių žurnalą... - + No updates available. You are already using the latest version. Nėra prieinamų atnaujinimų. Jūs jau naudojate naujausią versiją. - + &Check for Updates &Tikrinti, ar yra atnaujinimų - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Jūsų Python versija (%1) yra pasenusi. Minimali yra: %2. Ar norite dabar įdiegti naujesnę versiją? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Jūsų Python versija (%1) yra pasenusi. Atnaujinkite į naujausią versiją, kad paieškos sistemos veiktų. Minimali versija yra: %2. - + Paused - Pristabdyti + Pristabdyti - + Checking for Updates... Tikrinama, ar yra atnaujinimų... - + Already checking for program updates in the background Šiuo metu fone jau ieškoma programos atnaujinimų... - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Atsiuntimo klaida - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python įdiegties atsiųsti nepavyko, priežastis: %1. -Prašome padaryti tai rankiniu būdu. - - - - + + Invalid password Neteisingas slaptažodis - + Filter torrents... Filtruoti torentus... - + Filter by: Filtruoti pagal: - + The password must be at least 3 characters long Slaptažodis turi būti bent 3 simbolių ilgio - - - + + + RSS (%1) RSS (%1) - + The password is invalid Slaptažodis yra neteisingas - + DL speed: %1 e.g: Download speed: 10 KiB/s Ats. greitis: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Išs. greitis: %1 - + Hide Slėpti - + Exiting qBittorrent Užveriama qBittorrent - + Open Torrent Files Atverti torentų failus - + Torrent Files Torentų failai @@ -4537,7 +4553,7 @@ Užklausta operacija šiam protokolui yra neteisinga SSL error, URL: "%1", errors: "%2" - + SSL klaida, URL: „%1“, klaidos: „%2“ @@ -5834,47 +5850,47 @@ Užklausta operacija šiam protokolui yra neteisinga Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5916,10 +5932,6 @@ Užklausta operacija šiam protokolui yra neteisinga RSS RSS - - Web UI - Tinklo sąsaja - Advanced @@ -5956,10 +5968,6 @@ Užklausta operacija šiam protokolui yra neteisinga Always Visada - - Paused torrents only - Tik pristabdytuose torentuose - Action on double-click @@ -5970,10 +5978,6 @@ Užklausta operacija šiam protokolui yra neteisinga Downloading torrents: Atsiunčiamus torentus: - - Start / Stop Torrent - Pratęsti / pristabdyti torentą - @@ -6032,363 +6036,365 @@ Užklausta operacija šiam protokolui yra neteisinga KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent turinio išdėstymas: - + Original Pradinis - + Create subfolder Sukurti poaplankį - + Don't create subfolder Nesukurti poaplankio - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue Pridėti į eilės viršų - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Pridėti... - + Options.. Parinktys.. - + Remove Šalinti - + Email notification &upon download completion Pabaigus a&tsiuntimą, pranešti el. paštu - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Peer ryšio protokolas: - + Any Bet koks - + I2P (experimental) - + Mixed mode Maišyta veiksena - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy RSS kanalai naudos įgaliotąjį serverį - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering IP fi&ltravimas - + Schedule &the use of alternative rate limits Planuoti &alternatyvių greičio apribojimų naudojimą - + From: From start time Nuo: - + To: To end time Iki: - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption Leisti šifravimą - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Daugiau informacijos</a>) - + Maximum active checking torrents: - + &Torrent Queueing &Siuntimų eilė - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - Į naujus a&tsiuntimus, automatiškai pridėti šiuos seklius: - - - + RSS Reader RSS skaitytuvė - + Enable fetching RSS feeds Įjungti RSS kanalų gavimą - + Feeds refresh interval: Kanalų įkėlimo iš naujo intervalas: - + Same host request delay: - + Maximum number of articles per feed: Didžiausias įrašų kanale kiekis: - - - + + + min minutes min. - + Seeding Limits Skleidimo Apribojimai - Pause torrent - Pristabdyti torentą - - - + Remove torrent Šalinti torentą - + Remove torrent and its files Šalinti torentą ir jo failus - + Enable super seeding for torrent Įgalinti super atidavimą torentui - + When ratio reaches Kai dalijimosi santykis pasieks - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + Stabdyti torentą + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS torentų automatinis atsiuntimas - + Enable auto downloading of RSS torrents Įjungti automatinį RSS torentų atsiuntimą - + Edit auto downloading rules... Taisyti automatinio atsiuntimo taisykles... - + RSS Smart Episode Filter RSS išmanusis epizodų filtras - + Download REPACK/PROPER episodes Atsisiųsti REPACK/PROPER epizodus - + Filters: Filtrai: - + Web User Interface (Remote control) Tinklo naudotojo sąsaja (Nuotolinis valdymas) - + IP address: IP adresas: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6397,41 +6403,37 @@ Nurodykite IPv4 ar IPv6 adresą. Bet kokiam IPv4 adresui galite nurodyti "0 Bet kokiam IPv6 adresui galite nurodyti "::", arba galite nurodyti "*" bet kokiam IPv4 ir IPv6. - + Ban client after consecutive failures: Uždrausti klientą po nuoseklių nesėkmių: - + Never Niekada - + ban for: draudimas: - + Session timeout: Sesijos laikas baigėsi - + Disabled Išjungta - Enable cookie Secure flag (requires HTTPS) - Įgalinti slapukų saugos žymą (reikalingas HTTPS) - - - + Server domains: Serverio domenai: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6446,37 +6448,37 @@ Norėdami atskirti kelias reikšmes, naudokite ";". Galima naudoti pakaitos simbolį "*". - + &Use HTTPS instead of HTTP Na&udoti HTTPS vietoje HTTP - + Bypass authentication for clients on localhost Apeiti atpažinimą klientams, esantiems vietiniame serveryje - + Bypass authentication for clients in whitelisted IP subnets Apeiti atpažinimą klientams, kurie yra IP potinklių baltajame sąraše - + IP subnet whitelist... IP potinklių baltasis sąrašas... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Atn&aujinti mano dinaminį domeno vardą @@ -6488,7 +6490,7 @@ pakaitos simbolį "*". Search - Paieška + Paieška @@ -6513,7 +6515,7 @@ pakaitos simbolį "*". Color scheme: - + Spalvų rinkinys: @@ -6589,99 +6591,99 @@ pakaitos simbolį "*". Ištrinti atsargines žurnalo kopijas, senesnes nei: - + Show external IP in status bar - + When adding a torrent Kai pridedamas torentas - + Bring torrent dialog to the front Iškelti torento dialogo langą į priekį - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Taip pat ištrinti .torrent failus, kurių pridėjimas buvo atšauktas - + Also when addition is cancelled Taip pat, kai pridėjimas yra atšaukiamas - + Warning! Data loss possible! Įspėjimas! Galimas duomenų praradimas! - + Saving Management Išsaugojimo tvarkymas - + Default Torrent Management Mode: Numatytoji torento tvarkymo veiksena: - + Manual Rankinė - + Automatic Automatinė - + When Torrent Category changed: Kai pakeičiama torento kategorija: - + Relocate torrent Perkelti torentą - + Switch torrent to Manual Mode Perjungti torentą į rankinę veikseną - - + + Relocate affected torrents Perkelti paveiktus torentus - - + + Switch affected torrents to Manual Mode Perjungti paveiktus torentus į rankinę veikseną - + Use Subcategories Naudoti subkategorijas - + Default Save Path: Numatytasis išsaugojimo kelias: - + Copy .torrent files to: Kopijuoti .torrent failus į: @@ -6691,26 +6693,22 @@ pakaitos simbolį "*". Rodyti &qBittorrent piktogramą pranešimų srityje - &Log file - Žu&rnalo failas - - - + Display &torrent content and some options Rodyti &torento turinį ir keletą parinkčių - + De&lete .torrent files afterwards Po to ištri&nti .torrent failus - + Copy .torrent files for finished downloads to: Kopijuoti baigtų atsiuntimų .torrent failus į: - + Pre-allocate disk space for all files Iš anksto priskirti disko vietą visiems failams @@ -6740,10 +6738,6 @@ pakaitos simbolį "*". Preview file, otherwise open destination folder Peržiūrėti failą, priešingu atveju atverti paskirties aplanką - - Show torrent options - Rodyti torento pasirinktis - Shows a confirmation dialog when exiting with active torrents @@ -6809,68 +6803,64 @@ pakaitos simbolį "*". mėtų - + Log performance warnings Registruoti našumo įspėjimus - The torrent will be added to download list in a paused state - Torentas bus įtrauktas į atsisiuntimų sąrašą kaip pristabdytas - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Nepradėti atsiuntimų automatiškai - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Pridėti .!qB plėtinį nebaigtiems siųsti failams - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog Įjungti rekursyvaus atsiuntimo dialogą - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: Kai pasikeičia kategorijos išsaugojimo kelias: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6890,50 +6880,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: Torento sustabdymo sąlyga: - - + + None Nė vienas - - + + Metadata received Metaduomenys gauti - - + + Files checked Failų patikrinta - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Naudokite kitą kelią neužbaigtiems torentams: - + Automatically add torrents from: Automatiškai pridėti torentus iš: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6950,515 +6940,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Gavėjas - + To: To receiver Kam: - + SMTP server: SMTP serveris: - + Sender Siuntėjas - + From: From sender Nuo: - + This server requires a secure connection (SSL) Šis serveris reikalauja saugaus susijungimo (SSL) - - + + Authentication Atpažinimas - - - - + + + + Username: Naudotojo vardas: - - - - + + + + Password: Slaptažodis: - + Run external program Paleisti išorinę programą - + Show console window Rodyti pulto langą - + TCP and μTP TCP ir μTP - + Listening Port Klausymosi prievadas - + Port used for incoming connections: Prievadas, naudojamas įeinantiems sujungimams: - + Set to 0 to let your system pick an unused port - + Random Atsitiktinis - + Use UPnP / NAT-PMP port forwarding from my router Naudoti UPnP / NAT-PMP prievadų nukreipimą mašrutizatoriuje - + Connections Limits Prisijungimų apribojimai - + Maximum number of connections per torrent: Didžiausias prisijungimų skaičius vienam torentui: - + Global maximum number of connections: Visuotinis didžiausias prisijungimų skaičius: - + Maximum number of upload slots per torrent: Didžiausias išsiuntimo prisijungimų skaičius vienam torentui: - + Global maximum number of upload slots: Visuotinis didžiausias leistinas išsiuntimo prisijungimų skaičius: - + Proxy Server Įgaliotasis serveris - + Type: Tipas: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Serveris: - - - + + + Port: Prievadas: - + Otherwise, the proxy server is only used for tracker connections Kitais atvejais įgaliotasis serveris naudojamas tik prisijungimams prie seklių - + Use proxy for peer connections Naudoti įgaliotąjį serverį susijungimams su siuntėjais - + A&uthentication A&tpažinimas - Info: The password is saved unencrypted - Informacija: Slaptažodis yra išsaugomas nešifruotai + Informacija: Slaptažodis yra išsaugomas nešifruotai - + Filter path (.dat, .p2p, .p2b): Kelias iki filtro (.dat, .p2p, .p2b): - + Reload the filter Įkelti filtrą iš naujo - + Manually banned IP addresses... Rankiniu būdu uždrausti IP adresai... - + Apply to trackers Taikyti sekliams - + Global Rate Limits Visuotinis greičio ribojimas - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Išsiuntimo: - - + + Download: Atsiuntimo: - + Alternative Rate Limits Alternatyvūs greičio apribojimai - + Start time Pradžios laikas - + End time Pabaigos laikas - + When: Kada: - + Every day Kasdieną - + Weekdays Darbo dienomis - + Weekends Savaitgaliais - + Rate Limits Settings Greičio apribojimų nustatymai - + Apply rate limit to peers on LAN Taikyti greičio apribojimus siuntėjams LAN tinkle - + Apply rate limit to transport overhead Taikyti santykio apribojimą perdavimo pertekliui - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Taikyti greičio apribojimus µTP protokolui - + Privacy Privatumas - + Enable DHT (decentralized network) to find more peers Įjungti DHT (decentralizuotą tinklą), kad būtų rasta daugiau siuntėjų - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Keistis siuntėjais su suderinamais BitTorrent klientais (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Įjungti apsikeitimą siuntėjais (PeX), kad būtų rasta daugiau siuntėjų - + Look for peers on your local network Ieškoti siuntėjų vietiniame tinkle - + Enable Local Peer Discovery to find more peers Įjungti vietinių siuntėjų aptikimą, kad būtų rasta daugiau siuntėjų - + Encryption mode: Šifravimo veiksena: - + Require encryption Reikalauti šifravimo - + Disable encryption Išjungti šifravimą - + Enable when using a proxy or a VPN connection Įjunkite, kai naudojate įgaliotąjį serverį ar VPN ryšį - + Enable anonymous mode Įjungti anoniminę veikseną - + Maximum active downloads: Didžiausias aktyvių atsiuntimų skaičius: - + Maximum active uploads: Didžiausias aktyvių išsiuntimų skaičius: - + Maximum active torrents: Didžiausias aktyvių torentų skaičius: - + Do not count slow torrents in these limits Į šiuos apribojimus neįskaičiuoti lėtus torentus - + Upload rate threshold: Išsiuntimo greičio slenkstis: - + Download rate threshold: Atsiuntimo greičio slenkstis: - - - - + + + + sec seconds sek. - + Torrent inactivity timer: Torento neveiklumo laikmatis: - + then , o tuomet - + Use UPnP / NAT-PMP to forward the port from my router Naudoti UPnP / NAT-PMP, siekiant nukreipti prievadą iš maršrutizatoriaus - + Certificate: Liudijimas: - + Key: Raktas: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informacija apie liudijimus</a> - + Change current password Keisti dabartinį slaptažodį - Use alternative Web UI - Naudoti alternatyvią tinklo naudotojo sąsają - - - + Files location: Failų vieta: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Saugumas - + Enable clickjacking protection Įjungti apsaugą nuo spustelėjimų ant melagingų objektų - + Enable Cross-Site Request Forgery (CSRF) protection Įjungti apsaugą nuo užklausų tarp svetainių klastojimo (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Įjungti serverio antraštės patvirtinimą - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Paslauga: - + Register Registruotis - + Domain name: Domeno vardas: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Įjungdami šias parinktis, jūs galite <strong>neatšaukiamai prarasti</strong> savo .torrent failus! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Jeigu įjungsite antrą parinktį (&ldquo;Taip pat kai pridėjimas yra atšaukiamas&rdquo;), tuomet .torrent failas <strong>bus ištrinamas</strong> netgi tuo atveju, jei dialoge &ldquo;Pridėti torentą&rdquo; nuspausite &ldquo;<strong>Atsisakyti</strong>&rdquo; @@ -7468,12 +7453,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location Pasirinkti alternatyvią naudotojo sąsajos failų vietą - + Supported parameters (case sensitive): Palaikomi parametrai (skiriant raidžių dydį): @@ -7493,183 +7478,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. Nenustatyta jokia sustabdymo sąlyga. - + Torrent will stop after metadata is received. Torentas bus sustabdytas gavus metaduomenis. - + Torrent will stop after files are initially checked. Torentas bus sustabdytas, kai failai bus iš pradžių patikrinti. - + This will also download metadata if it wasn't there initially. Taip pat bus atsisiunčiami metaduomenys, jei jų iš pradžių nebuvo. - + %N: Torrent name %N: Torento pavadinimas - + %L: Category %L: Kategorija - + %F: Content path (same as root path for multifile torrent) %F: Turinio kelias (toks pats kaip šaknies kelias kelių failų torente) - + %R: Root path (first torrent subdirectory path) %R: Šaknies kelias (pirmas torento pakatalogio kelias) - + %D: Save path %D: Išsaugojimo kelias - + %C: Number of files %C: Failų skaičius - + %Z: Torrent size (bytes) %Z: Torento dydis (baitais) - + %T: Current tracker %T: Esamas seklys - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Patarimas: Tam, kad tekstas nebūtų apkirptas ties tarpais, rašykite parametrą kabutėse (pvz., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (jokio) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torentas bus laikomas lėtu, jeigu per "Torento neveiklumo laikmačio" sekundes jo atsiuntimo ir išsiuntimo greičiai išlieka žemiau šių reikšmių - + Certificate Liudijimas - + Select certificate Pasirinkti sertifikatą - + Private key Privatusis raktas - + Select private key Pasirink privatu raktą - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Tamsus - + Light Light color scheme - + Šviesus - + System System color scheme - + Select folder to monitor Pasirinkite aplanką, kurį stebėti - + Adding entry failed Įrašo pridėjimas nepavyko - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Vietos klaida - - + + Choose export directory Pasirinkite eksportavimo katalogą - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7679,69 +7664,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: Žymės (atskirtos kableliais) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Pasirinkite išsaugojimo katalogą - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Pasirinkite IP filtrų failą - + All supported filters Visi palaikomi filtrai - + The alternative WebUI files location cannot be blank. - + Parsing error Analizavimo klaida - + Failed to parse the provided IP filter Nepavyko išanalizuoti pateikto IP filtro - + Successfully refreshed Sėkmingai atnaujinta - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Pateiktas IP filtras sėkmingai išanalizuotas. Pritaikytos %1 taisyklės. @@ -7752,18 +7737,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Nuostatos - + Time Error Laiko klaida - + The start time and the end time can't be the same. Pradžios bei pabaigos laikai negali sutapti. - - + + Length Error Ilgio klaida @@ -7854,163 +7839,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Šalis - + IP/Address IP/adresas - + Port Prievadas - + Flags Vėliavos - + Connection Jungiamumas - + Client i.e.: Client application Klientas - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Eiga - + Down Speed i.e: Download speed Atsiuntimo greitis - + Up Speed i.e: Upload speed Išsiuntimo greitis - + Downloaded i.e: total data downloaded Atsiųsta - + Uploaded i.e: total data uploaded Išsiųsta - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Tinkamumas - + Files i.e. files that are being downloaded right now Failai - + Column visibility Stulpelio matomumas - + Resize columns Keisti stulpelių dydį - + Resize all non-hidden columns to the size of their contents Pakeiskite visų nepaslėptų stulpelių dydį iki jų turinio dydžio - + Add peers... Pridėti siuntėjus... - - + + Adding peers Pridedami siuntėjai - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. Siuntėjai pridėti šiam torentui - - + + Ban peer permanently Uždrausti siuntėją visam laikui - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? Ar tikrai norite visam laikui uždrausti pasirinktus siuntėjus? - + Peer "%1" is manually banned Siuntėjas "%1" rankiniu būdu buvo uždraustas - + N/A Nėra - + Copy IP:port Kopijuoti IP:prievadą @@ -8291,34 +8276,8 @@ Tie papildiniai buvo išjungti. PowerManagement - qBittorrent is active - qBittorrent aktyvi - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent aktyvi @@ -8568,7 +8527,7 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". Popularity: - + Populiarumas: @@ -8611,153 +8570,124 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1".Išsaugojimo kelias: - + Never Niekada - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (turima %3) - - + + %1 (%2 this session) %1 (%2 šiame seanse) - - + + N/A Nėra - + Yes - Taip + Taip - + No - Ne + Ne - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (skleidžiama jau %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (daugiausiai %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (viso %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (vidut. %2) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Naujas žiniatinklio šaltinis - - - Remove Web seed - Pašalinti žiniatinklio šaltinį - - - Copy Web seed URL - Kopijuoti žiniatinklio šaltinio URL - - - Edit Web seed URL - Redaguoti žiniatinklio šaltinio URL - - - + Filter files... Filtruoti failus... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - Naujo šaltinio adresas - - - New URL seed: - Naujo šaltinio adresas: - - - This URL seed is already in the list. - Šis adresas jau yra sąraše. - - - + Web seed editing Žiniatinklio šaltinio redagavimas - + Web seed URL: Žiniatinklio šaltinio URL: @@ -8765,33 +8695,33 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". RSS::AutoDownloader - - + + Invalid data format. Neteisingas duomenų formatas. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Nepavyko įrašyti RSS automatinio atsiuntimo duomenų į %1. Klaida: %2 - + Invalid data format Klaidingas duomenų formatas - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Nepavyko įkelti RSS automatinio atsiuntimo taisyklių. Priežastis: %1 @@ -8799,22 +8729,22 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Nepavyko atsisiųsti RSS kanalo ties "%1". Priežastis: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS kanalas ties "%1" atnaujintas. Pridėta %2 naujų įrašų. - + Failed to parse RSS feed at '%1'. Reason: %2 Nepavyko išnagrinėti RSS kanalo ties "%1". Priežastis: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS kanalas, esantis „%1“, yra sėkmingai atsisiųstas. Pradedama jį nagrinėti. @@ -8863,12 +8793,12 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8890,76 +8820,121 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". - + Item doesn't exist: %1. Elemento nėra: %1. - Couldn't move folder into itself. - Nepavyko perkelti aplanko į jį patį. + Nepavyko perkelti aplanko į jį patį. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Nepavyksta ištrinti šakninio aplanko. - + Failed to read RSS session data. %1 Nepavyko perskaityti RSS seanso duomenų. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Nepavyko įkelti RSS kanalo. Kanalas: „%1“. Priežastis: Reikia URL adreso. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Nepavyko įkelti RSS kanalo. Kanalas: „%1“. Priežastis: Neteisingas UID. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Rastas besidubliuojantis RSS kanalas. UID: „%1“. Klaida: Atrodo, kad konfigūracija yra sugadinta. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Neteisingas RSS elemento kelias: %1. - + RSS item with given path already exists: %1. RSS elementas su nurodytu keliu jau yra: %1. - + Parent folder doesn't exist: %1. Viršaplankio nėra: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Kanalo nėra: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sek. + + + + Default + + + RSSWidget @@ -9059,78 +9034,77 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". + Feed options... + + + Edit feed URL... - Taisyti kanalo URL... + Taisyti kanalo URL... - Edit feed URL - Taisyti kanalo URL + Taisyti kanalo URL - + Please choose a folder name Pasirinkite aplanko pavadinimą - + Folder name: Aplanko pavadinimas: - + New folder Naujas aplankas - - Please type a RSS feed URL - Įrašykite RSS kanalo URL + Įrašykite RSS kanalo URL - - Feed URL: - Kanalo URL: + Kanalo URL: - + Deletion confirmation Ištrynimo patvirtinimas - + Are you sure you want to delete the selected RSS feeds? Ar tikrai norite ištrinti pasirinktus RSS kanalus? - + Please choose a new name for this RSS feed Pasirinkite šiam RSS kanalui naują pavadinimą - + New feed name: Naujas kanalo pavadinimas: - + Rename failed Pervadinimas nepavyko - + Date: Data: - + Feed: Kanalas: - + Author: Autorius: @@ -9267,10 +9241,6 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1".i.e: Number of partial sources Siuntėjai - - Search engine - Paieškos sistema - Filter search results... @@ -9391,104 +9361,104 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". SearchPluginManager - + Unknown search engine plugin file format. Nežinomas paieškos sistemos papildinio failo formatas. - + Plugin already at version %1, which is greater than %2 Papildinys jau yra %1 versijos, kuri naujesnė nei %2 - + A more recent version of this plugin is already installed. Jau yra įdiegta naujesnė šio papildinio versija. - + Plugin %1 is not supported. Papildinys %1 nėra palaikomas. - - + + Plugin is not supported. Papildinys nepalaikomas. - + Plugin %1 has been successfully updated. Papildinys %1 buvo sėkmingai atnaujintas. - + All categories Visos kategorijos - + Movies Filmai - + TV shows TV laidos - + Music Muzika - + Games Žaidimai - + Anime Anime - + Software Programinė įranga - + Pictures Paveikslai - + Books Knygos - + Update server is temporarily unavailable. %1 Atnaujinimų serveris laikinai neprieinamas. %1 - - + + Failed to download the plugin file. %1 Nepavyko atsisiųsti papildinio failo. %1 - + Plugin "%1" is outdated, updating to version %2 Papildinys "%1" yra pasenęs, atnaujinama į %2 versiją - + Incorrect update info received for %1 out of %2 plugins. %1 iš %2 papildinių gauta neteisinga atnaujinimo informacija. - + Search plugin '%1' contains invalid version string ('%2') Paieškos papildinyje "%1" yra neteisinga versijos eilutė ('%2') @@ -9514,135 +9484,127 @@ Norėdami juos įdiegti, spustelėkite lango apatinėje dešinėje mygtuką &quo Paieškos papildiniai... - + A phrase to search for. Frazė, kurios ieškoti. - + Spaces in a search term may be protected by double quotes. Tarpai paieškos žodžiuose gali būti išsaugoti dvigubomis kabutėmis. - + Example: Search phrase example Pavyzdys: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: bus ieškoma <b>foo bar</b> - + All plugins Visi papildiniai - + Only enabled Tik įjungti - - + + Invalid data format. - Neteisingas duomenų formatas. + Neteisingas duomenų formatas. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: bus ieškoma <b>foo</b> ir <b>bar</b> - + Refresh - + Close tab Užverti kortelę - + Close all tabs Užverti visas korteles - + Select... Pasirinkti... - - + + Search Engine Paieškos sistema - - + + Please install Python to use the Search Engine. Norėdami naudoti paieškos sistemą, įdiekite Python. - + Empty search pattern Tuščias paieškos raktažodis - + Please type a search pattern first Visų pirma nurodykite paieškos raktažodį - + Stop Stabdyti - - Search has finished - Paieška baigta - - - Search has failed - Paieška nepavyko - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10040,67 +10002,77 @@ Norėdami juos įdiegti, spustelėkite lango apatinėje dešinėje mygtuką &quo StatusBar - + Connection status: Prisijungimo būsena: - - + + No direct connections. This may indicate network configuration problems. Nėra tiesioginių susijungimų. Tai gali reikšti tinklo nustatymo problemas. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 mazgų - + qBittorrent needs to be restarted! qBittorrent turi būti paleista iš naujo! - - + + Connection Status: Prisijungimo būsena: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Neprisijungta. Tai dažniausiai reiškia, jog qBittorrent nepavyko klausytis ties pasirinktu prievadu. - + Online Prisijungta - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Spauskite, jei norite įjungti alternatyvius greičio apribojimus - + Click to switch to regular speed limits Spauskite, jei norite įjungti įprastus greičio apribojimus @@ -10128,23 +10100,15 @@ Norėdami juos įdiegti, spustelėkite lango apatinėje dešinėje mygtuką &quo Completed (0) Užbaigti (0) - - Resumed (0) - Pratęsti (0) - - - Paused (0) - Pristabdyti (0) - Running (0) - + Paleisti (0) Stopped (0) - + Sustabdyti (0) @@ -10209,49 +10173,33 @@ Norėdami juos įdiegti, spustelėkite lango apatinėje dešinėje mygtuką &quo Running (%1) - + Paleisti (%1) Stopped (%1) - + Sustabdyti (%1) Start torrents - + Paleisti torentus Stop torrents - - - - Paused (%1) - Pristabdyti (%1) + Stabdyti torentus Moving (%1) Perkeliami (%1) - - Resume torrents - Prastęsti torentus - - - Pause torrents - Pristabdyti torentus - Remove torrents Pašalinti torentai - - Resumed (%1) - Pratęsti (%1) - Active (%1) @@ -10323,32 +10271,20 @@ Norėdami juos įdiegti, spustelėkite lango apatinėje dešinėje mygtuką &quo Remove unused tags Šalinti nenaudojamas žymes - - Resume torrents - Pratęsti torentus - - - Pause torrents - Pristabdyti torentus - Remove torrents Pašalinti torentai - - New Tag - Nauja žymė - Start torrents - + Paleisti torentus Stop torrents - + Stabdyti torentus @@ -10675,17 +10611,17 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. TorrentCreatorController - + Too many active tasks Per daug aktyvių užduočių - + Torrent creation is still unfinished. Torento sukūrimas yra vis dar neužbaigtas. - + Torrent creation failed. Nepavyko sukurti torento. @@ -10937,13 +10873,6 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. - - TorrentInfo - - Invalid metadata - Neteisingi metaduomenys - - TorrentOptionsDialog @@ -10981,10 +10910,6 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Torrent Share Limits - - Torrent speed limits - Torento greičio apribojimai - Download: @@ -11017,22 +10942,6 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Upload: Išsiuntimo: - - Use global share limit - Naudoti visuotinį dalinimosi apribojimą - - - Set no share limit - Nenustatinėti jokio dalinimosi apribojimo - - - Set share limit to - Nustatyti dalinimosi apribojimą į - - - ratio - santykis - Disable DHT for this torrent @@ -11074,14 +10983,6 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Not applicable to private torrents Netaikoma privatiems torentams - - No share limit method selected - Nepasirinktas joks dalijimosi apribojimo metodas - - - Please select a limit method first - Iš pradžių, pasirinkite apribojimų metodą - TorrentShareLimitsWidget @@ -11136,12 +11037,12 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Stop torrent - + Stabdyti torentą Remove torrent - Šalinti torentą + Šalinti torentą @@ -11151,7 +11052,7 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Enable super seeding for torrent - Įgalinti super atidavimą torentui + Įgalinti super atidavimą torentui @@ -11166,10 +11067,6 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Torrent Tags Torento žymės - - New Tag - Nauja žymė - Add tag @@ -11204,78 +11101,78 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. TorrentsController - + Error: '%1' is not a valid torrent file. Klaida: '%1' nėra taisyklingas torento failas. - + Priority must be an integer Svarba privalo būti sveikasis skaičius - + Priority is not valid Svarba yra neteisinga - + Torrent's metadata has not yet downloaded Torento metaduomenys dar nebuvo atsisiųsti - + File IDs must be integers Failų ID privalo būti sveikieji skaičiai - + File ID is not valid Failo ID yra neteisingas - - - - + + + + Torrent queueing must be enabled Privalo būti įjungta siuntimų eilė - - + + Save path cannot be empty Išsaugojimo kelias negali būti tuščias - - + + Cannot create target directory - - + + Category cannot be empty Kategorija negali būti tuščia - + Unable to create category Nepavyko sukurti kategorijos - + Unable to edit category Nepavyko taisyti kategorijos - + Unable to export torrent file. Error: %1 - + Cannot make save path Nepavyksta sukurti išsaugojimo kelio @@ -11295,39 +11192,39 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Nepavyksta rašyti į katalogą - + WebUI Set location: moving "%1", from "%2" to "%3" Tinklo sąsaja Nustatyti vietą: perkeliama "%1", iš "%2" į "%3" - + Incorrect torrent name Neteisingas torento pavadinimas - - + + Incorrect category name Neteisingas kategorijos pavadinimas @@ -11427,19 +11324,11 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Min Announce - - Invalid status! - Neteisinga būsena! - Tier Pakopa - - Protocol - Protokolas - Status @@ -11470,18 +11359,6 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Message Žinutė - - Next announce - Kitas skelbimas - - - Min announce - Mažiausias skelbimas - - - v%1 - v%1 - TrackerListWidget @@ -11491,73 +11368,73 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Šis torentas yra privatus - + Tracker editing Seklio taisymas - + Tracker URL: Seklio URL: - - + + Tracker editing failed Nepavyko taisyti seklio - + The tracker URL entered is invalid. Įvestas netaisyklingas seklio URL. - + The tracker URL already exists. Toks seklio URL jau yra. - + Edit tracker URL... Taisyti seklio URL... - + Remove tracker Šalinti seklį - + Copy tracker URL Kopijuoti seklio URL - + Force reannounce to selected trackers Priverstinai siųsti atnaujinimus pasirinktiems sekliams - + Force reannounce to all trackers Priverstinai siųsti atnaujinimus visiems sekliams - + Resize columns Keisti stulpelių dydį - + Resize all non-hidden columns to the size of their contents Pakeiskite visų nepaslėptų stulpelių dydį iki jų turinio dydžio - + Add trackers... - + Column visibility Stulpelio matomumas @@ -11640,20 +11517,12 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Start torrents - + Paleisti torentus Stop torrents - - - - Resume torrents - Prastęsti torentus - - - Pause torrents - Pristabdyti torentus + Stabdyti torentus @@ -11777,10 +11646,6 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Tikrinami pratęsimo duomenys - - Paused - Pristabdyti - Completed @@ -11821,21 +11686,16 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. % Done Eiga - - Status - Torrent status (e.g. downloading, seeding, paused) - Būsena - Stopped - + Sustabdyta Status Torrent status (e.g. downloading, seeding, stopped) - Būsena + Būsena @@ -11870,7 +11730,7 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Popularity - + Populiarumas @@ -11951,22 +11811,17 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Time Active Time (duration) the torrent is active (not stopped) - Aktyvus + Aktyvus Yes - Taip + Taip No - Ne - - - Time Active - Time (duration) the torrent is active (not paused) - Aktyvus + Ne @@ -12068,346 +11923,319 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. TransferListWidget - + Column visibility Stulpelio matomumas - + Recheck confirmation Pertikrinimo patvirtinimas - + Are you sure you want to recheck the selected torrent(s)? Ar tikrai norite pertikrinti pasirinktą torentą (-us)? - + Rename Pervadinti - + New name: Naujas vardas: - + Choose save path Pasirinkite išsaugojimo kelią - Would you like to pause all torrents? - Ar norėtumėte pristabdyti visus torentus? - - - Would you like to resume all torrents? - Ar norėtumėte pratęsti visus torentus? - - - + Unable to preview Nepavyko peržiūrėti - + The selected torrent "%1" does not contain previewable files Pasirinktas torentas "%1" neturi failų kuriuos būtu galima peržiūrėti - + Resize columns Keisti stulpelių dydį - + Resize all non-hidden columns to the size of their contents Pakeiskite visų nepaslėptų stulpelių dydį iki jų turinio dydžio - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Pridėti žymes - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists Failas tokiu pavadinimu jau yra - + Export .torrent file error - + Remove All Tags Šalinti visas žymes - + Remove all tags from selected torrents? Šalinti pasirinktiems torentams visas žymes? - + Comma-separated tags: Kableliais atskirtos žymės: - + Invalid tag Neteisinga žymė - + Tag name: '%1' is invalid Žymės pavadinimas: "%1" yra neteisingas - &Resume - Resume/start the torrent - P&ratęsti - - - &Pause - Pause the torrent - &Pristabdyti - - - Force Resu&me - Force Resume/start the torrent - Priverstinai pratę&sti - - - + Pre&view file... Perž&iūrėti failą... - + Torrent &options... Torento &parinktys... - + Open destination &folder Atverti paskirties a&planką - + Move &up i.e. move up in the queue Pa&kelti - + Move &down i.e. Move down in the queue &Nuleisti - + Move to &top i.e. Move to top of the queue Perkelti į &viršų - + Move to &bottom i.e. Move to bottom of the queue Perkelti į &apačią - + Set loc&ation... Nustatyti vie&tą... - + Force rec&heck - + Force r&eannounce - + &Magnet link &Magnet nuoroda - + Torrent &ID Torento &ID - + &Comment &Komentaras - + &Name Pavadi&nimas - + Info &hash v1 - + Info h&ash v2 - + Re&name... Per&vadinti... - + Edit trac&kers... - + E&xport .torrent... E&ksportuoti .torrent... - + Categor&y Kategor&ija - + &New... New category... &Nauja... - + &Reset Reset category A&tstatyti - + Ta&gs Ž&ymės - + &Add... Add / assign multiple tags... &Pridėti... - + &Remove All Remove all tags Ša&linti visas - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Eilė - + &Copy &Kopijuoti - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Siųsti dalis iš eilės - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent Ša&linti - + Download first and last pieces first Visų pirma siųsti pirmas ir paskutines dalis - + Automatic Torrent Management Automatinis torento tvarkymas - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatinė veiksena reiškia, kad įvairios torento savybės (pvz., išsaugojimo kelias) bus nuspręstos pagal priskirtą kategoriją. - + Super seeding mode Super skleidimo režimas @@ -12539,32 +12367,32 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12656,52 +12484,52 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Nepriimtinas failo tipas, yra leidžiamas tik įprastas failas. - + Symlinks inside alternative UI folder are forbidden. Simbolinės nuorodos alternatyvaus naudotojo sąsajos aplanko viduje yra uždraustos. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12759,7 +12587,7 @@ Pasirinkite kitokį pavadinimą ir bandykite dar kartą. Unknown error - Nežinoma klaida + Nežinoma klaida diff --git a/src/lang/qbittorrent_ltg.ts b/src/lang/qbittorrent_ltg.ts index 05a273c23..cc40a79e1 100644 --- a/src/lang/qbittorrent_ltg.ts +++ b/src/lang/qbittorrent_ltg.ts @@ -12,75 +12,75 @@ Par - + Authors Autori - + Current maintainer Niulejais saiminīks - + Greece Grekeja - - + + Nationality: Piļsuoneiba: - - + + E-mail: E-posts: - - + + Name: Vuords: - + Original author Programmas radeituojs - + France Praņceja - + Special Thanks Cīši paļdis - + Translators Puorvārsuoji - + License Liceņceja - + Software Used Programatura - + qBittorrent was built with the following libraries: qBittorrent tika sastateits lītojūt ituos bibliotekas - + Copy to clipboard @@ -164,15 +164,10 @@ Izglobuot ite - + Never show again Vairuok naruodeit - - - Torrent settings - Torrenta īstatejumi - Set as default category @@ -189,12 +184,12 @@ Suokt atsasyuteišonu - + Torrent information Torrenta inpormaceja - + Skip hash check Izlaist maiseituojkoda puorbaudi @@ -203,6 +198,11 @@ Use another path for incomplete torrent + + + Torrent options + + Tags: @@ -229,75 +229,75 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - - + + Files checked - + Add to top of queue - + When checked, the .torrent file will not be deleted regardless of the settings at the "Download" page of the Options dialog - + Content layout: Satvora izlikaliejums: - + Original - + Create subfolder Radeit zamapvuoci - + Don't create subfolder Naradeit zamapvuoci - + Info hash v1: Maiseituojkods v1: - + Size: Lelums: - + Comment: Komentars: - + Date: Data: @@ -327,147 +327,147 @@ Atguoduot pādejū izglobuošonas vītu - + Do not delete .torrent file Nedzēst torrenta failu - + Download in sequential order Atsasyuteit saksteiguo parādā - + Download first and last pieces first Paprīšķu atsasyuteit pyrmuos i pādejuos dalenis - + Info hash v2: Maiseituojkods v2: - + Select All Izlaseit vysys - + Select None Izlaseit nivīnu - + Save as .torrent file... Izglobuot kai .torrent failu... - + I/O Error I/O klaida - + Not Available This comment is unavailable Nav daīmams - + Not Available This date is unavailable Nav daīmams - + Not available Nav daīmams - + Magnet link Magnetsaita - + Retrieving metadata... Tiek izdabuoti metadati... - - + + Choose save path Izalaseit izglobuošonas vītu - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - - + + N/A Navā zynoms - + %1 (Free space on disk: %2) %1 (Breivas vītas uz diska: %2) - + Not available This size is unavailable. Nav daīmams - + Torrent file (*%1) Torrenta fails (*%1) - + Save as torrent file Izglobuot kai torrenta failu - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... Meklēt failuos... - + Parsing metadata... Tiek apdareiti metadati... - + Metadata retrieval complete Metadatu izdabuošana dabeigta @@ -485,22 +485,22 @@ - + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source @@ -666,763 +666,852 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Atkuortuotai puorsavērt torrentus piec atsasyuteišonas dabeigšonas. - - + + ms milliseconds ms - + Setting Fuņkcejas - + Value Value set for this setting Vierteiba - + (disabled) (atslēgts) - + (auto) (automatiski) - + + min minutes myn - + All addresses Vysas adresas - + qBittorrent Section qBittorent izdola - - + + Open documentation Skaiteit dokumentaceju - + All IPv4 addresses Vysas IPv4 adresas - + All IPv6 addresses Vysas IPv6 adresas - + libtorrent Section libtorrent izdola - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Norma - + Below normal Zam normu - + Medium Vydyskys - + Low Zams - + Very low Cīši zams - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache Cītdiska vydatguods - - - - + + + + s seconds s - + Disk cache expiry interval Cītdiska vydatguoda dereiguma iņtervals - + Disk queue size - - + + Enable OS cache Lītuot sistemys vydatguodu - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + + Delete files permanently + + + + + Move files to trash (if possible) + + + + + Torrent content removing mode + + + + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + + Simple pread/pwrite + + + + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - - .torrent file size limit - - - - - Type of service (ToS) for connections to peers + + Save statistics interval [0: disabled] + How often the statistics file is saved. + .torrent file size limit + + + + + Type of service (ToS) for connections to peers + + + + Prefer TCP Dūt pyrmaileibu TCP - + Peer proportional (throttles TCP) - + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address Atļaut nazcik salaidumus nu vīnas IP adress - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Ruodeit kūplītuotuoju datoru pasaukas - + IP address reported to trackers (requires restart) IP adress kū paviesteit trakeriem (vajadzeigs restarts) - + + Port reported to trackers (requires restart) [0: listening port] + + + + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) + + + + + Ignore SSL errors + + + + (Auto detect if empty) - + Python executable path (may require restart) - + + Start BitTorrent session in paused state + + + + + sec + seconds + sek + + + + -1 (unlimited) + + + + + BitTorrent session shutdown timeout [-1: unlimited] + + + + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Ruodeit viesteņas - + Display notifications for added torrents Ruodeit viesteņas par daliktajiem torrentiem - + Download tracker's favicon Atsasyuteit trakera lopys ikonu - + Save path history length Izglobuošonas vītu viesturis garums - + Enable speed graphs Īslēgt dreizumu grafiku - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload Dreižuokā nūsasyuteišona - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck Apstyprynuot atkuortuotu torrenta puorvēri - + Confirm removal of all tags Apstyprynuot vysu byrku nūjimšonu - + Always announce to all trackers in a tier Vysod atjaunynuot datus ar vysim trakeriem grupā - + Always announce to all tiers Vysod atjaunynuot datus ar vysim trakeriem vysuos grupās - + Any interface i.e. Any network interface Automatiski - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries Ruodeit kūplītuotuoju vaļsteibas - + Network interface Škārsteikla sadurs: - + Optional IP address to bind to Dasaisteit papyldoma IP adresi: - + Max concurrent HTTP announces - + Enable embedded tracker Īslēgt īmontātuo trakeri - + Embedded tracker port Īmontāta trakera ports + + AppController + + + + Invalid directory path + + + + + Directory does not exist + + + + + Invalid mode, allowed values: %1 + + + + + cookies must be array + + + Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 Niulejuos koņfiguracejis apvuocis: %1 - + Torrent name: %1 Torrenta pasauka: %1 - + Torrent size: %1 Torrenta lelums: %1 - + Save path: %1 Izglobuošonas vīta: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrents tika atsasyuteits %1 - + + Thank you for using qBittorrent. Paļdis, ka lītojat qBittorrent. - + Torrent: %1, sending mail notification Torrents: %1, syuta posta viesteņu - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit Izīt - + I/O Error i.e: Input/Output Error I/O klaida - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1431,100 +1520,110 @@ Īmesls: %2 - + Torrent added Torrents dalikts - + '%1' was added. e.g: xxx.avi was added. '%1' tika dalikts. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + + This is a test email. + + + + + Test email + + + + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' atsasyuteišona ir dabeigta. - + Information Inpormaceja - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Nikod - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Izglobuo torrenta progressu... - + qBittorrent is now ready to exit @@ -1603,12 +1702,12 @@ - + Must Not Contain: Naīlikt: - + Episode Filter: Epizozu filtrys: @@ -1661,263 +1760,263 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." &Izglobuot fiļtrys... - + Matches articles based on episode filter. Meklej rezultatus piec epizozu fiļtra. - + Example: Pīvadums: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match filtrys atlaseis 2., 5., nū 8. leidz 15., 30. i tuoluokās pirmous sezonys epizozes. - + Episode filter rules: Epizozu filtrys: - + Season number is a mandatory non-zero value Sezonys numurs navar byut 0 - + Filter must end with semicolon Filtri vajag dabeigt ar komatpunkti - + Three range types for episodes are supported: Filtrym lītojami 3 parametri: - + Single number: <b>1x25;</b> matches episode 25 of season one Parametris: <b>1x25;</b> atlaseis tik 1. sezonys 25. epizodi - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Parametris: <b>1x25-40;</b> atlaseis tik 1. sezonys epizodes, nū 25. leidz 40. - + Episode number is a mandatory positive value Epizodys numurs navar byut negativs - + Rules Filtrys - + Rules (legacy) Filtrys (vacajs) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Parametris: <b>1x25-;</b> atlaseis vysas sezonas i epizodes, suokot ar 1. sezonas 25. epizodi. - + Last Match: %1 days ago Pādejī rezultati: pyrms %1 dīnu - + Last Match: Unknown Pādejī rezultati: nav - + New rule name Jauna fiļtra pasauka - + Please type the name of the new download rule. Lyudzu Īvoduot jauna fiļtra pasauku. - - + + Rule name conflict - - + + A rule with this name already exists, please choose another name. Fiļtrys ar itaidu pasauku jau ir, lyudzu izalaseit cytu pasauku. - + Are you sure you want to remove the download rule named '%1'? - + Are you sure you want to remove the selected download rules? - + Rule deletion confirmation Apstyprynuot iztreišonu - + Invalid action Nadereiga darbeiba - + The list is empty, there is nothing to export. Saroksts tukšs, nav kū izglobuot. - + Export RSS rules Izglobuot RSS fiļtru - + I/O Error I/O klaida - + Failed to create the destination file. Reason: %1 Naīsadevās radeit failu. Īmesls: %1 - + Import RSS rules Dalikt RSS fiļtru - + Failed to import the selected rules file. Reason: %1 Naīsadevās dalikt izalaseituo fiļtru. Īmesls: %1 - + Add new rule... Pīlikt jaunu fiļtri... - + Delete rule Iztreit fiļtri - + Rename rule... Puorsaukt fiļtri - + Delete selected rules Iztreit izalaseituos fiļtrus - + Clear downloaded episodes... - + Rule renaming Fiļtra puorsaukšona - + Please type the new rule name Lyudzu Īvoduot jauna fiļtra pasauku - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 Poziceja %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -1959,7 +2058,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::BencodeResumeDataStorage - + Cannot create torrent resume folder: "%1" @@ -1969,28 +2068,28 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2005,12 +2104,12 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2018,38 +2117,38 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + Couldn't begin transaction. Error: %1 @@ -2057,22 +2156,22 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2080,457 +2179,498 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON ĪGRĪZTS - - - - - - - - - + + + + + + + + + OFF NŪGRĪZTS - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED DASTATEIGS - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - - - + Torrent: "%1". - - - - Removed torrent. - - - - - - - Removed torrent and deleted its content. - - - - - - - Torrent paused. - - - - - - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + + Saving resume data completed. + + + + + BitTorrent session successfully finished. + + + + + Session shutdown timed out. + + + + + Removing torrent. + + + + + Removing torrent and deleting its content. + + + + + Torrent stopped. + + + + + Torrent content removed. Torrent: "%1" + + + + + Failed to remove torrent content. Torrent: "%1". Error: "%2" + + + + + Torrent removed. Torrent: "%1" + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 + + + + + Merging of trackers is disabled + + + + + Trackers cannot be merged because it is a private torrent + + + + + Trackers are merged from new source + + + + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + + Tracker list updated + + + + + Failed to update tracker list. Reason: "%1" + + + + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - - Torrent paused. Torrent: "%1" + + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Torrent stopped. Torrent: "%1" + + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - - - Removed torrent. Torrent: "%1" - - - - - Removed torrent and deleted its content. Torrent: "%1" - - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" + + + + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2546,13 +2686,13 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::TorrentCreator - + Operation aborted - - + + Create new torrent file failed. Reason: %1. @@ -2560,67 +2700,67 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::TorrentImpl - + Failed to add peer "%1" to torrent "%2". Reason: %3 - + Peer "%1" is added to torrent "%2" - + Unexpected data detected. Torrent: %1. Data: total_wanted=%2 total_wanted_done=%3. - + Couldn't write to file. Reason: "%1". Torrent is now in "upload only" mode. - + Download first and last piece first: %1, torrent: '%2' Paprīšķu atsasyuteit pyrmuos i pādejuos dalenis: %1, torrents: '%2' - + On Īslēgts - + Off Atslēgts - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -2641,189 +2781,189 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." CMD Options - + Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=value' - + Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=<value>' - + Expected integer number in environment variable '%1', but got '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - - - - + Expected %1 in environment variable '%2', but got '%3' - - + + %1 must specify a valid port (1 to 65535). - + Usage: - + [options] [(<filename> | <url>)...] - + Options: Vareibas: - + Display program version and exit - + Display this help message and exit - + + Parameter '%1' must follow syntax '%1=%2' + e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' + + + + Confirm the legal notice - - + + port ports - + Change the WebUI port - + Change the torrenting port - + Disable splash screen - + Run in daemon-mode (background) - + dir Use appropriate short form or abbreviation of "directory" apvuocis - + Store configuration files in <dir> - - + + name pasauka - + Store configuration files in directories qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory - + files or URLs vaili voi saitys - + Download the torrents passed by the user - + Options when adding new torrents: - + path vīta - + Torrent save path Torrenta izglobuošonas vīta - - Add torrents as started or paused + + Add torrents as running or stopped - + Skip hash check Izlaist maiseituojkoda puorbaudi - + Assign torrents to category. If the category doesn't exist, it will be created. - + Download files in sequential order Atsasyuteit saksteiguo parādā - + Download first and last pieces first Paprīšķu atsasyuteit pyrmuos i pādejuos dalenis - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. - + Option values may be supplied via environment variables. For option named 'parameter-name', environment variable name is 'QBT_PARAMETER_NAME' (in upper case, '-' replaced with '_'). To pass flag values, set the variable to '1' or 'TRUE'. For example, to disable the splash screen: - + Command line parameters take precedence over environment variables - + Help Paleigs @@ -2875,13 +3015,13 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - Resume torrents - Aizsuokt torrentus + Start torrents + - Pause torrents - Nūstuodeit torrentus + Stop torrents + @@ -2892,15 +3032,20 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." ColorWidget - + Edit... - + Reset Atstateit + + + System + + CookiesDialog @@ -2941,12 +3086,12 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." CustomThemeSource - + Failed to load custom theme style sheet. %1 - + Failed to load custom theme colors. %1 @@ -2954,7 +3099,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." DefaultThemeSource - + Failed to load default theme colors. %1 @@ -2973,23 +3118,23 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - Also permanently delete the files + Also remove the content files - + Are you sure you want to remove '%1' from the transfer list? Are you sure you want to remove 'ubuntu-linux-iso' from the transfer list? - + Are you sure you want to remove these %1 torrents from the transfer list? Are you sure you want to remove these 5 torrents from the transfer list? - + Remove @@ -3002,12 +3147,12 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." Atsasyuteit nu saita - + Add torrent links Dalikt torrentu saitys - + One link per line (HTTP links, Magnet links and info-hashes are supported) @@ -3017,12 +3162,12 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." Atsasyuteit - + No URL entered Adrese netika īvoduota - + Please type at least one URL. Lyudzu īvoduot adresi @@ -3181,25 +3326,48 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." + + FilterPatternFormatMenu + + + Pattern Format + + + + + Plain text + + + + + Wildcards + + + + + Regular expression + + + GUIAddTorrentManager - + Downloading torrent... Source: "%1" - - Trackers cannot be merged because it is a private torrent - - - - + Torrent is already present Itys torrents jau ir dalikts - + + Trackers cannot be merged because it is a private torrent. + + + + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3207,38 +3375,38 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." GeoIPDatabase - - + + Unsupported database file size. - + Metadata error: '%1' entry not found. - + Metadata error: '%1' entry has invalid type. - + Unsupported database version: %1.%2 - + Unsupported IP version: %1 - + Unsupported record size: %1 - + Database corrupted: no data section found. @@ -3246,17 +3414,17 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." Http::Connection - + Http request size exceeds limitation, closing socket. Limit: %1, IP: %2 - + Bad Http request method, closing socket. IP: %1. Method: "%2" - + Bad Http request, closing socket. IP: %1 @@ -3297,22 +3465,22 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." IconWidget - + Browse... Apsavērt... - + Reset Atstateit - + Select icon - + Supported image files @@ -3348,13 +3516,13 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." LogPeerModel - + %1 was blocked. Reason: %2. 0.0.0.0 was blocked. Reason: reason for blocking. %1 tika nūblokēta. Īmesls: %2 - + %1 was banned 0.0.0.0 was banned %1 tika nūblokēta @@ -3363,60 +3531,60 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." Main - + %1 is an unknown command line parameter. --random-parameter is an unknown command line parameter. - - + + %1 must be the single command line parameter. - + Run application with -h option to read about command line parameters. - + Bad command line - + Bad command line: - + An unrecoverable error occurred. + - qBittorrent has encountered an unrecoverable error. - + You cannot use %1: qBittorrent is already running. - + Another qBittorrent instance is already running. - + Found unexpected qBittorrent instance. Exiting this instance. Current process ID: %1. - + Error when daemonizing. Reason: "%1". Error code: %2. @@ -3429,600 +3597,677 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." Lobuot - + &Tools Reiki - + &File &Fails - + &Help Paleigs - + On Downloads &Done - + &View Vierīņs - + &Options... Nūstatejumi... - - &Resume - Aizsuokt - - - + &Remove - + Torrent &Creator Torrentu &darynuotuojs - - + + Alternative Speed Limits Aļternativie dreizumi - + &Top Toolbar Viersejuo reikšveitra - + Display Top Toolbar Radeit viersejuo reikšveitru - + Status &Bar Statusa &jūsta - + Filters Sidebar - + S&peed in Title Bar Dreizums pasaukys šveitrā - + Show Transfer Speed in Title Bar Radeit dreizumu pasaukys šveitrā - + &RSS Reader &RSS laseituojs - + Search &Engine Maklātivs - + L&ock qBittorrent Aizslēgt qBittorrent - + Do&nate! Dūt pazīdu! - + + Sh&utdown System + + + + &Do nothing - + Close Window Aiztaiseit lūgu - - R&esume All - Aizsuokt vysys - - - + Manage Cookies... - + Manage stored network cookies - + Normal Messages - + Information Messages - + Warning Messages - + Critical Messages - + &Log - + + Sta&rt + + + + + Sto&p + + + + + R&esume Session + + + + + Pau&se Session + + + + Set Global Speed Limits... - + Bottom of Queue Puorceļt saroksta zamoškā - + Move to the bottom of the queue Puorceļt saroksta zamoškā - + Top of Queue Puorceļt saroksta viersā - + Move to the top of the queue Puorceļt saroksta viersā - + Move Down Queue Puorceļt zamuok sarokstā - + Move down in the queue Puorceļt zamuok sarokstā - + Move Up Queue Puorceļt augstuok sarokstā - + Move up in the queue Puorceļt augstuok sarokstā - + &Exit qBittorrent Aiztaiseit qBittorrent - + &Suspend System - + &Hibernate System - - S&hutdown System - - - - + &Statistics Statistika - + Check for Updates Meklēt atjaunynuojumus - + Check for Program Updates Meklēt aplikacejis atjaunynuojumus - + &About Par - - &Pause - Nūstateit - - - - P&ause All - Nūstuodeit vysys - - - + &Add Torrent File... &Dalikt torrentu failus... - + Open Atkluot - + E&xit Izīt - + Open URL Atkluot teiklavītu - + &Documentation Dokumentaceja - + Lock Aizslēgt - - - + + + Show Ruodeit - + Check for program updates Meklēt aplikacejis atjaunynuojumus - + Add Torrent &Link... Dalikt torrentu &saitys... - + If you like qBittorrent, please donate! - - + + Execution Log - + Clear the password Nūteireit paroli - + &Set Password &Īstateit paroli - + Preferences Īstatejumi - + &Clear Password &Nūteireit paroli - + Transfers Torrenti - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only - + Text Only - + Text Alongside Icons - + Text Under Icons - + Follow System Style - - + + UI lock password - - + + Please type the UI lock password: - + Are you sure you want to clear the password? Voi drūši zini, ka gribi nūteireit paroli? - + Use regular expressions Lītuot Reguļaras izsaceibas - + + + Search Engine + Maklātivs + + + + Search has failed + Mekliešona naīsadevās + + + + Search has finished + Mekliešona dabeigta + + + Search Meklēt - + Transfers (%1) Torrenti (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? Voi drūši zini, ka gribi aiztaiseit qBittorrent? - + &No &Nā - + &Yes &Nui - + &Always Yes &Vysod nui - + Options saved. - + + [PAUSED] %1 + %1 is the rest of the window title + + + + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - - + + Python installer could not be downloaded. Error: %1. +Please install it manually. + + + + + Rename Python installer failed. Source: "%1". Destination: "%2". + + + + + Python installation success. + + + + + Exit code: %1. + + + + + Reason: installer crashed. + + + + + Python installation failed. + + + + + Launching Python installer. File: "%1". + + + + + Missing Python Runtime - + qBittorrent Update Available Daīmams qBittorrent atjaunynuojums - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime - + A new version is available. Daīmama jaunuoka verseja. - + Do you want to download %1? Voi gribi atsasyuteit %1? - + Open changelog... - + No updates available. You are already using the latest version. Navā atjaunynuojumu. Jyusim jau irā pošjaunais qBittorrent izlaidums. - + &Check for Updates &Meklēt atjaunynuojumus - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + + Paused + Nūstuodeits + + + Checking for Updates... Meklē atjaunynuojumus... - + Already checking for program updates in the background - + + Python installation in progress... + + + + + Failed to open Python installer. File: "%1". + + + + + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". + + + + + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". + + + + Download error Atsasyuteišonas kleida - - Python setup could not be downloaded, reason: %1. -Please install it manually. - - - - - + + Invalid password Nadereiga paroļs - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - + + RSS (%1) RSS (%1) - + The password is invalid Paroļs navā dereigs - + DL speed: %1 e.g: Download speed: 10 KiB/s Atsasyut. dreizums: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Nūsasyut. dreizums: %1 - + Hide Naruodeit - + Exiting qBittorrent Aiztaiseit qBittorrent - + Open Torrent Files Izalaseit Torrentu failus - + Torrent Files Torrentu faili @@ -4217,7 +4462,12 @@ Please install it manually. Net::DownloadManager - + + SSL error, URL: "%1", errors: "%2" + + + + Ignoring SSL error, URL: "%1", errors: "%2" @@ -5589,486 +5839,500 @@ Please install it manually. BitTorrent - + RSS RSS - - Web UI - Tuolvaļde - - - + Advanced Papyldvareibas - + Customize UI Theme... - + Transfer List Torrentu saroksts - + Confirm when deleting torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - - - - - Confirm "Pause/Resume all" actions - - - - + Use alternating row colors In table elements, every other row will have a grey background. - + Hide zero and infinity values - + Always Vysod - - Paused torrents only - - - - + Action on double-click - + Downloading torrents: - - - Start / Stop Torrent - Suokt / Nūstuodeit torrentu - - - - + + Open destination folder Atkluot apvuoci - - + + No action - + Completed torrents: - + Auto hide zero status filters - + Desktop - + Start qBittorrent on Windows start up - + Show splash screen on start up - + Confirmation on exit when torrents are active - + Confirmation on auto-exit when downloads finish - + <html><head/><body><p>To set qBittorrent as default program for .torrent files and/or Magnet links<br/>you can use <span style=" font-weight:600;">Default Programs</span> dialog from <span style=" font-weight:600;">Control Panel</span>.</p></body></html> - + KiB KiB - + Torrent content layout: Torrenta satvora izlikaliejums: - + Original - + Create subfolder Radeit zamapvuoci - + Don't create subfolder Naradeit zamapvuoci - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Pīlikt byrku... - + Options.. - + Remove - + Email notification &upon download completion - + + Send test email + + + + + Run on torrent added: + + + + + Run on torrent finished: + + + + Peer connection protocol: Kūplītuotuoju salaidumu protokols: - + Any - + I2P (experimental) - - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - - - - + Mixed mode - + Some options are incompatible with the chosen proxy type! - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits Īstateit laiku Aļternativuo kūpeiguo dreizumu lītuošonai - + From: From start time Nu: - + To: To end time Leidz: - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Vaira dazynuošonys</a>) - + Maximum active checking torrents: - + &Torrent Queueing Torrentu saroksts - + When total seeding time reaches - + When inactive seeding time reaches - - A&utomatically add these trackers to new downloads: - Automatiski pīlikt šūs trakerus pi jaunīm torrentīm: - - - + RSS Reader RSS laseituojs - + Enable fetching RSS feeds Īgrīzt RSS laseituoju - + Feeds refresh interval: Īrokstu atsvīžeišonas iņtervals: - + Same host request delay: - + Maximum number of articles per feed: Īrokstu skaits uz vīnu kanalu: - - - + + + min minutes myn - + Seeding Limits Nūsasyuteišonas rūbežas - - Pause torrent - Nūstuodeit torrentu - - - + Remove torrent Nūjimt torrentu - + Remove torrent and its files Nūjimt torrentu i failus - + Enable super seeding for torrent Īgrīzt super-nūsasyuteišonu - + When ratio reaches - + + Stop torrent + + + + + A&utomatically append these trackers to new downloads: + + + + + Automatically append trackers from URL to new downloads: + + + + + URL: + Adress: + + + + Fetched trackers + + + + + Search UI + + + + + Store opened tabs + + + + + Also store search results + + + + + History length + + + + RSS Torrent Auto Downloader RSS Automatiskys torrentu atsasyuteituojs - + Enable auto downloading of RSS torrents Īgrīzt RSS Automatiskuo atsasyuteišonu - + Edit auto downloading rules... Labuot RSS Automatiskys atsasyuteišonys īstatejumus... - + RSS Smart Episode Filter RSS Gudrais epizozu fiļtrys - + Download REPACK/PROPER episodes Atsasyuteit REPACK/PROPER epizodes - + Filters: Fiļtri: - + Web User Interface (Remote control) Tuolvaļdis sadurs (Web UI) - + IP address: IP adress: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Nikod - + ban for: nūlīgt dativi uz: - + Session timeout: - + Disabled Nūgrīzts - - Enable cookie Secure flag (requires HTTPS) - Īgrīzt glabiņu Secure flag (vajadzeigs HTTPS) - - - + Server domains: Servera domeni: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6077,441 +6341,482 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP HTTP vītā lītuot HTTPS - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + + Use alternative WebUI + + + + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Atjaunynuot muna dinamiskuo domena pasauku - + Minimize qBittorrent to notification area - + + Search + Meklēt + + + + WebUI + + + + Interface Sadurs - + Language: Volūda - + + Style: + + + + + Color scheme: + + + + + Stopped torrents only + + + + + + Start / stop torrent + + + + + + Open torrent options dialog + + + + Tray icon style: - - + + Normal Norma - + File association Failu asociaceja - + Use qBittorrent for .torrent files Lītuot qBittorrent priekš .torrent failim - + Use qBittorrent for magnet links Lītuot qBittorrent priekš Magnetsaitym - + Check for program updates Meklēt aplikacejis atjaunynuojumus - + Power Management Veikmis puorvolds - + + &Log Files + + + + Save path: Izglobuošonas vīta: - + Backup the log file after: - + Delete backup logs older than: - + + Show external IP in status bar + + + + When adding a torrent - + Bring torrent dialog to the front - + + The torrent will be added to download list in a stopped state + + + + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management Saglabuošonas puorvoļds - + Default Torrent Management Mode: Nūklusiejuma Torrenta puorvaļdis režims: - + Manual Rūkvaļde - + Automatic Automatiskuo - + When Torrent Category changed: - + Relocate torrent Puorceļt torrentu - + Switch torrent to Manual Mode - + Relocate affected torrents - + Switch affected torrents to Manual Mode - + Use Subcategories Lītuot zamkategorejas - + Default Save Path: Nūklusiejuma izglobuošonys vīta: - + Copy .torrent files to: Radeit .torrent failu puorspīdumu ite: - + Show &qBittorrent in notification area - - &Log file - - - - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: Radeit .torrent failu puorspīdumu dabeigtīm torrentīm ite: - + Pre-allocate disk space for all files Laiceigi puordrūsynuot vītu uz diska jaunīm failīm - + Use custom UI Theme Lītuot cytu saduri - + UI Theme file: Sadurs fails: - + Changing Interface settings requires application restart - + Shows a confirmation dialog upon torrent deletion - - + + Preview file, otherwise open destination folder - - - Show torrent options - - - - + Shows a confirmation dialog when exiting with active torrents - + When minimizing, the main window is closed and must be reopened from the systray icon - + The systray icon will still be visible when closing the main window - + Close qBittorrent to notification area The systray icon will still be visible when closing the main window - + Monochrome (for dark theme) - + Monochrome (for light theme) - + Inhibit system sleep when torrents are downloading - + Inhibit system sleep when torrents are seeding - + Creates an additional log file after the log file reaches the specified file size - + days Delete backup logs older than 10 days dīnu - + months Delete backup logs older than 10 months mienešīm - + years Delete backup logs older than 10 years godim - + Log performance warnings - - The torrent will be added to download list in a paused state - - - - + Do not start the download automatically - The torrent will be added to download list in a paused state + The torrent will be added to download list in a stopped state Nasuokt atsasyuteišonu automatiski - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Dalikt .!qB golaini nadabeigtīm failīm - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one - + Use icons from system theme - + Window state on start up: - + qBittorrent window state on start up - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6528,766 +6833,816 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Dabuojiejs - + To: To receiver Iz: - + SMTP server: SMTP servers: - + Sender Syuteituojs - + From: From sender Nu: - + This server requires a secure connection (SSL) - - + + Authentication - - - - + + + + Username: Lītuotuojs: - - - - + + + + Password: Paroļs: - + Run external program - - Run on torrent added - - - - - Run on torrent finished - - - - + Show console window - + TCP and μTP TCP i μTP - + Listening Port - + Port used for incoming connections: Ports priekš atīmūšim salaidumim: - + Set to 0 to let your system pick an unused port - + Random Navuošai - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits Salaidumu skaita rūbežas - + Maximum number of connections per torrent: Salaidumu skaits uz vīnu torrentu: - + Global maximum number of connections: Kūpeigais salaidumu skaits: - + Maximum number of upload slots per torrent: Nūsasyuteišonas slotu skaits uz vīnu torrentu: - + Global maximum number of upload slots: Kūpeigais nūsasyuteišonas slotu skaits: - + Proxy Server Vidinīkservers - + Type: Lītuot: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Saiminīks: - - - + + + Port: Ports: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections Lītuot vidinīkserveri kūplītuotuoju salaidumim - + A&uthentication - + Info: The password is saved unencrypted - + Filter path (.dat, .p2p, .p2b): Fiļtrys vīta (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... Nūblokētās IP adresas... - + Apply to trackers Lītuot trakerym - + Global Rate Limits Golvonais kūpeigā dreizuma rūbežs - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Nūsasyuteišona: - - + + Download: Atsasyuteišona: - + Alternative Rate Limits Aļternativais kūpeigā dreizuma rūbežs - + Start time Suokšonas laiks - + End time Beigšonas laiks - + When: Kod: - + Every day Kas dīnys - + Weekdays Dorbadīnās - + Weekends Nedeļgolās - + Rate Limits Settings Dreizuma rūbežs īstatejumi - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> + + + + Apply rate limit to µTP protocol - + Privacy Privatums - + Enable DHT (decentralized network) to find more peers Īgrīzt DHT (nacentralizātū teiklu), lai atrastu vēļ vaira kūplītuotuoju - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Īgrīzt Datu Meitu kūplītuotuoju vydā (PeX), lai atrastu vēļ vaira kūplītuotuoju - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers Īgrīzt Vītejuo kūplītuotuoju mekliešonu, lai atrastu vēļ vaira kūplītuotuoju - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode Īgrīzt anonimū režimu - + Maximum active downloads: Kūpegais aktivuo atsasyuteišonu skaits: - + Maximum active uploads: Kūpegais aktivuo nūsasyuteišonu skaits: - + Maximum active torrents: Kūpegais aktivuo torrentu skaits: - + Do not count slow torrents in these limits Najimt vārā lānuos torrentus - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds sek - + Torrent inactivity timer: Torrenta stibniešonys skaiteklis: - + then tod - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: Sertifikats: - + Key: Atslāgs: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Inpormaceja par sertifikatim</a> - + Change current password Puormeit niulejuo paroli - - Use alternative Web UI - Lītuot cytu tuolvaļdis paneļa saduri - - - + Files location: Failu vīta: - + + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> + + + + Security Drūsums - + Enable clickjacking protection Īgrīzt apsardzeibu pret clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Īgrīzt apsardzeibu pret Cross-Site Request Forgery (CSRF) - + + Enable cookie Secure flag (requires HTTPS or localhost connection) + + + + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> + + + + Service: Serviss: - + Register Registrētīs - + Domain name: Domena pasauka: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog - + Select qBittorrent UI Theme file Izlaseit qBittorrent sadurs failu - + Choose Alternative UI files location - + Supported parameters (case sensitive): - + Minimized - + Hidden - + Disabled due to failed to detect system tray presence - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: Torrenta pasauka - + %L: Category %L: Kategoreja - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path %D: Izglobuošonas vīta - + %C: Number of files %C: Failu skaits - + %Z: Torrent size (bytes) %Z: Torrenta lelums (baitos) - + %T: Current tracker %T: Niulejais trakeris - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + + Test email + + + + + Attempted to send email. Check your inbox to confirm success + + + + (None) (Nivīnu) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate Sertifikats - + Select certificate Izlaseit sertifikatu - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + + %1 is recommended for best compatibility with Windows dark mode + Fusion is recommended for best compatibility with Windows dark mode + + + + + System + System default Qt style + + + + + Let Qt decide the style for this system + + + + + Dark + Dark color scheme + + + + + Light + Light color scheme + + + + + System + System color scheme + + + + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Atsarasšonys vītys kleida - - + + Choose export directory Izalaseit izglobuošonas vītu - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well - + qBittorrent UI Theme file (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Byrkas (atdaleitas ar komatu) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - - + + + Choose a save directory Izalaseit izglobuošonas vītu - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Izalaseit IP fiļtra failu - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number - + Preferences Īstatejumi - + Time Error Laika klaida - + The start time and the end time can't be the same. Suokšonas un beigšonas laiki navar byut vīnaiži. - - + + Length Error Garuma kleida @@ -7295,80 +7650,85 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerInfo - + Unknown Nazynoms - + Interested (local) and choked (peer) - + Interested (local) and unchoked (peer) - + Interested (peer) and choked (local) - + Interested (peer) and unchoked (local) - + Not interested (local) and unchoked (peer) - + Not interested (peer) and unchoked (local) - + Optimistic unchoke - + Peer snubbed - + Incoming connection atīmūš salaidums - + Peer from DHT kūplītuotuojs nu DHT - + Peer from PEX kūplītuotuojs nu PEX - + Peer from LSD kūplītuotuojs nu LSD - + Encrypted traffic - + Encrypted handshake + + + Peer is using NAT hole punching + + PeerListWidget @@ -7524,7 +7884,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + N/A Navā atrasta @@ -7547,7 +7907,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Saroksts ar kūplītuotuojīm kurus dalikt (pa vīnam katrā aiļā): - + Format: IPv4:port / [IPv6]:port Formats: IPv4:ports / [IPv6]:ports @@ -7588,27 +7948,27 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PiecesBar - + Files in this piece: - + File in this piece: - + File in these pieces: - + Wait until metadata become available to see detailed information - + Hold Shift key for detailed information @@ -7621,58 +7981,58 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Maklātivu dapyldi - + Installed search plugins: Iņstalēti dapyldi: - + Name Pasauka - + Version Verseja - + Url Adress - - + + Enabled Īgrīzts - + Warning: Be sure to comply with your country's copyright laws when downloading torrents from any of these search engines. - + You can get new search engine plugins here: <a href="https://plugins.qbittorrent.org">https://plugins.qbittorrent.org</a> - + Install a new one Iņstalēt jaunu dapyldu - + Check for updates Meklēt atjaunynuojumus - + Close Aiztaiseit - + Uninstall Atiņstalēt @@ -7791,17 +8151,17 @@ Those plugins were disabled. - + Search plugin source: - + Local file - + Web link @@ -7842,47 +8202,47 @@ Those plugins were disabled. PreviewSelectDialog - + The following files from torrent "%1" support previewing, please select one of them: - + Preview Apsvavērt - + Name Pasauka - + Size Lelums - + Progress Progress - + Preview impossible - + Sorry, we can't preview this file: "%1". - + Resize columns - + Resize all non-hidden columns to the size of their contents @@ -7895,27 +8255,27 @@ Those plugins were disabled. Private::FileLineEdit - + Path does not exist - + Path does not point to a directory - + Path does not point to a file - + Don't have read permission to path - + Don't have write permission to path @@ -7956,12 +8316,12 @@ Those plugins were disabled. PropertiesWidget - + Downloaded: Atsasyuteiti: - + Availability: Daīmamums @@ -7976,53 +8336,53 @@ Those plugins were disabled. Kūplītuošanas dati - + Time Active: - Time (duration) the torrent is active (not paused) + Time (duration) the torrent is active (not stopped) Aktivs jau: - + ETA: Palykušais syuteišonys laiks: - + Uploaded: Nūsasyuteiti: - + Seeds: Devieji: - + Download Speed: Atsasyuteišonas dreizums: - + Upload Speed: Nūsasyuteišonas dreizums: - + Peers: Jāmuoji: - + Download Limit: Atsasyuteišonas limits: - + Upload Limit: Nūsasyuteišonas limits: - + Wasted: Izsvīsti: @@ -8032,193 +8392,220 @@ Those plugins were disabled. Salaidumi: - + Information Inpormaceja - + Info Hash v1: Maiseituojkods v1: - + Info Hash v2: Maiseituojkods v2: - + Comment: Komentars - + Select All Izlaseit vysys - + Select None Izlaseit nivīnu - + Share Ratio: Kūplītuošonas reitings: - + Reannounce In: Kontakts ar trakeri piec: - + Last Seen Complete: Pādejū reizi kūplītuots: - + + + Ratio / Time Active (in months), indicates how popular the torrent is + + + + + Popularity: + + + + Total Size: Kūpeigais lelums: - + Pieces: Dalenis: - + Created By: Darynuots ar: - + Added On: Dalaists: - + Completed On: Dabeidza: - + Created On: Darynuots: - + + Private: + + + + Save Path: Izglobuošonas vīta: - + Never Nikod - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (atsasyuteiti %3) - - + + %1 (%2 this session) %1 (%2 itymā sesejā) - - + + + N/A Navā zynoms - + + Yes + Nui + + + + No + + + + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (daleits %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 kūpā) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 videjais) - - New Web seed - Dalikt puorstaipteikla devieju + + Add web seed + Add HTTP source + - - Remove Web seed - Nūjimt puorstaipteikla devieju + + Add web seed: + - - Copy Web seed URL - Puorspīst puorstaipteikla devieju + + + This web seed is already in the list. + - - Edit Web seed URL - Lobuot puorstaipteikla devieju - - - + Filter files... Meklēt failuos... + + + Add web seed... + + + + + Remove web seed + + + Copy web seed URL + + + + + Edit web seed URL... + + + + Speed graphs are disabled - + You can enable it in Advanced Options - - New URL seed - New HTTP source - Dalikt puorstaipteikla devieju - - - - New URL seed: - Dalikt puorstaipteikla devieju: - - - - - This URL seed is already in the list. - Itys puorstaipteikla deviejs jau ir sarokstā. - - - + Web seed editing Lobuot puorstaipteikla devieju - + Web seed URL: Puorstaipteikla devieju adress: @@ -8237,22 +8624,22 @@ Those plugins were disabled. - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8311,12 +8698,12 @@ Those plugins were disabled. RSS::Private::Parser - + Invalid RSS feed. Nadereigs RSS kanals - + %1 (line: %2, column: %3, offset: %4). @@ -8334,89 +8721,89 @@ Those plugins were disabled. - - + + RSS feed with given URL already exists: %1. RSS kanals ar itaidu adresi jau ir: %1 - + Feed doesn't exist: %1. - + Cannot move root folder. - - + + Item doesn't exist: %1. - + Couldn't move folder into itself. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. RSS kanals ar itaidu adresi jau ir: %1 - + Parent folder doesn't exist: %1. @@ -8440,8 +8827,8 @@ Those plugins were disabled. - - + + Mark items read @@ -8466,132 +8853,132 @@ Those plugins were disabled. - - + + Delete Iztreit - + Rename... Puorsaukt... - + Rename Puorsaukt - - + + Update - + New subscription... Dalikt kanalu... - - + + Update all feeds - + Download torrent Atsasyuteit torrentu - + Open news URL Atkluot teiklavītu - + Copy feed URL Puorspīst kanāla adresi - + New folder... Jauns apvuocis... - + Edit feed URL... - + Edit feed URL - + Please choose a folder name Lyudzu izalaseit apvuoča pasauku - + Folder name: Apvuoča pasauka: - + New folder Jauns apvuocis - - + + Please type a RSS feed URL Lyudzu īvoduot RSS kanala adresi - - + + Feed URL: Kanala adress - + Deletion confirmation Apstyprynuot iztreišonu - + Are you sure you want to delete the selected RSS feeds? Voi drūši zini, ka gribi nūteireit izalaseituos RSS kanalus? - + Please choose a new name for this RSS feed - + New feed name: Jauna kanala pasauke: - + Rename failed Puorsaukšona nāisadevās - + Date: Data: - + Feed: - + Author: Autors: @@ -8599,38 +8986,38 @@ Those plugins were disabled. SearchController - + Python must be installed to use the Search Engine. - + Unable to create more than %1 concurrent searches. - - + + Offset is out of range - + All plugins are already up to date. - + Updating %1 plugins - + Updating plugin %1 - + Failed to check for plugin updates: %1 @@ -8705,132 +9092,142 @@ Those plugins were disabled. Lelums: - + Name i.e: file name Pasauka - + Size i.e: file size Lelums - + Seeders i.e: Number of full sources Devieji - + Leechers i.e: Number of partial sources Jāmuoji - - Search engine - Maklātivs - - - + Filter search results... Meklēt rezultatuos... - + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results Rezultati (ruoda <i>%1</i> nu <i>%2</i>): - + Torrent names only Tik torrentu pasaukuos - + Everywhere Vysur - + Use regular expressions Lītuot Reguļaras izsaceibas - + Open download window - + Download Atsasyuteit - + Open description page Atdareit aprakstejuma teiklavītu - + Copy Puorspīst - + Name Pasauka - + Download link Atsasyuteišonys saita - + Description page URL Aprakstejuma teiklavīta - + Searching... Meklē... - + Search has finished Mekliešona dabeigta - + Search aborted Mekliešona puortraukta - + An error occurred during search... - + Search returned no results - + + Engine + + + + + Engine URL + + + + + Published On + + + + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents @@ -8838,104 +9235,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories Vysys kategorejas - + Movies Filmys - + TV shows Televizejis laidīņi - + Music Muzyka - + Games Datorspieles - + Anime Multiplikaceja - + Software Programatura - + Pictures Atvaigi - + Books Gruomotas - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -8945,113 +9342,144 @@ Those plugins were disabled. - - - - Search Meklēt - + There aren't any search plugins installed. Click the "Search plugins..." button at the bottom right of the window to install some. - + Search plugins... Maklātivu dapyldi... - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example Pīvadums: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins Vysi dapyldi - + Only enabled Īgrīztī dapyldi - + + + Invalid data format. + + + + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + + Refresh + + + + Close tab - + Close all tabs - + Select... Izlaseit... - - - + + Search Engine Maklātivs - + + Please install Python to use the Search Engine. - + Empty search pattern - + Please type a search pattern first - + + Stop Puortraukt + + + SearchWidget::DataStorage - - Search has finished - Mekliešona dabeigta + + Failed to load Search UI saved state data. File: "%1". Error: "%2" + - - Search has failed - Mekliešona naīsadevās + + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" + + + + + Failed to save Search UI state. File: "%1". Error: "%2" + + + + + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" + + + + + Failed to load Search UI history. File: "%1". Error: "%2" + + + + + Failed to save search history. File: "%1". Error: "%2" + @@ -9164,34 +9592,34 @@ Click the "Search plugins..." button at the bottom right of the window - + Upload: Nūsasyuteišona: - - - + + + - - - + + + KiB/s KiB/s - - + + Download: Atsasyuteišona: - + Alternative speed limits Aļternativie dreizumi @@ -9383,32 +9811,32 @@ Click the "Search plugins..." button at the bottom right of the window - + Connected peers: Daliktie kūplītuotuoji: - + All-time share ratio: Kūpeigais kūplītuošonas reitings: - + All-time download: Kūpeigais atsasyuteišonas daudzums: - + Session waste: Izsvīsts itymā sesejā: - + All-time upload: Kūpeigais nūsasyuteišonas daudzums: - + Total buffer size: Kūpeigais bufera lelums: @@ -9423,12 +9851,12 @@ Click the "Search plugins..." button at the bottom right of the window I/O darbeibys rindā: - + Write cache overload: - + Read cache overload: @@ -9447,51 +9875,67 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Škārsteikla salaiduma statuss: - - + + No direct connections. This may indicate network configuration problems. - - + + + External IP: N/A + + + + + DHT: %1 nodes DHT: %1 serveri - + qBittorrent needs to be restarted! - - - + + + Connection Status: Škārsteikla salaiduma statuss: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online - + + External IPs: %1, %2 + + + + + External IP: %1%2 + + + + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -9521,13 +9965,13 @@ Click the "Search plugins..." button at the bottom right of the window - Resumed (0) - Aizsuoktie (0) + Running (0) + - Paused (0) - Nūstuodeiti (0) + Stopped (0) + @@ -9589,36 +10033,36 @@ Click the "Search plugins..." button at the bottom right of the window Completed (%1) Dabeigti (%1) + + + Running (%1) + + - Paused (%1) - Nūstuodeiti (%1) + Stopped (%1) + + + + + Start torrents + + + + + Stop torrents + Moving (%1) - - - Resume torrents - Aizsuokt torrentus - - - - Pause torrents - Nūstuodeit torrentus - Remove torrents - - - Resumed (%1) - Aizsuoktie (%1) - Active (%1) @@ -9690,31 +10134,31 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Nūjimt nalītuotas byrkas - - - Resume torrents - Aizsuokt torrentus - - - - Pause torrents - Nūstuodeit torrentus - Remove torrents - - New Tag - Jauna byrka + + Start torrents + + + + + Stop torrents + Tag: Byrka: + + + Add tag + + Invalid tag name @@ -9859,32 +10303,32 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentContentModel - + Name Pasauka - + Progress Progress - + Download Priority Atsasyuteišonas prioritets - + Remaining Palics - + Availability Daīmamums - + Total Size Kūpeigais lelums @@ -9929,98 +10373,98 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentContentWidget - + Rename error Klaida puorsaukšonā - + Renaming Puorsaukšona - + New name: Jauna pasauka: - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Open Atkluot - + Open containing folder - + Rename... Puorsaukt... - + Priority Prioritets - - + + Do not download Naatsasyuteit - + Normal Norma - + High Augsta - + Maximum Pošaugstā - + By shown file order - + Normal priority Norma prioriteta - + High priority Augsta prioriteta - + Maximum priority Pošaugstā prioriteta - + Priority by shown file order @@ -10067,13 +10511,13 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. - + Select file Izlaseit failu - + Select folder Izlaseit apvuoci @@ -10148,83 +10592,83 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. Laukumi - + You can separate tracker tiers / groups with an empty line. - + Web seed URLs: Puorstaipteikla devieju adresas: - + Tracker URLs: Trakeru adresas: - + Comments: Komentars: - + Source: Olūts: - + Progress: Progress - + Create Torrent Radeit torrentu - - + + Torrent creation failed Torrenta radeišona naīsadevās - + Reason: Path to file/folder is not readable. - + Select where to save the new torrent Izlaseit, kur izglobuot jaunū torrentu - + Torrent Files (*.torrent) Torrentu faili (*.torrent) - + Add torrent to transfer list failed. - + Reason: "%1" - + Add torrent failed - + Torrent creator Torrentu darynuoja - + Torrent created: Torrents darynuots: @@ -10232,32 +10676,32 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentFilesWatcher - + Failed to load Watched Folders configuration. %1 - + Failed to parse Watched Folders configuration from %1. Error: "%2" - + Failed to load Watched Folders configuration from %1. Error: "Invalid data format." - + Couldn't store Watched Folders configuration to %1. Error: %2 - + Watched folder Path cannot be empty. - + Watched folder Path cannot be relative. @@ -10265,44 +10709,31 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentFilesWatcher::Worker - + Invalid Magnet URI. URI: %1. Reason: %2 - + Magnet file too big. File: %1 - + Failed to open magnet file: %1 Naīsadevās atdareit magnetsaiti. Īmesls: %1 - + Rejecting failed torrent file: %1 - + Watching folder: "%1" - - TorrentInfo - - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - - - - - Invalid metadata - Nadereigi metadati - - TorrentOptionsDialog @@ -10331,173 +10762,161 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. - + Category: Kategoreja: - - Torrent speed limits + + Torrent Share Limits - + Download: Atsasyuteišona: - - + + - - + + Torrent Speed Limits + + + + + KiB/s KiB/s - + These will not exceed the global limits - + Upload: Nūsasyuteišona: - - Torrent share limits - Torrenta kūplītuošonas reitinga rūbežs - - - - Use global share limit - Lītuot globaluos īstatejumus - - - - Set no share limit - Nav rūbežs - - - - Set share limit to - Reitinga rūbežs - - - - ratio - reitings - - - - total minutes - - - - - inactive minutes - - - - + Disable DHT for this torrent - + Download in sequential order Atsasyuteit saksteiguo parādā - + Disable PeX for this torrent - + Download first and last pieces first Paprīšķu atsasyuteit pyrmuos i pādejuos dalenis - + Disable LSD for this torrent - + Currently used categories - - + + Choose save path Izalaseit izglobuošonas vītu - + Not applicable to private torrents - - - No share limit method selected - - - - - Please select a limit method first - - TorrentShareLimitsWidget - - - + + + + Default - - - + + + Unlimited - - - + + + Set to - + Seeding time: - - - - + + + + + + min minutes myn - + Inactive seeding time: - + + Action when the limit is reached: + + + + + Stop torrent + + + + + Remove torrent + Nūjimt torrentu + + + + Remove torrent and its content + + + + + Enable super seeding for torrent + Īgrīzt super-nūsasyuteišonu + + + Ratio: @@ -10510,32 +10929,32 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. - - New Tag - Jauna byrka + + Add tag + - + Tag: Byrka: - + Invalid tag name Nadereiga byrkas pasauka - + Tag name '%1' is invalid. - + Tag exists Kleida pasaukā - + Tag name already exists. Byrka ar itaidu pasauku jau ir. @@ -10543,115 +10962,130 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentsController - + Error: '%1' is not a valid torrent file. Kleida: '%1' navā dareigs torrenta fails. - + Priority must be an integer - + Priority is not valid Prioritets nav dereigs - + Torrent's metadata has not yet downloaded Torrenta metadati vēļ navā atsasyuteiti - + File IDs must be integers - + File ID is not valid Faile ID nav dereigs - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty Izglobuošonas vītu navar pamest tukšu - - + + Cannot create target directory - - + + Category cannot be empty Katagoreju navar pamest tukšu - + Unable to create category Nāisadevās radeit kategoreju - + Unable to edit category Naīsadevās lobuot kategoreju - + Unable to export torrent file. Error: %1 - + Cannot make save path Navar īstateit izglobuošonas vītu - + + "%1" is not a valid URL + + + + + URL scheme must be one of [%1] + + + + 'sort' parameter is invalid - + + "%1" is not an existing URL + + + + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Itymā apvuocī navar izglobuot - + WebUI Set location: moving "%1", from "%2" to "%3" Puorceļšona: Puorceļ "%1", nū "%2" iz "%3" - + Incorrect torrent name Nadereiga torrenta pasauka - - + + Incorrect category name Nadereiga kategorejas pasauka @@ -10677,196 +11111,191 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TrackerListModel - + Working Lobs - + Disabled Atslēgts - + Disabled for this torrent - + This torrent is private Privats torrents - + N/A Navā atrasta - + Updating... Atjaunynuojas... - + Not working Nalobs - + Tracker error - + Unreachable - + Not contacted yet Vēļ navā salaists - - Invalid status! - - - - - URL/Announce endpoint + + Invalid state! - Tier - Grupa - - - - Protocol + URL/Announce Endpoint - Status - Statuss - - - - Peers - Jāmuoji - - - - Seeds - Devieji - - - - Leeches - Jāmuoji - - - - Times Downloaded - - - - - Message - Viestejums - - - - Next announce + BT Protocol - Min announce + Next Announce - - v%1 + + Min Announce + + + Tier + Grupa + + + + Status + Statuss + + + + Peers + Jāmuoji + + + + Seeds + Devieji + + + + Leeches + Jāmuoji + + + + Times Downloaded + + + + + Message + Viestejums + TrackerListWidget - + This torrent is private Privats torrents - + Tracker editing Trakeru lobuošona - + Tracker URL: Trakera adress: - - + + Tracker editing failed Trakeru lobuošona naīsadevās - + The tracker URL entered is invalid. Īvoduotā trakera adress navā dareiga. - + The tracker URL already exists. Trakers ar itaidu adresi jau ir. - + Edit tracker URL... Lobuot trakera adresi... - + Remove tracker Nūjimt trakeri - + Copy tracker URL Puorspīst trakera adresi - + Force reannounce to selected trackers Dastateigs kontakts ar izalaseitajim trakeriem - + Force reannounce to all trackers Dastateigs kontakts ar vysim trakeriem - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility @@ -10884,37 +11313,37 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. Saroksts ar trakeriem kurus dalikt (pa vīnam katrā aiļā): - + µTorrent compatible list URL: Ar µTorrent kūpeiga saroksta adress: - + Download trackers list - + Add Pīlikt - + Trackers list URL error - + The trackers list URL cannot be empty - + Download trackers list error - + Error occurred when downloading the trackers list. Reason: "%1" @@ -10922,62 +11351,62 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TrackersFilterWidget - + Warning (%1) Viereibu (%1) - + Trackerless (%1) Bez trakera (%1) - + Tracker error (%1) - + Other error (%1) - + Remove tracker Nūjimt trakeri - - Resume torrents - Aizsuokt torrentus + + Start torrents + - - Pause torrents - Nūstuodeit torrentus + + Stop torrents + - + Remove torrents - + Removal confirmation - + Are you sure you want to remove tracker "%1" from all torrents? - + Don't ask me again. - + All (%1) this is for the tracker filter Vysi (%1) @@ -10986,7 +11415,7 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TransferController - + 'mode': invalid argument @@ -11078,11 +11507,6 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Puorbaud progresa datus - - - Paused - Nūstuodeits - Completed @@ -11106,220 +11530,252 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. Klaideigai - + Name i.e: torrent name Pasauka - + Size i.e: torrent size Lelums - + Progress % Done Progress - + + Stopped + + + + Status - Torrent status (e.g. downloading, seeding, paused) + Torrent status (e.g. downloading, seeding, stopped) Statuss - + Seeds i.e. full sources (often untranslated) Devieji - + Peers i.e. partial sources (often untranslated) Jāmuoji - + Down Speed i.e: Download speed Atsasyuteišonas dreizums - + Up Speed i.e: Upload speed Nūsasyuteišonas dreizums - + Ratio Share ratio Reitings - + + Popularity + + + + ETA i.e: Estimated Time of Arrival / Time left Palyk. syuteišonys laiks - + Category Kategoreja - + Tags Byrkas - + Added On Torrent was added to transfer list on 01/01/2010 08:00 Dalaists - + Completed On Torrent was completed on 01/01/2010 08:00 Dabeidza - + Tracker Trakers - + Down Limit i.e: Download limit Atsasyuteišonas limits - + Up Limit i.e: Upload limit Nūsasyuteišonas limits - + Downloaded Amount of data downloaded (e.g. in MB) Atsasyuteiti - + Uploaded Amount of data uploaded (e.g. in MB) Nūsasyuteiti - + Session Download Amount of data downloaded since program open (e.g. in MB) Atsasyuteiti itymā sesejā - + Session Upload Amount of data uploaded since program open (e.g. in MB) Nūsasyuteiti itymā sesejā - + Remaining Amount of data left to download (e.g. in MB) Palics - + Time Active - Time (duration) the torrent is active (not paused) + Time (duration) the torrent is active (not stopped) Aktivs jau - + + Yes + Nui + + + + No + + + + Save Path Torrent save path - + Incomplete Save Path Torrent incomplete save path - + Completed Amount of data completed (e.g. in MB) Dabeigti - + Ratio Limit Upload share ratio limit Reitinga limits - + Last Seen Complete Indicates the time when the torrent was last seen complete/whole Pādejū reizi dabeigts - + Last Activity Time passed since a chunk was downloaded/uploaded Pādejū reizi kūplītuots - + Total Size i.e. Size including unwanted data Kūpeigais lelums - + Availability The number of distributed copies of the torrent Daīmamums - + Info Hash v1 i.e: torrent info hash v1 - + Info Hash v2 i.e: torrent info hash v2 - + Reannounce In Indicates the time until next trackers reannounce - - + + Private + Flags private torrents + + + + + Ratio / Time Active (in months), indicates how popular the torrent is + + + + + + N/A Navā zynoms - + %1 ago e.g.: 1h 20m ago pyrma %1 - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (daleits %2) @@ -11328,339 +11784,319 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TransferListWidget - + Column visibility - + Recheck confirmation Apstyprynuot puorvēri - + Are you sure you want to recheck the selected torrent(s)? - + Rename Puorsaukt - + New name: Jauna pasauka: - + Choose save path Izalaseit izglobuošonas vītu - - Confirm pause - - - - - Would you like to pause all torrents? - - - - - Confirm resume - - - - - Would you like to resume all torrents? - - - - + Unable to preview Navar apsvavērt - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - - Add Tags - Pīlikt byrkas - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags Nūjimt vysys byrkas - + Remove all tags from selected torrents? Nūjimt vysys byrkas izalaseitajim torrentim? - + Comma-separated tags: Atdaleit byrkas ar komatu: - + Invalid tag Nadereiga byrka - + Tag name: '%1' is invalid Byrkas pasauka: '%1' navā dereiga - - &Resume - Resume/start the torrent - Aizsuokt - - - - &Pause - Pause the torrent - Nūstateit - - - - Force Resu&me - Force Resume/start the torrent - - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking + + + + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Atsasyuteit saksteiguo parādā - + + Add tags + + + + Errors occurred when exporting .torrent files. Check execution log for details. - + + &Start + Resume/start the torrent + + + + + Sto&p + Stop the torrent + + + + + Force Star&t + Force Resume/start the torrent + + + + &Remove Remove the torrent - + Download first and last pieces first Paprīšķu atsasyuteit pyrmuos i pādejuos dalenis - + Automatic Torrent Management Automatisks torrentu puorvaļds - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - - - - + Super seeding mode Super nūsasyuteišonas režims @@ -11705,28 +12141,28 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. - + UI Theme Configuration. - + The UI Theme changes could not be fully applied. The details can be found in the Log. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -11734,7 +12170,12 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. UIThemeManager - + + Set app style failed. Unknown style: "%1" + + + + Failed to load UI theme from file: "%1" Naīsadevās īviļķt sadury nu faila: "%1" @@ -11765,20 +12206,21 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. Upgrade - + Migrate preferences failed: WebUI https, file: "%1", error: "%2" - + Migrated preferences: WebUI https, exported data to file: "%1" - - - - + + + + + Invalid value found in configuration file, reverting it to default. Key: "%1". Invalid value: "%2". @@ -11908,67 +12350,67 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' @@ -11976,125 +12418,133 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. WebUI - + Credentials are not set - + WebUI: HTTPS setup successful - + WebUI: HTTPS setup failed, fallback to HTTP - + WebUI: Now listening on IP: %1, port: %2 - + Unable to bind to IP: %1, port: %2. Reason: %3 + + fs + + + Unknown error + Nazynoma kleida + + misc - + B bytes B - + KiB kibibytes (1024 bytes) KiB - + MiB mebibytes (1024 kibibytes) MiB - + GiB gibibytes (1024 mibibytes) GiB - + TiB tebibytes (1024 gibibytes) TiB - + PiB pebibytes (1024 tebibytes) PiB - + EiB exbibytes (1024 pebibytes) EiB - + /s per second /s - + %1s e.g: 10 seconds - + %1m e.g: 10 minutes %1m - + %1h %2m e.g: 3 hours 5 minutes %1st %2m - + %1d %2h e.g: 2 days 10 hours %1d %2st - + %1y %2d e.g: 2 years 10 days %1g %2d - - + + Unknown Unknown (size) Nazynoms - + qBittorrent will shutdown the computer now because all downloads are complete. qBittorrent tiuleņ izslēgs datori aiztuo ka visas atsasyuteišonas ir dabeigtas. - + < 1m < 1 minute < 1m diff --git a/src/lang/qbittorrent_lv_LV.ts b/src/lang/qbittorrent_lv_LV.ts index dadbc5509..6e9fc01e9 100644 --- a/src/lang/qbittorrent_lv_LV.ts +++ b/src/lang/qbittorrent_lv_LV.ts @@ -170,10 +170,6 @@ Never show again Vairs nerādīt - - Torrent settings - Torrenta iestatījumi - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrenta iestatījumi @@ -235,25 +231,25 @@ Aptstādināšanas nosacījumi: - - + + None Nevienu - - + + Metadata received Metadati ielādēti - + Torrents that have metadata initially will be added as stopped. Torrenti, kuriem ir metadati tiks pievienoti apstādināti. - + Files checked Faili pārbaudīti @@ -368,112 +364,112 @@ Saglabāt kā .torrent failu... - + I/O Error Ievades/izvades kļūda - + Not Available This comment is unavailable Nav pieejams - + Not Available This date is unavailable Nav pieejams - + Not available Nav pieejams - + Magnet link Magnētsaite - + Retrieving metadata... Tiek izgūti metadati... - - + + Choose save path Izvēlieties vietu, kur saglabāt - + No stop condition is set. Aptstādināšanas nosacījumi nav izvēlēti - + Torrent will stop after metadata is received. Torrents tiks apstādināts pēc metadatu ielādes. - + Torrent will stop after files are initially checked. Torrents tiks apstādināts pēc sākotnējo failu pārbaudes. - + This will also download metadata if it wasn't there initially. Tas ielādēs arī metadatus, ja to nebija jau sākotnēji. - + N/A Nav zināms - + %1 (Free space on disk: %2) %1 (Brīvās vietas diskā: %2) - + Not available This size is unavailable. Nav pieejams - + Torrent file (*%1) Torrenta fails (*%1) - + Save as torrent file Saglabāt kā torrenta failu - + Couldn't export torrent metadata file '%1'. Reason: %2. Neizdevās saglabāt torrenta metadatu failu '%1'. Iemesls: %2 - + Cannot create v2 torrent until its data is fully downloaded. Nevar izveidot v2 torrentu kamēr tā datu pilna lejupielāde nav pabeigta. - + Filter files... Meklēt failos... - + Parsing metadata... Tiek parsēti metadati... - + Metadata retrieval complete Metadatu ielāde pabeigta @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Lejupielāde torrentu.... Avots: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Neizdevās ielādēt torrentu. Avots: "%1". Iemesls: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Problēma mēģinājumā pievienot torrenta duplikātu. Avots: %1. Esošais torrents: %2. Rezultāts: %3 + Problēma mēģinājumā pievienot torrenta duplikātu. Avots: %1. Esošais torrents: %2. Rezultāts: %3 - + Merging of trackers is disabled Trakeru apvienošanas iespēja ir atslēgta - + Trackers cannot be merged because it is a private torrent Trakerus nevar apvienot, jo torrents ir privāts. - + Trackers are merged from new source Pievienots trakeris no jaunā avota + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -536,7 +536,7 @@ Note: the current defaults are displayed for reference. - + Piezīme: pašreizējie noklusējuma iestatījumi tiek parādīti atsaucei. @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Atkārtoti pārbaudīt torrentus pēc ielādes pabeigšanas - - + + ms milliseconds ms - + Setting Iespējas - + Value Value set for this setting Vērtība - + (disabled) (Atslēgts) - + (auto) (automātiski) - - + + min minutes min - + All addresses Visas adreses - + qBittorrent Section qBittorrent sadaļa - - + + Open documentation Atvērt dokumentāciju - + All IPv4 addresses Visas IPv4 adreses - + All IPv6 addresses Visas IPv6 adreses - + libtorrent Section libtorrent sadaļa - + Fastresume files Ātri-atsākt failus - + SQLite database (experimental) SQLite datubāze (eksperimentāla) - + Resume data storage type (requires restart) Atsākšanas datu krātuves veids (nepieciešams restarts) - + Normal Normāls - + Below normal Zem normāla - + Medium Vidējs - + Low Zems - + Very low Ļoti zems - + Physical memory (RAM) usage limit Operētājatmiņas (RAM) patēriņa robeža - + Asynchronous I/O threads Asinhronās I/O plūsmas - + Hashing threads Plūsmu jaukšana - + File pool size Failu kopas lielums - + Outstanding memory when checking torrents Atmiņa straumju pārbaudēm - + Disk cache Diska kešatmiņa - - - - + + + + + s seconds s - + Disk cache expiry interval Diska kešatmiņas derīguma intervāls - + Disk queue size Diska rindas izmērs - - + + Enable OS cache Izmantot OS kešatmiņu - + Coalesce reads & writes Apvienot lasīšanas un rakstīšanas darbības - + Use piece extent affinity Izmantot līdzīgu daļiņu grupēšanu - + Send upload piece suggestions Nosūtīt ieteikumus augšupielādes daļiņām - - - - - + + + + + 0 (disabled) 0 (atslēgts) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Atsākšanas datu saglabāšanas intervāls [0: atslēgts) - + Outgoing ports (Min) [0: disabled] Izejošie porti (Min) [0: atslēgts) - + Outgoing ports (Max) [0: disabled] Izejošie port (Max) [0: atslēgts] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] UPnP nomas ilgums [0: neierobežots] - + Stop tracker timeout [0: disabled] Atcelt trakeru noildzi [0: atslēgta] - + Notification timeout [0: infinite, -1: system default] Paziņojumu noildze [0: bezgalīga, -1 sistēmas noklusētā] - + Maximum outstanding requests to a single peer Atļautais neapstrādāto pieprasījumu skaits vienam koplietotājam - - - - - + + + + + KiB KiB - + (infinite) - + (bezgalīgs) - + (system default) (datorsistēmas noklusētais) - + Delete files permanently - + Neatgriezeniski dzēst failus - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux Šī iespēja īsti labi nestrādā uz Linux sistēmas - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Noklusētais - + Memory mapped files Atmiņas kartētie faili - + POSIX-compliant POSIX-saderīgs - + Simple pread/pwrite - + Disk IO type (requires restart) Diska Ievades/Izvades tips (nepieciešama pārstartēšana) - - + + Disable OS cache Atslēgt OS kešatmiņu - + Disk IO read mode Diska Ievades/Izvades lasīšana - + Write-through Pārrakstīšana - + Disk IO write mode Diska Ievades/Izvades rakstīšana - + Send buffer watermark Nosūtīt bufera slieksni - + Send buffer low watermark Zems bufera slieksnis - + Send buffer watermark factor Bufera sliekšņa koeficents - + Outgoing connections per second Izejošo savienojumu skaits sekundē - - + + 0 (system default) 0 (datorsistēmas noklusētais) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Soketa rindas izmērs - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Statistika saglabāšanas intervāls [0: atslēgts] - + .torrent file size limit .torrent faila atļautais izmērs - + Type of service (ToS) for connections to peers Pakalpojumu veids (ToS) savienojumiem ar koplietotājiem - + Prefer TCP Priekšroku TCP - + Peer proportional (throttles TCP) Vienmērīgi koplietotājiem (regulē TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Atbalsts starptautisko domēnu vārdiem (IDN) - + Allow multiple connections from the same IP address Atļaut vairākus savienojumus no vienas IP adreses - + Validate HTTPS tracker certificates Apstiprināt HTTPS trakeru sertifikātus - + Server-side request forgery (SSRF) mitigation Servera puses pieprasījumu viltošanas (SSRF) aizsardzība - + Disallow connection to peers on privileged ports Neatļaut savienojumu, ja koplietotājs izmanto priviliģētus portus - + It appends the text to the window title to help distinguish qBittorent instances Tas pievieno vārdu loga nosaukumam, lai palīdzētu atšķirt vienlaicīgas qBitorrent instances. - + Customize application instance name Izvēlies programmas instances nosaukumu - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval Atsvaidzināšanas intervāls - + Resolve peer host names Rādīt koplietotāju Datoru nosaukumus - + IP address reported to trackers (requires restart) IP adrese, kuru paziņot trakeriem (nepieciešams restarts) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Atjaunināt datus ar trakeriem, ja tiek mainīti IP vai porti - + Enable icons in menus Rādīt ikonas izvēlnē - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Ieslēgt porta pāradresāciju iebūvētajam trakerim - + Enable quarantine for downloaded files Iespējot karantīnu lejupielādētajiem failiem - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + Neņemt vērā SSL kļūdas - + (Auto detect if empty) (Automātiski, ja tukšs) - + Python executable path (may require restart) Python izpildāmās programma (var būt nepieciešama pārstartēšana) - + Start BitTorrent session in paused state - + Palaist BitTorrent sesiju apturētā stāvoklī - + sec seconds - sek + sek - + -1 (unlimited) - + -1 (neierobežots) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent sesijas izslēgšanas noildze [-1: neierobežots] - + Confirm removal of tracker from all torrents Apstiprināt trakeru dzēšanu no visiem torrentiem - + Peer turnover disconnect percentage Koplietotāju atvienošanas procents - + Peer turnover threshold percentage Koplietotāju atvienošanas slieksņa procents - + Peer turnover disconnect interval Koplietotaju atvienošanas intervāls - + Resets to default if empty Atiestata uz noklusēto, ja atstāts tukšs - + DHT bootstrap nodes - + I2P inbound quantity I2P ienākošais daudzums - + I2P outbound quantity I2P izejošais daudzums - + I2P inbound length I2P ienākošais garums - + I2P outbound length I2P izejošais garums - + Display notifications Rādīt paziņojumus - + Display notifications for added torrents Rādīt paziņojumus par pievienotajiem torrentiem - + Download tracker's favicon Ielādēt trakera adreses ikonu - + Save path history length Saglabāšanas vietu vēstures garums - + Enable speed graphs Ieslēgt ātrumu diagrammas - + Fixed slots Fiksētas laika nišas - + Upload rate based Pamatojoties uz Augšupielādes ātrumu - + Upload slots behavior Augšupielādes nišu darbība: - + Round-robin Vienmērīgi sadalīt - + Fastest upload Ātrākā augšupielāde - + Anti-leech Prioritāte tiko sākušajiem un tuvu beigām esošajiem - + Upload choking algorithm Augšupielādes regulēšanas algoritms - + Confirm torrent recheck Apstiprināt torrentu atkārtotu pārbaudi - + Confirm removal of all tags Apstiprināt visu atzīmju noņemšanu - + Always announce to all trackers in a tier Vienmēr atjaunināt datus ar visiem trakeriem grupā - + Always announce to all tiers Vienmēr atjaunināt datus ar visiem trakeriem visās grupās - + Any interface i.e. Any network interface Automātiski - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP jaukta režīma algoritms - + Resolve peer countries Rādīt koplietotāju valstis - + Network interface Interneta savienojums - + Optional IP address to bind to Piesaistīt papildu IP adresi - + Max concurrent HTTP announces Atļautais kopējais HTTP trakeru skaits - + Enable embedded tracker Ieslēgt iebūvēto trakeri - + Embedded tracker port Iebūvētā trakera ports @@ -1387,7 +1398,7 @@ Directory does not exist - + Mape nepastāv @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Darbojas pārnēsāmajā režīmā. Automātiski atrastā profila mape: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Konstatēts lieks komandrindas karodziņš: "%1". Pārnēsāmais režīms piedāvā salīdzinoši ātru atsākšanu. - + Using config directory: %1 Esošās konfigurācijas mape: %1 - + Torrent name: %1 Torenta nosaukums: %1 - + Torrent size: %1 Torenta izmērs: %1 - + Save path: %1 Saglabāšanas vieta: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrents tika lejupielādēts %1. - - + + Thank you for using qBittorrent. Paldies, ka izmantojāt qBittorrent. - + Torrent: %1, sending mail notification Torrents: %1, sūta e-pasta paziņojumu - + Add torrent failed Torrenta pievienošana neizdevās - + Couldn't add torrent '%1', reason: %2. Neizdevās pievienot torrentu '%1', iemesls: %2. - + The WebUI administrator username is: %1 Tālvadības paneļa (WebUI) administratora lietotājvārds ir: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Tālvadības paneļa (WebUI) administratoram nav uzstādīta parole. Tiek izveidota īslaicīga parole esošajai sesijai %1 - + You should set your own password in program preferences. Jums vajadzētu uzstādīt savu paroli programmas iestatījumos. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Tālvadības panelis (WebUI) ir atslēgts. Lai ieslēgtu WebUI, veiciet izmaiņas konfigurācijas failā. - + Running external program. Torrent: "%1". Command: `%2` Palaiž ārēju programmu. Torrents: "%1". Komanda: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Neizdevās palaist ārējo programmu. Torrents: "%1". Komanda: `%2` - + Torrent "%1" has finished downloading Torrenta "%1" lejupielāde pabeigta - + WebUI will be started shortly after internal preparations. Please wait... Tālvadības panelis (WebUI) tiks palaists īsi pēc sagatavošanas. Lūdzu uzgaidiet... - - + + Loading torrents... Ielādē torrentus... - + E&xit Izslēgt qBittorrent - + I/O Error i.e: Input/Output Error Ievades/izvades kļūda - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Iemesls: %2 - + Torrent added Torrents pievienots - + '%1' was added. e.g: xxx.avi was added. '%1' tika pievienots. - + Download completed Lejupielāde pabeigta - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 palaists. Darbības ID: %2 - + This is a test email. - + Šis ir testa e-pasts. - + Test email - + Testa e-pasts - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' lejupielāde ir pabeigta. - + Information Informācija - + To fix the error, you may need to edit the config file manually. Lai izlabotu kļūdu, jums jāveic izmaiņas konfigurācijas failā. - + To control qBittorrent, access the WebUI at: %1 Lai piekļūtu qBittorrent tālvadības panelim, atveriet: %1 - + Exit Iziet - + Recursive download confirmation Rekursīvās lejupielādes apstiprināšana - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrenta fails '%1' satur citus .torrent failus, vai vēlaties veikt to lejupielādi? - + Never Nekad - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekursīva lejupielāde - torrenta fails iekš cita torrenta. Avots: "%1". Fails: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Neizdevās iestatīt Operētājatmiņas (RAM) patēriņa robežu. Kļūdas kods: %1. Kļūdas ziņojums: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Neizdevās iestatīt Operētājatmiņas (RAM) patēriņa robežu. Noteiktais izmērs: %1. Sistēmas robeža: %2. Kļūdas kods: %3. Kļūdas ziņojums: "%4" - + qBittorrent termination initiated qBittorrent izslēgšana aizsākta - + qBittorrent is shutting down... qBittorrent tiek izslēgts... - + Saving torrent progress... Saglabā torrenta progresu... - + qBittorrent is now ready to exit qBittorrent ir gatavs izslēgšanai @@ -1766,263 +1777,263 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Saglabāt filtru... - + Matches articles based on episode filter. Meklē rezultātus pēc epizožu filtra. - + Example: Piemērs: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match filtrs atlasīs 2., 5., 8. - 15., 30. un turpmākās pirmās sezonas epizodes - + Episode filter rules: Epizožu filtrs: - + Season number is a mandatory non-zero value Sezonas numurs nedrīkst būt 0 - + Filter must end with semicolon Filtram jābeidzas ar semikolu - + Three range types for episodes are supported: Filtram ir atļauti 3 parametru veidi: - + Single number: <b>1x25;</b> matches episode 25 of season one Parametrs <b>1x25;</b> atlasīs tikai 1. sezonas 25. epizodi - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Parametrs <b>1x25-40;</b> atlasīs tikai 1. sezonas epizodes, sākot no 25. līdz 40. - + Episode number is a mandatory positive value Epizodes numurs nedrīkst būt 0 - + Rules Filtrs - + Rules (legacy) Filtrs (vecmodīgais) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Parametrs <b>1x25-;</b> atlasīs visas turpmākās epizodes un sezonas, sākot ar 1. sezonas 25. epizodi - + Last Match: %1 days ago Pēdējie rezultāti: pirms %1 dienām - + Last Match: Unknown Pēdējie rezultāti: nav atrasti - + New rule name Jaunā filtra nosaukums - + Please type the name of the new download rule. Lūdzu ievadiet jaunā filtra nosaukumu. - - + + Rule name conflict Neatļauts nosaukums - - + + A rule with this name already exists, please choose another name. Filtrs ar šādu nosaukumu jau pastāv, lūdzu izvēlieties citu nosaukumu. - + Are you sure you want to remove the download rule named '%1'? Vai esat pārliecināts, ka vēlaties dzēst filtru ar nosaukumu '%1'? - + Are you sure you want to remove the selected download rules? Vai esat pārliecināts, ka vēlāties dzēst atlasītos lejupielādes filtrus? - + Rule deletion confirmation Filtra dzēšanas apstiprināšana - + Invalid action Nederīga darbība - + The list is empty, there is nothing to export. Saraksts ir tukšs, nav ko saglabāt. - + Export RSS rules Saglabāt RSS filtru - + I/O Error Ievades/izvades kļūda - + Failed to create the destination file. Reason: %1 Neizdevās izveidot failu: Iemesls: %1 - + Import RSS rules Pievienot RSS filtru - + Failed to import the selected rules file. Reason: %1 Neizdevās importēt izvēlēto filtra failu. Iemesls: %1 - + Add new rule... Pievienot jaunu filtru... - + Delete rule Dzēst filtru - + Rename rule... Pārdēvēt filtru... - + Delete selected rules Dzēst atlasītos filtrus - + Clear downloaded episodes... Noņemt jau lejupielādētās epizodes... - + Rule renaming Filtra pārdēvēšana - + Please type the new rule name Lūdzu ievadiet jauno filtra nosaukumu - + Clear downloaded episodes Noņemt jau lejupielādētās epizodes... - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Vai esat pārliecināts, ka vēlaties no saraksta nodzēst jau lejupielādētās epizodes? - + Regex mode: use Perl-compatible regular expressions Regex režīms: lietot Perl valodas regulārās izteiksmes - - + + Position %1: %2 Pozīcija %1: %2 - + Wildcard mode: you can use Aizstājējzīmju režīms: jūs varat lietot - - + + Import error Importēšanas kļūda - + Failed to read the file. %1 Neizdevās nolasīt failu. %1 - + ? to match any single character ? lai aizstātu vienu, jebkuru rakstzīmi - + * to match zero or more of any characters * lai aizstātu vairākas, jebkuras rakstzīmes - + Whitespaces count as AND operators (all words, any order) Atstarpes skaitās kā AND operatori (visi vārdi, jebkurā secībā) - + | is used as OR operator | tiek lietots kā OR operators - + If word order is important use * instead of whitespace. Ja vārdu secība ir svarīga, lietojiet * simbolu. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Izteiksme ar tukšu klauzulu %1 (piemēram %2) - + will match all articles. meklēs visos ierakstos. - + will exclude all articles. izlaidīs visus ierakstus. @@ -2074,28 +2085,38 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Nespēj parsēt atsākšanas datus: nederīgs formāts - - + + Cannot parse torrent info: %1 Nespēj parsēt torrenta informāciju: %1 - + Cannot parse torrent info: invalid format Nespēj parsēt torrenta informāciju: nederīgs formāts - + Mismatching info-hash detected in resume data Atsākšanas datos atklāts nesaderīgs jaucējkods - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Neizdevās saglabāt torrenta metadatus %1'. Iemesls: %2 - + Couldn't save torrent resume data to '%1'. Error: %2. Neizdevās saglabāt torrenta atsākšanas datus '%1'. Iemesls: %2 @@ -2106,16 +2127,17 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā + Cannot parse resume data: %1 Nespēj parsēt atsākšanas datus: %1 - + Resume data is invalid: neither metadata nor info-hash was found Atsākšanas dati nav nederīgi: netika atrasti metadati nedz arī jaucējkoda - + Couldn't save data to '%1'. Error: %2 Neizdevās saglabāt datus '%1'. Kļūda: %2 @@ -2123,38 +2145,60 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā BitTorrent::DBResumeDataStorage - + Not found. .Nav atrasts - + Couldn't load resume data of torrent '%1'. Error: %2 Neizdevās ielādēt atsākšanas datus torrentam "%1". Iemesls: %2 - - + + Database is corrupted. Datubāze ir bojāta. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + Nespēj parsēt atsākšanas datus: %1 + + + + + Cannot parse torrent info: %1 + Nespēj parsēt torrenta informāciju: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2206,22 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Neizdevās saglabāt torrenta metadatus. Iemesls: %1 - + Couldn't store resume data for torrent '%1'. Error: %2 Neizdevās saglabāt atsākšanas datus torrentam "%1". Iemesls: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Neizdevās izdzēst atsākšanas datus torrentam "%1". Iemesls: %2 - + Couldn't store torrents queue positions. Error: %1 Neizdevās saglabāt ierindoto torrentu secību: Iemesls: %1 @@ -2185,530 +2229,503 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Necentralizētā tīkla (DHT) atbalsts: %1 - - - - - - - - - + + + + + + + + + ON IESLĒGTS - - - - - - - - - + + + + + + + + + OFF IZSLĒGTS - - + + Local Peer Discovery support: %1 Vietējo koplietotāju meklēšana %1 - + Restart is required to toggle Peer Exchange (PeX) support Nepieciešams pārstartēšana, lai ieslēgtu Apmaiņu koplietotāju starpā (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Neizdevās atsākt torrentu. Torrents: "%1". Iemesls: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Neizdevās atsākt torrentu: nepareizs torrenta ID. Torrents: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Atrasti nepareizi dati: iestatījumu failā netika atrasta kategorijas iestatījumi. Kategorija tiks atjaunota, bet tās iestatījumi tiks atgriezti uz noklusētajiem. Torrents "%1". Kategorija: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Atrasti nepareizi dati: nepareiza kategorija. Torrents: "%1". Kategorija: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Nav atrasta sakritība patreizējajai saglabāšanas vietai ar atjaunotās kategorijas saglabāšanas vietu torrentam. Torrents tiks pārslēgts Manuālajā pārvaldes režīmā. Torrents: "%1". Kategorija: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Atrasti nepareizi dati: iestatījumu failā netika atrasta atzīme. Atzīme tiks atjaunota. Torrents: "%1". Atzīme: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Atrasti nepareizi dati: nederīga atzīme. Torrents: "%1". Atzīme: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Reģistrēta datorsistēmas atmoda no miega režīma. Tiek veikta datu atjaunināšana ar visiem trakeriem... - + Peer ID: "%1" Koplietotāja ID: "%1" - + HTTP User-Agent: "%1" HTTP Lietotāja Aģents ir "%1" - + Peer Exchange (PeX) support: %1 Apmaiņa koplietotāju starpā (PeX): %1 - - + + Anonymous mode: %1 Anonīmais režīms %1 - - + + Encryption support: %1 Šifrēšanas atbalsts: %1 - - + + FORCED PIESPIEDU - + Could not find GUID of network interface. Interface: "%1" Neizdevās iegūt Savienojuma interfeisa GUID: "%1" - + Trying to listen on the following list of IP addresses: "%1" Mēģina savienot ar kādu no sarakstā esošajām IP adresēm: "%1" - + Torrent reached the share ratio limit. Torrents sasniedzis L/A attiecības robežu. - + Torrent: "%1". Torrents: "%1". - Removed torrent. - Izdzēsts torrents. - - - Removed torrent and deleted its content. - Izdzēsts torrents un tā saturs. - - - Torrent paused. - Torrents apturēts. - - - + Super seeding enabled. Super-augšupielāde ieslēgta. - + Torrent reached the seeding time limit. Torrents sasniedzis augšupielādes laika robežu. - + Torrent reached the inactive seeding time limit. Torrents sasniedzis neaktīvas augšupielādes laika robežu. - + Failed to load torrent. Reason: "%1" Neizdevās ielādēt torrentu. Iemesls "%1" - + I2P error. Message: "%1". I2P kļūda. Ziņojums: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP ieslēgts - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - Trakeru apvienošanas iespēja ir atslēgta + Trakeru apvienošanas iespēja ir atslēgta - + Trackers cannot be merged because it is a private torrent - Trakerus nevar apvienot, jo torrents ir privāts. + Trakerus nevar apvienot, jo torrents ir privāts. - + Trackers are merged from new source - Pievienots trakeris no jaunā avota + Pievienots trakeris no jaunā avota - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP atslēgts - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Neizdevās eksportēt torrentu. Torrents: "%1". Vieta: "%2". Iemesls: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Atcelta atsākšanas datu saglabāšana norādītajam skaitam torrentu: %1 - + The configured network address is invalid. Address: "%1" Uzstādītā tīkla adrese nav derīga: Adrese: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Neizdevās atrast uzstādītu, derīgu tīkla adresi. Adrese: "%1" - + The configured network interface is invalid. Interface: "%1" Uzstādītā tīkla adrese nav derīga: Adrese: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" IP adrese: "%1" nav derīga, tādēļ tā netika pievienota bloķēto adrešu sarakstam. - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Torrentam pievienots trakeris. Torrents: "%1". Trakeris: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Torrentam noņemts trakeris. Torrents: "%1". Trakeris: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Torrentam pievienots Tīmekļa devējs. Torrents: "%1". Devējs: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Torrentam noņemts Tīmekļa devējs. Torrents: "%1". Devējs: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrents apturēts. Torrents: "%1" - - - + Torrent resumed. Torrent: "%1" Torrents atsākts. Torrents: "%1" - + Torrent download finished. Torrent: "%1" Torrenta lejupielāde pabeigta. Torrents: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrenta pārvietošana atcelta. Torrents: "%1". Avots: "%2". Galavieta: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrents apstādināts. Torrents: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Neizdevās ierindot torrenta pārvietošanu. Torrents: "%1". Avots: "%2". Galavieta: "%3". Iemesls: torrents jau ir pārvietošanas vidū - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Neizdevās ierindot torrenta pārvietošanu. Torrents: "%1". Avots: "%2". Galavieta: "%3". Iemesls: Esošā un izvēlētā jaunā galavieta ir tā pati. - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Ierindota torrenta pārvietošana. Torrents: "%1". Avots: "%2". Galavieta: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Sākt torrenta pārvietošanu. Torrents: "%1". Galavieta: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Neizdevās saglabāt Kategoriju uzstādījumus. Fails: "%1". Kļūda: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Neizdevās parsēt Kategoriju uzstādījumus. Fails: "%1". Kļūda: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Veiksmīgi parsēts IP filtrs. Pievienoto filtru skaits: %1 - + Failed to parse the IP filter file Neizdevās parsēt norādīto IP filtru - + Restored torrent. Torrent: "%1" Atjaunots torrents. Torrents: "%1" - + Added new torrent. Torrent: "%1" Pievienots jauns torrents. Torrents: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Kļūda torrentos. Torrents: "%1". Kļūda: "%2" - Removed torrent. Torrent: "%1" - Izdzēsts torrents. Torrents: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Izdzēsts torrents un tā saturs. Torrents: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentam iztrūkst SSL parametri. Torrents: "%1". Ziņojums: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Kļūda failos. Torrents: "%1". Fails: "%2". Iemesls: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP portu skenēšana neveiksmīga, Ziņojums: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP portu skenēšana veiksmīga, Ziņojums: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filtra dēļ. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). neatļautais ports (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). priviliģētais ports (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent sesija saskārusies ar nopietnu kļūdu. Iemesls: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 starpniekservera kļūda. Adrese: %1. Ziņojums: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 jauktā režīma ierobežojumu dēļ. - + Failed to load Categories. %1 Neizdevās ielādēt Kategorijas. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Neizdevās ielādēt Kategoriju uzstādījumus. Fails: "%1". Iemesls: "nederīgs datu formāts" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Izdzēsts .torrent fails, but neizdevās izdzēst tā saturu vai .partfile. Torrents: "%1". Kļūda: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. jo %1 ir izslēgts - + %1 is disabled this peer was blocked. Reason: TCP is disabled. jo %1 ir izslēgts - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Neizdevās atrast Tīmekļa devēja DNS. Torrents: "%1". Devējs: "%2". Kļūda: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Saņemts kļūdas ziņojums no tīmekļa devēja. Torrents: "%1". URL: "%2". Ziņojums: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Veiksmīgi savienots. IP: "%1". Ports: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Neizdevās savienot. IP: "%1". Ports: "%2/%3". Iemesls: "%4" - + Detected external IP. IP: "%1" Reģistrētā ārējā IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Kļūda: iekšējā brīdinājumu rinda ir pilna un brīdinājumi tiek pārtraukti. Var tikt ietekmēta veiktspēja. Pārtraukto brīdinājumu veidi: "%1". Ziņojums: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrents pārvietots veiksmīgi. Torrents: "%1". Galavieta: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Neizdevās pārvietot torrentu. Torrents: "%1". Avots: "%2". Galavieta: "%3". Iemesls: "%4" @@ -2758,47 +2775,47 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Neizdevās faila rakstīšana. Iemesls: "%1". Tamdēļ šobrīd torrents būs tikai augšupielādes režīmā. - + Download first and last piece first: %1, torrent: '%2' Vispirms ielādēt pirmās un pēdējās daļiņas: %1, torrents: '%2' - + On Ieslēgts - + Off Izslēgts - + Failed to reload torrent. Torrent: %1. Reason: %2 Neizdevās ielādēt torrentu. Torrents: %1. Iemesls: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Atsākšanas datu izveidošana nesanāca. Torrents: "%1". Iemesls: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Neizdevās atjaunot torrentu. Visticamāk faili ir pārvietoti vai arī glabātuve nav pieejama. Torrents: "%1". Iemesls: "%2" - + Missing metadata Trūkst metadatu - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Neizdevās faila pārdēvēšana. Torrents: "%1", fails: "%2", iemesls: "%3" - + Performance alert: %1. More info: %2 Veiktspējas brīdinājums: %1. Sīkāka informācija: %2 @@ -2835,11 +2852,6 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Expected integer number in environment variable '%1', but got '%2' Gaidītais veselais skaitlis vides mainīgajā '%1', bet saņemts '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parametram '%1' ir jāatbilst sintaksei '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2892,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parametram '%1' ir jāatbilst sintaksei '%1=%2' + Parametram '%1' ir jāatbilst sintaksei '%1=%2' @@ -2968,11 +2980,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Add torrents as running or stopped - - - - Add torrents as started or paused - Pievienot torrentus sāktus vai apstādinātus + Pievienot torrentus kā palaistus vai apstādinātus @@ -3063,20 +3071,12 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Start torrents - + Palaistie torrenti Stop torrents - - - - Resume torrents - Atsākt torrentus - - - Pause torrents - Apturēt torrentus + Apstādinātie torrenti @@ -3176,10 +3176,6 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Also remove the content files - - Also permanently delete the files - Tāpat neatgriezeniski izdzēst failus - Are you sure you want to remove '%1' from the transfer list? @@ -3395,7 +3391,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Plain text - + Vienkāršs teksts @@ -3411,26 +3407,22 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā GUIAddTorrentManager - + Downloading torrent... Source: "%1" Lejupielāde torrentu.... Avots: "%1" - Trackers cannot be merged because it is a private torrent - Trakerus nevar apvienot, jo torrents ir privāts. - - - + Torrent is already present Šis torrents jau ir pievienots - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrents '%'1 jau ir torrentu sarakstā. Vai vēlies apvienot to trakerus? @@ -3548,6 +3540,40 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Atbalstītie attēlu faili + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Energoefektivitātes pārvaldnieks atrada piemērotu D-Bus interfeisu. Interfeiss: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Energoefektivitātes pārvaldnieka kļūda. Darbība: %1. Kļūda: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Negaidīta energoefektivitātes pārvaldnieka kļūda. Stāvoklis: %1. Kļūda: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3715,6 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā &Options... Iestatījumi... - - &Resume - Atsākt - &Remove @@ -3774,10 +3796,6 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Close Window Aizvērt logu - - R&esume All - A&tsākt visus - Manage Cookies... @@ -3821,7 +3839,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Sto&p - + A&pstādināt @@ -3893,10 +3911,6 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā &Hibernate System Pārslēgties hibernācijas režīmā - - S&hutdown System - Izslēgt datoru - &Statistics @@ -3917,14 +3931,6 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā &About Par BitTorrent - - &Pause - Apturēt - - - P&ause All - Apturēt visus - &Add Torrent File... @@ -3958,12 +3964,12 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā - + Show Rādīt - + Check for program updates Meklēt programmas atjauninājumus @@ -3978,388 +3984,383 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Ja jums patīk qBittorrent, lūdzu, ziedojiet! - + Execution Log Reģistrs - + Clear the password Notīrīt paroli - + &Set Password Uzstādīt paroli - + Preferences Iestatījumi - + &Clear Password Notīrīt paroli - + Transfers Torrenti - - + + qBittorrent is minimized to tray qBittorrent ir samazināts tray ikonā - - - + + + This behavior can be changed in the settings. You won't be reminded again. Šī uzvedība var tikt mainīta uzstādījumos. Jums tas vairs netiks atgādināts. - + Icons Only Tikai ikonas - + Text Only Tikai tekstu - + Text Alongside Icons Teksts blakus ikonām - + Text Under Icons Teksts zem ikonām - + Follow System Style Sistēmas noklusētais - - + + UI lock password qBittorrent atslēgšanas parole - - + + Please type the UI lock password: Izvēlies paroli qBittorrent atslēgšanai: - + Are you sure you want to clear the password? Vai esat pārliecināts, ka vēlaties notīrīt paroli? - + Use regular expressions Lietot regulāras izteiksmes (regex) - - + + Search Engine - Meklētājs + Meklētājs - + Search has failed - Meklēšana neizdevās + Meklēšana neizdevās - + Search has finished - + Meklēšana pabeigta. - + Search Meklētājs - + Transfers (%1) Torrenti (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent nupat tika atjaunināts un ir nepieciešams restarts, lai izmaiņas stātos spēkā. - + qBittorrent is closed to tray qBittorrent ir samazināts tray ikonā - + Some files are currently transferring. Dažu failu ielāde vēl nav pabeigta. - + Are you sure you want to quit qBittorrent? Vai esat pārliecināts, ka vēlaties aizvērt qBittorrent? - + &No - + &Yes - + &Always Yes Vienmēr jā - + Options saved. Iestatījumi saglabāti. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [L: %1, A: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Python uzstādīšanas programmu nevarēja lejupielādēt. Kļūda: %1. +Lūdzu, uzstādiet to paši. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Neizdevās pārdēvēt Python uzstādīšanas programmu. Avots: "%1". Galamērķis: "%2". - + Python installation success. - + Python veiksmīgi uzstādīts. - + Exit code: %1. - + Reason: installer crashed. - + Iemesls: uzstādīšanas programma avarēja. - + Python installation failed. - + Python uzstādīšana neizdevās. - + Launching Python installer. File: "%1". - + Palaiž Python uzstādīšanas programmu. Fails: "%1". - - + + Missing Python Runtime Nav atrasts Python interpretētājs - + qBittorrent Update Available Pieejams qBittorrent atjauninājums - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Lai lietotu meklētāju, ir nepieciešams uzinstalēt Python. Vai vēlaties to instalēt tagad? - + Python is required to use the search engine but it does not seem to be installed. Lai lietotu meklētāju, ir nepieciešams uzinstalēt Python. - - + + Old Python Runtime Novecojis Python interpretētājs - + A new version is available. Pieejama jauna versija - + Do you want to download %1? Vai vēlaties lejupielādēt %1? - + Open changelog... Atvērt izmaiņu reģistru... - + No updates available. You are already using the latest version. Atjauninājumi nav pieejami. Jūs jau lietojat jaunāko versiju. - + &Check for Updates Meklēt atjauninājumus - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Jūsu Pythona versija (%1) ir novecojusi. Vecākā atļautā: %2. Vai vēlaties ieinstalēt jaunāku versiju tagad? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Jūsu Python versija (1%) ir novecojusi. Lai darbotos meklētājprogrammas, lūdzu veiciet atjaunināšanu uz jaunāko versiju. Vecākā atļautā: %2. - + Paused - Apturēts + Apturēts - + Checking for Updates... Meklē atjauninājumus... - + Already checking for program updates in the background Atjauninājumu meklēšana jau ir procesā - + Python installation in progress... - + Notiek Python uzstādīšana… - + Failed to open Python installer. File: "%1". - + Neizdevās atvērt Python uzstādīšanas programmu. Fails: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python uzstādīšanas programmas MD5 kontrolsummas pārbaude izgāzās. Fails: "%1". Reālā kontrolsumma: "%2". Vēlamā kontrolsumma: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python uzstādīšanas programmas SHA3-512 kontrolsummas pārbaude izgāzās. Fails: "%1". Reālā kontrolsumma: "%2". Vēlamā kontrolsumma: "%3". - + Download error Lejupielādes kļūda - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python instalāciju neizdevās lejupielādēt, iemesls: %1. -Lūdzam to izdarīt manuāli. - - - - + + Invalid password Nederīga parole - + Filter torrents... Meklēt torrentu.... - + Filter by: Meklēt pēc: - + The password must be at least 3 characters long Parolei ir jāsatur vismaz 3 rakstzīmes. - - - + + + RSS (%1) RSS (%1) - + The password is invalid Parole nav derīga - + DL speed: %1 e.g: Download speed: 10 KiB/s Lejup. ātrums: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Augšup. ātrums: %1 - + Hide Paslēpt - + Exiting qBittorrent Aizvērt qBittorrent - + Open Torrent Files Izvēlieties Torrentu failus - + Torrent Files Torrentu faili @@ -4556,7 +4557,7 @@ Lūdzam to izdarīt manuāli. SSL error, URL: "%1", errors: "%2" - + SSL kļūda, URL: "%1", kļūdas: "%2" @@ -5853,47 +5854,47 @@ Lūdzam to izdarīt manuāli. Net::Smtp - + Connection failed, unrecognized reply: %1 Savienojums neizdevās, neatpazīta atbilde: %1 - + Authentication failed, msg: %1 Autentifikācija neizdevās, ziņa: %1 - + <mail from> was rejected by server, msg: %1 <mail from> serveris noraidīja, ziņa: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> serveris noraidīja, ziņa: %1 - + <data> was rejected by server, msg: %1 <data> serveris noraidīja, ziņa: %1 - + Message was rejected by the server, error: %1 Serveris noraidīja ziņojumu, kļūda: %1 - + Both EHLO and HELO failed, msg: %1 Kļūda gan EHLO, gan HELO, ziņa: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP serveris neatbalsta nevienu no mūsu izmantotajām autentifikācijas metodēm [CRAM-MD5|PLAIN|LOGIN], izlaidīsim autentifikāciju, zinot, ka tas visticamāk nenostrādās... Servera autenfikācijas veids: %1 - + Email Notification Error: %1 E-pasta paziņojuma kļūda: %1 @@ -5935,10 +5936,6 @@ Lūdzam to izdarīt manuāli. RSS RSS - - Web UI - Tālvadība - Advanced @@ -5959,14 +5956,6 @@ Lūdzam to izdarīt manuāli. Confirm when deleting torrents Apstiprināt Torrentu dzēšanu - - Shows a confirmation dialog upon pausing/resuming all the torrents - Atsākot/Apstādinot visus torrentus, tiks parādīs apstiprinājuma logs - - - Confirm "Pause/Resume all" actions - Apstiprināt "Atsākt/Apstādināt visus" darbības - Use alternating row colors @@ -5983,10 +5972,6 @@ Lūdzam to izdarīt manuāli. Always Vienmēr - - Paused torrents only - Tikai apturētajiem torrentiem - Action on double-click @@ -5997,10 +5982,6 @@ Lūdzam to izdarīt manuāli. Downloading torrents: Lejupielādējot torrentus: - - Start / Stop Torrent - Sākt / Apturēt torentu - @@ -6059,179 +6040,179 @@ Lūdzam to izdarīt manuāli. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrenta satura izkārtojums: - + Original Oriģinālais - + Create subfolder Izveidot apakšmapi - + Don't create subfolder Neizveidot apakšmapi - + The torrent will be added to the top of the download queue Torrenta tiks pievienots lejupielāžu saraksta augšā - + Add to top of queue The torrent will be added to the top of the download queue Novietot saraksta augšā - + When duplicate torrent is being added Pievienojot torrenta duplikātu - + Merge trackers to existing torrent Apvienot torrentu trakeru saites - + Keep unselected files in ".unwanted" folder Uzglabāt neizvēlētos failus ".unwanted" mapē - + Add... Pievienot... - + Options.. Iestatījumi... - + Remove Dzēst - + Email notification &upon download completion E-pasta paziņojums par lejupielādes pabeigšanu - + Send test email - + Nosūtīt testa e-pastu - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Koplietotāju savienojumu protokols - + Any Vienalga - + I2P (experimental) l2P (eksperimentāls) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Ja ir ieslēgts "Jauktais režīms", I2P torrentiem ir atļauts iegūt koplietotājus ne tikai caur trakeru saitēm, bet arī no citiem avotiem, nenodrošinot anonimitāti. Tas var būt noderīgi, ja lietotājam anonimitāte nav svarīgāka par nepieciešamību pēc vairāk I2P koplietotājiem.</p></body></html> - - - + Mixed mode Jauktais režīms - Some options are incompatible with the chosen proxy type! - Dažas iespējas nav sadrīgas ar izvēlēto starpniekserveri! + Dažas iespējas nav sadrīgas ar izvēlēto starpniekserveri! - + If checked, hostname lookups are done via the proxy Ja atzīmēts, arī datoru nosaukumu noteikšanai izmantos starpniekserveri - + Perform hostname lookup via proxy Izmantot starpniekserveri datoru nosaukumu noteikšanai - + Use proxy for BitTorrent purposes Izmantot starpniekserveri tikai BiTtorrent savienojumiem - + RSS feeds will use proxy RSS kanāli izmantos starpniekserveri - + Use proxy for RSS purposes Izmantot starpniekserveri RSS kanāliem - + Search engine, software updates or anything else will use proxy Meklētājiem, atjaunināšanai un visam citam izmantos starpniekserveri - + Use proxy for general purposes Izmantot starpniekserveri visiem savienojumiem - + IP Fi&ltering IP filtrēšana - + Schedule &the use of alternative rate limits Uzstādīt laiku Alternatīvo atļauto ātrumu pielietošanai - + From: From start time No: - + To: To end time Līdz: - + Find peers on the DHT network Atrod koplietotājus publiskajā DHT tīklā - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6221,190 @@ Pieprasīt šifrēšanu: Veidot tikai šifrētus savienojumus, ar citiem kopliet Atslēgt šifrēšanu: Veidot savienojumus ar citiem koplietotājiem, kuriem arī šifrēšana ir atslēgta - + Allow encryption Atļaut šifrēšanu - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Vairāk informācijas</a>) - + Maximum active checking torrents: Atļautais vienlaicīgi pārbaudāmo torrentu skaits: - + &Torrent Queueing Torrentu saraksts - + When total seeding time reaches Kad kopējais augšupielādes laiks sasniedz - + When inactive seeding time reaches Kad neaktīvais augšupielādes laiks sasniedz - A&utomatically add these trackers to new downloads: - A&utomātiski pievienot šos trakerus jaunajām lejupielādēm: - - - + RSS Reader RSS lasītājs - + Enable fetching RSS feeds Ieslēgt RSS kanālu nolasīšanu - + Feeds refresh interval: Ziņu atsvaidzināšanas intervāls: - + Same host request delay: - + Maximum number of articles per feed: Atļautais ziņu skaits katram kanālam: - - - + + + min minutes min - + Seeding Limits Augšupielādes ierobežojumi - Pause torrent - Apturēt torrentu - - - + Remove torrent Dzēst torrentu - + Remove torrent and its files Izdzēst torrentu un failus - + Enable super seeding for torrent Ieslēgt torrentu super-augšupielādi - + When ratio reaches Kad L/A attiecība sasniedz - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + Apstādināt torrentu + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - Adrese: + Adrese: - + Fetched trackers - + Search UI - + Meklētāja saskarne - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS automātiskais torrentu lejupielādētājs - + Enable auto downloading of RSS torrents Ieslēgt RSS automātisko lejupielādi - + Edit auto downloading rules... Rediģēt automātiskās lejupielādes nosacījumus... - + RSS Smart Episode Filter RSS viedais epizožu filtrs - + Download REPACK/PROPER episodes Lejupielādēt REPACK/PROPER epizodes - + Filters: Filtri: - + Web User Interface (Remote control) Tālvadības kontroles panelis (Web UI) - + IP address: IP adrese: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6413,37 @@ Norādiet IPv4 vai IPv6 adresi. Varat norādīt "0.0.0.0" jebkurai IPv "::" jebkurai IPv6 adresei, vai "*" abām IPv4 un IPv6. - + Ban client after consecutive failures: Liegt piekļuvi pēc atkārtotiem mēģinājumiem: - + Never Nekad - + ban for: liegt piekļuvi uz: - + Session timeout: Sesijas noildze: - + Disabled Atslēgts - Enable cookie Secure flag (requires HTTPS) - Ieslēgt sīkdatņu Secure Flag (nepieciešams HTTPS) - - - + Server domains: Servera domēni: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6456,37 @@ Lai aizsargātu pret DNS atkārtotas atsaukšanas uzbrukumiem, Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. - + &Use HTTPS instead of HTTP HTTP vietā izmantot HTTPS - + Bypass authentication for clients on localhost Izlaist pierakstīšanos uz saimnieka datora (localhost) - + Bypass authentication for clients in whitelisted IP subnets Izlaist pierakstīšanos klientiem, kuri atrodas apakštīklu IP baltajā sarakstā - + IP subnet whitelist... Apakštīklu IP baltais saraksts... - + Use alternative WebUI - + Lietot citu Tālvadības paneļa saskarni - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Norādiet apgriezto starpniekserveru IP adreses (vai apakštīklus, piem. 0.0.0.0/24), lai izmantotu klienta pārsūtīto adresi (X-Forwarded-For atribūts), izmantojiet ";", lai atdalītu ierakstus. - + Upda&te my dynamic domain name Atjaunināt manu dinamisko domēnu @@ -6519,12 +6498,12 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Search - + Meklēt WebUI - + Tālvadības panelis @@ -6544,24 +6523,24 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Color scheme: - + Krāsu shēma: Stopped torrents only - + Tikai apstādinātos torrentus Start / stop torrent - + Palaist / apstādināt torrentu Open torrent options dialog - + Atvērt torrenta iestatījumu dialoglogu @@ -6620,99 +6599,99 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Dzēst reģistra kopijas vecākas par: - + Show external IP in status bar - + Rādīt publisko IP adresi statusa joslā - + When adding a torrent Pievienojot torrentu - + Bring torrent dialog to the front Novietot torenta dialogu priekšplānā - + The torrent will be added to download list in a stopped state - + Torrents tiks pievienots lejupielāžu sarakstam apstādinātā stāvoklī - + Also delete .torrent files whose addition was cancelled .torrent faili tiks izdzēsti arī pie pievienošanas atcelšanas. - + Also when addition is cancelled Arī atceļot pievienošanu - + Warning! Data loss possible! Brīdinājums! Iespējams datu zudums! - + Saving Management Saglabāšanas iestatījumi - + Default Torrent Management Mode: Noklusējuma torrentu pārvaldības režīms: - + Manual Manuāli - + Automatic Automātiski - + When Torrent Category changed: Mainot torrenta kategoriju: - + Relocate torrent Pārvietot torrentu - + Switch torrent to Manual Mode Pārslēgt torrentu Manuālajā režīmā - - + + Relocate affected torrents Pārvietot ietekmētos torrentus - - + + Switch affected torrents to Manual Mode Pārslēgt ietekmētos torrentus Manuālajā režīmā - + Use Subcategories Lietot apakškategorijas - + Default Save Path: Noklusētā saglabāšanas vieta: - + Copy .torrent files to: Izveidot .torrent failu kopijas šeit: @@ -6722,26 +6701,22 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Rādīt &qBittorrent paziņojumu joslā - &Log file - Reģistra fails - - - + Display &torrent content and some options Parādīt torrenta saturu un iestatījumus - + De&lete .torrent files afterwards Izdzēst .torrent failu pēc tā pievienošanas - + Copy .torrent files for finished downloads to: Izveidot .torrent failu kopijas pabeigtajiem torrentiem šeit: - + Pre-allocate disk space for all files Rezervēt brīvu vietu uz diska jaunajiem failiem @@ -6771,10 +6746,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Preview file, otherwise open destination folder Priekšskatīt failu. Ja nevar, tad atvērt atrašanās vietu - - Show torrent options - Torrenta iestatījumi - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6811,65 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu gadiem - + Log performance warnings Reģistrēt darbības brīdinājumus - The torrent will be added to download list in a paused state - Torrents lejupielāžu sarakstā tiks pievienots apturēts - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Neuzsākt lejupielādi automātiski - + Whether the .torrent file should be deleted after adding it Vai .torrent fails ir jāizdzēš pēc tā pievienošanas - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Izbrīvēs pilnu vietu failiem pirms lejupielādes sākšanas, lai mazinātu diska fragmentāciju. Funkcija būtiska tikai HDD diskiem. - + Append .!qB extension to incomplete files Pievienot .!qB galotni nepabeigtajiem failiem - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Kad faili no torrenta ir lejupielādēti, piedāvāt lejupielādēt tajos atrastos citus .torrent failus. - + Enable recursive download dialog Parādīt rekursīvās lejupielādes dialogu - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automātiski: nozīmē, ka torrenta uzstādījumi (piem. saglabāšanas vieta), tiks iestatīti atbilstoši izvēlētajai kategorijai. Manuāli: Nozīmē, ka torrenta uzstādījumi (piem. saglabāšanas vieta) būs jānorāda pašam. - + When Default Save/Incomplete Path changed: Mainot noklusēto Saglabāšanas/Nepabeigto vietu: - + When Category Save Path changed: Mainot kategorijas saglabāšanas vietu: - + Use Category paths in Manual Mode Izmantot Kategoriju vietas manuālajā režīmā - + Resolve relative Save Path against appropriate Category path instead of Default one Noklusētās saglabāšanas vietas vietā izmantot attiecīgās Kategorijas saglabāšanas vietu @@ -6922,50 +6889,50 @@ Manuāli: Nozīmē, ka torrenta uzstādījumi (piem. saglabāšanas vieta) būs qBittorrent loga stāvoklis palaišanas brīdī - + Torrent stop condition: Torrenta apstādināšanas nosacījumi: - - + + None Nevienu - - + + Metadata received Metadati ielādēti - - + + Files checked Faili pārbaudīti - + Ask for merging trackers when torrent is being added manually Vaicāt pēc trakera saišu pievienošanas, ja torrents tiek pievienots manuāli - + Use another path for incomplete torrents: Izmantot citu vietu nepabeigtiem torrentiem: - + Automatically add torrents from: Automātiski pievienot torrentus no: - + Excluded file names Neiekļaujamo failu nosaukumi - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6961,510 @@ readme.txt: neatļaus failus ar tieši tādu nosaukumu. readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet atļaus 'readme10.txt'. - + Receiver Saņēmējs - + To: To receiver Uz: - + SMTP server: SMTP serveris: - + Sender Sūtītājs - + From: From sender No: - + This server requires a secure connection (SSL) Šim serverim ir nepieciešams šifrēts savienojums (SSL) - - + + Authentication Pierakstīšanās - - - - + + + + Username: Lietotājvārds: - - - - + + + + Password: Parole: - + Run external program Palaist ārēju programmu - Run on torrent added - Palaist reizē ar torrenta pievienošanu - - - Run on torrent finished - Palaist pēc torrenta ielādes pabeigšanas - - - + Show console window Parādīt konsoles logu - + TCP and μTP TCP un μTP - + Listening Port Portu iestatījumi - + Port used for incoming connections: Ports, kuru izmanto ienākošajiem savienojumiem: - + Set to 0 to let your system pick an unused port Izvēlies 0, ja vēlies, lai sistēma izvēlas neizmantotu portu - + Random Nejaušs - + Use UPnP / NAT-PMP port forwarding from my router Lietot mana rūtera UPnP / NAT-PMP portu pāradresāciju - + Connections Limits Savienojumu ierobežojumi - + Maximum number of connections per torrent: Atļautais savienojumu skaits katram torrentam: - + Global maximum number of connections: Atlautais kopējais savienojumu skaits: - + Maximum number of upload slots per torrent: Atļautais augšupielādes slotu skaits katram torrentam: - + Global maximum number of upload slots: Atļautais kopējais augšupielādes slotu skaits: - + Proxy Server Starpniekserveris - + Type: Lietot: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Adrese: - - - + + + Port: Ports: - + Otherwise, the proxy server is only used for tracker connections Pretējā gadījumā, starpniekserveris tiks izmantots tikai savienojumiem ar trakeriem - + Use proxy for peer connections Izmantot starpniekserveri koplietotāju savienojumiem - + A&uthentication Pierakstīšanas - Info: The password is saved unencrypted - Brīdinājums: Šī parole netiek glabāta šifrētā veidā + Brīdinājums: Šī parole netiek glabāta šifrētā veidā - + Filter path (.dat, .p2p, .p2b): Filtra atrašanās vieta (.dat, .p2p, .p2b): - + Reload the filter Pārlādēt filtru - + Manually banned IP addresses... Manuāli bloķētās IP adreses... - + Apply to trackers Pielietot trakeriem - + Global Rate Limits Galvenie atļautie kopējie ātrumi - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Augšupielāde: - - + + Download: Lejupielāde: - + Alternative Rate Limits Alternatīvie atļautie kopējie ātrumi - + Start time Sākšanas laiks - + End time Beigšanas laiks - + When: Kad: - + Every day Katru dienu. - + Weekdays Darbdienās - + Weekends Nedēļas nogalēs - + Rate Limits Settings Ielādes ātrumu ierobežojumu iestatījumi - + Apply rate limit to peers on LAN Pielietot ierobežojumus koplietotājiem LAN tīklā - + Apply rate limit to transport overhead Pielietot ātruma ierobežojums tikai transporta izmaksām - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Pielietot ierobežojumus µTP protokolam - + Privacy Privātums - + Enable DHT (decentralized network) to find more peers Ieslēgt DHT (necentralizēto tīklu), lai atrastu vēl vairāk koplietotājus - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Apmainīties ar koplietotājiem ar saderīgiem Bittorrent klientiem (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Ieslēgt datu apmaiņu koplietotāju starpā (PeX), lai atrastu vairāk koplietotājus - + Look for peers on your local network Meklēt koplietotājus privātajā tīklā - + Enable Local Peer Discovery to find more peers Ieslēgt Vietējo koplietotāju meklēšanu, lai atrastu vēl vairāk koplietotājus - + Encryption mode: Šifrēšanas režīms: - + Require encryption Pieprasīt šifrēšanu - + Disable encryption Atslēgt šifrēšanu - + Enable when using a proxy or a VPN connection Ieslēgt, ja tiek izmantots starpniekserveris vai VPN - + Enable anonymous mode Iespējot anonīmo režīmu - + Maximum active downloads: Atļautais aktīvo lejupielāžu skaits: - + Maximum active uploads: Atļautais aktīvo augšupielāžu skaits: - + Maximum active torrents: Atļautais kopējais aktīvo torrentu skaits: - + Do not count slow torrents in these limits Neiekļaut šajās robežās lēnos torrentus. - + Upload rate threshold: Nepārsniedz Auģsupielādes ātrumu: - + Download rate threshold: Nepārsniedz Lejupielādes ātrumu: - - - - + + + + sec seconds sek - + Torrent inactivity timer: Torrentu neaktivitātes skaitītājs: - + then tad - + Use UPnP / NAT-PMP to forward the port from my router Lietot UPnP / NAT-PMP lai pāradresētu portu manā maršrutētājā - + Certificate: Sertifikāts - + Key: Atslēga: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informācija par sertifikātiem</a> - + Change current password Mainīt patreizējo paroli - Use alternative Web UI - Lietot citu Tālvadības paneļa saskarni - - - + Files location: Failu atrašanās vieta: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Alternatīvo WebUI saraksts</a> - + Security Drošība - + Enable clickjacking protection Ieslēgt aizsardzību pret clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Ieslēgt aizsardzību pret Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Ieslēgt Hosta header apstiprināšanu - + Add custom HTTP headers Pievienot pielāgotas HTTP galvenes - + Header: value pairs, one per line Galvene: Katrā rindā pa vienam vērtību pārim - + Enable reverse proxy support Atļaut reversos starptniekserverus - + Trusted proxies list: Uzticamo starpniekserveru saraksts: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reversā starpniekservera iestatīšanas piemēri</a> - + Service: Serviss: - + Register Reģistrēties - + Domain name: Domēna vārds: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Iespējojot šo opciju, varat <strong>neatgriezeniski zaudēt</strong> .torrent failus! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Ja tu iespējosi otru opciju (&ldquo;Arī atceļot pievienošanu&rdquo;) .torrent fails <strong>tiks izdzēsts</strong> arī, ja tu piespiedīsi &ldquo;<strong>Atcelt</strong>&rdquo; &ldquo;Pievienot Torrentu failus&rdquo; logā @@ -7520,12 +7474,12 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet Izvēlēties qBittorrent saskarnes failu - + Choose Alternative UI files location Izvēlieties interfeisa failu atrašanās vietu - + Supported parameters (case sensitive): Nodrošinātie parametri (reģistrjūtīgi): @@ -7542,186 +7496,186 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet Disabled due to failed to detect system tray presence - + Atslēgts, jo neizdevās noteikt sistēmas teknes klātbūtni - + No stop condition is set. Aptstādināšanas nosacījumi nav izvēlēti - + Torrent will stop after metadata is received. Torrents tiks apstādināts pēc metadatu ielādes. - + Torrent will stop after files are initially checked. Torrents tiks apstādināts pēc sākotnējo failu pārbaudes. - + This will also download metadata if it wasn't there initially. Tas ielādēs arī metadatus, ja to nebija jau sākotnēji. - + %N: Torrent name %N: Torrent faila nosaukums - + %L: Category %L: Kategorija - + %F: Content path (same as root path for multifile torrent) %F: Satura ceļš (tāpat kā saknes ceļš daudz-failu torrentam) - + %R: Root path (first torrent subdirectory path) %R: Saknes ceļš (pirmā torrenta apakšdirektorijas ceļš) - + %D: Save path %D: Saglabāšanas vieta - + %C: Number of files %C: Failu skaits - + %Z: Torrent size (bytes) %Z: Torrenta izmērs (baitos) - + %T: Current tracker %T: Pašreizējais trakeris - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Padoms: Lai izvairītos no teksta sadalīšanās, ja lietojat atstarpes, ievietojiet parametru pēdiņās (piemēram, "%N") - + Test email - + Testa e-pasts - + Attempted to send email. Check your inbox to confirm success - + Mēģināja nosūtīt e-pastu. Pārbaudiet savu iesūtni, lai pārliecināties, ka viss noritēja veiksmīgi - + (None) (Nevienu) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Par lēnajiem torrentiem tiek reģistrēti tie, kuru ātrumi nepārsniedz zemāk norādītos, ilgāk kā norādīts "Torrentu neaktivātes skaitītājā". - + Certificate Sertifikāts - + Select certificate Izvēlieties sertifikātu - + Private key Privāta atslēga - + Select private key Izvēlieties privātu atslēgu - + WebUI configuration failed. Reason: %1 Tālvadības paneļa konfigurācija neizdevās. Iemesls: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 ir labākais variants vislabākajai saderībai ar Windows tumšo režīmu - + System System default Qt style - + Let Qt decide the style for this system - + Ļaut Qt noteikt šīs sistēmas stilu - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Izvēlēties mapi, kuru uzraudzīt - + Adding entry failed Ieraksta pievienošana neizdevās - + The WebUI username must be at least 3 characters long. Tālvadības paneļa lietotājvārdam jāsatur vismaz 3 rakstzīmes. - + The WebUI password must be at least 6 characters long. Tālvadības paneļa parolei jāsatur vismaz 6 rakstzīmes. - + Location Error Atrašanās vietas kļūda - - + + Choose export directory Izvēlieties eksportēšanas direktoriju - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Ja šīs opcijas ir iespējotas, qBittorent <strong>dzēsīs</strong> .torrent failus pēc tam, kad tie tiks veiksmīgi (pirmais variants) vai ne (otrais variants) pievienoti lejupielādes sarakstam. Tas tiks piemērots <strong>ne tikai</strong> failiem, kas atvērti, izmantojot &ldquo;Pievienot Torrentu failus&rdquo; izvēlnes darbību, bet arī, to atverot, izmantojot <strong>failu tipu piesaistes</strong> @@ -7731,69 +7685,69 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet qBittorrent saskarnes fails (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Atzīmes (atdalītas ar komatu) - + %I: Info hash v1 (or '-' if unavailable) %I: Jaucējkods v1 (vai '-' ja nav pieejams) - + %J: Info hash v2 (or '-' if unavailable) %J: Jaucējkods v2 (vai '-' ja nav pieejams) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrenta ID (Vai nu sha-1 jaucējukods torrentam v1, vai arī saīsināts sha-256 jaucējkods v2/hibrīda torrentam) - - + + Choose a save directory Izvēlieties saglabāšanas direktoriju - + Torrents that have metadata initially will be added as stopped. Torrenti, kuriem ir metadati tiks pievienoti apstādināti. - + Choose an IP filter file Izvēlieties IP filtra failu - + All supported filters Visi atbalstītie filtri - + The alternative WebUI files location cannot be blank. Saskarnes failu atrašanās vieta nevar tikt atstāta tukša. - + Parsing error Parsēšanas kļūda - + Failed to parse the provided IP filter Neizdevās parsēt norādīto IP filtru - + Successfully refreshed Veiksmīgi atsvaidzināts - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number IP filtra parsēšana veiksmīga: piemēroti %1 nosacījumi. @@ -7804,18 +7758,18 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet Iestatījumi - + Time Error Laika kļūda - + The start time and the end time can't be the same. Sākuma un beigu laiks nevar būt vienāds - - + + Length Error Garuma kļūda @@ -7906,163 +7860,163 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet PeerListWidget - + Country/Region Valsts/Apgabals - + IP/Address IP/Adrese - + Port Ports - + Flags Karogi - + Connection Savienojums - + Client i.e.: Client application Klients - + Peer ID Client i.e.: Client resolved from Peer ID Koplietotāja klienta ID - + Progress i.e: % downloaded Pabeigti - + Down Speed i.e: Download speed Lejupielādes ātrums - + Up Speed i.e: Upload speed Augšupielādes ātrums - + Downloaded i.e: total data downloaded Lejupielādēti - + Uploaded i.e: total data uploaded Augšupielādēti - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Koplietotāja pārsvars - + Files i.e. files that are being downloaded right now Faili - + Column visibility Kolonnas redzamība - + Resize columns Mainīt kolonnu izmērus - + Resize all non-hidden columns to the size of their contents Pielāgot visu kolonnu izmērus attiecīgi to saturam - + Add peers... Pievienot koplietotājus... - - + + Adding peers Pievieno koplietotājus - + Some peers cannot be added. Check the Log for details. Dažus koplietotājus neizdevās pievienot. Iemeslu skatīt Reģistrā. - + Peers are added to this torrent. Koplietotāji tika veiksmīgi pievienoti torrentam. - - + + Ban peer permanently Nobloķēt koplietotāju - + Cannot add peers to a private torrent Nevar pievienot koplietotājus privātiem torrentiem - + Cannot add peers when the torrent is checking Nevar pievienot koplietotājus torrenta pārbaudes vidū - + Cannot add peers when the torrent is queued Nevar pievienot koplietotājus rindā gaidošiem torrentiem - + No peer was selected Neviens koplietotājs nav atlasīts - + Are you sure you want to permanently ban the selected peers? Vai esat pārliecināts, ka vēlāties aizliegt atlasītos koplietotājus? - + Peer "%1" is manually banned Koplietotājs "%1" tika manuāli aizliegts - + N/A Nav zināms - + Copy IP:port Kopēt IP un portu @@ -8343,34 +8297,27 @@ Esošie spraudņi tika atslēgti. PowerManagement - qBittorrent is active - qBittorrent ir aktīvs + qBittorrent ir aktīvs PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - + Energoefektivitātes pārvaldnieks atrada piemērotu D-Bus interfeisu. Interfeiss: %1 - Power management error. Did not found suitable D-Bus interface. - + Energoefektivitātes pārvaldnieka kļūda. Netika atrasts piemērots D-Bus interfeiss. - - - Power management error. Action: %1. Error: %2 - + Energoefektivitātes pārvaldnieka kļūda. Darbība: %1. Kļūda: %2 - Power management unexpected error. State: %1. Error: %2 - + Negaidīta energoefektivitātes pārvaldnieka kļūda. Stāvoklis: %1. Kļūda: %2 @@ -8619,7 +8566,7 @@ Esošie spraudņi tika atslēgti. Popularity: - + Popularitāte: @@ -8654,7 +8601,7 @@ Esošie spraudņi tika atslēgti. Private: - + Privāts: @@ -8662,153 +8609,124 @@ Esošie spraudņi tika atslēgti. Saglabāšanas vieta: - + Never Nekad - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ielādētas %3) - - + + %1 (%2 this session) %1 (%2 šajā sesijā) - - + + N/A Nav zināms - + Yes - + - + No - + - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (augšupielādē jau %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 atļauti) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 kopā) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 vidējais) - + Add web seed Add HTTP source - + Pievienot tīmekļa devēju - + Add web seed: - + Pievienot tīmekļa devēju: - - + + This web seed is already in the list. - + Šis tīmekļa devējs jau ir sarakstā. - New Web seed - Pievienot tīmekļa devēju - - - Remove Web seed - Noņemt tīmekļa devēju - - - Copy Web seed URL - Kopēt tīmekļa devēja adresi - - - Edit Web seed URL - Izlabot tīmekļa devēja adresi - - - + Filter files... Meklēt failos... - + Add web seed... - + Pievienot tīmekļa devēju… - + Remove web seed - + Noņemt tīmekļa devēju - + Copy web seed URL - + Kopēt tīmekļa devēja adresi - + Edit web seed URL... - + Speed graphs are disabled Ātrumu diagrammas ir atslēgtas - + You can enable it in Advanced Options Varat tās ieslēgt Papildus Iestatījumos - New URL seed - New HTTP source - Pievienot tīmekļa devēju - - - New URL seed: - Pievienot tīmekļa devēju - - - This URL seed is already in the list. - Šis tīmekļa devējs jau ir sarakstā. - - - + Web seed editing Tīmekļa devēja labošana - + Web seed URL: Tīmekļa devēja adrese: @@ -8816,33 +8734,33 @@ Esošie spraudņi tika atslēgti. RSS::AutoDownloader - - + + Invalid data format. Nederīgs datu formāts. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Neizdevās saglabāt RSS automātiskā ielādētāja datus %1. Kļūda: %2 - + Invalid data format Nederīgs datu formāts. - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... '%2' filtrs atzīmējis RSS ierakstu '%1'. Mēģina pievienot torrentu... - + Failed to read RSS AutoDownloader rules. %1 Neizdevās ielādēt RSS automātiskā ielādētāja filtru. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Neizdevās ielādēt RSS automātiskā ielādētāja filtru. Iemesls: %1 @@ -8850,22 +8768,22 @@ Esošie spraudņi tika atslēgti. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Neizdevās ielādēt RSS kanālu no '%1'. Iemesls: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS kanāls '%1' veiksmīgi atjaunināts. Tika pievienoti %2 jauni ieraksti. - + Failed to parse RSS feed at '%1'. Reason: %2 Neizdevās parsēt RSS kanālu no '%1'. Iemesls: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS kanāla '%1' saturs veiksmīgi lejupielādēts. Tiek sākta datu pārstrāde. @@ -8914,12 +8832,12 @@ Esošie spraudņi tika atslēgti. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Neizdevās saglabāt RSS sesijas iestatījumus. Fails: "%1". Iemesls: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Neizdevās saglabāt RSS sesijas datus. Fails: "%1". Iemesls: "%2" @@ -8941,76 +8859,121 @@ Esošie spraudņi tika atslēgti. - + Item doesn't exist: %1. Fails nepastāv: %1. - Couldn't move folder into itself. - Nevar mapi ievietot sevī. + Nevar mapi ievietot sevī. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Nevar izdzēst root mapi. - + Failed to read RSS session data. %1 Neizdevās nolasīt RSS sesijas datus. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Neizdevās parsēt RSS sesijas datus. Fails: "%1". Iemesls: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Neizdevās ielādēt RSS sesijas datus. Fails: "%1". Iemesls: "Nederīgs datu formāts." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Neizdevās ielādēt RSS kanālu. Kanāls: "%1". Iemesls: Nepieciešama kanāla adrese. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Neizdevās ielādēt RSS kanālu. Kanāls: "%1". Iemesls: UID nav derīga. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Atrasts RSS kanāla duplikāts. UID: "%1". Kļūda: Satur kļūdainu informāciju. - + Couldn't load RSS item. Item: "%1". Invalid data format. Neizdevās ielādēt ziņu no RSS kanāla. Ziņa: "%1". Nederīgs datu formāts. - + Corrupted RSS list, not loading it. Kļūdaina RSS informācija, to neielādēs. - + Incorrect RSS Item path: %1. Nepareiza vieta failam no RSS: %1. - + RSS item with given path already exists: %1. Fails no RSS ar norādīto vietu jau pastāv: %1. - + Parent folder doesn't exist: %1. Virsmape nepastāv: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Kanāls nepastāv: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Adrese: + + + + Refresh interval: + + + + + sec + sek + + + + Default + Noklusētais + + RSSWidget @@ -9110,78 +9073,77 @@ Esošie spraudņi tika atslēgti. + Feed options... + + + Edit feed URL... - Rediģēt kanāla adresi... + Rediģēt kanāla adresi... - Edit feed URL - Rediģēt kanāla adresi + Rediģēt kanāla adresi - + Please choose a folder name Lūdzu, izvēlēties mapes nosaukumu - + Folder name: Mapes nosaukums: - + New folder Jauna mape - - Please type a RSS feed URL - Lūdzu ievadiet RSS kanāla adresi + Lūdzu ievadiet RSS kanāla adresi - - Feed URL: - Kanāla adrese: + Kanāla adrese: - + Deletion confirmation Dzēšanas apstiprināšana - + Are you sure you want to delete the selected RSS feeds? Vai esat pārliecināts, ka vēlaties izdzēst atlasītos RSS kanālus? - + Please choose a new name for this RSS feed Lūdzu izvēlēties jaunu nosaukumu šim RSS kanālam - + New feed name: Jaunais kanāla nosaukums: - + Rename failed Pārdēvēšana neizdevās - + Date: Datums: - + Feed: Kanāls: - + Author: Autors: @@ -9318,10 +9280,6 @@ Esošie spraudņi tika atslēgti. i.e: Number of partial sources Ņēmēji - - Search engine - Meklētājs - Filter search results... @@ -9421,7 +9379,7 @@ Esošie spraudņi tika atslēgti. Published On - + Publicēts @@ -9442,104 +9400,104 @@ Esošie spraudņi tika atslēgti. SearchPluginManager - + Unknown search engine plugin file format. Nezināms meklētāja spraudņa faila formāts. - + Plugin already at version %1, which is greater than %2 Pluginam jau ir versija %1, kas ir jaunāka par %2 - + A more recent version of this plugin is already installed. Šobrīd jau ir ieinstalēta šī spraudņa jaunāka versija. - + Plugin %1 is not supported. Spraudnis %1 nav atbalstīts. - - + + Plugin is not supported. Spraudnis nav atbalstīts - + Plugin %1 has been successfully updated. Spraudnis %1 veiksmīgi atjaunināts. - + All categories Visas kategorijas - + Movies Filmas - + TV shows TV raidījumi - + Music Mūzika - + Games Spēles - + Anime Animācija - + Software Programmatūra - + Pictures Attēli - + Books Grāmatas - + Update server is temporarily unavailable. %1 Atjauninājumu serveris šobrīd nav pieejams. %1 - - + + Failed to download the plugin file. %1 Neizdevās lejupielādēt spraudņa failu. %1 - + Plugin "%1" is outdated, updating to version %2 Spraudnis "%1" ir novecojis, atjauninām uz versiju %2 - + Incorrect update info received for %1 out of %2 plugins. Par %1 no %2 spraudņiem saņemta kļūdaina atjauninājumu informācija. - + Search plugin '%1' contains invalid version string ('%2') Meklētāja spraudnis '%1' satur nederīgus datus par versiju ('%22') @@ -9565,135 +9523,127 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. Meklētāju spraudņi... - + A phrase to search for. Frāze, ko meklēt. - + Spaces in a search term may be protected by double quotes. Meklējot terminu ar atstarpēm, iekļaujiet to pēdiņās. - + Example: Search phrase example Piemērs: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: meklēs <b>foo bar</b> - + All plugins Visi spraudņi - + Only enabled Tikai ieslēgtie - - + + Invalid data format. - Nederīgs datu formāts. + Nederīgs datu formāts. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: meklēs <b>foo</b> un <b>bar</b> - + Refresh - + Close tab Aizvērt cilni - + Close all tabs Aizvērt visas cilnes - + Select... Izvēlēties... - - + + Search Engine Meklētājs - - + + Please install Python to use the Search Engine. Lūdzu uzinstalējiet Python, lai lietotu meklētāju. - + Empty search pattern Ievadiet atslēgas vārdus - + Please type a search pattern first Lūdzu meklētājā ievadiet atslēgas vārdus - + Stop Pārtraukt - - Search has finished - Meklēšana pabeigta - - - Search has failed - Meklēšana neizdevās - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10091,67 +10041,77 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. StatusBar - + Connection status: Savienojuma stāvoklis: - - + + No direct connections. This may indicate network configuration problems. Nav tieša savienojuma. Tas var norādīt uz nepareizi nokonfigurētu tīkla savienojumu. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 serveri - + qBittorrent needs to be restarted! qBittorrent ir nepieciešams restarts! - - + + Connection Status: Savienojuma stāvoklis: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Atslēdzies. Tas parasti nozīmē to, ka qBittorrent neizdevās izveidot kontaktu ar ienākošo savienojumu portu. - + Online Pieslēdzies. Tas parasti nozīmē, ka vajadzīgie porti ir atvērti un viss strādā kā nākas. - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Publiskās IP adreses: %1, %2 + + + + External IP: %1%2 + Publiskā IP adrese: %1%2 + + + Click to switch to alternative speed limits Klikšķiniet šeit, lai pielietotu alternatīvos ielādes ātrumus - + Click to switch to regular speed limits Klikšķiniet šeit, lai pielietotu regulāros ielādes ātrumus @@ -10179,14 +10139,6 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. Completed (0) Pabeigti (0) - - Resumed (0) - Atsākti (0) - - - Paused (0) - Apturēti (0) - Running (0) @@ -10195,7 +10147,7 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. Stopped (0) - + Apstādināti (0) @@ -10265,44 +10217,28 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. Stopped (%1) - + Apstādināti (%1) Start torrents - + Palaistie torrenti Stop torrents - - - - Paused (%1) - Apturēti (%1) + Apstādinātie torrenti Moving (%1) Pārvieto (%1) - - Resume torrents - Atsākt torrentus - - - Pause torrents - Apturēt torrentus - Remove torrents Dzēst torrentus - - Resumed (%1) - Atsākti (%1) - Active (%1) @@ -10374,32 +10310,20 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. Remove unused tags Dzēst neizmantotās atzīmes - - Resume torrents - Atsākt torrentus - - - Pause torrents - Apturēt torrentus - Remove torrents Dzēst torrentus - - New Tag - Jauna atzīme - Start torrents - + Palaistie torrenti Stop torrents - + Apstādinātie torrenti @@ -10409,7 +10333,7 @@ Spiediet uz "Meklētāju spraudņi..." pogas, lai kādu uzinstalētu. Add tag - + Pievienot birku @@ -10726,17 +10650,17 @@ Lūdzu izvēlieties citu nosaukumu. TorrentCreatorController - + Too many active tasks Pārāk daudz aktīvu darbību - + Torrent creation is still unfinished. Torrenta izveide vēl nav pabeigta. - + Torrent creation failed. Torrenta izveida neizdevās. @@ -10988,17 +10912,6 @@ Lūdzu izvēlieties citu nosaukumu. Uzraugāmā mape: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Neizdevās piešķirt atmiņu faila nolasīšanai. Fails: "%1". Kļūda: "%2" - - - Invalid metadata - Nederīgi metadati - - TorrentOptionsDialog @@ -11034,11 +10947,7 @@ Lūdzu izvēlieties citu nosaukumu. Torrent Share Limits - - - - Torrent speed limits - Torrenta ātrumu ierobežojumi + Torrenta dalīšanas ierobežojumi @@ -11054,7 +10963,7 @@ Lūdzu izvēlieties citu nosaukumu. Torrent Speed Limits - + Torrenta ātrumu ierobežojumi @@ -11072,34 +10981,6 @@ Lūdzu izvēlieties citu nosaukumu. Upload: Augšupielāde: - - Torrent share limits - Torrenta dalīšanas ierobežojumi - - - Use global share limit - Lietot Galvenos dalīšanas ierobežojumus - - - Set no share limit - Neierobežot - - - Set share limit to - Ierobežot - - - ratio - L/A attiecība - - - total minutes - kopējās minūtes - - - inactive minutes - neaktīvās minūtes - Disable DHT for this torrent @@ -11141,14 +11022,6 @@ Lūdzu izvēlieties citu nosaukumu. Not applicable to private torrents Nav pielāgojams privātiem torrentiem - - No share limit method selected - Nav izvēlēts ierobežošanas veids - - - Please select a limit method first - Lūdzu izvēlieties ierobežošanas veidu - TorrentShareLimitsWidget @@ -11198,17 +11071,17 @@ Lūdzu izvēlieties citu nosaukumu. Action when the limit is reached: - + Darbība, kad limits ir sasniegts: Stop torrent - + Apstādināt torrentu Remove torrent - Dzēst torrentu + Dzēst torrentu @@ -11218,7 +11091,7 @@ Lūdzu izvēlieties citu nosaukumu. Enable super seeding for torrent - Ieslēgt torrentu super-augšupielādi + Ieslēgt torrentu super-augšupielādi @@ -11233,14 +11106,10 @@ Lūdzu izvēlieties citu nosaukumu. Torrent Tags Torrenta atzīmes - - New Tag - Jauna atzīme - Add tag - + Pievienot birku @@ -11271,78 +11140,78 @@ Lūdzu izvēlieties citu nosaukumu. TorrentsController - + Error: '%1' is not a valid torrent file. Kļūda. '%1' nav derīgs torrenta fails. - + Priority must be an integer Prioritātei ir jānorāda vesels skaitlis - + Priority is not valid Prioritāte nav derīga - + Torrent's metadata has not yet downloaded Torrenta metadati vēl nav lejupielādēti - + File IDs must be integers Failu ID jānorāda veseli skaitļi - + File ID is not valid Faila ID nav derīgs - - - - + + + + Torrent queueing must be enabled Ir jāieslēdz Torrentu ierindošana - - + + Save path cannot be empty Saglabāšanas vietu nevar atstāt tukšu - - + + Cannot create target directory Neizdevās izveidot norādīto mapi - - + + Category cannot be empty Kategoriju nevar atstāt tukšu - + Unable to create category Neizdevās izveidot kategoriju - + Unable to edit category Neizdevās labot kategoriju - + Unable to export torrent file. Error: %1 Neizdevās eksportēt .torrent failu. Kļūda: %1 - + Cannot make save path Nevar izveidot saglabāšanas vietu @@ -11362,39 +11231,39 @@ Lūdzu izvēlieties citu nosaukumu. 'sort' parameters nav derīgs - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" nav derīgs failu indekss. - + Index %1 is out of bounds. Indekss %1 ir ārpus robežas. - - + + Cannot write to directory Šajā mapē nevar saglabāt - + WebUI Set location: moving "%1", from "%2" to "%3" Pārvietošana: pārvietot "%1", no "%2" uz "%3" - + Incorrect torrent name Nepareizs torrenta nosaukums - - + + Incorrect category name Nepareizs kategorijas nosaukums @@ -11487,7 +11356,7 @@ Lūdzu izvēlieties citu nosaukumu. BT Protocol - + BT Protokols @@ -11499,19 +11368,11 @@ Lūdzu izvēlieties citu nosaukumu. Min Announce - - Invalid status! - Nederīgs stāvoklis! - Tier Grupa - - Protocol - Protokols - Status @@ -11542,14 +11403,6 @@ Lūdzu izvēlieties citu nosaukumu. Message Ziņojums - - Next announce - Nākamā datu atjaunināšana - - - v%1 - v%1 - TrackerListWidget @@ -11559,73 +11412,73 @@ Lūdzu izvēlieties citu nosaukumu. Privāts torrents - + Tracker editing Trakera rediģēšana - + Tracker URL: Trakera adrese: - - + + Tracker editing failed Trakera rediģēšana neizdevās - + The tracker URL entered is invalid. Ievadītā trakera adrese nav derīga. - + The tracker URL already exists. Šī trakera adrese jau ir pievienota. - + Edit tracker URL... Rediģēt trakeri adresi... - + Remove tracker Noņemt trakeri - + Copy tracker URL Kopēt trakera adresi - + Force reannounce to selected trackers Piespiedu datu atjaunināšana ar izvēlētajiem trakeriem - + Force reannounce to all trackers Piespiedu datu atjaunināšana ar visiem trakeriem - + Resize columns Mainīt kolonnu izmērus - + Resize all non-hidden columns to the size of their contents Pielāgot visu kolonnu izmērus attiecīgi to saturam - + Add trackers... Pievienot trakerus... - + Column visibility Kolonnas redzamība @@ -11708,20 +11561,12 @@ Lūdzu izvēlieties citu nosaukumu. Start torrents - + Palaistie torrenti Stop torrents - - - - Resume torrents - Atsākt torrentus - - - Pause torrents - Apturēt torrentus + Apstādinātie torrenti @@ -11845,10 +11690,6 @@ Lūdzu izvēlieties citu nosaukumu. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Pārbaudām atsākšanas datus - - Paused - Apturēts - Completed @@ -11889,21 +11730,16 @@ Lūdzu izvēlieties citu nosaukumu. % Done Pabeigti - - Status - Torrent status (e.g. downloading, seeding, paused) - Stāvoklis - Stopped - + Apstādināts Status Torrent status (e.g. downloading, seeding, stopped) - Stāvoklis + Stāvoklis @@ -11938,7 +11774,7 @@ Lūdzu izvēlieties citu nosaukumu. Popularity - + Popularitāte @@ -12019,22 +11855,17 @@ Lūdzu izvēlieties citu nosaukumu. Time Active Time (duration) the torrent is active (not stopped) - Aktīvs jau + Aktīvs jau Yes - + No - - - - Time Active - Time (duration) the torrent is active (not paused) - Aktīvs jau + @@ -12106,7 +11937,7 @@ Lūdzu izvēlieties citu nosaukumu. Private Flags private torrents - + Privāts @@ -12136,358 +11967,319 @@ Lūdzu izvēlieties citu nosaukumu. TransferListWidget - + Column visibility Kolonnas redzamība - + Recheck confirmation Pārbaudes apstiprināšana - + Are you sure you want to recheck the selected torrent(s)? Vai esat pārliecināts, ka vēlāties pārbaudīt izvēlētos torrentus?() - + Rename Pārdēvēt - + New name: Jaunais nosaukums: - + Choose save path Izvēlieties vietu, kur saglabāt - Confirm pause - Apstiprināt apturēšanu - - - Would you like to pause all torrents? - Vai vēlies apturēt visus torrentus? - - - Confirm resume - Apstiprināt atsākšanu - - - Would you like to resume all torrents? - Vai vēlies atsākt visus torrentus? - - - + Unable to preview Nevar priekšskatīt - + The selected torrent "%1" does not contain previewable files Izvēlētais torrents "%1" nesatur priekšskatāmus failus - + Resize columns Mainīt kolonnu izmērus - + Resize all non-hidden columns to the size of their contents Pielāgot visu kolonnu izmērus attiecīgi to saturam - + Enable automatic torrent management Ieslēgt Automātisko torrentu pārvaldību - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Vai esat drošs, ka vēlaties ieslēgt Automātisko torrentu pārvaldību priekš atlasītājiem torrentiem? Attiecīgi Auto uzstādījumiem, to saturs var tikt pārvietots. - Add Tags - Pievienot atzīmes - - - + Choose folder to save exported .torrent files Izvēlies mapi, kur eksportēt .torrent failus - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" .torrent faila eksportēšana neizdvās: "%1". Saglabāšanas vieta: "%2". Iemesls: "%3" - + A file with the same name already exists Fails ar tādu nosaukumu jau pastāv - + Export .torrent file error .torrent faila eksportēšanas kļūda - + Remove All Tags Dzēst visas atzīmes - + Remove all tags from selected torrents? Noņemt visas atzīmes no atlasītajiem torrentiem? - + Comma-separated tags: Atdalīt atzīmes ar komatu: - + Invalid tag Nederīga atzīme - + Tag name: '%1' is invalid Atzīmes nosaukums: '%1' nav derīgs - &Resume - Resume/start the torrent - Atsākt - - - &Pause - Pause the torrent - Apturēt - - - Force Resu&me - Force Resume/start the torrent - Piespiedu atsākšana - - - + Pre&view file... Priekšskatīt failu... - + Torrent &options... Torrenta iestatījumi... - + Open destination &folder Atvērt failu atrašanās vietu - + Move &up i.e. move up in the queue Novietot augstāk sarakstā - + Move &down i.e. Move down in the queue Novietot zemāk sarakstā - + Move to &top i.e. Move to top of the queue Novietot saraksta augšā - + Move to &bottom i.e. Move to bottom of the queue Novietot saraksta apakšā - + Set loc&ation... Mainīt saglabāšanas vietu... - + Force rec&heck Piespiedu pārbaude - + Force r&eannounce Piespiedu datu atjaunošana ar trakeri - + &Magnet link Magnētsaite - + Torrent &ID Torrenta ID - + &Comment &Komentārs - + &Name Nosaukums - + Info &hash v1 Jaucējkods v1 - + Info h&ash v2 Jaucējkods v2 - + Re&name... Pārdēvēt... - + Edit trac&kers... Rediģēt trakerus... - + E&xport .torrent... Eksportēt .torrent failu... - + Categor&y Kategorija - + &New... New category... Jauna... - + &Reset Reset category Noņemt - + Ta&gs Atzīmes - + &Add... Add / assign multiple tags... Pievienot... - + &Remove All Remove all tags Dzēst visas - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue Rindošana - + &Copy Kopēt - + Exported torrent is not necessarily the same as the imported Eksportētais torrents ne obligāti būs tāds pats kā importētais - + Download in sequential order Lejupielādēt secīgā kārtībā - + Add tags - + Pievienot birkas - + Errors occurred when exporting .torrent files. Check execution log for details. Radās kļūda, eksportējot .torrent failus. Vairāk informācijas reģistrā. - + &Start Resume/start the torrent - + Palai&st - + Sto&p Stop the torrent - + A&pstādināt - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent Dzēst - + Download first and last pieces first Vispirms ielādēt pirmās un pēdējās daļiņas - + Automatic Torrent Management Automātiska torrentu pārvaldība - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automātiskais režīms nozīmē, ka vairāki torrenta iestatījumi (piem. saglabāšanas vieta), tiks pielāgoti atbilstoši izvēlētajai kategorijai - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Nevar veikt piespiedu datu atjaunošanu ar trakeri, ja torrents ir Apturēts, Gaida Rindā, Kļūdains, vai Pārbaudes vidū. - - - + Super seeding mode Super-augšupielādēšanas režīms @@ -12619,32 +12411,32 @@ Lūdzu izvēlieties citu nosaukumu. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Atrasta Python izpildāmā programma. Nosaukums: "%1". Versija: "%2" - + Failed to find Python executable. Path: "%1". Neizdevās atrast Python izpildāmo programmu. Vieta: "%1" - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Neizdevās atrast `python3` izpildāmo failu nevienā mapē, kuras definētas PATH vides mainīgajā. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Neizdevās atrast `python` izpildāmo failu nevienā mapē, kuras definētas PATH vides mainīgajā. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Neizdevās atrast `python` izpildāmo programmu Windows reģistrā. - + Failed to find Python executable Neizdevās atrast Python izpildāmo programmu @@ -12736,52 +12528,52 @@ Lūdzu izvēlieties citu nosaukumu. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Norādīts nepieņemams sesijas cepuma nosaukums: '%1'. Tiks izmantots noklusētais. - + Unacceptable file type, only regular file is allowed. Nepieņemams faila tips, atļauts ir tikai parasts fails. - + Symlinks inside alternative UI folder are forbidden. Alternatīvās lietotāja saskarnes mapē nav atļautas simboliskās saites. - + Using built-in WebUI. Izmanto iebūvēto Tālvadības paneli. - + Using custom WebUI. Location: "%1". Izmanto pielāgotu Tālvadības paneli. Vieta: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Tālvadības paneļa tulkojums izvēlētajai valodai (%1) veiksmīgi ielādēts. - + Couldn't load WebUI translation for selected locale (%1). Neizdevās ielādēt Tālvadības paneļa tulkojumu izvēlētajai valodai (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Tīmekļa saskarnes (WebUI) pielāgotajā HTTP galvenē "%1" trūkst atdalītāja ':' - + Web server error. %1 Web servera kļūda. %1 - + Web server error. Unknown error. Web servera kļūda. Neatpazīstama kļūda. @@ -12839,7 +12631,7 @@ Lūdzu izvēlieties citu nosaukumu. Unknown error - Nezināma kļūda + Nezināma kļūda diff --git a/src/lang/qbittorrent_mn_MN.ts b/src/lang/qbittorrent_mn_MN.ts index 521fec63b..919dfdc17 100644 --- a/src/lang/qbittorrent_mn_MN.ts +++ b/src/lang/qbittorrent_mn_MN.ts @@ -235,25 +235,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -368,7 +368,7 @@ .torrent файлаар хадгалах... - + I/O Error О/Г-ийн алдаа @@ -377,19 +377,19 @@ Алдаатай торрент - + Not Available This comment is unavailable Боломжгүй - + Not Available This date is unavailable Боломжгүй - + Not available Боломжгүй @@ -410,18 +410,18 @@ Error: %2 Уг соронзон холбоос танигдсангүй - + Magnet link Соронзон холбоос - + Retrieving metadata... Цөм өгөгдлийг цуглуулж байна... - - + + Choose save path Хадгалах замыг сонгох @@ -438,28 +438,28 @@ Error: %2 Торрент боловсруулах дараалалд бүртгэгдсэн байна. - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A @@ -468,33 +468,33 @@ Error: %2 Соронзон холбоос боловсруулах дараалалд бүртгэгдсэн байна. - + %1 (Free space on disk: %2) %1 (Дискний сул зай: %2) - + Not available This size is unavailable. Боломжгүй - + Torrent file (*%1) - + Save as torrent file Торрент файлаар хадгалах - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. @@ -503,17 +503,17 @@ Error: %2 '%1'-ийг татаж чадахгүй: %2 - + Filter files... - + Parsing metadata... Цөм өгөгдлийг шалгаж байна... - + Metadata retrieval complete Цөм өгөгдлийг татаж дууссан @@ -531,35 +531,35 @@ Error: %2 AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -722,121 +722,121 @@ Error: %2 AdvancedSettings - - - - + + + + MiB МиБ - + Recheck torrents on completion Торрентыг татагдаж дуусмагц шалгах - - + + ms milliseconds мс - + Setting Тохиргоо - + Value Value set for this setting Утга - + (disabled) (идэвхгүй) - + (auto) (шууд) - - + + min minutes минут - + All addresses Бүх хаягууд - + qBittorrent Section qBittorrent Хэсэг - - + + Open documentation Баримт бичигтэй танилцах - + All IPv4 addresses Бүх IPv4 хаягууд - + All IPv6 addresses Бүх IPv6 хаягууд - + libtorrent Section libtorrent Хэсэг - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Хэвийн - + Below normal Хэвийнээс бага - + Medium Дундаж - + Low Бага - + Very low Маш бага @@ -845,587 +845,598 @@ Error: %2 Санах ойн ачаалал (Windows >= 8) - + Physical memory (RAM) usage limit - + Asynchronous I/O threads Асинхрон О/Г-ийн утгууд - + Hashing threads Хэшлэх утгууд - + File pool size Файлын сангийн хэмжээ - + Outstanding memory when checking torrents Торрентийг шалгах үед хэрэглэх санах ой - + Disk cache Дискний кэш - - - - + + + + + s seconds с - + Disk cache expiry interval Дискний кэшийн мөчлөг - + Disk queue size - - + + Enable OS cache Үйлдлийн системийн кэшийг идэвхжүүлэх - + Coalesce reads & writes Нийт унших & бичих - + Use piece extent affinity - + Send upload piece suggestions Хуулах нэгжийг санал болгон илгээх - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB КиБ - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark Буферийн тамга илгээх - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP TCP-г илүүд үзэх - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Олон улсын домэйн нэрс (IDN)-ийг дэмжих - + Allow multiple connections from the same IP address 1 IP хаягаас олон зэрэгцээ холбогдохыг зөвшөөрөх - + Validate HTTPS tracker certificates HTTPS дамжуулагчийн гэрчилгээг баталгаажуулж байх - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Пеерүүдийг хост нэрээн нь эрэмблэх - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus Цэсүүдэд дүрс харуулах - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Мэдэгдэл харуулах - + Display notifications for added torrents Нэмэгдсэн торрентуудад мэдэгдэл харуулах - + Download tracker's favicon - + Save path history length Хадгалах замыг бүртгэх хэмжээ - + Enable speed graphs Хурдны үзүүлэлтийг идэвхжүүлэх - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload Дээд хурд - + Anti-leech - + Upload choking algorithm Боох алгоритмийг хуулах - + Confirm torrent recheck Торрентийг дахин-шалгахыг батлах - + Confirm removal of all tags Бүх шошгыг арилгахыг зөвшөөрөх - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface Ямар ч үзэмж - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP холимог горимт алгоритм - + Resolve peer countries - + Network interface Сүлжээний төрөл - + Optional IP address to bind to Нэмэлтээр холбох IP хаягууд - + Max concurrent HTTP announces - + Enable embedded tracker Суулгагдсан мөрдөгчийг идэвхжүүлэх нь - + Embedded tracker port Жагсаасан тракеруудын порт @@ -1462,137 +1473,137 @@ Error: %2 qBittorrent %1 ачааллалаа - + Running in portable mode. Auto detected profile folder at: %1 Зөөврийн горимд ажиллаж байна. Хэрэглэгчийн хавтсыг дараах замаас илрүүллээ: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 Хэрэглэж буй тохируулгын хаяг: %1 - + Torrent name: %1 Торрентийн нэр: %1 - + Torrent size: %1 Торрентийн хэмжээ: %1 - + Save path: %1 Хадгалах зам: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Торрентийг татсан: %1. - - + + Thank you for using qBittorrent. qBittorrent-г хэрэглэж байгаад баярлалаа. - + This is a test email. - + Test email - + Torrent: %1, sending mail notification Торрент: %1, ц-шуудангаар мэдэгдэл илгээж байна - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit - + I/O Error i.e: Input/Output Error О/Г-ийн алдаа - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1600,23 +1611,23 @@ Error: %2 - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. @@ -1626,17 +1637,17 @@ Error: %2 Torrent файл холбоо - + Information Мэдээлэл - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 @@ -1649,57 +1660,57 @@ Error: %2 Ачаалж чадсангүй. - + Exit Гарах - + Recursive download confirmation Рекурсив татаж авах баталгаа - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Торрентийн гүйцэтгэлийг сануулж байна... - + qBittorrent is now ready to exit @@ -1884,115 +1895,115 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Гаргах... - + Matches articles based on episode filter. Хэрэг явдал шүүлтүүр тулгуурлан нийтлэл тааруулна. - + Example: Жишээ: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match улиралд нэг нь 15, 30 -нд тохиолдох 2, 5, 8 тохирох болно - + Episode filter rules: Улирал шүүх дүрэм: - + Season number is a mandatory non-zero value Улирал тоо заавал тэгээс ялгаатай утга нь - + Filter must end with semicolon Цэг таслалаар төгсөх ёстой - + Three range types for episodes are supported: Тохиолдож Гурван хүрээ төрлийн дэмжигдсэн байна: - + Single number: <b>1x25;</b> matches episode 25 of season one Нэг тоо: <б> 1x25; </ B> улиралд нэг нь түүхийг 25-таарч - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Энгийн хүрээ: <б> 1x25-40b> улиралд нэг нь 40 замаар тохиолдолууд 25 таарч - + Episode number is a mandatory positive value Ангийн дугаар нь заавал бичигдсэн байх шаардлагатай - + Rules Дүрмүүд - + Rules (legacy) Дүрмүүд (өвлөгдсөн) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago - + Last Match: Unknown - + New rule name Шинэ дүрмийн нэр - + Please type the name of the new download rule. Шинэ татах дүрмийн нэрээ бичнэ үү. - - + + Rule name conflict Дүрмийн нэр - - + + A rule with this name already exists, please choose another name. Дүрэм аль хэдийн байна. Өөр нэр сонгоно уу. - + Are you sure you want to remove the download rule named '%1'? - + Are you sure you want to remove the selected download rules? Таны сонгосон татаж авах журам устгахыг хүсч та итгэлтэй байна уу? - + Rule deletion confirmation Дүрмийг устгахад баталгаажуулах @@ -2001,32 +2012,32 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Зааж өгөх газар - + Invalid action Буруу үйлдэл байна - + The list is empty, there is nothing to export. Жагсаалт хоосон байгаа учир гаргах зүйл олдсонгүй. - + Export RSS rules RSS дүрмүүдийг гаргах - + I/O Error О/Г-ын алдаа - + Failed to create the destination file. Reason: %1 Байршлын файлыг үүсгэж чадсангүй. Шалтгаан: %1 - + Import RSS rules RSS дүрмүүдийг оруулах @@ -2039,120 +2050,120 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Оруулалтын алдаа - + Failed to import the selected rules file. Reason: %1 Сонгогдсон дүрмийн файлыг оруулж чадсангүй. Шалтгаан: %1 - + Add new rule... Шинэ дүрэм нэмэх... - + Delete rule Дүрэмийг устгах - + Rename rule... Дүрмийн нэрийг өөрчлөх... - + Delete selected rules Сонгогдсон дүрмүүдийг устгах - + Clear downloaded episodes... Татагдсан ангиудыг арилгах... - + Rule renaming Дүрмийн нэрийг нь өөрчилснөөр - + Please type the new rule name Шинэ дүрэм нэрийг оруулна уу - + Clear downloaded episodes Татагдсан ангиудыг арилгах - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Сонгогдсон дүрэмд хамаарах татагдсан ангиудын жагсаалтыг цэвэрлэх гэж байгаадаа итгэлтэй байна уу? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 %1 байршил: %2 - + Wildcard mode: you can use Тусгай тэмдэгтийн горим: хэрэглэж болох - - + + Import error - + Failed to read the file. %1 - + ? to match any single character Дурын 1 тэмдэгтийг илэрхийлэхэд ? - + * to match zero or more of any characters Дурын тооны тэмдэгтүүдийг илэрхийлэхэд * - + Whitespaces count as AND operators (all words, any order) Хоосон зайг БА нөхцөлтэй адилтгана (дараалал хамаарахгүй, бүх үгэнд) - + | is used as OR operator | тэмдэгтийг ЭСВЭЛ нөхцөлтэй адилтгана - + If word order is important use * instead of whitespace. Үгсийн дарааллыг чухалчлах бол хоосон зайны оронд * хэрэглээрэй. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. бүх нийтлэлд хамаарна. - + will exclude all articles. бүх нийтлэлд үл хамаарна. @@ -2204,28 +2215,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2236,16 +2257,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2253,38 +2275,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2292,22 +2336,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2315,184 +2359,184 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED ХҮЧИТГЭСЭН - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 @@ -2515,316 +2559,321 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also %1-ийн сүлжээний тохируулга өөрчлөгдлөө, холболтыг шинэчлэж байна - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + + Duplicate torrent + + + + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2874,47 +2923,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3514,22 +3563,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present Уг торрент хэдийн ачааллагдсан байна - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3647,6 +3696,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -4057,12 +4140,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Харуулах - + Check for program updates Программын шинэчлэлийг шалгах @@ -4077,155 +4160,155 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Танд qBittorrent таалагдаж байвал хандив өргөнө үү! - + Execution Log Гүйцэтгэх Нэвтрэх - + Clear the password нууц үг арилгах - + &Set Password - + Preferences - + &Clear Password - + Transfers Шилжүүлгүүд - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only Зөвхөн Иконууд - + Text Only Зөвхөн бичиг - + Text Alongside Icons Дүрснүүдийг хажуугаар Текст - + Text Under Icons Текст дагуу дүрс - + Follow System Style Системийн Style дагаарай - - + + UI lock password UI нууц цоож - - + + Please type the UI lock password: UI цоож нууц үгээ оруулна уу: - + Are you sure you want to clear the password? Та нууц үгээ чөлөөлөхийн тулд хүсэж Та итгэлтэй байна уу? - + Use regular expressions Тогтмол хэллэг ашиглах - - + + Search Engine Хайлт - + Search has failed - + Search has finished - + Search Хайх - + Transfers (%1) Шилжүүлэг (% 1) - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". @@ -4238,160 +4321,160 @@ Please install it manually. Хэзээч - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? qBittorrent-ийг хаахдаа итгэлтэй байна уу? - + &No - + &Yes - + &Always Yes - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - - + + Missing Python Runtime - + qBittorrent Update Available - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime - + A new version is available. - + Do you want to download %1? - + Open changelog... - + No updates available. You are already using the latest version. - + &Check for Updates - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - + Checking for Updates... - + Already checking for program updates in the background Аль хэдийн цаана нь програмын шинэчлэлийг шалгах - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Торрент татах @@ -4402,46 +4485,46 @@ Please install it manually. Please install it manually. - - + + Invalid password Буруу нууц үг - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) - + The password is invalid Буруу нууц үг - + DL speed: %1 e.g: Download speed: 10 KiB/s Та Хурд: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Тү Хурд: %1 @@ -4452,22 +4535,22 @@ Please install it manually. [D: %1, U: %2] qBittorrent %3 - + Hide Нуух - + Exiting qBittorrent qBittorrent гарах - + Open Torrent Files Торрент файлуудыг нээх - + Torrent Files Торрент файлууд @@ -5962,47 +6045,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -6152,392 +6235,402 @@ Please install it manually. КиБ - + + Show free disk space in status bar + + + + Torrent content layout: Торрентийн контент төлөвлөлт: - + Original Анхны загвар - + Create subfolder Дэд хавтас үүсгэх - + Don't create subfolder Дэд хавтас үүсгэхгүй - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... - + Options.. - + Remove - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time Эхлэх: - + To: To end time Дуусах: - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader RSS Уншигч - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: - - - + + + min minutes минут - + Seeding Limits - + Remove torrent - + Remove torrent and its files - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: - + Web User Interface (Remote control) Веб Хэрэглэгчийн Интерфейс (Зайнаас удирдах) - + IP address: IP хаяг: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Үгүй - + ban for: - + Session timeout: - + Disabled Идэвхгүй - + Server domains: Серверийн домэйнууд: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6546,37 +6639,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost localhost дээр хэрэглэгчийн хандалтыг бүртгэл баталгаажуулалгүй зөвшөөрөх - + Bypass authentication for clients in whitelisted IP subnets Цагаан жагсаалтан дахь IP сабнетүүдийн хандалтыг бүртгэл баталгаажуулалгүй зөвшөөрөх - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6689,99 +6782,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management Хадгалалт зохион байгуулалт - + Default Torrent Management Mode: - + Manual Гараар - + Automatic Шууд - + When Torrent Category changed: - + Relocate torrent - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories - + Default Save Path: - + Copy .torrent files to: .torrent файлуудыг хуулах: @@ -6791,22 +6884,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: Татаж дууссаны дараа .torrent файлуудыг хуулах: - + Pre-allocate disk space for all files Бүх файлд шаардлагатай зайг урьдчилж өмчлөх @@ -6901,64 +6994,64 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Дуусаагүй байгаа файлуудад .!qB өргөтгөл оноох - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6978,50 +7071,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: Торрентуудыг шууд нэмж байх: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -7038,511 +7131,506 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + To: To receiver Дуусах: - + SMTP server: SMTP сервер: - + Sender - + From: From sender Эхлэх: - + This server requires a secure connection (SSL) Энэ сервер хамгаалалттай холболт (SSL) шаардана - - + + Authentication Бүртгэл - - - - + + + + Username: Хэрэглэгчийн нэр: - - - - + + + + Password: Нууц үг: - + Run external program - + Show console window - + TCP and μTP TCP болон μTP - + Listening Port Чагнах оролт - + Port used for incoming connections: Гаднаас ирэх холболтуудад хэрэглэгдэх оролт: - + Set to 0 to let your system pick an unused port - + Random - + Use UPnP / NAT-PMP port forwarding from my router Рүтэрийн UPnP / NAT-PMP оролт дамжуулгыг хэрэглэх - + Connections Limits Холболтуудын хязгаар - + Maximum number of connections per torrent: Торрент бүрт харгалзах холболтын дээд хэмжээ: - + Global maximum number of connections: Ерөнхий холболтын зөвшөөрөгдөх дээд хэмжээ: - + Maximum number of upload slots per torrent: Торрент тус бүрт харгалзах оролтын дээд хэмжээ: - + Global maximum number of upload slots: Илгээлтийн оролтуудын ерөнхий хэмжээ: - + Proxy Server Прокси сервер - + Type: Төрөл: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Хост: - - - + + + Port: Оролт: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): Замыг шүүх (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... Хэрэглэгчийн хориглосон IP хаягууд... - + Apply to trackers - + Global Rate Limits Зэргийн ерөнхий хязгаарууд - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s - - + + Upload: Илгээлт: - - + + Download: Таталт: - + Alternative Rate Limits Ялгаатай зэргийн хязгаарлалтууд: - + Start time - + End time - + When: Хэзээ: - + Every day Өдөр бүр - + Weekdays Ажлын өдрүүдэд - + Weekends Амралтын өдрүүдэд - + Rate Limits Settings Зэргийн хязгаарлалтын тохиргоо - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds - + Torrent inactivity timer: - + then - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: - + Key: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password - + Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: - + Register - + Domain name: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7552,12 +7640,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7577,183 +7665,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name - + %L: Category - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path - + %C: Number of files - + %Z: Torrent size (bytes) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7763,69 +7851,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7836,18 +7924,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Time Error Цаг Алдаа - + The start time and the end time can't be the same. - - + + Length Error @@ -7942,7 +8030,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region @@ -7951,158 +8039,158 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not IP - + IP/Address - + Port Порт - + Flags Туг - + Connection Холболтууд - + Client i.e.: Client application Үлйчлүүлэгч - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Явц - + Down Speed i.e: Download speed Татах хурд - + Up Speed i.e: Upload speed Түгээх хурд - + Downloaded i.e: total data downloaded Татагдсан - + Uploaded i.e: total data uploaded Түгээсэн - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Хамааралтай - + Files i.e. files that are being downloaded right now - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A - + Copy IP:port @@ -8379,39 +8467,6 @@ Those plugins were disabled. Веб хаяг - - PowerManagement - - - qBittorrent is active - - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - - - PreviewSelectDialog @@ -8701,124 +8756,124 @@ Those plugins were disabled. - + Never Үгүй - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - - + + %1 (%2 this session) - - + + N/A - + Yes Тийм - + No Үгүй - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - + Filter files... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - + Web seed editing - + Web seed URL: @@ -8845,33 +8900,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8879,22 +8934,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8943,12 +8998,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8970,76 +9025,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + + + + + Refresh interval: + + + + + sec + + + + + Default + + + RSSWidget @@ -9139,78 +9235,61 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name - + Folder name: - + New folder - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: - + Feed: - + Author: @@ -9467,104 +9546,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories - + Movies - + TV shows - + Music - + Games - + Anime - + Software - + Pictures - + Books - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9589,94 +9668,94 @@ Click the "Search plugins..." button at the bottom right of the window - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins - + Only enabled - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab - + Close all tabs - + Select... - - + + Search Engine Хайлт - - + + Please install Python to use the Search Engine. - + Empty search pattern - + Please type a search pattern first - + Stop @@ -9684,32 +9763,32 @@ Click the "Search plugins..." button at the bottom right of the window SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10107,67 +10186,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes - + qBittorrent needs to be restarted! - - + + Connection Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -10719,17 +10808,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -11216,78 +11305,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category Ангилал үүсгэж чадсангүй - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11307,39 +11396,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name @@ -11487,73 +11576,73 @@ Please choose a different name and try again. - + Tracker editing - + Tracker URL: - - + + Tracker editing failed - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker - + Copy tracker URL - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility @@ -12055,107 +12144,107 @@ Please choose a different name and try again. TransferListWidget - + Column visibility - + Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? - + Rename - + New name: Шинэ нэр: - + Choose save path Хадгалах замыг сонгох - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags - + Remove all tags from selected torrents? - + Comma-separated tags: - + Invalid tag - + Tag name: '%1' is invalid @@ -12170,214 +12259,214 @@ Please choose a different name and try again. &Завсарлах - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Дарааллаар нь татах - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first Эхний болон сүүлийн хэсгүүдийг эхэлж татах - + Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode @@ -12509,32 +12598,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12678,52 +12767,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. diff --git a/src/lang/qbittorrent_ms_MY.ts b/src/lang/qbittorrent_ms_MY.ts index df7e13e83..2cd44eb23 100644 --- a/src/lang/qbittorrent_ms_MY.ts +++ b/src/lang/qbittorrent_ms_MY.ts @@ -170,10 +170,6 @@ Never show again Jangan sesekali tunjuk lagi - - Torrent settings - Tetapan Torrent - Set as default category @@ -235,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -368,112 +364,112 @@ Simpan sebagai fail .torrent... - + I/O Error Ralat I/O - + Not Available This comment is unavailable Tidak Tersedia - + Not Available This date is unavailable Tidak Tersedia - + Not available Tidak tersedia - + Magnet link Pautan magnet - + Retrieving metadata... Mendapatkan data meta... - - + + Choose save path Pilih laluan simpan - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A T/A - + %1 (Free space on disk: %2) %1 (Ruang bebas dalam cakera: %2) - + Not available This size is unavailable. Tidak tersedia - + Torrent file (*%1) - + Save as torrent file Simpan sebagai fail torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... Tapis fail... - + Parsing metadata... Menghurai data meta... - + Metadata retrieval complete Pemerolehan data meta selesai @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Semak semula torrent seusai lengkap - - + + ms milliseconds ms - + Setting Tetapan - + Value Value set for this setting Nilai - + (disabled) (dilumpuhkan) - + (auto) (auto) - - + + min minutes min - + All addresses Semua alamat - + qBittorrent Section Seksyen qBittorrent - - + + Open documentation Buka dokumentasi - + All IPv4 addresses Semua alamat IPv4 - + All IPv6 addresses Semua alamat IPv6 - + libtorrent Section Seksyen libtorrent - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Biasa - + Below normal Bawah biasa - + Medium Sederhana - + Low Rendah - + Very low Sangat rendah - + Physical memory (RAM) usage limit - + Asynchronous I/O threads Jaluran i/O tak segerak - + Hashing threads - + File pool size Saiz kolam fail - + Outstanding memory when checking torrents Ingatan belum jelas bila memeriksa torrent - + Disk cache Cache cakera - - - - + + + + + s seconds s - + Disk cache expiry interval Sela luput cache cakera - + Disk queue size - - + + Enable OS cache Benarkan cache OS - + Coalesce reads & writes baca & tulis bertaut - + Use piece extent affinity Guna afiniti tambahan cebisan - + Send upload piece suggestions Hantar cadangan cebisan muat naik - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Lalai - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark Hantar tera air penimbal - + Send buffer low watermark Hantar tera air penimbal rendah - + Send buffer watermark factor Hantar faktor tera air penimbal - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Saiz log belakang soket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP Utamakan TCP - + Peer proportional (throttles TCP) Perkadaran rakan (TCP berdikit) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address Benarkan sambungan berbilang daripada alamat IP yang sama - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Lerai nama hos rakan - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - saat + saat - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Papar pemberitahuan - + Display notifications for added torrents Papar pemberitahuan untuk torrent yang ditambah - + Download tracker's favicon Muat turun favicon penjejak - + Save path history length Panjang sejarah laluan simpan - + Enable speed graphs Benarkan graf kelajuan - + Fixed slots Slot tetap - + Upload rate based Muat naik berasaskan penarafan - + Upload slots behavior Kelakuan slot muat naik - + Round-robin Round-robin - + Fastest upload Muat naik terpantas - + Anti-leech Anti-penyedut - + Upload choking algorithm Algoritma pencekik muat naik - + Confirm torrent recheck Sahkan semakan semula torrent - + Confirm removal of all tags Sahkan pembuangan semua tag - + Always announce to all trackers in a tier Sentiasa umum kepada semua penjejak dalam satu peringkat - + Always announce to all tiers Sentiasa umum kepada semua peringkat - + Any interface i.e. Any network interface Mana-mana antaramuka - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algoritma mod bercampur %1-TCP - + Resolve peer countries Lerai negara rakan - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker Benarkan penjejak terbenam - + Embedded tracker port Port penjejak terbenam @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Berjalan dalam mod mudah alih. Auto-kesan folder profil pada: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Bendera baris perintah berulang dikesan: "%1". Mod mudah alih melaksanakan sambung semula pantas secara relatif. - + Using config directory: %1 Menggunakan direktori konfig: %1 - + Torrent name: %1 Nama torrent: %1 - + Torrent size: %1 Saiz torrent: %1 - + Save path: %1 Laluan simpan: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent telah dimuat turun dalam %1. - - + + Thank you for using qBittorrent. Terima kasih kerana menggunakan qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, menghantar pemberitahuan mel - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit Ke&luar - + I/O Error i.e: Input/Output Error Ralat I/O - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ Sebab: %2 - + Torrent added Torrent ditambah - + '%1' was added. e.g: xxx.avi was added. '%1' telah ditambah. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' telah selesai dimuat turun. - + Information Maklumat - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation Pengesahan muat turun rekursif - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Tidak Sesekali - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Menyimpan kemajuan torrent... - + qBittorrent is now ready to exit @@ -1765,263 +1772,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Eksport... - + Matches articles based on episode filter. Artikel sepadan berdasarkan penapis episod. - + Example: Contoh: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match akan padankan 2, 5, 8 menerusi 15, 30 dan episod seterusnya bagi musim pertama - + Episode filter rules: Peraturan penapis episod: - + Season number is a mandatory non-zero value Bilangan musim adalah nilai bukan-sifar yang mandatori - + Filter must end with semicolon Penapis mesti diakhir dengan tanda titik bertindih - + Three range types for episodes are supported: Tiga jenis julat untuk episod disokong: - + Single number: <b>1x25;</b> matches episode 25 of season one Nombor tunggal: <b>1x25;</b> sepadan episod 25 bagi musim pertama - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Julat biasa: <b>1x25-40;</b> sepadan 25 hingga 40 episod bagi musim pertama - + Episode number is a mandatory positive value Bilangan episod adalah nilai positif yang mandatori - + Rules Peraturan - + Rules (legacy) Peraturan (lama) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Julat tak terhingga: <b>1x25-;</b> sepadan 25 episod dan ke atas bagi musim pertama, dan semua episod bagi musim berikutnya - + Last Match: %1 days ago Padanan Terakhir: %1 hari yang lalu - + Last Match: Unknown Padanan Terakhir: Tidak diketahui - + New rule name Nama peraturan baharu - + Please type the name of the new download rule. Sila taip nama bagi peraturan muat turun baharu. - - + + Rule name conflict Nama peraturan berkonflik - - + + A rule with this name already exists, please choose another name. Satu nama peraturan dengan nama ini telah wujud, sila pilih nama lain. - + Are you sure you want to remove the download rule named '%1'? Anda pasti mahu buang peraturan muat turun bernama '%1'? - + Are you sure you want to remove the selected download rules? Anda pasti mahu buang peraturan muat turun terpilih? - + Rule deletion confirmation Pengesahan pemadaman peraturan - + Invalid action Tindakan tidak sah - + The list is empty, there is nothing to export. Senarai kosong, tiada apa hendak dieksportkan. - + Export RSS rules Eksport peraturan RSS - + I/O Error Ralat I/O - + Failed to create the destination file. Reason: %1 Gagal mencipta fail destinasi. Sebab: %1 - + Import RSS rules Import peraturan RSS - + Failed to import the selected rules file. Reason: %1 Gagal mengimport fail peraturan terpilih. Sebab: %1 - + Add new rule... Tambah peraturan baharu... - + Delete rule Padam peraturan - + Rename rule... Nama semula peraturan... - + Delete selected rules Padam peraturan terpilih - + Clear downloaded episodes... Kosongkan episod dimuat turun... - + Rule renaming Penamaan semula peraturan - + Please type the new rule name Sila taip nama peraturan yang baharu - + Clear downloaded episodes Kosongkan episod dimuat turun - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Anda pasti mahu kosongkan senarai episod dimuat turun untuk peraturan terpilih? - + Regex mode: use Perl-compatible regular expressions Mod ungkapan nalar: guna ungkapan nalar serasi-Perl - - + + Position %1: %2 Kedudukan %1: %2 - + Wildcard mode: you can use Mod kad liar: anda boleh gunakan - - + + Import error - + Failed to read the file. %1 - + ? to match any single character ? untuk padankan mana-mana aksara tunggal - + * to match zero or more of any characters * untuk padankan sifar atau lagi mana-mana aksara - + Whitespaces count as AND operators (all words, any order) Kiraan ruang putih dan operator AND (semua perkataan, mana-mana tertib) - + | is used as OR operator digunakan sebagai operator OR - + If word order is important use * instead of whitespace. Jika tertib perkataan adalah mustahak guna * selain dari ruang putih. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Satu ungkapan dengan klausa %1 kosong (seperti %2) - + will match all articles. akan padankan semua artikel. - + will exclude all articles. akan asingkan semua artikel. @@ -2073,28 +2080,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2105,16 +2122,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 Tidak dapat menyimpan data ke dalam '%1'. Ralat: %2 @@ -2122,38 +2140,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2161,22 +2201,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2184,498 +2224,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON HIDUP - - - - - - - - - + + + + + + + + + OFF MATI - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED DIPAKSA - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2725,47 +2770,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' Muat turun cebisan pertama dan terakhir dahulu: %1, torrent: '%2' - + On Hidup - + Off Mati - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Gagal menamakan semula fail. Torrent: "%1", fail: "%2", sebab: "%3" - + Performance alert: %1. More info: %2 @@ -2802,11 +2847,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Dijangka nombor integer dalam pembolehubah persekitaran '%1', tetapi dapat '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' mesti ikuti sintak '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2847,7 +2887,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' mesti ikuti sintak '%1=%2' + Parameter '%1' mesti ikuti sintak '%1=%2' @@ -2937,10 +2977,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - Tambah torrent sebagai dimulakan atau dijeda - Skip hash check @@ -3037,14 +3073,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Sambung semula torrent - - - Pause torrents - Jeda torrent - Remove torrents @@ -3374,22 +3402,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present Torrent sudah ada - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3507,6 +3535,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3648,10 +3710,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Pilihan... - - &Resume - Sa&mbung Semula - &Remove @@ -3733,10 +3791,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Tutup Tetingkap - - R&esume All - Samb&ung Semula Semua - Manage Cookies... @@ -3852,10 +3906,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Hibernasi Sistem - - S&hutdown System - &Matikan Sistem - &Statistics @@ -3876,14 +3926,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About Perih&al - - &Pause - &Jeda - - - P&ause All - J&eda Semua - &Add Torrent File... @@ -3917,12 +3959,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Tunjuk - + Check for program updates Semak kemaskini program @@ -3937,386 +3979,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Jika anda menyukai qBittorrent, sila beri derma! - + Execution Log Log Pelakuan - + Clear the password Kosongkan kata laluan - + &Set Password &Tetapkan Kata Laluan - + Preferences Keutamaan - + &Clear Password &Kosongkan Kata Laluan - + Transfers Pemindahan - - + + qBittorrent is minimized to tray qBittorrent diminimumkan ke dalam talam - - - + + + This behavior can be changed in the settings. You won't be reminded again. Kelakuan ini boleh diubah dalam tetapan. Anda tidak akan diingatkan lagi. - + Icons Only Ikon Sahaja - + Text Only Teks Sahaja - + Text Alongside Icons Teks Bersebelahan Ikon - + Text Under Icons Teks Di Bawah Ikon - + Follow System Style Ikut Gaya Sistem - - + + UI lock password Kata laluan kunci UI - - + + Please type the UI lock password: Sila taip kata laluan kunci UI: - + Are you sure you want to clear the password? Anda pasti mahu kosongkan kata laluan? - + Use regular expressions Guna ungkapan nalar - - + + Search Engine - Enjin Gelintar + Enjin Gelintar - + Search has failed - Gelintar telah gagal + Gelintar telah gagal - + Search has finished - Gelintar selesai + Gelintar selesai - + Search Gelintar - + Transfers (%1) Pemindahan (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent baru sahaja dikemaskini dan perlu dimulakan semula supaya perubahan berkesan. - + qBittorrent is closed to tray qBittorrent ditutup ke dalam talam - + Some files are currently transferring. Beberapa fail sedang dipindahkan. - + Are you sure you want to quit qBittorrent? Anda pasti mahu keluar dari qBittorrent? - + &No &Tidak - + &Yes &Ya - + &Always Yes &Sentiasa Ya - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Masa Jalan Python Hilang - + qBittorrent Update Available Kemaskini qBittorrent Tersedia - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python diperlukan untuk guna enjin gelintar tetapi tidak kelihatan dipasang. Anda mahu pasangkannya sekarang? - + Python is required to use the search engine but it does not seem to be installed. Python diperlukan untuk guna enjin gelintar tetapi tidak kelihatan dipasang. - - + + Old Python Runtime Masa Jalan Python Lama - + A new version is available. Satu versi baharu telah tersedia. - + Do you want to download %1? Anda mahu memuat turun %1? - + Open changelog... Buka log perubahan... - + No updates available. You are already using the latest version. Tiada kemaskinitersedia. Anda sudah ada versi yang terkini. - + &Check for Updates &Semak Kemaskini - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - Dijeda + Dijeda - + Checking for Updates... Menyemak Kemaskini... - + Already checking for program updates in the background Sudah memeriksa kemaskini program disebalik tabir - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Ralat muat turun - Python setup could not be downloaded, reason: %1. -Please install it manually. - Persediaan Pythin tidak dapat dimuat turun, sebab: %1. -Sila pasangkannya secara manual. - - - - + + Invalid password Kata laluan tidak sah - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid Kata laluan tidak sah - + DL speed: %1 e.g: Download speed: 10 KiB/s Kelajuan MT: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Kelajuan MN: %1 - + Hide Sembunyi - + Exiting qBittorrent Keluar qBittorrent - + Open Torrent Files Buka Fail Torrent - + Torrent Files Fail Torrent @@ -5810,47 +5846,47 @@ Sila pasangkannya secara manual. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5892,10 +5928,6 @@ Sila pasangkannya secara manual. RSS RSS - - Web UI - UI Sesawang - Advanced @@ -5932,10 +5964,6 @@ Sila pasangkannya secara manual. Always Sentiasa - - Paused torrents only - Torrent dijeda sahaja - Action on double-click @@ -5946,10 +5974,6 @@ Sila pasangkannya secara manual. Downloading torrents: Torrent dimuat turun: - - Start / Stop Torrent - Mula / Henti Torrent - @@ -6008,175 +6032,175 @@ Sila pasangkannya secara manual. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Bentangan kandungan torrent: - + Original Asal - + Create subfolder Cipta subfolder - + Don't create subfolder Jangan cipta subfolder - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Tambah... - + Options.. - + Remove - + Email notification &upon download completion Pemberitahuan emel se&usai muat turun lengkap - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering Penap&isan IP - + Schedule &the use of alternative rate limits Jadualkan penggunaan &had kadar alternatif - + From: From start time Daripada: - + To: To end time Kepada: - + Find peers on the DHT network Cari rakan dalam rangkaian DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6185,188 +6209,190 @@ Perlu penyulitan: Hanya sambung dengan rakan dengan penyulitan protokol Lumpuhkan penyulitan: Hanya sambung dengan rakan tanpa penyulitan protokol - + Allow encryption Benarkan penyulitan - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Lagi maklumat</a>) - + Maximum active checking torrents: - + &Torrent Queueing Pembarisan Gilir &Torrent - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - Tambah penjejak ini secara automatik ke muat turun baharu: - - - + RSS Reader Pembaca RSS - + Enable fetching RSS feeds Benarkan mendapatkan suapan RSS - + Feeds refresh interval: Sela segar semula suapan: - + Same host request delay: - + Maximum number of articles per feed: Bilangan maksimum artikel per suapan: - - - + + + min minutes min - + Seeding Limits Had Menyemai - Pause torrent - Jeda torrent - - - + Remove torrent Buang torrent - + Remove torrent and its files Buang torrent dan fail-failnya - + Enable super seeding for torrent Benarkan super penyemaian untuk torrent - + When ratio reaches Bila nisbah dicapai - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader Auto Pemuat Turun Torrent RSS - + Enable auto downloading of RSS torrents Benarkan auto muat turun torrent RSS - + Edit auto downloading rules... Sunting peraturan auto muat turun... - + RSS Smart Episode Filter Penapis Episod Pintar RSS - + Download REPACK/PROPER episodes Muat turun episod REPACK/PROPER - + Filters: Penapis: - + Web User Interface (Remote control) Antaramuka Pengguna Sesawang (Kawalan jauh) - + IP address: Alamat IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6375,41 +6401,37 @@ Nyatakan satu alamat IPv4 atau IPv6. Anda boleh nyatakan "0.0.0.0" unt "::" untuk mana-mana alamat IPv6, atau "*" untuk kedua-dua IPv4 dan IPv6. - + Ban client after consecutive failures: Sekat klien selepas kegagalan berturutan: - + Never Tidak sesekali - + ban for: sekat selama: - + Session timeout: Had masa tamat sesi: - + Disabled Dilumpuhkan - Enable cookie Secure flag (requires HTTPS) - Benarkan bendera Selamat kuki (perlukan HTTPS) - - - + Server domains: Domain pelayan: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6422,37 +6444,37 @@ anda patut letak nama domain yang digunakan oleh pelayan WebUI. Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. - + &Use HTTPS instead of HTTP G&una HTTPS selain dari HTTP - + Bypass authentication for clients on localhost Lepasi pengesahihan untuk klien pada localhost - + Bypass authentication for clients in whitelisted IP subnets Lepasi pengesahihan untuk klien dalam subnet IP tersenarai putih - + IP subnet whitelist... Senarai putih subnet IP... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Ke&maskini nama domain dinamik saya @@ -6464,7 +6486,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '* Search - Gelintar + Gelintar @@ -6565,99 +6587,99 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '* Padam log sandar lebih tua dari: - + Show external IP in status bar - + When adding a torrent Bila menambah sebuah torrent - + Bring torrent dialog to the front Bawa dialog torrent ke hadapan - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Juga pada fail .torrent yang mana penambahannya telah dibatalkan - + Also when addition is cancelled Juga bila penambahan dibatalkan - + Warning! Data loss possible! Amaran! Kehilangan data mungkin berlaku! - + Saving Management Pengurusan Penyimpanan - + Default Torrent Management Mode: Mod Pengurusan Torrent Lalai: - + Manual Manual - + Automatic Automatik - + When Torrent Category changed: Bila Kategori Torrent berubah: - + Relocate torrent Tempat semula torrent - + Switch torrent to Manual Mode Tular torrent ke Mod Manual - - + + Relocate affected torrents Tempat semula torrent yang dipengaruhi - - + + Switch affected torrents to Manual Mode Tukar torrent yang dipengaruhi ke Mod Manual - + Use Subcategories Guna Subkategori - + Default Save Path: Laluan Simpan Lalai: - + Copy .torrent files to: Salin fail .torrent ke: @@ -6667,26 +6689,22 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '* Tunjuk &qBittorrent dalam ruang pemberitahuan - &Log file - Fail &log: - - - + Display &torrent content and some options Papar kandungan &torrent dan beberapa pilihan - + De&lete .torrent files afterwards Pa&dam fail .torrent selepas itu - + Copy .torrent files for finished downloads to: Salin fail .torrent bagi muat turun yang selesai ke: - + Pre-allocate disk space for all files Pra-peruntuk ruang cakera untuk semua fail @@ -6781,69 +6799,65 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '* tahun - + Log performance warnings - The torrent will be added to download list in a paused state - Torrent akan ditambah ke dalam senarai muat turun dalam keadaan terjeda - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Jangan mulakan muat turun secara automatik - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Peruntuk saiz fail penuh dalam cakera sebelum memulakan muat turun, untuk mengurangkan fragmentasi. Hanya berguna kepada HDD. - + Append .!qB extension to incomplete files Tambah sambungan .!qB pada fail tidak lengkap - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Bila satu torrent dimuat turun, tawar penambahan torrent dari mana-mana fail .torrent yang ditemui di dalamnya - + Enable recursive download dialog Benarkan dialog muat turun rekursif - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatik: Pelbagai sifat torrent (seperti laluan simpan) akan ditentukan oleh kategori berkaitan Manual: Pelbagai sifat torrent (seperti laluan simpan) mesti diumpuk secara manual - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: Bila Laluan Simpan Kategori berubah: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6863,50 +6877,50 @@ Manual: Pelbagai sifat torrent (seperti laluan simpan) mesti diumpuk secara manu - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: Tambah torrent secara automatik dari: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6923,515 +6937,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Penerima - + To: To receiver Kepada: - + SMTP server: Pelayan SMTP: - + Sender Pengirim - + From: From sender Daripada: - + This server requires a secure connection (SSL) Pelayan ini memerlukan satu sambungan selamat (SSL) - - + + Authentication Pengesahihan - - - - + + + + Username: Nama pengguna: - - - - + + + + Password: Kata laluan: - + Run external program - + Show console window Tunjuk tetingkap konsol - + TCP and μTP TCP dan μTP - + Listening Port Port Dengar - + Port used for incoming connections: Port yang digunakan untuk sambungan masuk: - + Set to 0 to let your system pick an unused port - + Random Rawak - + Use UPnP / NAT-PMP port forwarding from my router Guna pemajuan port UPnP / NAT-PMP daripada penghala saya - + Connections Limits Had Sambungan - + Maximum number of connections per torrent: Bilangan sambungan per torrent maksimum: - + Global maximum number of connections: Bilangan sambungan maksimum sejagat: - + Maximum number of upload slots per torrent: Bilangan slot muat naik per torrent maksimum: - + Global maximum number of upload slots: Bilangan maksimum sejagat bagi slot muat naik: - + Proxy Server Pelayan Proksi - + Type: Jenis: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Hos: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Jika tidak, pelayan proksi hanya digunakan untuk sambungan penjejak - + Use proxy for peer connections Guna proksi untuk sambungan rakan - + A&uthentication Pen&gesahihan - Info: The password is saved unencrypted - Maklumat: Kata laluan disimpan secara tak sulit + Maklumat: Kata laluan disimpan secara tak sulit - + Filter path (.dat, .p2p, .p2b): Tapis laluan (.dat, .p2p, .p2b): - + Reload the filter Muat semula penapis - + Manually banned IP addresses... Alamat IP dilarang secara manual... - + Apply to trackers Laksana kepada penjejak - + Global Rate Limits Had Kadar Sejagat - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Muat naik: - - + + Download: Muat Turun: - + Alternative Rate Limits Had Kadar Alternatif - + Start time Masa mula - + End time Masa tamat - + When: Bila: - + Every day Setiap hari - + Weekdays Hari biasa - + Weekends Hujung minggu - + Rate Limits Settings Tetapan Had Kadar - + Apply rate limit to peers on LAN Laksana had kadar kepada rakan dalam LAN - + Apply rate limit to transport overhead Laksana had kadar untuk overhed angkutan - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Laksana had kadar ke protokol µTP - + Privacy Kerahsiaan - + Enable DHT (decentralized network) to find more peers Benarkan DHT (rangkaian tak sepusat) untuk dapatkan lagi rakan - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Tukar rakan dengan klien Bittorrent yang serasi (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Benarkan Pertukaran Rakan (PeX) untuk dapatkan lagi rakan - + Look for peers on your local network Cari rakan dalam rangkaian setempat anda - + Enable Local Peer Discovery to find more peers Benarkan Penemuan Rakan Setempat untuk cari lagi rakan - + Encryption mode: Mod penyulitan: - + Require encryption Perlu penyulitan - + Disable encryption Lumpuhkan penyulitan - + Enable when using a proxy or a VPN connection Benarkan bila menggunakan proksi atau sambungan VPN - + Enable anonymous mode Benarkan mod awanama - + Maximum active downloads: Muat turun aktif maksimum: - + Maximum active uploads: Muat naik aktif maksimum: - + Maximum active torrents: Torrent aktif maksimum: - + Do not count slow torrents in these limits Jangan kira torrent lembab dalam had ini - + Upload rate threshold: Ambang kadar muat naik: - + Download rate threshold: Ambang kadar muat turun: - - - - + + + + sec seconds saat - + Torrent inactivity timer: Pemasa ketidakaktifan torrent: - + then maka - + Use UPnP / NAT-PMP to forward the port from my router Guna UPnP / NAT-PMP untuk majukan port daripada penghala saya - + Certificate: Sijil: - + Key: Kunci: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Maklumat berkenaan sijil</a> - + Change current password Ubah kata laluan semasa - Use alternative Web UI - Guna UI Sesawang alternatif - - - + Files location: Lokasi fail: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Keselamatan - + Enable clickjacking protection Benarkan perlindungan godaman klik - + Enable Cross-Site Request Forgery (CSRF) protection Benarkan perlindungan Pemalsuan Pintaan Silang-Laman (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Benarkan pengesahan pengepala hos - + Add custom HTTP headers Tambah pengepala HTTP suai - + Header: value pairs, one per line Pengepala: pasangan nilai, satu per baris - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Perkhidmatan: - + Register Daftar - + Domain name: Nama domain: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Dengan membenarkan pilihan ini, anda boleh <strong>kehilangan terus</strong> fail .torrent anda! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Jika anda benarkan pilihan kedua (&ldquo;Juga bila penambahan dibatalkan&rdquo;) fail .torrent <strong>akan dipadamkan</strong> walaupun jika anda menekan &ldquo;<strong>Batal</strong>&rdquo; di dalam dialog &ldquo;Tambah torrent&rdquo; @@ -7441,12 +7450,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Pilih fail Tema UI qBittorrent - + Choose Alternative UI files location Pilih lokasi fail UI alternatif - + Supported parameters (case sensitive): Parameter disokong (peka kata): @@ -7466,183 +7475,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: Nama torrent - + %L: Category %L: Kategori - + %F: Content path (same as root path for multifile torrent) %F: Laluan kandungan (sama dengan laluan root untuk torrent berbilang-fail) - + %R: Root path (first torrent subdirectory path) %R: Laluan root (laluan subdirektori torrent pertama) - + %D: Save path %D: Laluan simpan - + %C: Number of files %C: Bilangan fail - + %Z: Torrent size (bytes) %Z: Saiz torrent (bait) - + %T: Current tracker %T: Penjejak semasa - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Petua: Parameter dalam kurungan dengan tanda petikan untuk menghindari teks dipotong pada ruang putih (contohnya., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Tiada) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Sebuah torrent akan dianggap perlahan jika kadar muat turun dan muat naiknya kekal di bawah nilai ini "Torrent inactivity timer" dalam saat - + Certificate Sijil - + Select certificate Pilih sijil - + Private key Kunci persendirian - + Select private key Pilih kunci persendirian - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Pilih folder untuk dipantau - + Adding entry failed Penambahan masukan gagal - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Ralat Lokasi - - + + Choose export directory Pilih direktori eksport - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7652,69 +7661,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: Tag (diasing dengan tanda koma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Pilih satu direktori simpan - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Pilih satu fail penapis IP - + All supported filters Semua penapis disokong - + The alternative WebUI files location cannot be blank. - + Parsing error Ralat penghuraian - + Failed to parse the provided IP filter Gagal menghurai penapis IP yang disediakan - + Successfully refreshed Berjaya disegar semulakan - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Berjaya menghurai penapis IP yang disediakan: %1 peraturan telah dilaksanakan. @@ -7725,18 +7734,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Keutamaan - + Time Error Ralat Masa - + The start time and the end time can't be the same. Masa mula dan masa tamat tidak boleh serupa. - - + + Length Error Ralat Panjang @@ -7827,163 +7836,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Negara/Wilayah - + IP/Address - + Port Port - + Flags Bendera - + Connection Sambungan - + Client i.e.: Client application Klien - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Kemajuan - + Down Speed i.e: Download speed Kelajuan Turun - + Up Speed i.e: Upload speed Kelajuan Naik - + Downloaded i.e: total data downloaded Dimuat Turun - + Uploaded i.e: total data uploaded Dimuat Naik - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Berkaitan - + Files i.e. files that are being downloaded right now Fail - + Column visibility Ketampakan lajur - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers Menambah rakan - + Some peers cannot be added. Check the Log for details. Sesetengah rakan tidak dapat ditambah. Periksa Log untuk perincian. - + Peers are added to this torrent. Rakan ditambah ke dalam torrent ini. - - + + Ban peer permanently Sekat rakan selamanya - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? Anda pasti mahu menyekat rakan terpilih secara kekal? - + Peer "%1" is manually banned Rakan "%1" disekat secara manual - + N/A T/A - + Copy IP:port Salin IP:port @@ -8264,34 +8273,8 @@ Pemalam tersebut telah dilumpuhkan. PowerManagement - qBittorrent is active - qBittorrent aktif - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent aktif @@ -8583,153 +8566,124 @@ Pemalam tersebut telah dilumpuhkan. Laluan Simpan: - + Never Tidak sesekali - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (mempunyai %3) - - + + %1 (%2 this session) %1 (%2 sesi ini) - - + + N/A T/A - + Yes - Ya + Ya - + No - Tidak + Tidak - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (disemai untuk %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 jumlah) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 pur.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Semai Sesawang Baharu - - - Remove Web seed - Buang semaian Sesawang - - - Copy Web seed URL - Salin URL semai Sesawang - - - Edit Web seed URL - Sunting URL semai Sesawang - - - + Filter files... Tapis fail... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - Semai URL baharu - - - New URL seed: - Semai URL baharu: - - - This URL seed is already in the list. - Semaian URL ini sudah ada dalam senarai. - - - + Web seed editing Penyuntingan semaian Sesawang - + Web seed URL: URL semaian Sesawang: @@ -8737,33 +8691,33 @@ Pemalam tersebut telah dilumpuhkan. RSS::AutoDownloader - - + + Invalid data format. Format data tidak sah. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Tidak dapat simpan data Auto-Pemuat Turun dalam %1. Ralat: %2 - + Invalid data format Format data tidak sah - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Tidak dapat memuatkan peraturan Auto-Pemuat Turun RSS. Sebab: %1 @@ -8771,22 +8725,22 @@ Pemalam tersebut telah dilumpuhkan. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Gagal memuat turun suapan RSS pada '%1', sebab: %2. - + RSS feed at '%1' updated. Added %2 new articles. Suapan RSS pada '%1' dikemaskinikan. %2 artikel baharu ditambah. - + Failed to parse RSS feed at '%1'. Reason: %2 Gagal menghurai suapan RSS pada '%1', sebab: %2. - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Suapan RSS pada '%1' berjaya dimuat turun. Mula menghurainya. @@ -8835,12 +8789,12 @@ Pemalam tersebut telah dilumpuhkan. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8862,76 +8816,117 @@ Pemalam tersebut telah dilumpuhkan. - + Item doesn't exist: %1. Item tidak wujud: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Tidak dapat padam folder root. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Laluan Item RSS salah: %1. - + RSS item with given path already exists: %1. Suapan RSS dengan URL diberi sudah wujud: %1. - + Parent folder doesn't exist: %1. Folder induk tidak wujud: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + saat + + + + Default + Lalai + + RSSWidget @@ -9031,78 +9026,69 @@ Pemalam tersebut telah dilumpuhkan. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Sila pilih satu nama folder - + Folder name: Nama folder: - + New folder Folder baharu - - Please type a RSS feed URL - Sila taip satu URL suapan RSS. + Sila taip satu URL suapan RSS. - - Feed URL: - URL Suapan: + URL Suapan: - + Deletion confirmation Pengesahan pemadaman - + Are you sure you want to delete the selected RSS feeds? Anda pasti mahu memadam suapan RSS terpilih? - + Please choose a new name for this RSS feed Sila pilih satu nama baharu untuk suapan RSS ini - + New feed name: Nama suapan baharu: - + Rename failed Nama semula gagal - + Date: Tarikh: - + Feed: - + Author: Pengarang: @@ -9239,10 +9225,6 @@ Pemalam tersebut telah dilumpuhkan. i.e: Number of partial sources Penyedut - - Search engine - Enjin gelintar - Filter search results... @@ -9363,104 +9345,104 @@ Pemalam tersebut telah dilumpuhkan. SearchPluginManager - + Unknown search engine plugin file format. Format fail pemalam enjin gelintar tidak diketahui. - + Plugin already at version %1, which is greater than %2 Pemalam sudah pun dalam versi %1, yang mana lebih baharu daripada %2 - + A more recent version of this plugin is already installed. Versi terkini pemalam ini sudah pun dipasang. - + Plugin %1 is not supported. Pemalam %1 tidak disokong - - + + Plugin is not supported. Pemalam tidak disokong. - + Plugin %1 has been successfully updated. Pemalam %1 berjaya dikemaskinikan. - + All categories Semua kategori - + Movies Cereka - + TV shows Rancangan TV - + Music Muzik - + Games Permainan - + Anime Anime - + Software Perisian - + Pictures Gambar - + Books Buku - + Update server is temporarily unavailable. %1 Pelayan kemaskini buat masa ini tidak tersedia. %1 - - + + Failed to download the plugin file. %1 Gagal memuat turun fail pemalam. %1 - + Plugin "%1" is outdated, updating to version %2 Pemalam "%1" sudah lapuk, mengemaskini ke versi %2 - + Incorrect update info received for %1 out of %2 plugins. Maklumat kemaskini tidak betul diterima %1 dari %2 pemalam. - + Search plugin '%1' contains invalid version string ('%2') Pemalam gelintar '%1' mengandungi rentetan versi tidak sah ('%2') @@ -9486,135 +9468,127 @@ Klik butang "Gelintar pemalam..." di bahagian bawah kanan tetingkap un Gelintar pemalam... - + A phrase to search for. Satu frasa untuk digelintarkan. - + Spaces in a search term may be protected by double quotes. Jarak dalam terma gelintar dilindungi dengan tanda petikan ganda dua. - + Example: Search phrase example Contoh: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> - + All plugins Semua pemalam - + Only enabled Hanya dibenarkan - - + + Invalid data format. - Format data tidak sah. + Format data tidak sah. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> - + Refresh - + Close tab - + Close all tabs - + Select... Pilih... - - + + Search Engine Enjin Gelintar - - + + Please install Python to use the Search Engine. Sila pasang Python untuk guna Enjin Gelintar. - + Empty search pattern Kosongkan pola gelintar - + Please type a search pattern first Sila taip satu pola gelintar dahulu - + Stop Henti - - Search has finished - Gelintar selesai - - - Search has failed - Gelintar telah gagal - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10012,67 +9986,77 @@ Klik butang "Gelintar pemalam..." di bahagian bawah kanan tetingkap un StatusBar - + Connection status: Status sambungan: - - + + No direct connections. This may indicate network configuration problems. Tiada sambungan terus. Ini menunjukkan masalah konfigurasi rangkaian. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 nod - + qBittorrent needs to be restarted! qBittorrent perlu dimulakan semula! - - + + Connection Status: Status Sambungan: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Luar talian. Ia bermaksud qBittorrent gagal mendengar port terpilih bagi sambungan masuk. - + Online Atas-Talian - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Klik untuk tukar ke had kelajuan alternatif - + Click to switch to regular speed limits Klik untuk tukar ke had kelajuan biasa @@ -10100,14 +10084,6 @@ Klik butang "Gelintar pemalam..." di bahagian bawah kanan tetingkap un Completed (0) Selesai (0) - - Resumed (0) - Disambung Semula (0) - - - Paused (0) - Dijeda (0) - Running (0) @@ -10198,32 +10174,16 @@ Klik butang "Gelintar pemalam..." di bahagian bawah kanan tetingkap un Stop torrents - - Paused (%1) - Dijeda (%1) - Moving (%1) - - Resume torrents - Sambung semula torrent - - - Pause torrents - Jeda torrent - Remove torrents - - Resumed (%1) - Disambung Semula (%1) - Active (%1) @@ -10295,23 +10255,11 @@ Klik butang "Gelintar pemalam..." di bahagian bawah kanan tetingkap un Remove unused tags Buang tag yang tidak digunakan - - Resume torrents - Sambung semula torrent - - - Pause torrents - Jeda torrent - Remove torrents - - New Tag - Tag Baharu - Start torrents @@ -10647,17 +10595,17 @@ Sila pilih nama lain dan cuba sekali lagi. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10909,13 +10857,6 @@ Sila pilih nama lain dan cuba sekali lagi. - - TorrentInfo - - Invalid metadata - Data meta tidak sah - - TorrentOptionsDialog @@ -10985,22 +10926,6 @@ Sila pilih nama lain dan cuba sekali lagi. Upload: Muat naik: - - Use global share limit - Guna had kongsi sejagat - - - Set no share limit - Tetapkan had tanpa kongsi - - - Set share limit to - Tetapkan had kongsi sehingga - - - ratio - nisbah - Disable DHT for this torrent @@ -11042,14 +10967,6 @@ Sila pilih nama lain dan cuba sekali lagi. Not applicable to private torrents - - No share limit method selected - Tiada kaedah had kongsi terpilih - - - Please select a limit method first - Sila pilih satu kaedah had dahulu - TorrentShareLimitsWidget @@ -11109,7 +11026,7 @@ Sila pilih nama lain dan cuba sekali lagi. Remove torrent - Buang torrent + Buang torrent @@ -11119,7 +11036,7 @@ Sila pilih nama lain dan cuba sekali lagi. Enable super seeding for torrent - Benarkan super penyemaian untuk torrent + Benarkan super penyemaian untuk torrent @@ -11134,10 +11051,6 @@ Sila pilih nama lain dan cuba sekali lagi. Torrent Tags - - New Tag - Tag Baharu - Add tag @@ -11172,78 +11085,78 @@ Sila pilih nama lain dan cuba sekali lagi. TorrentsController - + Error: '%1' is not a valid torrent file. Ralat: '%1' bukanlah fail torrent yang sah. - + Priority must be an integer Prioriti mestilah integer - + Priority is not valid Prioriti tidak sah - + Torrent's metadata has not yet downloaded Data meta torrent belum lagi dimuat turun - + File IDs must be integers ID fail mestilah integer - + File ID is not valid ID fail tidak sah - - - - + + + + Torrent queueing must be enabled Pembarisan gilir torrent mesti dibenarkan - - + + Save path cannot be empty Laluan simpan tidak boleh kosong - - + + Cannot create target directory - - + + Category cannot be empty Kategori tidak boleh kosong - + Unable to create category Tidak boleh cipta kategori - + Unable to edit category Tidak boleh sunting kategori - + Unable to export torrent file. Error: %1 - + Cannot make save path Tidak dapat buat laluan simpan @@ -11263,39 +11176,39 @@ Sila pilih nama lain dan cuba sekali lagi. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Tidak dapat tulis ke direktori - + WebUI Set location: moving "%1", from "%2" to "%3" Lokasi Tetap WebUI: mengalih "%1", dari "%2" ke "%3" - + Incorrect torrent name Nama torrent salah - - + + Incorrect category name Nama kategori salah @@ -11444,73 +11357,73 @@ Sila pilih nama lain dan cuba sekali lagi. Torrent ini adalah persendirian - + Tracker editing Penyuntingan penjejak - + Tracker URL: URL penjejak: - - + + Tracker editing failed Penyuntingan penjejak gagal - + The tracker URL entered is invalid. URL penjejak yang dimasukkan tidak sah. - + The tracker URL already exists. URL penjejak sudah wujud. - + Edit tracker URL... Sunting URL penjejak... - + Remove tracker Buang penjejak - + Copy tracker URL Salin URL penjejak - + Force reannounce to selected trackers Paksa umum semula pada penjejak terpilih - + Force reannounce to all trackers Paksa umum semula pada semua penjejak - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility Ketampakan lajur @@ -11600,14 +11513,6 @@ Sila pilih nama lain dan cuba sekali lagi. Stop torrents - - Resume torrents - Sambung semula torrent - - - Pause torrents - Jeda torrent - Remove torrents @@ -11730,10 +11635,6 @@ Sila pilih nama lain dan cuba sekali lagi. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Menyemak data sambung semula - - Paused - Dijeda - Completed @@ -11774,11 +11675,6 @@ Sila pilih nama lain dan cuba sekali lagi. % Done Kemajuan - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped @@ -11788,7 +11684,7 @@ Sila pilih nama lain dan cuba sekali lagi. Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11904,22 +11800,17 @@ Sila pilih nama lain dan cuba sekali lagi. Time Active Time (duration) the torrent is active (not stopped) - Masa Aktif + Masa Aktif Yes - Ya + Ya No - Tidak - - - Time Active - Time (duration) the torrent is active (not paused) - Masa Aktif + Tidak @@ -12021,333 +11912,319 @@ Sila pilih nama lain dan cuba sekali lagi. TransferListWidget - + Column visibility Ketampakan lajur - + Recheck confirmation Pengesahan semak semula - + Are you sure you want to recheck the selected torrent(s)? Anda pasti mahu menyemak semula torrent(s) terpilih? - + Rename Nama semula - + New name: Nama baharu: - + Choose save path Pilih laluan simpan - + Unable to preview Tidak boleh pratonton - + The selected torrent "%1" does not contain previewable files Torrent terpilih "%1" tidak mengandungi fail-fail boleh pratonton - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - Tambah Tag - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags Buang Semua Tag - + Remove all tags from selected torrents? Buang semua tag dari torrent terpilih? - + Comma-separated tags: Tag dipisah-tanda-koma: - + Invalid tag Tag tidak sah - + Tag name: '%1' is invalid Nama tag: '%1' tidak sah - &Resume - Resume/start the torrent - Sa&mbung Semula - - - &Pause - Pause the torrent - &Jeda - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Muat turun dalam tertib berjujukan - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first Muat turn cebisan pertama dan terakhir dahulu - + Automatic Torrent Management Pengurusan Torrent Automatik - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Mod automatik bermaksud pelbagai sifat torrent (seperti laluan simpan) akan ditentukan oleh kategori berkaitan - + Super seeding mode Mod penyemaian super @@ -12479,32 +12356,32 @@ Sila pilih nama lain dan cuba sekali lagi. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12596,52 +12473,52 @@ Sila pilih nama lain dan cuba sekali lagi. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Jenis fail tidak diterima, hanya fail biasa dibenarkan. - + Symlinks inside alternative UI folder are forbidden. Pautan simbolik di dalam folder UI alternatif adalah dilarang. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Tanda pemisah ':' hilang dalam pengepala HTTP suai WebUI: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12699,7 +12576,7 @@ Sila pilih nama lain dan cuba sekali lagi. Unknown error - Ralat tidak diketahui + Ralat tidak diketahui diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index cd70913fe..c0f1d7100 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -170,10 +170,6 @@ Never show again Aldri vis igjen - - Torrent settings - Torrentinnstillinger - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrentinnstillinger @@ -235,25 +231,25 @@ Stopp-betingelse: - - + + None Ingen - - + + Metadata received Metadata mottatt - + Torrents that have metadata initially will be added as stopped. Torrenter som har metadata innledningsvis vil legges til som stoppet. - + Files checked Filer er kontrollert @@ -368,112 +364,112 @@ Lagre som .torrent-fil … - + I/O Error Inn/ut-datafeil - + Not Available This comment is unavailable Ikke tilgjengelig - + Not Available This date is unavailable Ikke tilgjengelig - + Not available Ikke tilgjengelig - + Magnet link Magnetlenke - + Retrieving metadata... Henter metadata … - - + + Choose save path Velg lagringsmappe - + No stop condition is set. Ingen stopp-betingelse er valgt. - + Torrent will stop after metadata is received. Torrent vil stoppe etter at metadata er mottatt. - + Torrent will stop after files are initially checked. Torrent vil stoppe etter innledende kontroll. - + This will also download metadata if it wasn't there initially. Dette vil også laste ned metadata som ikke ble mottatt i begynnelsen. - + N/A I/T - + %1 (Free space on disk: %2) %1 (Ledig diskplass: %2) - + Not available This size is unavailable. Ikke tilgjengelig - + Torrent file (*%1) Torrentfil (*%1) - + Save as torrent file Lagre som torrentfil - + Couldn't export torrent metadata file '%1'. Reason: %2. Klarte ikke eksportere fil med torrent-metadata «%1» fordi: %2. - + Cannot create v2 torrent until its data is fully downloaded. Kan ikke lage v2-torrent før dens data er fullstendig nedlastet. - + Filter files... Filtrer filer … - + Parsing metadata... Analyserer metadata … - + Metadata retrieval complete Fullførte henting av metadata @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Laster ned torrent … Kilde: «%1» - + Failed to add torrent. Source: "%1". Reason: "%2" Klarte ikke legge til torrent. Kilde: «%1». Årsak: «%2» - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Oppdaget et forsøk på å legge til duplisert torrent. Kilde: %1. Eksisterende torrent: %2. Resultat: %3 + Oppdaget et forsøk på å legge til duplisert torrent. Kilde: %1. Eksisterende torrent: %2. Resultat: %3 - + Merging of trackers is disabled Sammenslåing av sporere er avslått - + Trackers cannot be merged because it is a private torrent Kan ikke slå sammen sporere fordi det er en privat torrent - + Trackers are merged from new source Sporere slås sammen fra ny kilde + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Gjennomsjekk torrenter på nytt ved fullførelse - - + + ms milliseconds ms - + Setting Innstilling - + Value Value set for this setting Verdi - + (disabled) (slått av) - + (auto) (auto) - - + + min minutes min - + All addresses Alle adresser - + qBittorrent Section qBittorrent-seksjon - - + + Open documentation Åpne dokumentasjon - + All IPv4 addresses Alle IPv4-adresser - + All IPv6 addresses Alle IPv6-adresser - + libtorrent Section libtorrent-seksjon - + Fastresume files Filer for rask gjenopptakelse - + SQLite database (experimental) SQLite-database (eksperimentell) - + Resume data storage type (requires restart) Lagringstype for gjenopptakelse (krever omstart) - + Normal Normal - + Below normal Under normal - + Medium Medium - + Low Lav - + Very low Veldig lav - + Physical memory (RAM) usage limit Grense for bruk av fysisk minne (RAM) - + Asynchronous I/O threads Usynkrone I/O-tråder - + Hashing threads Hasher tråder - + File pool size Filforrådets størrelse - + Outstanding memory when checking torrents Grense for minnebruk ved kontroll av torrenter - + Disk cache Disk-hurtiglager - - - - + + + + + s seconds sek - + Disk cache expiry interval Utløpsintervall for hurtiglager på disk - + Disk queue size Køstørrelse på disk - - + + Enable OS cache Aktiver OS-hurtiglager - + Coalesce reads & writes Bland sammen lesinger og skrivinger - + Use piece extent affinity La likemenn foretrekke nærliggende deler - + Send upload piece suggestions Send forslag om opplastingsdeler - - - - - + + + + + 0 (disabled) 0 (slått av) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Intervall for lagring av gjenopptakelsesdata [0: slått av] - + Outgoing ports (Min) [0: disabled] Utgående porter (Min) [0: slått av] - + Outgoing ports (Max) [0: disabled] Utgående porter (Maks) [0: slått av] - + 0 (permanent lease) 0 (fast adresse) - + UPnP lease duration [0: permanent lease] UPnP-adressens varighet [0: Fast adresse] - + Stop tracker timeout [0: disabled] Tidsavbrudd for sporers stopp-hendelse [0: slått av] - + Notification timeout [0: infinite, -1: system default] Tidsavbrudd for varsling [0: uendelig, -1: systemets standardverdi] - + Maximum outstanding requests to a single peer Største antall utestående forespørsler hos én likemann - - - - - + + + + + KiB KiB - + (infinite) (uendelig) - + (system default) (systemets standardverdi) - + Delete files permanently - + Slett filer for godt - + Move files to trash (if possible) - + Flytt filer til papirkurven (hvis mulig) - + Torrent content removing mode - + Modus for fjerning av torrentinnhold - + This option is less effective on Linux Dette alternativet har mindre effekt på Linux - + Process memory priority Prosessens minneprioritet - + Bdecode depth limit Dybdegrense for bdecode - + Bdecode token limit Tokengrense for bdecode - + Default Forvalgt - + Memory mapped files Minneavbildede filer - + POSIX-compliant Iht. POSIX - + Simple pread/pwrite - + Enkel pread/pwrite - + Disk IO type (requires restart) Type disk-IU (krever omstart) - - + + Disable OS cache Slå av OS-hurtiglager - + Disk IO read mode Lesemodus for disk-I/U - + Write-through Skriv-gjennom - + Disk IO write mode Lesemodus for disk-I/U - + Send buffer watermark Send mellomlagringsvannmerke - + Send buffer low watermark Send lavt mellomlager-vannmerke - + Send buffer watermark factor Send mellomlagringsvannmerkefaktor - + Outgoing connections per second Utgående tilkoblinger per sekund - - + + 0 (system default) 0 (systemets standardverdi) - + Socket send buffer size [0: system default] Bufferstørrelse for sending over socket [0: systemets standardverdi] - + Socket receive buffer size [0: system default] Bufferstørrelse for mottak over socket [0: systemets standardverdi] - + Socket backlog size Socket-køens størrelse - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Intervall for lagring av statistikk [0: slått av] - + .torrent file size limit Grense for .torrent-filens størrelse - + Type of service (ToS) for connections to peers Tjenestetype (ToS) for tilkobling til likemenn - + Prefer TCP Foretrekk TCP - + Peer proportional (throttles TCP) Likemannsproporsjonalitet (Setter flaskehals på TCPen) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Støtte for internasjonale domenenavn (IDN) - + Allow multiple connections from the same IP address Tillat flere tilkoblinger fra samme IP-adresse - + Validate HTTPS tracker certificates Valider sertifikat til HTTPS-sporer - + Server-side request forgery (SSRF) mitigation Forebygging av forfalskede forespørsler på tjenersiden (SSRF) - + Disallow connection to peers on privileged ports Ikke tillat tilkobling til likemenn på priviligerte porter - + It appends the text to the window title to help distinguish qBittorent instances Legger til teksten i vindustittelen for å skille ulike qBittorrent-vinduer - + Customize application instance name Tilpass vindusnavn - + It controls the internal state update interval which in turn will affect UI updates Styrer internt oppdateringsintervall for status, som igjen påvirker oppdatering av brukergrensesnitt - + Refresh interval Oppdateringsintervall - + Resolve peer host names Finn frem til vertsnavn for likemenn - + IP address reported to trackers (requires restart) IP-adressen som skal rapporteres til sporere (krever omstart) - + Port reported to trackers (requires restart) [0: listening port] - + Porten som skal rapporteres til sporere (krever omstart) [0: lytteport] - + Reannounce to all trackers when IP or port changed Reannonser til alle sporerne når IP eller port endres - + Enable icons in menus Slå på ikoner i menyer - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Slå på portviderekobling for innebygd sporer - + Enable quarantine for downloaded files Slå på karantene for nedlastede filer - + Enable Mark-of-the-Web (MOTW) for downloaded files Slå på MOTW (internett-markør) for nedlastede filer - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Påvirker sertifikatvalidering og protokollaktivitet utenom torrent (f.eks. RSS, programoppdateringer, torrent-filer, geoip-baser, osv.) - + Ignore SSL errors - + Ignorer SSL-feil - + (Auto detect if empty) (Gjenkjenn automatisk hvis tom) - + Python executable path (may require restart) Sti til python-fortolker (krever omstart) - + Start BitTorrent session in paused state - + Start BitTorrent-økt i pauset tilstand - + sec seconds - sek + sek - + -1 (unlimited) - + -1 (ubegrenset) - + BitTorrent session shutdown timeout [-1: unlimited] - + Tidsavbrudd for nedstengning av BitTorrent-økt [-1: ubegrenset] - + Confirm removal of tracker from all torrents Bekreft fjerning av sporer fra alle torrenter - + Peer turnover disconnect percentage Frakoblingsprosent for utskiftning av likemenn - + Peer turnover threshold percentage Terskelprosent for utskiftning av likemenn - + Peer turnover disconnect interval Frakoblingsintervall for utskiftning av likemenn - + Resets to default if empty Tilbakestill til standardverdi hvis tom - + DHT bootstrap nodes Startnoder for DHT - + I2P inbound quantity I2P inngående mengde - + I2P outbound quantity I2P utgående mengde - + I2P inbound length I2P inngående lengde - + I2P outbound length I2P utgående lengde - + Display notifications Vis varslinger - + Display notifications for added torrents Vis varslinger for tillagte torrenter - + Download tracker's favicon Last ned sporerens favikon - + Save path history length Antall lagringsstier som skal lagres - + Enable speed graphs Aktiver hastighetsgrafer - + Fixed slots Fastsatte plasser - + Upload rate based Opplastingsforholdsbasert - + Upload slots behavior Oppførsel for opplastingsplasser - + Round-robin Rundgang - + Fastest upload Raskeste opplasting - + Anti-leech Anti-snylting - + Upload choking algorithm Kvelningsalgoritme for opplastninger - + Confirm torrent recheck Bekreft ny gjennomsjekking av torrent - + Confirm removal of all tags Bekreft fjerning av alle etiketter - + Always announce to all trackers in a tier Alltid annonsér til alle sporere på ett nivå - + Always announce to all tiers Alltid annonsér til alle nivåer - + Any interface i.e. Any network interface Vilkårlig grensesnitt - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-algoritme for sammenblandet TCP-modus - + Resolve peer countries Finn fram til geografisk tilhørighet for likemenn - + Network interface Nettverksgrensesnitt - + Optional IP address to bind to Valgfri IP-adresse å tilknytte seg - + Max concurrent HTTP announces Største antall samtidige HTTP-annonseringer - + Enable embedded tracker Aktiver innebygd sporer - + Embedded tracker port Innebygd sporerport @@ -1382,142 +1393,142 @@ Invalid directory path - + Ugyldig mappesti Directory does not exist - + Mappe finnes ikke Invalid mode, allowed values: %1 - + Ugyldig modus, tillatte verdier: %1 cookies must be array - + informasjonskapsler må være assosiativ tabell Application - + Running in portable mode. Auto detected profile folder at: %1 Kjører i portabel modus. Fant profilmappe på: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Fant overflødig kommandolinjeflagg: «%1». Portabel modus innebærer relativ hurtiggjenopptakelse. - + Using config directory: %1 Bruker oppsettsmappe: %1 - + Torrent name: %1 Torrentnavn: %1 - + Torrent size: %1 Torrentstørrelse: %1 - + Save path: %1 Lagringssti: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrenten ble lastet ned på %1. - - + + Thank you for using qBittorrent. Takk for at du bruker qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, sender e-postmerknad - + Add torrent failed Klarte ikke legge til torrent - + Couldn't add torrent '%1', reason: %2. Klarte ikke legge til torrent «%1» fordi %2. - + The WebUI administrator username is: %1 Admin-brukernavnet for nettgrensesnittet er: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Admin-passord for nettgrensesnittet mangler. Her er et midlertidig passord for denne økta: %1 - + You should set your own password in program preferences. Velg ditt eget passord i programinnstillingene. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Webgrensesnittet er slått av. Rediger oppsettsfila manuelt for å slå på webgrensesnittet. - + Running external program. Torrent: "%1". Command: `%2` Kjører eksternt program. Torrent: «%1». Kommando: «%2» - + Failed to run external program. Torrent: "%1". Command: `%2` Klarte ikke kjøre eksternt program. Torrent: «%1». Kommando: «%2» - + Torrent "%1" has finished downloading Torrenten «%1» er ferdig nedlastet - + WebUI will be started shortly after internal preparations. Please wait... Webgrensesnittet vil startes snart etter interne forberedelser. Vennligst vent … - - + + Loading torrents... Laster torrenter … - + E&xit &Avslutt - + I/O Error i.e: Input/Output Error Inn/ut-datafeil - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Årsak: %2 - + Torrent added Torrent lagt til - + '%1' was added. e.g: xxx.avi was added. La til «%1». - + Download completed Nedlasting fullført - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 kjører. Prosess-ID: %2 - + This is a test email. - + Denne eposten er en test, bare så du vet det. - + Test email - + Tester epost - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. «%1» er ferdig nedlastet. - + Information Informasjon - + To fix the error, you may need to edit the config file manually. For å fikse feilen må du kanskje redigere oppsettsfila manuelt. - + To control qBittorrent, access the WebUI at: %1 Bruk nettgrensesnittet for å styre qBittorrent: %1 - + Exit Avslutt - + Recursive download confirmation Rekursiv nedlastingsbekreftelse - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrenten «%1» inneholder torrentfiler, vil du fortsette nedlastingen av dem? - + Never Aldri - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekursiv nedlasting av .torrent-fil inni torrent. Kildetorrent: «%1». Fil: «%2» - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Klarte ikke å angi grense for bruk av fysisk minne (RAM). Feilkode: %1. Feilmelding: «%2» - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Klarte ikke angi grense for bruk av fysisk minne (RAM). Forespurt størrelse: %1. Systemets grense: %2. Feilkode: %3. Feilmelding: «%4» - + qBittorrent termination initiated avslutning av qBittorrent er igangsatt - + qBittorrent is shutting down... qBittorrent avslutter … - + Saving torrent progress... Lagrer torrent-framdrift … - + qBittorrent is now ready to exit qBittorrent er nå klar til avslutning @@ -1766,263 +1777,263 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor &Eksporter … - + Matches articles based on episode filter. Samsvarende artikler i henhold til episodefilter. - + Example: Eksempel: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match vil samsvare med 2, 5, de fra 8 til 15, 30, samt påfølgende episoder av sesong 1 - + Episode filter rules: Episodefiltreringsregler: - + Season number is a mandatory non-zero value Sesongnummeret er en påkrevd verdi som må være over null - + Filter must end with semicolon Filtre må avsluttes med semikolon - + Three range types for episodes are supported: Tre grupperingstyper for episoder er støttet: - + Single number: <b>1x25;</b> matches episode 25 of season one Enkeltnummer: <b>1x25;</b> samsvarer med episode 25 av sesong én - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normalgruppering: <b>1x25-40;</b> samsvarer med episode 25 til og med 40 av sesong én - + Episode number is a mandatory positive value Episodenummeret er en påkrevd verdi som må være over null - + Rules Regler - + Rules (legacy) Regler (foreldet) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Uendelig gruppering: <b>1x25-;</b> samsvarer med episode 25 og utover i sesong én og alle episoder i senere sesonger - + Last Match: %1 days ago Siste treff: %1 dager siden - + Last Match: Unknown Siste treff: Ukjent - + New rule name Navn på ny regel - + Please type the name of the new download rule. Skriv navnet på den nye nedlastingsregelen. - - + + Rule name conflict Regelnavnskonflikt - - + + A rule with this name already exists, please choose another name. En regel med dette navnet eksisterer allerede, velg et annet navn. - + Are you sure you want to remove the download rule named '%1'? Er du sikker på at du vil fjerne nedlastingsregelen som heter «%1»? - + Are you sure you want to remove the selected download rules? Er du sikker på at du vil fjerne de valgte nedlastingsreglene? - + Rule deletion confirmation Regelslettingsbekreftelse - + Invalid action Ugyldig handling - + The list is empty, there is nothing to export. Listen er tom, ingenting å eksportere. - + Export RSS rules Eksporter RSS-regler - + I/O Error Inn/ut-datafeil - + Failed to create the destination file. Reason: %1 Klarte ikke opprette målfilen. Årsak: %1 - + Import RSS rules Importer RSS-regler - + Failed to import the selected rules file. Reason: %1 Klarte ikke importere den valgte regelfilen. Årsak: %1 - + Add new rule... Legg til ny regel … - + Delete rule Slett regel - + Rename rule... Gi regel nytt navn … - + Delete selected rules Slett valgte regler - + Clear downloaded episodes... Fjern nedlastede episoder … - + Rule renaming Bytting av regelnavn - + Please type the new rule name Skriv inn nytt regelnavn - + Clear downloaded episodes Fjern nedlastede episoder - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Er du sikker på at du vil tømme den valgte regelens liste over nedlastede episoder? - + Regex mode: use Perl-compatible regular expressions Regex-modus: Bruk Perl-kompatible regulære uttrykk - - + + Position %1: %2 Posisjon %1: %2 - + Wildcard mode: you can use Joker-modus: Du kan bruke - - + + Import error Importeringsfeil - + Failed to read the file. %1 Klarte ikke lese fila. %1 - + ? to match any single character ? for å samsvare med ethvert enkeltstående tegn - + * to match zero or more of any characters * for å samsvare med null eller flere av ethvert tegn - + Whitespaces count as AND operators (all words, any order) Blanktegn teller som OG-operatorer (alle ord, vilkårlig forordning) - + | is used as OR operator | brukes som ELLER-operator - + If word order is important use * instead of whitespace. Hvis ord-rekkefølgen er viktig, bruk * i stedet for tomrom. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Et uttrykk med en tom %1-klausul (f.eks. %2) - + will match all articles. vil samsvare med alle artikler. - + will exclude all articles. vil utelate alle artikler. @@ -2074,28 +2085,38 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Kan ikke tolke gjenopptakelsesdata: ugyldig format - - + + Cannot parse torrent info: %1 Kan ikke tolke informasjon om torrent: %1 - + Cannot parse torrent info: invalid format Kan ikke tolke informasjon om torrent: ugyldig format - + Mismatching info-hash detected in resume data Fant info-hash som ikke samsvarer i gjenopptakelsesdata - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Klarte ikke lagre torrent-metadata til «%1». Feil: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Klarte ikke lagre gjenopprettelsesdata for torrent til «%1». Feil: %2. @@ -2106,16 +2127,17 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor + Cannot parse resume data: %1 Kan ikke tolke gjenopptakelsesdata: %1 - + Resume data is invalid: neither metadata nor info-hash was found Gjenopptakelsesdata er ugyldig: fant verken metadata eller info-hash - + Couldn't save data to '%1'. Error: %2 Klarte ikke lagre data til «%1». Feil: %2 @@ -2123,38 +2145,60 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor BitTorrent::DBResumeDataStorage - + Not found. Fant ikke. - + Couldn't load resume data of torrent '%1'. Error: %2 Klarte ikke laste gjenopprettelsesdata til torrenten «%1». Feil: %2 - - + + Database is corrupted. Databasen er ødelagt. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Klarte ikke slå på journal med gjenopprettelsesdata («WAL – write ahead logging»). Feilmelding: %1. - + Couldn't obtain query result. Klarte ikke hente resultatet av spørringen. - + WAL mode is probably unsupported due to filesystem limitations. WAL-modus støttes ikke, kanskje på grunn av begrensninger i filsystemet. - + + + Cannot parse resume data: %1 + Kan ikke tolke gjenopptakelsesdata: %1 + + + + + Cannot parse torrent info: %1 + Kan ikke tolke informasjon om torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Klarte ikke begynne transaksjon. Feil: %1 @@ -2162,22 +2206,22 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Klarte ikke lagre torrent-metadata. Feil: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Klarte ikke lagre gjenopprettelsesdata for torrenten «%1». Feil: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Klarte ikke slette gjenopptakelsesdata til torrenten «%1». Feil: %2 - + Couldn't store torrents queue positions. Error: %1 Klarte ikke lagre kø-posisjoner til torrenter. Feil: %1 @@ -2185,530 +2229,507 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Støtte for distribuert hash-tabell (DHT): %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF AV - - + + Local Peer Discovery support: %1 Støtte for lokal likemannsoppdagelse: %1 - + Restart is required to toggle Peer Exchange (PeX) support Omstart kreves for å veksle utveksling av likemenn (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Klarte ikke gjenoppta torrent «%1» fordi «%2» - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Klarte ikke gjenoppta torrent: Fant inkonsistent torrent-ID. Torrent: «%1» - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Fant inkonsistente data: Kategori mangler i oppsettsfilen. Kategori vil gjenopprettes, men med forvalgt verdi. Torrent: «%1». Kategori: «%2» - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Fant inkonsistente data: Ugyldig kategori. Torrent: «%1». Kategori: «%2» - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Ikke samsvar mellom lagringssti i gjenopprettet kategori og torrentens gjeldende lagringssti. Torrent er endret til manuell modus. Torrent: «%1». Kategori: «%2» - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Fant inkonsistente data: tagg mangler i oppsettsfila, men vil gjenopprettes. Torrent: «%1». Tagg: «%2» - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Fant inkonsistente data: Ugyldig tagg. Torrent «%1». Tagg: «%2» - + System wake-up event detected. Re-announcing to all the trackers... Oppdaget at systemet har våknet opp. Reannonserer til alle sporere … - + Peer ID: "%1" Likemanns-ID: «%1» - + HTTP User-Agent: "%1" HTTP-brukeragent: «%1» - + Peer Exchange (PeX) support: %1 Støtte for utveksling av likemenn (PeX): %1 - - + + Anonymous mode: %1 Anonym modus: %1 - - + + Encryption support: %1 Støtte for kryptering: %1 - - + + FORCED TVUNGET - + Could not find GUID of network interface. Interface: "%1" Fant ikke GUID til nettverksgrensesnittet. Grensesnitt: «%1» - + Trying to listen on the following list of IP addresses: "%1" Forsøker å lytte på følgende liste med IP-adresser: «%1» - + Torrent reached the share ratio limit. Torrent oppnådde grense for delingsforhold. - + Torrent: "%1". Torrent: «%1». - Removed torrent. - Fjernet torrent. - - - Removed torrent and deleted its content. - Fjernet torrent og slettet innholdet. - - - Torrent paused. - Torrent satt på pause. - - - + Super seeding enabled. Superdeling er slått på. - + Torrent reached the seeding time limit. Torrent oppnådde grense for delingstid. - + Torrent reached the inactive seeding time limit. Torrent oppnådde grense for inaktiv delingstid. - + Failed to load torrent. Reason: "%1" Klarte ikke laste torrent. Årsak: «%1» - + I2P error. Message: "%1". I2P-feil. Melding: «%1». - + UPnP/NAT-PMP support: ON Støtte for UPnP/NAT-PMP: PÅ - + Saving resume data completed. - + Fullførte lagring av gjenopptakelsesdata. - + BitTorrent session successfully finished. - + Fullførte BitTorrent-økt. - + Session shutdown timed out. - + Tidsavbrudd for nedstengning av økt. - + Removing torrent. - + Fjerner torrent. - + Removing torrent and deleting its content. - + Fjerner torrent og sletter innholdet. - + Torrent stopped. - + Torrent stoppet. - + Torrent content removed. Torrent: "%1" - + Fjernet torrent-innholdet. Torrent: «%1» - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Klarte ikke fjerne torrent-innholdet. Torrent: «%1». Feil: «%2» - + Torrent removed. Torrent: "%1" - + Fjernet torrent. Torrent: «%1» - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Oppdaget et forsøk på å legge til duplisert torrent. Eksisterende torrent: %1. Resultat: %2 - + Merging of trackers is disabled - Sammenslåing av sporere er avslått + Sammenslåing av sporere er avslått - + Trackers cannot be merged because it is a private torrent - Kan ikke slå sammen sporere fordi det er en privat torrent + Kan ikke slå sammen sporere fordi det er en privat torrent - + Trackers are merged from new source - Sporere slås sammen fra ny kilde + Sporere slås sammen fra ny kilde - + UPnP/NAT-PMP support: OFF Støtte for UPnP/NAT-PMP: AV - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Klarte ikke eksportere torrent. Torrent: «%1». Mål: «%2». Årsak: «%3» - + Aborted saving resume data. Number of outstanding torrents: %1 Avbrøt lagring av gjenopptakelsesdata. Antall gjenværende torrenter: %1 - + The configured network address is invalid. Address: "%1" Den oppsatte nettverksadressen er ugyldig. Adresse: «%1» - - + + Failed to find the configured network address to listen on. Address: "%1" Fant ikke noen nettverksadresse å lytte på. Adresse: «%1» - + The configured network interface is invalid. Interface: "%1" Det oppsatte nettverksgrensesnittet er ugyldig. Grensesnitt: «%1» - + Tracker list updated - + Sporerlisten ble oppdatert - + Failed to update tracker list. Reason: "%1" - + Klarte ikke oppdatere sporerlisten. Årsak: «%1» - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Forkastet ugyldig IP-adresse i listen over bannlyste IP-adresser. IP: «%1» - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" La sporer til i torrent. Torrent: «%1». Sporer: «%2» - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Fjernet sporer fra torrent. Torrent: «%1». Sporer: «%2» - + Added URL seed to torrent. Torrent: "%1". URL: "%2" La nettadressedeler til i torrent. Torrent: «%1». Adresse: «%2» - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Fjernet nettadressedeler fra torrent. Torrent: «%1». Adresse: «%2» - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Klarte ikke fjerne partfil. Torrent: «%1». Årsak: «%2». - Torrent paused. Torrent: "%1" - Torrent satt på pause. Torrent: «%1» - - - + Torrent resumed. Torrent: "%1" Gjenoptok torrent. Torrent: «%1» - + Torrent download finished. Torrent: "%1" Nedlasting av torrent er fullført. Torrent: «%1» - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Avbrøt flytting av torrent. Torrent: «%1». Kilde: «%2». Mål: «%3» - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Stoppet torrent. Torrent: «%1» + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Klarte ikke legge flytting av torrent i kø. Torrent: «%1». Kilde: «%2». Mål: «%3». Årsak: Torrenten flyttes nå til målet - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Klarte ikke legge flytting av torrent i kø. Torrent: «%1». Kilde: «%2». Mål: «%3». Årsak: Begge stiene peker til samme sted - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" La flytting av torrent i kø. Torrent: «%1». Kilde: «%2». Mål: «%3» - + Start moving torrent. Torrent: "%1". Destination: "%2" Start flytting av torrent. Torrent: «%1». Mål: «%2» - + Failed to save Categories configuration. File: "%1". Error: "%2" Klarte ikke lagre oppsett av kategorier. Fil: «%1». Feil: «%2» - + Failed to parse Categories configuration. File: "%1". Error: "%2" Klarte ikke fortolke oppsett av kategorier. Fil: «%1». Feil: «%2» - + Successfully parsed the IP filter file. Number of rules applied: %1 Fortolket fil med IP-filter. Antall regler tatt i bruk: %1 - + Failed to parse the IP filter file Klarte ikke fortolke fil med IP-filter - + Restored torrent. Torrent: "%1" Gjenopprettet torrent. Torrent: «%1» - + Added new torrent. Torrent: "%1" La til ny torrent. Torrent: «%1» - + Torrent errored. Torrent: "%1". Error: "%2" Torrent mislyktes. Torrent: «%1». Feil: «%2» - Removed torrent. Torrent: "%1" - Fjernet torrent. Torrent: «%1» - - - Removed torrent and deleted its content. Torrent: "%1" - Fjernet torrent og slettet innholdet. Torrent: «%1» - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrenten mangler SSL-parametre. Torrent: «%1». Melding: «%2» - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Varsel om filfeil. Torrent: «%1». Fil: «%2». Årsak: «%3» - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP: Portviderekobling mislyktes. Melding: «%1» - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP: Portviderekobling lyktes. Melding: «%1» - + IP filter this peer was blocked. Reason: IP filter. IP-filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrert port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). priviligert port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Klarte ikke koble til nettadressedelernavn. Torrent: «%1». URL: «%2». Feil: «%3» - + BitTorrent session encountered a serious error. Reason: "%1" Det oppstod en alvorlig feil i BitTorrent-økta. Årsak: «%1» - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5-proxyfeil. Adresse: «%1». Melding: «%2». - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 blandingsmodusbegrensninger - + Failed to load Categories. %1 Klarte ikke laste kategorier. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Klarte ikke laste oppsett av kategorier. Fil: «%1». Feil: «Ugyldig dataformat» - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Fjernet torrent, men klarte ikke å slette innholdet. Torrent: «%1». Feil: «%2» - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 er slått av - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 er slått av - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - DNS-oppslag av nettadressedelernavn mislyktes. Torrent: «%1». URL: «%2». Feil: «%3». - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Mottok feilmelding fra nettadressedeler. Torrent: «%1». URL: «%2». Melding: «%3». - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Lytter på IP. IP: «%1». Port: «%2/%3» - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Mislyktes i å lytte på IP. IP: «%1». Port: «%2/%3». Årsak: «%4» - + Detected external IP. IP: "%1" Oppdaget ekstern IP. IP: «%1» - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Feil: Den interne varselkøen er full, og varsler forkastes. Ytelsen kan være redusert. Forkastede varseltyper: «%1». Melding: «%2». - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Flytting av torrent er fullført. Torrent: «%1». Mål: «%2» - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Klarte ikke flytte torrent. Torrent: «%1». Kilde: «%2». Mål: «%3». Årsak: «%4» @@ -2758,47 +2779,47 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Klarte ikke skrive til fil fordi: «%1». Torrenten har nå modusen «kun opplasting». - + Download first and last piece first: %1, torrent: '%2' Last ned første og siste bit først: %1, torrent: «%2» - + On - + Off Av - + Failed to reload torrent. Torrent: %1. Reason: %2 Klarte ikke gjeninnlaste torrent «%1» fordi «%2» - + Generate resume data failed. Torrent: "%1". Reason: "%2" Klarte ikke danne gjenopptakelsesdata. Torrent: «%1», feil: «%2» - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Klarte ikke gjenopprette torrent. Filene ble kanskje flyttet eller lagringsenheten er utilgjengelig. Torrent: «%1». Årsak: «%2». - + Missing metadata Mangler metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Klarte ikke endre navn. Torrent: «%1», fil: «%2», årsak: «%3» - + Performance alert: %1. More info: %2 Varsel om ytelse: %1. Mer info: %2 @@ -2835,11 +2856,6 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Expected integer number in environment variable '%1', but got '%2' Forventet heltall i miljøvariabel '%1', men fikk '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameteret '%1' må følge syntaksen '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameteret '%1' må følge syntaksen '%1=%2' + Parameteret '%1' må følge syntaksen '%1=%2' @@ -2968,11 +2984,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Add torrents as running or stopped - - - - Add torrents as started or paused - Legg til torrenter som startet eller pauset + Legg til torrenter som startet eller stoppet @@ -3063,20 +3075,12 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Start torrents - + Start torrenter Stop torrents - - - - Resume torrents - Gjenoppta torrenter - - - Pause torrents - Sett torrenter på pause + Stopp torrenter @@ -3099,7 +3103,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor System - + System @@ -3174,11 +3178,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Also remove the content files - - - - Also permanently delete the files - Slett også filene permanent + Også fjern filene i innholdet @@ -3390,47 +3390,43 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Pattern Format - + Mønsterformat Plain text - + Ren tekst Wildcards - + Jokertegn Regular expression - + Regulære uttrykk GUIAddTorrentManager - + Downloading torrent... Source: "%1" Laster ned torrent … Kilde: «%1» - Trackers cannot be merged because it is a private torrent - Kan ikke slå sammen sporere fordi det er en privat torrent - - - + Torrent is already present Torrenten er allerede til stede - + Trackers cannot be merged because it is a private torrent. - + Kan ikke slå sammen sporere fordi det er en privat torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? «%1»-torrenten er allerede i overføringslisten. Vil du slå sammen sporere fra den nye kilden? @@ -3548,6 +3544,40 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Støttede bildefiler + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Strømstyringen fant passende D-Bus-grensesnitt. Grensesnitt: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Strømstyringsfeil. Handling: %1. Feil: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Uventet feil ved strømstyring. Tilstand: %1. Feil: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor &Options... &Alternativer … - - &Resume - &Gjenoppta - &Remove @@ -3762,7 +3788,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Sh&utdown System - + Sl&å av systemet @@ -3774,10 +3800,6 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Close Window Lukk vindu - - R&esume All - Gj&enoppta alle - Manage Cookies... @@ -3816,22 +3838,22 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Sta&rt - + Sta&rt Sto&p - + Sto&pp R&esume Session - + Gj&enoppta økt Pau&se Session - + Sett økt på pau&se @@ -3893,10 +3915,6 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor &Hibernate System Sett system i &dvalemodus - - S&hutdown System - Sk&ru av systemet - &Statistics @@ -3917,14 +3935,6 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor &About &Om - - &Pause - Sett på &pause - - - P&ause All - Sett alt på p&ause - &Add Torrent File... @@ -3958,12 +3968,12 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor - + Show Vis - + Check for program updates Se etter programoppdateringer @@ -3978,388 +3988,383 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Send noen kroner hvis du liker qBittorrent. - + Execution Log Utførelseslogg - + Clear the password Fjern passordet - + &Set Password &Sett passord - + Preferences Innstillinger - + &Clear Password &Fjern passord - + Transfers Overføringer - - + + qBittorrent is minimized to tray qBittorrent er minimert til verktøykassen - - - + + + This behavior can be changed in the settings. You won't be reminded again. Denne oppførselen kan bli endret i innstillingene. Du vil ikke bli minnet på det igjen. - + Icons Only Kun ikoner - + Text Only Kun tekst - + Text Alongside Icons Tekst ved siden av ikoner - + Text Under Icons Tekst under ikoner - + Follow System Style Følg systemsøm - - + + UI lock password Låsepassord for brukergrensesnitt - - + + Please type the UI lock password: Skriv låsepassordet for brukergrensesnittet: - + Are you sure you want to clear the password? Er du sikker på at du vil fjerne passordet? - + Use regular expressions Bruk regulære uttrykk - - + + Search Engine - Søkemotor + Søkemotor - + Search has failed - Søket mislyktes + Søket mislyktes - + Search has finished - Søket er ferdig + Søket er ferdig - + Search Søk - + Transfers (%1) Overføringer (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent ble nettopp oppdatert og trenger å bli omstartet for at forandringene skal tre i kraft. - + qBittorrent is closed to tray qBittorrent er lukket til verktøykassen - + Some files are currently transferring. Noen filer overføres for øyeblikket. - + Are you sure you want to quit qBittorrent? Er du sikker på at du vil avslutte qBittorrent? - + &No &Nei - + &Yes &Ja - + &Always Yes &Alltid Ja - + Options saved. Valg er lagret. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSET] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Klarte ikke laste ned Python-installerer. Feil: %1. +Den må installeres manuelt. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Klarte ikke endre navnet til Python-installereren. Kilde: «%1». Mål: «%2». - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python-installering vellykket. + Exit code: %1. + Avslutningskode: %1. + + + + Reason: installer crashed. + Årsak: Installasjonen krasjet. + + + Python installation failed. - + Python-installering mislyktes. - + Launching Python installer. File: "%1". - + Starter Python-installasjon. Fil: «%1». - - + + Missing Python Runtime Manglende Python-kjøretidsfil - + qBittorrent Update Available qBittorrent-oppdatering tilgjengelig - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python kreves for å bruke søkemotoren, men det synes ikke å være installert. Vil du installere det nå? - + Python is required to use the search engine but it does not seem to be installed. Python kreves for å bruke søkemotoren, men det synes ikke å være installert. - - + + Old Python Runtime Gammel Python-kjøretidsfil - + A new version is available. En ny versjon er tilgjengelig. - + Do you want to download %1? Vil du laste ned %1? - + Open changelog... Åpne endringslogg … - + No updates available. You are already using the latest version. Ingen oppdateringer tilgjengelig. Du bruker allerede den seneste versjonen. - + &Check for Updates &Se etter oppdateringer - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Python-versjonen din (%1) er utdatert. Minstekravet er: %2. Vil du installere en nyere versjon nå? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Din Python-versjon (%1) er utdatert. Oppgrader til siste versjon for at søkemotorene skal virke. Minimumskrav: %2. - + Paused - Satt på pause + Pauset - + Checking for Updates... Ser etter oppdateringer … - + Already checking for program updates in the background Ser allerede etter programoppdateringer i bakgrunnen - + Python installation in progress... - + Python-installasjon pågår … - + Failed to open Python installer. File: "%1". - + Klarte ikke åpne Python-installerer. Fil: «%1». - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + MD5-sjekksum mislyktes for Python-installerer. Fil: «%1». Reell sjekksum: «%2». Forventet sjekksum: «%3». - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + SHA3-512-sjekksum mislyktes for Python-installerer. Fil: «%1». Reell sjekksum: «%2». Forventet sjekksum: «%3». - + Download error Nedlastingsfeil - Python setup could not be downloaded, reason: %1. -Please install it manually. - Klarte ikke laste ned Python-oppsettet fordi: %1. -Installer det manuelt. - - - - + + Invalid password Ugyldig passord - + Filter torrents... Filtrer torrenter … - + Filter by: Filtrer etter: - + The password must be at least 3 characters long Passordet må være minst 3 tegn langt - - - + + + RSS (%1) Nyhetsmating (%1) - + The password is invalid Passordet er ugyldig - + DL speed: %1 e.g: Download speed: 10 KiB/s ↓-hastighet: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s ↑-hastighet: %1 - + Hide Skjul - + Exiting qBittorrent Avslutter qBittorrent - + Open Torrent Files Åpne torrentfiler - + Torrent Files Torrentfiler @@ -4556,7 +4561,7 @@ Installer det manuelt. SSL error, URL: "%1", errors: "%2" - + SSL-feil, URL: «%1», feil: «%2» @@ -5853,47 +5858,47 @@ Installer det manuelt. Net::Smtp - + Connection failed, unrecognized reply: %1 Tilkobling mislyktes. Dette svaret forvirret programmet: %1 - + Authentication failed, msg: %1 Autentisering mislyktes. Melding: %1 - + <mail from> was rejected by server, msg: %1 Tjeneren avviste <mail from>. Melding: %1 - + <Rcpt to> was rejected by server, msg: %1 Tjeneren avviste <Rcpt to>. Melding: %1 - + <data> was rejected by server, msg: %1 Tjeneren avviste <data>. Melding: %1 - + Message was rejected by the server, error: %1 Tjeneren avviste meldingen. Feil: %1 - + Both EHLO and HELO failed, msg: %1 Mislyktes med både EHLO og HELO. Melding: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP-tjeneren støtter tilsynelatende ikke noen av de følgende autentiseringsmetodene: CRAM-MD5, PLAIN, LOGIN. Unnlater autentisering, men det vil antakelig mislykkes … Tjenerens aut.-metoder: %1 - + Email Notification Error: %1 E-post-varslingsfeil: %1 @@ -5935,10 +5940,6 @@ Installer det manuelt. RSS Nyhetsmating (RSS) - - Web UI - Nettgrensesnitt - Advanced @@ -5959,14 +5960,6 @@ Installer det manuelt. Confirm when deleting torrents Bekreft ved sletting av torrenter - - Shows a confirmation dialog upon pausing/resuming all the torrents - Vis bekreftelsesdialog når torrenter pauses/gjenopptas - - - Confirm "Pause/Resume all" actions - Bekreft handlingene «Pause/Gjenoppta alle» - Use alternating row colors @@ -5983,10 +5976,6 @@ Installer det manuelt. Always Alltid - - Paused torrents only - Kun torrenter satt på pause - Action on double-click @@ -5997,10 +5986,6 @@ Installer det manuelt. Downloading torrents: Nedlastende torrenter: - - Start / Stop Torrent - Start / stopp torrent - @@ -6059,179 +6044,179 @@ Installer det manuelt. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Oppsett av innhold i torrent: - + Original Opprinnelig - + Create subfolder Lag undermappe - + Don't create subfolder Ikke lag undermappe - + The torrent will be added to the top of the download queue Torrenten vil legges øverst i nedlastingskøen - + Add to top of queue The torrent will be added to the top of the download queue Legg øverst i køen - + When duplicate torrent is being added Når duplisert torrent legges til - + Merge trackers to existing torrent Slå sammen sporere til eksisterende torrent - + Keep unselected files in ".unwanted" folder Behold fravalgte filer i mappa «.unwanted» - + Add... Legg til … - + Options.. Alternativer … - + Remove Fjern - + Email notification &upon download completion E-postvarsling &ved nedlastingsfullførelse - + Send test email - + Send test-epost - + Run on torrent added: - + Kjør når torrent legges til: - + Run on torrent finished: - + Kjør når torrent er fullført: - + Peer connection protocol: Protokoll for tilkoblinger fra likemenn: - + Any Hvilken som helst - + I2P (experimental) I2P (eksperimentell) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Hvis &quo;blandet modus&quot; er slått på, så vil I2P-torrenter kunne få likemenn fra andre kilder enn sporeren og koble til vanlige IP-adresser uten anonymisering. Dette kan være nyttig hvis brukeren ikke er interessert i anonymisering, men likevel vil koble til I2P-likemenn.</p></body></html> - - - + Mixed mode Blandet modus - Some options are incompatible with the chosen proxy type! - Noen alternativer passer ikke med valgt type mellomtjener. + Noen alternativer passer ikke med valgt type mellomtjener. - + If checked, hostname lookups are done via the proxy Velg for å slå opp vertsnavn via mellomtjener - + Perform hostname lookup via proxy Slå opp vertsnavn via mellomtjener - + Use proxy for BitTorrent purposes Bruk mellomtjener for BitTorrent-formål - + RSS feeds will use proxy Informasjonskanaler vil bruke mellomtjener - + Use proxy for RSS purposes Bruk mellomtjener for informasjonskanaler (RSS) - + Search engine, software updates or anything else will use proxy Søkemotor, programvareoppdateringer og alt annet vil bruke mellomtjener - + Use proxy for general purposes Bruk alltid mellomtjener - + IP Fi&ltering IP-fil&trering - + Schedule &the use of alternative rate limits Planlegg &bruken av alternative hastighetsgrenser - + From: From start time Fra: - + To: To end time Til: - + Find peers on the DHT network Finn likemenn på DHT-nettverket - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Krev kryptering: Koble kun til likemenn med protokollkryptering Slå av kryptering: Koble kun til likemenn uten protokollkryptering - + Allow encryption Tillat kryptering - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Mer informasjon</a>) - + Maximum active checking torrents: Største antall aktive kontroller av torrenter: - + &Torrent Queueing &Torrentkødanning - + When total seeding time reaches Når total delingstid når - + When inactive seeding time reaches Når inaktiv delingstid når - A&utomatically add these trackers to new downloads: - A&utomatisk legg disse sporerne til nye nedlastinger: - - - + RSS Reader Nyhetsmatingsleser (RSS) - + Enable fetching RSS feeds Skru på innhenting av RSS-informasjonskanaler - + Feeds refresh interval: Oppdateringsintervall for informasjonskanaler: - + Same host request delay: Forespørselsforsinkelse samme vert: - + Maximum number of articles per feed: Maksimalt antall artikler per mating: - - - + + + min minutes min - + Seeding Limits Delegrenser - Pause torrent - Sett torrent på pause - - - + Remove torrent Fjern torrent - + Remove torrent and its files Fjern torrent og dens filer - + Enable super seeding for torrent Skru på superdeling av torrent - + When ratio reaches Når forholdet når - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Stopp torrent - + A&utomatically append these trackers to new downloads: - + A&utomatisk legg til disse sporerne til nye nedlastinger: - + Automatically append trackers from URL to new downloads: - + Automatisk legg til disse sporerne fra adresse til nye nedlastinger: - + URL: - URL: + URL: - + Fetched trackers - + Hentet sporere - + Search UI - + Søkegrensesnitt - + Store opened tabs - + Lagre åpne faner - + Also store search results - + Lagre også søkeresultater - + History length - + Historikk-lengde - + RSS Torrent Auto Downloader Automatisk RSS-informasjonskanalsnedlaster - + Enable auto downloading of RSS torrents Skru på automatisk nedlasting av RSS-torrenter - + Edit auto downloading rules... Rediger automatiske nedlastingsregler … - + RSS Smart Episode Filter RSS-episodesmartfilter - + Download REPACK/PROPER episodes Last ned REPACK-/PROPER-episoder - + Filters: Filtre: - + Web User Interface (Remote control) Nettbrukergrenesnitt (fjernkontroll) - + IP address: IP-adresse: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Angi en IPv4- eller IPv6-adresse. Du kan oppgi "0.0.0.0" for enhver IP "::" for enhver IPv6-adresse, eller "*" for både IPv4 og IPv6. - + Ban client after consecutive failures: Bannlys klient etter påfølgende feil: - + Never Aldri - + ban for: bannlys i: - + Session timeout: Tidsavbrudd for økt: - + Disabled Slått av - Enable cookie Secure flag (requires HTTPS) - Slå på Secure-flagget i informasjonskapsler (HTTPS) - - - + Server domains: Tjenerdomener: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ burde du skrive inn domenenavn brukt av vevgrensesnittjeneren. Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. - + &Use HTTPS instead of HTTP &Bruk HTTPS istedenfor HTTP - + Bypass authentication for clients on localhost Omgå autentisering for klienter på lokalvert - + Bypass authentication for clients in whitelisted IP subnets Omgå autentisering for klienter i hvitelistede IP-subnett - + IP subnet whitelist... Hviteliste for IP-undernett … - + Use alternative WebUI - + Bruk et alternativt nettgrensesnitt - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Angi IP-er til reverserte mellomtjenere (f.eks. 0.0.0.0/24 for subnett) for å bruke videresendte klientaddresser (attributtet X-Forwarded-For). Bruk «;» for å adskille flere oppføringer. - + Upda&te my dynamic domain name Oppda&ter mitt dynamiske domenenavn @@ -6519,12 +6502,12 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& Search - Søk + Søk WebUI - + Nettgrensesnitt @@ -6539,29 +6522,29 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& Style: - + Stil: Color scheme: - + Palett: Stopped torrents only - + Kun stoppede torrenter Start / stop torrent - + Start / stopp torrent Open torrent options dialog - + Vis innstillinger for torrent @@ -6602,7 +6585,7 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& &Log Files - + &Loggfiler @@ -6620,99 +6603,99 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& Slett sikkerhetskopier av loggføringer som er eldre enn: - + Show external IP in status bar - + Vis ekstern IP i statuslinja - + When adding a torrent Når en torrent legges til - + Bring torrent dialog to the front Hent torrentdialog til forgrunnen - + The torrent will be added to download list in a stopped state - + Torrenten vil legges til i nedlastingslisten som stoppet - + Also delete .torrent files whose addition was cancelled Slett .torrent-filer som hvis tillegg i listen ble avbrutt samtidig - + Also when addition is cancelled Også når tillegging blir avbrutt - + Warning! Data loss possible! Advarsel! Datatap mulig! - + Saving Management Lagringsbehandling - + Default Torrent Management Mode: Forvalgt torrentbehandlingsmodus: - + Manual Manuell - + Automatic Automatisk - + When Torrent Category changed: Når torrentkategori endres: - + Relocate torrent Omplasser torrent - + Switch torrent to Manual Mode Bytt torrent til manuell modus - - + + Relocate affected torrents Omplasser berørte torrenter - - + + Switch affected torrents to Manual Mode Bytt berørte torrenter til manuell modus - + Use Subcategories Bruk underkategorier - + Default Save Path: Forvalgt lagringsmappe: - + Copy .torrent files to: Kopier .torrent-filer til: @@ -6722,26 +6705,22 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& Vis &qBittorrent i varslingsområdet - &Log file - &Loggfil - - - + Display &torrent content and some options Vis &torrentinnhold og noen alternativer - + De&lete .torrent files afterwards Sl&ett .torrent-filer etterpå - + Copy .torrent files for finished downloads to: Kopier .torrent-filer for fullførte nedlastinger til: - + Pre-allocate disk space for all files Forhåndstildel diskplass for alle filer @@ -6771,10 +6750,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& Preview file, otherwise open destination folder Forhåndsvis fil, eller åpne målmappe - - Show torrent options - Vis innstillinger for torrent - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*& år - + Log performance warnings Varsel om logg-ytelse - The torrent will be added to download list in a paused state - Torrenten vil legges til nedlastingslisten og settes på pause - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Ikke start nedlastingen automatisk - + Whether the .torrent file should be deleted after adding it Skal .torrent-filen slettes etter å ha blitt lagt til - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Reserver full filstørrelse på disk før nedlasting startes, for å hindre fragmentering. Dette er kun nyttig for spinnedisker. - + Append .!qB extension to incomplete files Tilføy en .!qB-benevnelse til ikke-fullførte filer - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Spør om å legge til torrenter fra .torrent-filer inni nylig nedlastet torrent - + Enable recursive download dialog Skru på rekursiv nedlastingsbekreftelse - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatisk: Diverse torrent-egenskaper (f.eks. lagringssti) vil bestemmes av tilordnet kategori Manuelt: Diverse torrent-egenskaper (f.eks. lagringssti) må tilordnes manuelt - + When Default Save/Incomplete Path changed: Når forvalgt lagringssti/ufullstendig sti endres: - + When Category Save Path changed: Når kategoriens lagringssti endres: - + Use Category paths in Manual Mode Bruk kategoristier i manuell modus - + Resolve relative Save Path against appropriate Category path instead of Default one Slå opp relativ lagringssti mot passende kategoristi i stedet for den forvalge @@ -6922,50 +6893,50 @@ Manuelt: Diverse torrent-egenskaper (f.eks. lagringssti) må tilordnes manueltVindustilstanden til qBittorrent ved oppstart - + Torrent stop condition: Stopp-betingelse for torrent: - - + + None Ingen - - + + Metadata received Metadata mottatt - - + + Files checked Filer er kontrollert - + Ask for merging trackers when torrent is being added manually Spør om å slå sammen sporere når torrent legges til manuelt - + Use another path for incomplete torrents: Bruk en annen sti for ufullstendige torrenter: - + Automatically add torrents from: Legg automatisk til torrenter fra: - + Excluded file names Utelatte filnavn - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: filtrerer eksakt filnavn. readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10.txt». - + Receiver Mottaker - + To: To receiver Til: - + SMTP server: SMTP-tjener: - + Sender Sender - + From: From sender Fra: - + This server requires a secure connection (SSL) Denne tjeneren krever en sikker tilkobling (SSL) - - + + Authentication Autentisering - - - - + + + + Username: Brukernavn: - - - - + + + + Password: Passord: - + Run external program Kjør eksternt program - Run on torrent added - Kjør når torrent legges til - - - Run on torrent finished - Kjør når torrent er fullført - - - + Show console window Vis konsollvindu - + TCP and μTP TCP og μTP - + Listening Port Lytteport - + Port used for incoming connections: Port brukt for innkommende tilkoblinger: - + Set to 0 to let your system pick an unused port Sett lik 0 for å la systemet velge en port som ikke brukes - + Random Tilfeldig - + Use UPnP / NAT-PMP port forwarding from my router Bruk UPnP / NAT-PMP port-videresending fra min ruter - + Connections Limits Tilkoblingsgrenser - + Maximum number of connections per torrent: Maksimalt antall tilkoblinger per torrent: - + Global maximum number of connections: Globalt maksimumsantall for tilkoblinger: - + Maximum number of upload slots per torrent: Maksimalt antall opplastingsåpninger per torrent: - + Global maximum number of upload slots: Globalt maksimumsantall for opplastingsåpninger: - + Proxy Server Mellomtjener - + Type: Type: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Vert: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Ellers blir mellomtjeneren bare brukt til sporertilkoblinger - + Use proxy for peer connections Bruk mellomtjener for likemannstilkoblinger - + A&uthentication Id&entitetsbekreftelse - Info: The password is saved unencrypted - Info: Passordet er lagret ukryptert + Info: Passordet er lagret ukryptert - + Filter path (.dat, .p2p, .p2b): Filtermappe (.dat, .p2p, .p2b): - + Reload the filter Last inn filteret på nytt - + Manually banned IP addresses... Manuelt bannlyste IP-adresser … - + Apply to trackers Bruk for sporere - + Global Rate Limits Globale hastighetsgrenser - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Opplasting: - - + + Download: Nedlasting: - + Alternative Rate Limits Alternative hastighetsgrenser - + Start time Starttid - + End time Sluttid - + When: Når: - + Every day Hver dag - + Weekdays Ukedager - + Weekends Helger - + Rate Limits Settings Innstillinger for hastighetsgrenser - + Apply rate limit to peers on LAN Bruk hastighetsgrense for likemenn på lokalnett - + Apply rate limit to transport overhead Bruk hastighetsgrense for transportering av tilleggsdata - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Hvis «blandet modus» er slått på, så vil I2P-torrenter kunne få likemenn fra andre kilder enn sporeren og koble til vanlige IP-adresser uten anonymisering. Dette kan være nyttig hvis brukeren ikke er interessert i anonymisering, men likevel vil koble til I2P-likemenn.</p></body></html> - + Apply rate limit to µTP protocol Bruk hastighetsgrense for µTP-protokoll - + Privacy Personvern - + Enable DHT (decentralized network) to find more peers Aktiver DHT (desentralisert nettverk) for å finne flere likemenn - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Utveksle likemenn med kompatible Bittorrent-klienter (µTorrent, Vuze, …) - + Enable Peer Exchange (PeX) to find more peers Skru på likemennsutveksling (PeX) for å finne flere likemenn - + Look for peers on your local network Se etter likemenn i ditt lokalnettverk - + Enable Local Peer Discovery to find more peers Aktiver lokal likemannsoppdaging for å finne flere likemenn - + Encryption mode: Krypteringsmodus: - + Require encryption Krev kryptering - + Disable encryption Deaktiver kryptering - + Enable when using a proxy or a VPN connection Aktiver ved bruk av mellomtjener eller en VPN-tilkobling - + Enable anonymous mode Aktiver anonymitetsmodus - + Maximum active downloads: Maksimalt antall aktive nedlastinger: - + Maximum active uploads: Maksimalt antall aktive opplastinger: - + Maximum active torrents: Maksimalt antall aktive torrenter: - + Do not count slow torrents in these limits Ikke ta med trege torrenter i regnskapet for disse grensene - + Upload rate threshold: Opplastingsforholdsgrense: - + Download rate threshold: Nedlastingsforholdsgrense: - - - - + + + + sec seconds sek - + Torrent inactivity timer: Torrent-inaktivitetsklokke: - + then deretter - + Use UPnP / NAT-PMP to forward the port from my router Bruk UPnP / NAT-PMP for å videresende porten fra min ruter - + Certificate: Sertifikat: - + Key: Nøkkel: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informasjon om sertifikater</a> - + Change current password Endre gjeldende passord - Use alternative Web UI - Bruk et alternativt nettgrensesnitt - - - + Files location: Filenes plassering: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Liste over alternative WebUI</a> - + Security Sikkerhet - + Enable clickjacking protection Aktiver beskyttelse mot klikkoverstyring - + Enable Cross-Site Request Forgery (CSRF) protection Skru på «Cross-Site Request Forgery»-beskyttelse (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Slå på Secure-flagget i informasjonskapsler (krever HTTPS eller localhost-tilkobling) - + Enable Host header validation Skru på validering av «Host»-feltet i hodet - + Add custom HTTP headers Legg til brukervalgte HTTP-hoder - + Header: value pairs, one per line Hode: verdipar, ett per linje - + Enable reverse proxy support Slå på støtte for reversert mellomtjener - + Trusted proxies list: Liste over tiltrodde mellomtjenere: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Eksempler på oppsett av reversert mellomtjener</a> - + Service: Tjeneste: - + Register Registrer - + Domain name: Domenenavn: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Ved å aktivere disse alternativene kan du miste dine .torrent-filer <strong>for godt</strong>! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Hvis du aktiverer det andre alternativet (&ldquo;Også når tillegging blir avbrutt&rdquo;) vil .torrent-filen <strong>bli slettet</strong> selv om du trykker &ldquo;<strong>Avbryt</strong>&rdquo; i &ldquo;Legg til torrent&rdquo;-dialogen @@ -7520,12 +7478,12 @@ readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10 Velg draktfil for qBittorrent - + Choose Alternative UI files location Plasseringen til «Alternativt grensesnitt»-filene - + Supported parameters (case sensitive): Støttede parametre (forskjell på små og store bokstaver): @@ -7545,183 +7503,183 @@ readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10 Slått av fordi tilstedeværelse i systemkurv er ukjent - + No stop condition is set. Ingen stopp-betingelse er valgt. - + Torrent will stop after metadata is received. Torrent vil stoppe etter at metadata er mottatt. - + Torrent will stop after files are initially checked. Torrent vil stoppe etter innledende kontroll. - + This will also download metadata if it wasn't there initially. Dette vil også laste ned metadata som ikke ble mottatt i begynnelsen. - + %N: Torrent name %N: Torrentnavn - + %L: Category %L: Kategori - + %F: Content path (same as root path for multifile torrent) %F: Innholdsmappe (samme som rotmappe for flerfilstorrenter) - + %R: Root path (first torrent subdirectory path) %R: Rotmappe (første undermappe for torrenter) - + %D: Save path %D: Lagringsmappe - + %C: Number of files %C: Antall filer - + %Z: Torrent size (bytes) %Z: Torrentstørrelse (Byte) - + %T: Current tracker %T: Nåværende sporer - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tips: Innkapsle parameter med anførselstegn for å unngå at teksten blir avskåret ved mellomrom (f.eks., "%N") - + Test email - + Tester epost - + Attempted to send email. Check your inbox to confirm success - + Forsøkte å sende epost. Se i innboksen om det lyktes - + (None) (Ingen) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds En torrent vil bli ansett for å være treg dersom dens ned- og opp-lastingsfrekvenser holder seg under disse verdiene, i det antall sekunder som er valgt i «Torrent-inaktivitetsklokke» - + Certificate Sertifikat - + Select certificate Velg sertifikat - + Private key Privat nøkkel - + Select private key Velg privat nøkkel - + WebUI configuration failed. Reason: %1 Oppsett av nettgrensesnittet mislyktes fordi: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 anbefales fordi den passer best med Windows' mørk modus - + System System default Qt style - + System - + Let Qt decide the style for this system - + La Qt styre systemets stil - + Dark Dark color scheme - + Mørk - + Light Light color scheme - + Lys - + System System color scheme - + System - + Select folder to monitor Velg mappe å overvåke - + Adding entry failed Tillegg av oppføring mislyktes - + The WebUI username must be at least 3 characters long. Brukernavn for nettgrensesnittet må være minst 3 tegn. - + The WebUI password must be at least 6 characters long. Passordet for nettgrensesnittet må være minst 6 tegn. - + Location Error Stedsfeil - - + + Choose export directory Velg eksporteringsmappe - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Når disse alternativene er aktivert vil qBittorrent <strong>slette</strong> .torrentfiler etter at de har blitt vellykket (det første alternativet), eller ikke (det andre alternativet), lagt til nedlastingskøen. Dette vil bli brukt <strong>ikke bare</strong> for filer åpnet via meny-handlingen &ldquo;Legg til torrent&rdquo;, men også for dem som blir åpnet via <strong>filtypetilknytning</strong> @@ -7731,69 +7689,69 @@ readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10 qBittorrent draktfil (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiketter (adskilt med kommaer) - + %I: Info hash v1 (or '-' if unavailable) %I: Info-hash v1 (eller «-» hvis utilgjengelig) - + %J: Info hash v2 (or '-' if unavailable) %J: Info-hash v2 (eller «-» hvis utilgjengelig) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent-ID (enten sha-1 info-hash for v1-torrenter, eller forkortet sha-256 info-hash for v2/hybrid-torrenter) - - + + Choose a save directory Velg en lagringsmappe - + Torrents that have metadata initially will be added as stopped. Torrenter som har metadata innledningsvis vil legges til som stoppet. - + Choose an IP filter file Velg en IP-filterfil - + All supported filters Alle støttede filter - + The alternative WebUI files location cannot be blank. Filplasseringen til det alternative nettgrensesnittet kan ikke være blank. - + Parsing error Tolkningsfeil - + Failed to parse the provided IP filter Klarte ikke å fortolke oppgitt IP-filter - + Successfully refreshed Oppdatert - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Fortolket oppgitt IP-filter: La til %1 regler. @@ -7804,18 +7762,18 @@ readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10 Innstillinger - + Time Error Tidsfeil - + The start time and the end time can't be the same. Start- og slutt -tidspunktet kan ikke være det samme. - - + + Length Error Lengdefeil @@ -7900,169 +7858,169 @@ readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10 Peer is using NAT hole punching - + Likemann har slått hull gjennom NAT PeerListWidget - + Country/Region Land/region - + IP/Address IP/Adresse - + Port Port - + Flags Flagg - + Connection Tilkobling - + Client i.e.: Client application Klient - + Peer ID Client i.e.: Client resolved from Peer ID Likemanns-ID-klient - + Progress i.e: % downloaded Framdrift - + Down Speed i.e: Download speed Ned-hastighet - + Up Speed i.e: Upload speed Opp-hastighet - + Downloaded i.e: total data downloaded Nedlastet - + Uploaded i.e: total data uploaded Opplastet - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevans - + Files i.e. files that are being downloaded right now Filer - + Column visibility Kolonnesynlighet - + Resize columns Tilpass kolonnebredde - + Resize all non-hidden columns to the size of their contents Tilpass bredden til alle synlige kolonner til innholdet - + Add peers... Legg til likemenn … - - + + Adding peers Legger til likemenn - + Some peers cannot be added. Check the Log for details. Noen likemenn kunne ikke legges til. Se loggen for flere detaljer. - + Peers are added to this torrent. Likemenn er lagt til denne torrenten. - - + + Ban peer permanently Bannlys likemann for godt - + Cannot add peers to a private torrent Kan ikke legge til likemenn til en privat torrent - + Cannot add peers when the torrent is checking Kan ikke legge til likemenn når torrenten kontrolleres - + Cannot add peers when the torrent is queued Kan ikke legge til likemenn når torrenten er i kø - + No peer was selected Ingen likemenn ble valgt - + Are you sure you want to permanently ban the selected peers? Er du sikker på at du vil bannlyse permanent de valgte likemennene? - + Peer "%1" is manually banned Likemannen «%1» er manuelt bannlyst - + N/A I/T - + Copy IP:port Kopier IP:port @@ -8343,34 +8301,27 @@ De uavinstallerbare programtilleggene ble avskrudd. PowerManagement - qBittorrent is active - qBittorrent er aktiv + qBittorrent er aktiv PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Strømstyringen fant passende D-Bus-grensesnitt. Grensesnitt: %1 + Strømstyringen fant passende D-Bus-grensesnitt. Grensesnitt: %1 - Power management error. Did not found suitable D-Bus interface. - Strømstyringsfeil. Fant ikke noe passende D-Bus-grensesnitt. + Strømstyringsfeil. Fant ikke noe passende D-Bus-grensesnitt. - - - Power management error. Action: %1. Error: %2 - Strømstyringsfeil. Handling: %1. Feil: %2 + Strømstyringsfeil. Handling: %1. Feil: %2 - Power management unexpected error. State: %1. Error: %2 - Uventet feil ved strømstyring. Tilstand: %1. Feil: %2 + Uventet feil ved strømstyring. Tilstand: %1. Feil: %2 @@ -8614,12 +8565,12 @@ De uavinstallerbare programtilleggene ble avskrudd. Ratio / Time Active (in months), indicates how popular the torrent is - + Forhold / Tid aktiv (i måneder), antyder hvor populær torrenten er Popularity: - + Popularitet: @@ -8654,7 +8605,7 @@ De uavinstallerbare programtilleggene ble avskrudd. Private: - + Privat: @@ -8662,153 +8613,124 @@ De uavinstallerbare programtilleggene ble avskrudd. Lagringsmappe: - + Never Aldri - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (har %3) - - + + %1 (%2 this session) %1 (%2 denne økt) - - + + N/A I/T - + Yes - Ja + Ja - + No - Nei + Nei - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (delt i %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 totalt) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 gj.sn.) - + Add web seed Add HTTP source - + Legg til nettdeler - + Add web seed: - + Legg til nettdeler: - - + + This web seed is already in the list. - + Nettdeleren er allerede i listen. - New Web seed - Ny nettdeler - - - Remove Web seed - Fjern nettdeler - - - Copy Web seed URL - Kopier adresse for nettdeler - - - Edit Web seed URL - Rediger adresse for nettdeler - - - + Filter files... Filtrer filer … - + Add web seed... - + Legg til nettdeler … - + Remove web seed - + Fjern nettdeler - + Copy web seed URL - + Kopier adresse for nettdeler - + Edit web seed URL... - + Rediger adresse for nettdeler … - + Speed graphs are disabled Hastighetsgrafer er slått av - + You can enable it in Advanced Options Kan slås på under avanserte innstillinger - New URL seed - New HTTP source - Ny nettadressedeler - - - New URL seed: - Ny nettadressedeler - - - This URL seed is already in the list. - Denne nettadressedeleren er allerede i listen. - - - + Web seed editing Nettdeler-redigering - + Web seed URL: Nettdeleradresse: @@ -8816,33 +8738,33 @@ De uavinstallerbare programtilleggene ble avskrudd. RSS::AutoDownloader - - + + Invalid data format. Ugyldig dataformat. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Kunne ikke lagre RSS AutoDownloader-data i %1. Feil: %2 - + Invalid data format Ugyldig dataformat - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS-artikkel «%1» aksepteres av regel «%2». Forsøker å legge til torrent … - + Failed to read RSS AutoDownloader rules. %1 Klarte ikke laste inn RSS AutoDownloader-regler. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Kunne ikke laste inn RSS AutoDownloader-regler. Grunn: %1 @@ -8850,22 +8772,22 @@ De uavinstallerbare programtilleggene ble avskrudd. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Mislyktes i å laste ned RSS-kanalen hos «%1». Årsak: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-kanalen hos «%1» ble oppdatert. %2 nye artikler ble lagt til. - + Failed to parse RSS feed at '%1'. Reason: %2 Klarte ikke å fortolke RSS-kanalen hos «%1». Årsak: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Lastet ned RSS-kanalen fra «%1». Starter analysering. @@ -8914,12 +8836,12 @@ De uavinstallerbare programtilleggene ble avskrudd. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Klarte ikke lagre oppsett av RSS-økt. Fil: «%1». Feil: «%2» - + Couldn't save RSS session data. File: "%1". Error: "%2" Klarte ikke lagre øktdata for RSS. Fil: «%1». Feil: «%2» @@ -8941,76 +8863,121 @@ De uavinstallerbare programtilleggene ble avskrudd. - + Item doesn't exist: %1. Elementet finnes ikke: %1 - Couldn't move folder into itself. - Kan ikke flytte mappe til seg selv. + Kan ikke flytte mappe til seg selv. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Kan ikke slette rotmappe. - + Failed to read RSS session data. %1 Klarte ikke lese øktdata for RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Klarte ikke tolke øktdata for RSS. Fil: «%1». Feil: «%2» - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Klarte ikke laste øktdata for RSS. Fil: «%1». Feil: «Ugyldig dataformat.» - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Klarte ikke laste RSS-kilde. Kilde: «%1». Årsak: URL kreves. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Klarte ikke laste RSS-kilde. Kilde: «%1». Årsak: Ugyldig UID. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Fant duplisert RSS-kilde. UID: «%1». Feil: Oppsettet er ugyldig. - + Couldn't load RSS item. Item: "%1". Invalid data format. Klarte ikke laste RSS-element. Element: «%1». Ugyldig dataformat. - + Corrupted RSS list, not loading it. Ugyldig RSS-liste lastes ikke. - + Incorrect RSS Item path: %1. Uriktig nyhetsmatingselemetsti: %1. - + RSS item with given path already exists: %1. RSS-informasjonskanal med angitt sti finnes allerede: %1|. - + Parent folder doesn't exist: %1. Overnevnte mappe finnes ikke: %1 + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Informasjonskanal finnes ikke: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sek + + + + Default + Forvalgt + + RSSWidget @@ -9110,78 +9077,77 @@ De uavinstallerbare programtilleggene ble avskrudd. + Feed options... + + + Edit feed URL... - Rediger informasjonskanalens adresse … + Rediger informasjonskanalens adresse … - Edit feed URL - Rediger informasjonskanalens adresse + Rediger informasjonskanalens adresse - + Please choose a folder name Velg et mappenavn - + Folder name: Mappenavn: - + New folder Ny mappe - - Please type a RSS feed URL - Skriv inn informasjonskanalens nettadresse + Skriv inn informasjonskanalens nettadresse - - Feed URL: - Informasjonskanalens adresse: + Informasjonskanalens adresse: - + Deletion confirmation Slettingsbekreftelse - + Are you sure you want to delete the selected RSS feeds? Er du sikker på at du vil slette de valgte informasjonskanalene? - + Please choose a new name for this RSS feed Velg et nytt navn for denne informasjonskanalen - + New feed name: Nytt navn for informasjonskanal: - + Rename failed Klarte ikke endre navn - + Date: Dato: - + Feed: Informasjonskanal: - + Author: Utvikler: @@ -9318,10 +9284,6 @@ De uavinstallerbare programtilleggene ble avskrudd. i.e: Number of partial sources Snyltere - - Search engine - Søkemotor - Filter search results... @@ -9411,17 +9373,17 @@ De uavinstallerbare programtilleggene ble avskrudd. Engine - + Motor: Engine URL - + Motoradresse Published On - + Publisert den @@ -9442,104 +9404,104 @@ De uavinstallerbare programtilleggene ble avskrudd. SearchPluginManager - + Unknown search engine plugin file format. Ukjent søkemotor-tilleggsfilformat. - + Plugin already at version %1, which is greater than %2 Tillegget er allerede ved versjon %1, som er større enn %2 - + A more recent version of this plugin is already installed. En nyere versjon av dette tillegget er allerede installert. - + Plugin %1 is not supported. %1-tillegget er ikke støttet. - - + + Plugin is not supported. Tillegget er ikke støttet. - + Plugin %1 has been successfully updated. %1-tillegget har blitt vellykket oppdatert. - + All categories Alle kategorier - + Movies Filmer - + TV shows TV-serier - + Music Musikk - + Games Spill - + Anime Anime - + Software Programvare - + Pictures Bilder - + Books Bøker - + Update server is temporarily unavailable. %1 Oppdateringstjeneren er midlertidlig utilgjengelig. %1 - - + + Failed to download the plugin file. %1 Nedlasting av tilleggsfilen mislyktes. %1 - + Plugin "%1" is outdated, updating to version %2 «%1»-tillegget er utdatert, derfor oppdateres den til versjon %2 - + Incorrect update info received for %1 out of %2 plugins. Feilaktig oppdateringsinfo ble mottatt for %1 av %2 tillegg. - + Search plugin '%1' contains invalid version string ('%2') Søkemotortillegget «%1» inneholder en ugyldig versjonsstreng («%2») @@ -9565,137 +9527,129 @@ Klikk «Søk etter programtillegg …»-knappen nederst til høyre i vinduet for Søk i programtillegg … - + A phrase to search for. Søkefrase. - + Spaces in a search term may be protected by double quotes. Mellomrom i søkebegrep kan være beskyttet av doble anførselstegn. - + Example: Search phrase example Eksempel: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: søk etter <b>foo bar</b> - + All plugins Alle programtillegg - + Only enabled Kun aktiverte - - + + Invalid data format. - Ugyldig dataformat. + Ugyldig dataformat. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: søk etter <b>foo</b> og <b>bar</b> - + Refresh - + Oppdater - + Close tab Lukk fane - + Close all tabs Lukk alle faner - + Select... Velg … - - + + Search Engine Søkemotor - - + + Please install Python to use the Search Engine. Installer Python for å bruke søkemotoren. - + Empty search pattern Tom søkestreng - + Please type a search pattern first Skriv en søkestreng først - + Stop Stopp - - Search has finished - Søket er ferdig - - - Search has failed - Søket mislyktes - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Klarte ikke laste inn lagrede tilstandsdata for søkegrensesnittet. Fil: «%1». Feil: «%2» - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Klarte ikke laste inn lagrede søkeresultater. Fane: «%1». Fil: «%2». Feil: «%3» - + Failed to save Search UI state. File: "%1". Error: "%2" - + Klarte ikke lagre tilstand for søkegrensesnittet. Fil: «%1». Feil: «%2» - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Klarte ikke lagre søkeresultatet. Fane: «%1». Fil: «%2». Feil: «%3» - + Failed to load Search UI history. File: "%1". Error: "%2" - + Klarte ikke laste inn søkegrensesnittets historikk. Fil: «%1». Feil: «%2» - + Failed to save search history. File: "%1". Error: "%2" - + Klarte ikke lagre søkehistorikken. Fil: «%1». Feil: «%2» @@ -10091,67 +10045,77 @@ Klikk «Søk etter programtillegg …»-knappen nederst til høyre i vinduet for StatusBar - + Connection status: Tilkoblingsstatus: - - + + No direct connections. This may indicate network configuration problems. Ingen direkte tilkoblinger. Dette kan indikere problemer med nettverksoppsettet. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Ekstern IP: I/T + + + + DHT: %1 nodes DHT: %1 noder - + qBittorrent needs to be restarted! qBittorrent må startes på nytt. - - + + Connection Status: Tilkoblingsstatus: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Frakoblet. Dette betyr vanligvis at qBittorrent ikke klarte å lytte til den valgte porten for innkommende tilkoblinger. - + Online Tilkoblet - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Eksterne IP-er: %1, %2 + + + + External IP: %1%2 + Ekstern IP: %1%2 + + + Click to switch to alternative speed limits Klikk for å bytte til alternative hastighetsgrenser - + Click to switch to regular speed limits Klikk for å bytte til vanlige hastighetsgrenser @@ -10179,23 +10143,15 @@ Klikk «Søk etter programtillegg …»-knappen nederst til høyre i vinduet for Completed (0) Fullførte (0) - - Resumed (0) - Gjenopptatte (0) - - - Paused (0) - Satt på pause (0) - Running (0) - + Kjører (0) Stopped (0) - + Stoppet (0) @@ -10260,49 +10216,33 @@ Klikk «Søk etter programtillegg …»-knappen nederst til høyre i vinduet for Running (%1) - + Kjører (%1) Stopped (%1) - + Stoppet (%1) Start torrents - + Start torrenter Stop torrents - - - - Paused (%1) - Satt på pause (%1) + Stopp torrenter Moving (%1) Flytter (%1) - - Resume torrents - Gjenoppta torrenter - - - Pause torrents - Sett torrenter på pause - Remove torrents Fjern torrenter - - Resumed (%1) - Gjenopptatte (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Klikk «Søk etter programtillegg …»-knappen nederst til høyre i vinduet for Remove unused tags Fjern ubrukte etiketter - - Resume torrents - Gjenoppta torrenter - - - Pause torrents - Sett torrenter på pause - Remove torrents Fjern torrenter - - New Tag - Ny etikett - Start torrents - + Start torrenter Stop torrents - + Stopp torrenter @@ -10409,7 +10337,7 @@ Klikk «Søk etter programtillegg …»-knappen nederst til høyre i vinduet for Add tag - + Legg til etikett @@ -10726,17 +10654,17 @@ Velg et annet navn og prøv igjen. TorrentCreatorController - + Too many active tasks For mange aktive oppgaver - + Torrent creation is still unfinished. Torrenten er fortsatt ikke opprettet. - + Torrent creation failed. Klarte ikke opprette torrent. @@ -10988,17 +10916,6 @@ Velg et annet navn og prøv igjen. Overvåker mappe: «%1» - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Klarte ikke allokere minne ved lesing av fil. Fil: «%1». Feil: «%2» - - - Invalid metadata - Ugyldig metadata - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Velg et annet navn og prøv igjen. Torrent Share Limits - - - - Torrent speed limits - Hastighetsgrenser for torrent + Delingsgrenser for torrent @@ -11054,7 +10967,7 @@ Velg et annet navn og prøv igjen. Torrent Speed Limits - + Hastighetsgrenser for torrent @@ -11072,34 +10985,6 @@ Velg et annet navn og prøv igjen. Upload: Opplasting: - - Torrent share limits - Delingsgrenser for torrent - - - Use global share limit - Bruk global delingsgrense - - - Set no share limit - Fri delingsgrense - - - Set share limit to - Sett delingsgrense til - - - ratio - forhold - - - total minutes - totalt antall minutter - - - inactive minutes - antall inaktive minutter - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Velg et annet navn og prøv igjen. Not applicable to private torrents Kan ikke anvendes på private torrenter - - No share limit method selected - Ingen delegrensemetode har blitt valgt - - - Please select a limit method first - Velg en begrensningsmetode først - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Velg et annet navn og prøv igjen. Action when the limit is reached: - + Handling når grensen er nådd: Stop torrent - + Stopp torrent Remove torrent - Fjern torrent + Fjern torrent Remove torrent and its content - + Fjern torrenten og innholdet Enable super seeding for torrent - Skru på superdeling av torrent + Skru på superdeling av torrent @@ -11233,14 +11110,10 @@ Velg et annet navn og prøv igjen. Torrent Tags Torrent-etiketter - - New Tag - Ny etikett - Add tag - + Legg til etikett @@ -11271,90 +11144,90 @@ Velg et annet navn og prøv igjen. TorrentsController - + Error: '%1' is not a valid torrent file. Feil: «%1» er ikke en gyldig torrentfil. - + Priority must be an integer Prioritet må være et helt tall - + Priority is not valid Prioritet er ikke gyldig - + Torrent's metadata has not yet downloaded Torrents metadata har ikke lastet ned ennå - + File IDs must be integers Fil-ID-er må være heltall - + File ID is not valid Fil-ID er ugyldig - - - - + + + + Torrent queueing must be enabled Køoppstilling av torrenter må være skrudd på - - + + Save path cannot be empty Lagringsstien kan ikke være tom - - + + Cannot create target directory Kan ikke opprette målmappe - - + + Category cannot be empty Kategorien kan ikke være tom - + Unable to create category Kunne ikke opprette kategorien - + Unable to edit category Kunne ikke redigere kategorien - + Unable to export torrent file. Error: %1 Klarte ikke eksportere torrent-fil. Feil: %1 - + Cannot make save path Kan ikke opprette lagringsstien "%1" is not a valid URL - + «%1» er ikke en gyldig adresse URL scheme must be one of [%1] - + Adresseskjemaet må være en av [%1] @@ -11362,39 +11235,39 @@ Velg et annet navn og prøv igjen. Parameteren «sort» er ugyldig - + "%1" is not an existing URL - + «%1» er ikke en eksisterende adresse - + "%1" is not a valid file index. «%1» er ikke en gyldig filindeks. - + Index %1 is out of bounds. Indeksen %1 kan ikke nås. - - + + Cannot write to directory Kan ikke skrive til mappen - + WebUI Set location: moving "%1", from "%2" to "%3" Velg nettgrensesnitt-plassering: Flytter «%1», fra «%2» til «%3» - + Incorrect torrent name Feil torrentnavn - - + + Incorrect category name Feil kategorinavn @@ -11477,45 +11350,33 @@ Velg et annet navn og prøv igjen. Invalid state! - + Ugyldig tilstand! URL/Announce Endpoint - + URL/annonseringsendepunkt BT Protocol - + BT-protokoll Next Announce - + Neste annonsering Min Announce - - - - Invalid status! - Ugyldig status! - - - URL/Announce endpoint - URL/annonseringsendepunkt + Minste annonsering Tier Nivå - - Protocol - Protokoll - Status @@ -11546,18 +11407,6 @@ Velg et annet navn og prøv igjen. Message Melding - - Next announce - Neste annonsering - - - Min announce - Minste annonsering - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Velg et annet navn og prøv igjen. Denne torrenten er privat - + Tracker editing Sporer-redigering - + Tracker URL: Sporer-URL: - - + + Tracker editing failed Sporer-redigering mislyktes - + The tracker URL entered is invalid. Sporer-URLen som ble skrevet inn er ugyldig - + The tracker URL already exists. Sporer-URLen finnes allerede. - + Edit tracker URL... Rediger sporerens nettadresse … - + Remove tracker Fjern sporer - + Copy tracker URL Kopier sporer-URLen - + Force reannounce to selected trackers Tving reannonsering til de valgte sporerne - + Force reannounce to all trackers Tving reannonsering til alle sporerne - + Resize columns Tilpass kolonnebredde - + Resize all non-hidden columns to the size of their contents Tilpass bredden til alle synlige kolonner til innholdet - + Add trackers... Legg til sporere … - + Column visibility Kolonnesynlighet @@ -11716,20 +11565,12 @@ Velg et annet navn og prøv igjen. Start torrents - + Start torrenter Stop torrents - - - - Resume torrents - Gjenoppta torrenter - - - Pause torrents - Sett torrenter på pause + Stopp torrenter @@ -11853,10 +11694,6 @@ Velg et annet navn og prøv igjen. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Kontrollerer gjenopptakelsesdata - - Paused - Satt på pause - Completed @@ -11897,21 +11734,16 @@ Velg et annet navn og prøv igjen. % Done Framdrift - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Stoppet Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11946,7 +11778,7 @@ Velg et annet navn og prøv igjen. Popularity - + Popularitet @@ -12027,22 +11859,17 @@ Velg et annet navn og prøv igjen. Time Active Time (duration) the torrent is active (not stopped) - Har vært aktiv i + Aktivitetstid Yes - Ja + Ja No - Nei - - - Time Active - Time (duration) the torrent is active (not paused) - Har vært aktiv i + Nei @@ -12114,12 +11941,12 @@ Velg et annet navn og prøv igjen. Private Flags private torrents - + Privat Ratio / Time Active (in months), indicates how popular the torrent is - + Forhold / Tid aktiv (i måneder), antyder hvor populær torrenten er @@ -12144,358 +11971,319 @@ Velg et annet navn og prøv igjen. TransferListWidget - + Column visibility Kolonnesynlighet - + Recheck confirmation Bekreftelse av ny gjennomsjekking - + Are you sure you want to recheck the selected torrent(s)? Er du sikker på at du vil sjekke valgte torrent(er) på nytt? - + Rename Gi nytt navn - + New name: Nytt navn: - + Choose save path Velg lagringsmappe - Confirm pause - Bekreft pause - - - Would you like to pause all torrents? - Vil du sette alle torrenter på pause? - - - Confirm resume - Bekreft gjenopptaking - - - Would you like to resume all torrents? - Vil du gjenoppta alle torrenter? - - - + Unable to preview Kan ikke forhåndsvise - + The selected torrent "%1" does not contain previewable files Den valgte torrenten «%1» har ingen filer som kan forhåndsvises - + Resize columns Tilpass kolonnebredde - + Resize all non-hidden columns to the size of their contents Tilpass bredden til alle synlige kolonner til innholdet - + Enable automatic torrent management Slå på automatisk torrentbehandling - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Vil du virkelig slå på automatisk torrentbehandling for valgt(e) torrent(er)? De kan bli flyttet. - Add Tags - Legg til etiketter - - - + Choose folder to save exported .torrent files Hvor skal eksporterte .torrent-filer lagres - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Klarte ikke eksportere .torrent-fil. Torrent: «%1». Sti: «%2». Årsak: «%3» - + A file with the same name already exists Det finnes allerede en fil med dette navnet - + Export .torrent file error Feil ved eksportering av .torrent - + Remove All Tags Fjern alle etiketter - + Remove all tags from selected torrents? Fjern alle etiketter fra valgte torrenter? - + Comma-separated tags: Kommainndelte etiketter: - + Invalid tag Ugyldig etikett - + Tag name: '%1' is invalid Etikettnavnet: «%1» er ugyldig - &Resume - Resume/start the torrent - &Gjenoppta - - - &Pause - Pause the torrent - &Pause - - - Force Resu&me - Force Resume/start the torrent - P&åtving gjenopptakelse - - - + Pre&view file... &Forhåndsvis fil … - + Torrent &options... Torrent&innstillinger … - + Open destination &folder Åpne &målmappe - + Move &up i.e. move up in the queue Flytt &opp - + Move &down i.e. Move down in the queue Flytt &ned - + Move to &top i.e. Move to top of the queue Flytt til &toppen - + Move to &bottom i.e. Move to bottom of the queue Flytt til &bunnen - + Set loc&ation... Velg pl&assering - + Force rec&heck Påtving n&y gjennomsjekk - + Force r&eannounce Tving r&eannonsering - + &Magnet link &Magnetlenke - + Torrent &ID Torrent-&ID - + &Comment &Kommentar - + &Name &Navn - + Info &hash v1 Info-hash v&1 - + Info h&ash v2 Info-hash v&2 - + Re&name... Endre &navn … - + Edit trac&kers... Rediger &sporere … - + E&xport .torrent... E&ksporter torrent … - + Categor&y Kategor&i - + &New... New category... &Ny … - + &Reset Reset category Til&bakestill - + Ta&gs Merke&lapper - + &Add... Add / assign multiple tags... Le&gg til … - + &Remove All Remove all tags F&jern alle - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Kan ikke tvinge reannonsering når torrenten er stoppet/i kø/har feil/kontrolleres - + &Queue K&ø - + &Copy &Kopier - + Exported torrent is not necessarily the same as the imported Den eksporterte torrenten er ikke nødvendigvis lik den importerte - + Download in sequential order Last ned i rekkefølge - + Add tags - + Legg til etiketter - + Errors occurred when exporting .torrent files. Check execution log for details. Det oppstod feil ved eksportering av .torrent-filer. Undersøk kjøreloggen for flere detaljer. - + &Start Resume/start the torrent - + &Start - + Sto&p Stop the torrent - + Sto&pp - + Force Star&t Force Resume/start the torrent - + Tving star&t - + &Remove Remove the torrent Fje&rn - + Download first and last pieces first Last ned de første og siste delene først - + Automatic Torrent Management Automatisk torrentbehandling - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatisk modus betyr at diverse torrent-egenskaper (f.eks. lagringsmappe) vil bli bestemt av tilknyttet kategori - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Kan ikke tvinge reannonsering når torrenten er pauset/i kø/har feil/kontrolleres - - - + Super seeding mode Superdelingsmodus @@ -12571,7 +12359,7 @@ Velg et annet navn og prøv igjen. Set app style failed. Unknown style: "%1" - + Klarte ikke ta i bruk programstil. Ukjent stil: «%1» @@ -12627,32 +12415,32 @@ Velg et annet navn og prøv igjen. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Fant python-fortolker. Navn: «%1». Versjon: «%2» - + Failed to find Python executable. Path: "%1". Fant ikke python-fortolker. Sti: «%1». - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Fant ikke python3-fortolker i miljøvariabelen PATH. PATH: «%1» - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Fant ikke python-fortolker i miljøvariabelen PATH. PATH: «%1» - + Failed to find `python` executable in Windows Registry. Fant ikke python-fortolker i Windows-registeret - + Failed to find Python executable Fant ikke python-fortolker @@ -12744,52 +12532,52 @@ Velg et annet navn og prøv igjen. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Ugyldig økt-informasjonskapsel er oppgitt: «%1». Bruker standard i stedet for. - + Unacceptable file type, only regular file is allowed. Uakseptabel filtype, bare ordinære filer er tillatt. - + Symlinks inside alternative UI folder are forbidden. Symbolske lenker inni mapper for alternative grensesnitt er forbudt. - + Using built-in WebUI. Bruker det innebygde nettgrensesnittet. - + Using custom WebUI. Location: "%1". Bruker et tilpasset nettgrensesnitt. Plassering: «%1». - + WebUI translation for selected locale (%1) has been successfully loaded. Lastet inn nettgrensesnittets oversettelse for det valgte språket (%1). - + Couldn't load WebUI translation for selected locale (%1). Klarte ikke laste inn nettgrensesnittets oversettelse for det valgte språket (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Mangler skilletegn «:» i webgrensesnittets brukervalgte HTTP-hode: «%1» - + Web server error. %1 Feil fra web-tjener. %1 - + Web server error. Unknown error. Feil fra web-tjener. Ukjent feil. @@ -12847,7 +12635,7 @@ Velg et annet navn og prøv igjen. Unknown error - Ukjent feil + Ukjent feil diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index e4d5e7f04..fea874368 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -170,10 +170,6 @@ Never show again Nooit meer weergeven - - Torrent settings - Torrent-instellingen - Set as default category @@ -235,25 +231,25 @@ Stop-voorwaarde: - - + + None Geen - - + + Metadata received Metadata ontvangen - + Torrents that have metadata initially will be added as stopped. Torrents die in eerste instantie metadata hebben, worden toegevoegd als gestopt. - + Files checked Bestanden gecontroleerd @@ -368,112 +364,112 @@ Opslaan als .torrent-bestand... - + I/O Error I/O-fout - + Not Available This comment is unavailable Niet beschikbaar - + Not Available This date is unavailable Niet beschikbaar - + Not available Niet beschikbaar - + Magnet link Magneetkoppeling - + Retrieving metadata... Metadata ophalen... - - + + Choose save path Opslagpad kiezen - + No stop condition is set. Er is geen stop-voorwaarde ingesteld. - + Torrent will stop after metadata is received. Torrent zal stoppen nadat metadata is ontvangen. - + Torrent will stop after files are initially checked. Torrent zal stoppen nadat de bestanden in eerste instantie zijn gecontroleerd. - + This will also download metadata if it wasn't there initially. Dit zal ook metadata downloaden als die er aanvankelijk niet was. - + N/A N/B - + %1 (Free space on disk: %2) %1 (vrije ruimte op schijf: %2) - + Not available This size is unavailable. Niet beschikbaar - + Torrent file (*%1) Torrentbestand (*%1) - + Save as torrent file Opslaan als torrentbestand - + Couldn't export torrent metadata file '%1'. Reason: %2. Kon torrent-metadatabestand '%1' niet exporteren. Reden: %2. - + Cannot create v2 torrent until its data is fully downloaded. Kan v2-torrent niet aanmaken totdat de gegevens ervan volledig zijn gedownload. - + Filter files... Bestanden filteren... - + Parsing metadata... Metadata verwerken... - + Metadata retrieval complete Metadata ophalen voltooid @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Torrent downloaden... Bron: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Toevoegen van torrent mislukt. Bron: "%1". Reden: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Poging gedetecteerd om een dubbele torrent toe te voegen. Bron: %1. Bestaande torrent: %2. Resultaat: %3 + Poging gedetecteerd om een dubbele torrent toe te voegen. Bron: %1. Bestaande torrent: %2. Resultaat: %3 - + Merging of trackers is disabled Samenvoegen van trackers is uitgeschakeld - + Trackers cannot be merged because it is a private torrent Trackers kunnen niet worden samengevoegd omdat het een privétorrent is - + Trackers are merged from new source Trackers worden samengevoegd vanaf nieuwe bron + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrents opnieuw controleren bij voltooiing - - + + ms milliseconds ms - + Setting Instelling - + Value Value set for this setting Waarde - + (disabled) (uitgeschakeld) - + (auto) (automatisch) - - + + min minutes min - + All addresses Alle adressen - + qBittorrent Section qBittorrent-sectie - - + + Open documentation Documentatie openen - + All IPv4 addresses Alle IPv4-adressen - + All IPv6 addresses Alle IPv6-adressen - + libtorrent Section libtorrent-sectie - + Fastresume files Bestanden voor snel hervatten - + SQLite database (experimental) SQLite-database (experimenteel) - + Resume data storage type (requires restart) Opslagtype hervattingsgegevens (opnieuw starten vereist) - + Normal Normaal - + Below normal Lager dan normaal - + Medium Gemiddeld - + Low Laag - + Very low Zeer laag - + Physical memory (RAM) usage limit Gebruikslimiet fysiek geheugen (RAM) - + Asynchronous I/O threads Asynchrone I/O-threads - + Hashing threads Hashing-threads - + File pool size Grootte filepool - + Outstanding memory when checking torrents Vrij geheugen bij controleren van torrents - + Disk cache Schijfbuffer - - - - + + + + + s seconds s - + Disk cache expiry interval Interval voor verstrijken van schijfbuffer - + Disk queue size Grootte van wachtrij op schijf - - + + Enable OS cache Systeembuffer inschakelen - + Coalesce reads & writes Lezen en schrijven combineren - + Use piece extent affinity Affiniteit voor deeltjes in de buurt gebruiken - + Send upload piece suggestions Suggesties voor uploaden van deeltjes zenden - - - - - + + + + + 0 (disabled) 0 (uitgeschakeld) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Interval voor opslaan van hervattingsgegevens [0: uitgeschakeld] - + Outgoing ports (Min) [0: disabled] Uitgaande poorten (min) [0: uitgeschakeld] - + Outgoing ports (Max) [0: disabled] Uitgaande poorten (max) [0: uitgeschakeld] - + 0 (permanent lease) 0 (permanente lease) - + UPnP lease duration [0: permanent lease] UPnP-leaseduur [0: permanente lease] - + Stop tracker timeout [0: disabled] Timeout voor stoppen van tracker [0: uitgeschakeld] - + Notification timeout [0: infinite, -1: system default] Time-out melding [0: oneindig, -1: systeemstandaard] - + Maximum outstanding requests to a single peer Maximaal aantal openstaande verzoeken aan een enkele peer - - - - - + + + + + KiB KiB - + (infinite) (oneindig) - + (system default) (systeemstandaard) - + Delete files permanently - + Bestanden permanent verwijderen - + Move files to trash (if possible) - + Bestanden naar prullenbak verplaatsen (indien mogelijk) - + Torrent content removing mode - + Modus voor verwijderen van torrent-inhoud - + This option is less effective on Linux Deze optie is minder effectief op Linux - + Process memory priority Proces-geheugenprioriteit - + Bdecode depth limit Limiet Bdecode-diepte - + Bdecode token limit Limiet Bdecode-token - + Default Standaard - + Memory mapped files Bestanden opgeslagen in geheugen - + POSIX-compliant POSIX-conform - + Simple pread/pwrite - + Eenvoudige pread/pwrite - + Disk IO type (requires restart) Type schijf-IO (opnieuw starten vereist) - - + + Disable OS cache Systeembuffer uitschakelen - + Disk IO read mode Schijf-IO leesmodus - + Write-through Write-through - + Disk IO write mode Schijf-IO schrijfmodus - + Send buffer watermark Verzendbuffer-watermerk - + Send buffer low watermark Verzendbuffer laag watermerk - + Send buffer watermark factor Verzendbuffer watermerk factor - + Outgoing connections per second Uitgaande verbindingen per seconde - - + + 0 (system default) 0 (systeemstandaard) - + Socket send buffer size [0: system default] Socket-verzendbuffergrootte [0: systeemstandaard] - + Socket receive buffer size [0: system default] Socket-ontvangstbuffergrootte [0: systeemstandaard] - + Socket backlog size Grootte socket-backlog - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit Limiet .torrent-bestandsgrootte - + Type of service (ToS) for connections to peers Type dienst (ToS) voor verbindingen naar peers - + Prefer TCP TCP verkiezen - + Peer proportional (throttles TCP) Peer-proportioneel (vermindert TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Ondersteuning voor geïnternationaliseerde domeinnamen (IDN) - + Allow multiple connections from the same IP address Meerdere verbindingen van hetzelfde IP-adres toestaan - + Validate HTTPS tracker certificates Certificaten van HTTPS-trackers valideren - + Server-side request forgery (SSRF) mitigation Beperking van verzoekvervalsing aan de serverzijde (SSRF) - + Disallow connection to peers on privileged ports Verbinding met peers via systeempoorten weigeren - + It appends the text to the window title to help distinguish qBittorent instances Het voegt de tekst toe aan de venstertitel om qBittorrent-instanties te helpen onderscheiden - + Customize application instance name Naam van instantie van toepassing aanpassen - + It controls the internal state update interval which in turn will affect UI updates Het regelt het update-interval van de interne status, dat op zijn beurt UI-updates zal beïnvloeden - + Refresh interval Vernieuwinterval - + Resolve peer host names Hostnamen van peers oplossen - + IP address reported to trackers (requires restart) IP-adres gemeld aan trackers (opnieuw starten vereist) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Alle trackers opnieuw aankondigen wanneer IP of poort wijzigt - + Enable icons in menus Pictogrammen in menu's inschakelen - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Port forwarding inschakelen voor ingebedde tracker - + Enable quarantine for downloaded files Quarantaine voor gedownloade bestanden inschakelen - + Enable Mark-of-the-Web (MOTW) for downloaded files Mark-of-the-Web (MOTW) voor gedownloade bestanden inschakelen - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Van invloed op certificaatvalidatie en niet-torrent-protocol-activiteiten (bijv. RSS-feeds, programma-updates, torrentbestanden, geoip db, enz.) - + Ignore SSL errors - + SSL-fouten negeren - + (Auto detect if empty) (automatisch detecteren wanneer leeg) - + Python executable path (may require restart) Pad naar python-executable (kan herstart vereisen) - + Start BitTorrent session in paused state - + BitTorrent-sessie starten in gepauzeerde status - + sec seconds - sec + sec - + -1 (unlimited) - + -1 (onbegrensd) - + BitTorrent session shutdown timeout [-1: unlimited] - + Time-out voor uitschakelen van BitTorrent-sessie [-1: onbegrensd] - + Confirm removal of tracker from all torrents Verwijdering van tracker uit alle torrents bevestigen - + Peer turnover disconnect percentage Peer-omloop ontkoppelingspercentage - + Peer turnover threshold percentage Peer-omloop drempelpercentage - + Peer turnover disconnect interval Peer-omloop ontkoppelingsinterval - + Resets to default if empty Wordt teruggezet op standaard als deze leeg is - + DHT bootstrap nodes DHT-bootstrap-nodes - + I2P inbound quantity I2P inkomende hoeveelheid - + I2P outbound quantity I2P uitgaande hoeveelheid - + I2P inbound length I2P inkomende lengte - + I2P outbound length I2P uitgaande lengte - + Display notifications Meldingen weergeven - + Display notifications for added torrents Meldingen weergeven voor toegevoegde torrents - + Download tracker's favicon Favicon van tracker downloaden - + Save path history length Lengte geschiedenis opslagpaden - + Enable speed graphs Snelheidsgrafieken inschakelen - + Fixed slots Vaste slots - + Upload rate based Gebaseerd op uploadsnelheid - + Upload slots behavior Gedrag van uploadslots - + Round-robin Elk om beurt - + Fastest upload Snelste upload - + Anti-leech Anti-leech - + Upload choking algorithm Upload-choking-algoritme - + Confirm torrent recheck Torrent opnieuw controleren bevestigen - + Confirm removal of all tags Verwijderen van alle labels bevestigen - + Always announce to all trackers in a tier Altijd aankondigen bij alle trackers in een niveau - + Always announce to all tiers Altijd aankondigen bij alle niveaus - + Any interface i.e. Any network interface Om het even welke interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP gemengde modus algoritme - + Resolve peer countries Landen van peers oplossen - + Network interface Netwerkinterface - + Optional IP address to bind to Optioneel IP-adres om aan te binden - + Max concurrent HTTP announces Maximaal aantal gelijktijdige HTTP-aankondigingen - + Enable embedded tracker Ingebedde tracker inschakelen - + Embedded tracker port Poort ingebedde tracker @@ -1382,17 +1393,17 @@ Invalid directory path - + Ongeldig map-pad Directory does not exist - + Map bestaat niet Invalid mode, allowed values: %1 - + Ongeldige modus. Toegestane waarden: %1 @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Actief in draagbare modus. Profielmap automatisch gedetecteerd in: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Redundante opdrachtregelvlag gedetecteerd: "%1". Draagbare modus impliceert een relatieve snelhervatting. - + Using config directory: %1 Configuratiemap gebruiken: %1 - + Torrent name: %1 Naam torrent: %1 - + Torrent size: %1 Grootte torrent: %1 - + Save path: %1 Opslagpad: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds De torrent werd gedownload in %1. - - + + Thank you for using qBittorrent. Bedankt om qBittorrent te gebruiken. - + Torrent: %1, sending mail notification Torrent: %1, melding via mail verzenden - + Add torrent failed Toevoegen van torrent mislukt - + Couldn't add torrent '%1', reason: %2. Kon torrent '%1' niet toevoegen. Reden: %2 - + The WebUI administrator username is: %1 De WebUI-administrator-gebruikersnaam is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Het administratorwachtwoord voor WebUI is niet ingesteld. Er wordt een tijdelijk wachtwoord gegeven voor deze sessie: %1 - + You should set your own password in program preferences. U moet uw eigen wachtwoord instellen in de programmavoorkeuren. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. De WebUI is uitgeschakeld! Bewerk het configuratiebestand handmatig om de WebUI in te schakelen. - + Running external program. Torrent: "%1". Command: `%2` Extern programma uitvoeren. Torrent: "%1". Opdracht: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Extern programma uitvoeren mislukt. Torrent: "%1". Opdracht: `%2` - + Torrent "%1" has finished downloading Torrent '%1' is klaar met downloaden - + WebUI will be started shortly after internal preparations. Please wait... WebUI zal kort na de interne voorbereidingen worden opgestart. Even geduld... - - + + Loading torrents... Torrents laden... - + E&xit Sluiten - + I/O Error i.e: Input/Output Error I/O-fout - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Reden: %2 - + Torrent added Torrent toegevoegd - + '%1' was added. e.g: xxx.avi was added. '%1' werd toegevoegd. - + Download completed Download voltooid - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 gestart. Proces-ID: %2 - + This is a test email. - + Dit is een test e-mail. - + Test email - + Test e-mail - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' is klaar met downloaden. - + Information Informatie - + To fix the error, you may need to edit the config file manually. Om de fout te herstellen, moet u mogelijk het configuratiebestand handmatig bewerken. - + To control qBittorrent, access the WebUI at: %1 Gebruik de WebUI op %1 om qBittorrent te besturen - + Exit Afsluiten - + Recursive download confirmation Bevestiging voor recursief downloaden - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' bevat .torrent-bestanden, wilt u verdergaan met hun download? - + Never Nooit - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" .torrent-bestand binnenin torrent recursief downloaden. Bron-torrent: "%1". Bestand: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Instellen van gebruikslimiet fysiek geheugen (RAM) mislukt. Foutcode: %1. Foutbericht: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Instellen van gebruikslimiet fysiek geheugen (RAM) mislukt. Gevraagde grootte: %1. Harde systeemlimiet: %2. Foutcode: %3. Foutbericht: "%4" - + qBittorrent termination initiated Afsluiten van qBittorrent gestart - + qBittorrent is shutting down... qBittorrent wordt afgesloten... - + Saving torrent progress... Torrent-voortgang opslaan... - + qBittorrent is now ready to exit qBittorrent is nu klaar om af te sluiten @@ -1766,263 +1777,263 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Exporteren... - + Matches articles based on episode filter. Komt overeen met artikels gebaseerd op afleveringsfilter. - + Example: Voorbeeld: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match zal overeenkomen met aflevering 2, 5, 8 tot 15, 30 en verdere van seizoen 1 - + Episode filter rules: Afleveringsfilter-regels: - + Season number is a mandatory non-zero value Seizoensnummer is een verplichte "geen nul"-waarde - + Filter must end with semicolon Filter moet eindigen met een puntkomma - + Three range types for episodes are supported: Er worden drie bereiktypes voor afleveringen ondersteund: - + Single number: <b>1x25;</b> matches episode 25 of season one Enkel cijfer: <b>1x25;</b> komt overeen met aflevering 25 van seizoen 1 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normaal bereik: <b>1x25-40;</b> komt overeen met aflevering 25 tot 40 van seizoen 1 - + Episode number is a mandatory positive value Afleveringsnummer is een verplichte positieve waarde - + Rules Regels - + Rules (legacy) Regels (oud) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Oneindig bereik: <b>1x25-;</b> komt overeen met aflevering 25 en verder van seizoen 1, en alle afleveringen van latere seizoenen - + Last Match: %1 days ago Laatste overeenkomst: %1 dagen geleden - + Last Match: Unknown Laatste overeenkomst: onbekend - + New rule name Naam van nieuwe regel - + Please type the name of the new download rule. Typ de naam van de nieuwe downloadregel. - - + + Rule name conflict Regelnaam-conflict - - + + A rule with this name already exists, please choose another name. Een regel met deze naam bestaat reeds. Kies een andere naam. - + Are you sure you want to remove the download rule named '%1'? Weet u zeker dat u de downloadregel met naam '%1' wilt verwijderen? - + Are you sure you want to remove the selected download rules? Weet u zeker dat u de geselecteerde downloadregels wilt verwijderen? - + Rule deletion confirmation Bevestiging verwijderen regel - + Invalid action Ongeldige handeling - + The list is empty, there is nothing to export. De lijst is leeg, er is niets om te exporteren. - + Export RSS rules RSS-regels exporteren - + I/O Error I/O-fout - + Failed to create the destination file. Reason: %1 Doelbestand aanmaken mislukt. Reden: %1 - + Import RSS rules RSS-regels importeren - + Failed to import the selected rules file. Reason: %1 Importeren van geselecteerd regelbestand mislukt. Reden: %1 - + Add new rule... Nieuwe regel toevoegen... - + Delete rule Regel verwijderen - + Rename rule... Regel hernoemen... - + Delete selected rules Geselecteerde regels verwijderen - + Clear downloaded episodes... Gedownloade afleveringen wissen... - + Rule renaming Regelhernoeming - + Please type the new rule name Typ de naam van de nieuwe regel - + Clear downloaded episodes Gedownloade afleveringen wissen - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Weet u zeker dat u de lijst van gedownloade afleveringen voor de geselecteerde regel wilt wissen? - + Regex mode: use Perl-compatible regular expressions Regex-modus: Perl-compatibele reguliere expressies gebruiken - - + + Position %1: %2 Positie %1: %2 - + Wildcard mode: you can use U kunt volgende jokertekens gebruiken: - - + + Import error Importeerfout - + Failed to read the file. %1 Lezen van bestand mislukt. %1 - + ? to match any single character ? voor een enkel teken - + * to match zero or more of any characters * voor nul of meerdere tekens - + Whitespaces count as AND operators (all words, any order) Spaties tellen als AND-operatoren (alle woorden, om het even welke volgorde) - + | is used as OR operator | wordt gebruikt als OR-operator - + If word order is important use * instead of whitespace. Gebruik * in plaats van een spatie als woordvolgorde belangrijk is. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Een expressie met een lege %1-clausule (bijvoorbeeld %2) - + will match all articles. zal met alle artikels overeenkomen. - + will exclude all articles. zal alle artikels uitsluiten. @@ -2074,28 +2085,38 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Kan hervattingsgegevens niet verwerken: ongeldig formaat - - + + Cannot parse torrent info: %1 Kan torrent-informatie niet verwerken: %1 - + Cannot parse torrent info: invalid format Kan torrent-informatie niet verwerken: ongeldig formaat - + Mismatching info-hash detected in resume data Niet-overeenkomende info-hash gedetecteerd in hervattingsgegevens - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Kon metadata van torrent niet opslaan naar '%1'. Fout: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Kon hervattingsgegevens van torrent niet opslaan naar '%1'. Fout: %2. @@ -2106,16 +2127,17 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o + Cannot parse resume data: %1 Kan hervattingsgegevens niet verwerken: %1 - + Resume data is invalid: neither metadata nor info-hash was found Hervattingsgegevens zijn ongeldig: geen metadata of info-hash gevonden - + Couldn't save data to '%1'. Error: %2 Kon gegevens niet opslaan naar '%1'. Fout: %2 @@ -2123,38 +2145,60 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o BitTorrent::DBResumeDataStorage - + Not found. Niet gevonden. - + Couldn't load resume data of torrent '%1'. Error: %2 Kon hervattingsgegevens van torrent '%1' niet laden. Fout: %2 - - + + Database is corrupted. Database is beschadigd. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Kon Write-Ahead Logging (WAL) logboekmodus niet inschakelen. Fout: %1. - + Couldn't obtain query result. Kon zoekresultaat niet verkrijgen. - + WAL mode is probably unsupported due to filesystem limitations. WAL-modus wordt waarschijnlijk niet ondersteund door beperkingen in het bestandssysteem. - + + + Cannot parse resume data: %1 + Kan hervattingsgegevens niet verwerken: %1 + + + + + Cannot parse torrent info: %1 + Kan torrent-informatie niet verwerken: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Kon transactie niet starten. Fout: %1 @@ -2162,22 +2206,22 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Kon metadata van torrent niet opslaan. Fout: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Kon hervattingsgegevens voor torrent '%1' niet opslaan. Fout: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Kon hervattingsgegevens van torrent '%1' niet verwijderen. Fout: %2 - + Couldn't store torrents queue positions. Error: %1 Kon torrentwachtrijposities niet opslaan. Fout: %1 @@ -2185,530 +2229,507 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Ondersteuning voor Distributed Hash Table (DHT): %1 - - - - - - - - - + + + + + + + + + ON AAN - - - - - - - - - + + + + + + + + + OFF UIT - - + + Local Peer Discovery support: %1 Ondersteuning voor lokale peer-ontdekking: %1 - + Restart is required to toggle Peer Exchange (PeX) support Opnieuw opstarten is vereist om ondersteuning voor peer-uitwisseling (PeX) in/uit te schakelen - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Hervatten van torrent mislukt. Torrent: "%1". Reden: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Hervatten van torrent mislukt. Inconsistente torrent-ID gedetecteerd. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Inconsistente gegevens gedetecteerd: categorie ontbreekt in het configuratiebestand. Categorie zal worden hersteld, maar de instellingen worden teruggezet naar standaard. Torrent: "%1". Categorie: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Inconsistente gegevens gedetecteerd: ongeldige categorie. Torrent: "%1". Categorie: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Gedetecteerd dat de opslagpaden van de herstelde categorie en het huidige opslagpad van de torrent niet overeenkomen. Torrent is nu overgeschakeld naar handmatige modus. Torrent: "%1". Categorie: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Inconsistente gegevens gedetecteerd: label ontbreekt in het configuratiebestand. Het label zal worden hersteld. Torrent: "%1". Label: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Inconsistente gegevens gedetecteerd: ongeldig label. Torrent: "%1". Label: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Systeem-wake-up-gebeurtenis gedetecteerd. Opnieuw aankondigen bij alle trackers... - + Peer ID: "%1" Peer-ID: "%1" - + HTTP User-Agent: "%1" HTTP user-agent: "%1" - + Peer Exchange (PeX) support: %1 Ondersteuning voor peer-uitwisseling (PeX): %1 - - + + Anonymous mode: %1 Anonieme modus: %1 - - + + Encryption support: %1 Versleutelingsondersteuning %1 - - + + FORCED GEFORCEERD - + Could not find GUID of network interface. Interface: "%1" Kon GUID van netwerkinterface niet terugvinden. Interface: %1 - + Trying to listen on the following list of IP addresses: "%1" Proberen luisteren op de volgende lijst van IP-adressen: "%1" - + Torrent reached the share ratio limit. Torrent heeft de limiet voor deelverhouding bereikt. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent verwijderd. - - - Removed torrent and deleted its content. - Torrent en zijn inhoud verwijderd. - - - Torrent paused. - Torrent gepauzeerd. - - - + Super seeding enabled. Super-seeding ingeschakeld. - + Torrent reached the seeding time limit. Torrent heeft de limiet voor seed-tijd bereikt. - + Torrent reached the inactive seeding time limit. Torrent heeft de limiet voor inactieve seed-tijd bereikt. - + Failed to load torrent. Reason: "%1" Laden van torrent mislukt. Reden: "%1 - + I2P error. Message: "%1". I2P-fout. Bericht: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP-ondersteuning: AAN - + Saving resume data completed. - + Opslaan van hervattingsgegevens voltooid. - + BitTorrent session successfully finished. - + BitTorrent-sessie met succes voltooid. - + Session shutdown timed out. - + Uitschakelen van sessie is verlopen. - + Removing torrent. - + Torrent verwijderen. - + Removing torrent and deleting its content. - + Torrent en zijn inhoud verwijderen. - + Torrent stopped. - + Torrent gestopt. - + Torrent content removed. Torrent: "%1" - + Torrent-inhoud verwijderd. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Verwijderen van torrent-inhoud mislukt. Torrent: "%1". Fout: "%2" - + Torrent removed. Torrent: "%1" - + Torrent verwijderd. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Poging gedetecteerd om een dubbele torrent toe te voegen. Bestaande torrent: %1. Resultaat: %2. - + Merging of trackers is disabled - Samenvoegen van trackers is uitgeschakeld + Samenvoegen van trackers is uitgeschakeld - + Trackers cannot be merged because it is a private torrent - Trackers kunnen niet worden samengevoegd omdat het een privétorrent is + Trackers kunnen niet worden samengevoegd omdat het een privétorrent is - + Trackers are merged from new source - Trackers worden samengevoegd vanaf nieuwe bron + Trackers worden samengevoegd vanaf nieuwe bron - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP-ondersteuning: UIT - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Exporteren van torrent mislukt. Torrent: "%1". Bestemming: "%2". Reden: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Opslaan van hervattingsgegevens afgebroken. Aantal openstaande torrents: %1 - + The configured network address is invalid. Address: "%1" Het geconfigureerde netwerkadres is ongeldig. Adres: "%1 - - + + Failed to find the configured network address to listen on. Address: "%1" Kon het geconfigureerde netwerkadres om op te luisteren niet vinden. Adres: "%1" - + The configured network interface is invalid. Interface: "%1" De geconfigureerde netwerkinterface is ongeldig. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Ongeldig IP-adres verworpen tijdens het toepassen van de lijst met verbannen IP-adressen. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Tracker aan torrent toegevoegd. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Tracker uit torrent verwijderd. Torrent: "%1". Tracker: "%2". - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL-seed aan torrent toegevoegd. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL-seed uit torrent verwijderd. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Verwijderen van part-bestand mislukt. Torrent: "%1". Reden: "%2". - Torrent paused. Torrent: "%1" - Torrent gepauzeerd. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent hervat. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Downloaden van torrent voltooid. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Verplaatsen van torrent geannuleerd. Torrent: "%1". Bron: "%2". Bestemming: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent gestopt. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Verplaatsen van torrent in wachtrij zetten mislukt. Torrent: "%1". Bron: "%2". Bestemming: "%3". Reden: torrent wordt momenteel naar de bestemming verplaatst - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Verplaatsen van torrent in wachtrij zetten mislukt. Torrent: "%1". Bron: "%2". Bestemming: "%3". Reden: beide paden verwijzen naar dezelfde locatie - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Verplaatsen van torrent in wachtrij gezet. Torrent: "%1". Bron: "%2". Bestemming: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Torrent beginnen verplaatsen. Torrent: "%1". Bestemming: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Opslaan van configuratie van categorieën mislukt. Bestand: "%1". Fout: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Verwerken van configuratie van categorieën mislukt. Bestand: "%1". Fout: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IP-filterbestand met succes verwerkt. Aantal toegepaste regels: %1 - + Failed to parse the IP filter file Verwerken van IP-filterbestand mislukt - + Restored torrent. Torrent: "%1" Torrent hersteld. Torrent: "%1" - + Added new torrent. Torrent: "%1" Nieuwe torrent toegevoegd. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrentfout. Torrent: "%1". Fout: "%2". - Removed torrent. Torrent: "%1" - Torrent verwijderd. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent en zijn inhoud verwijderd. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent mist SSL-parameters. Torrent: “%1”. Bericht: “%2” - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Bestandsfoutwaarschuwing. Torrent: "%1". Bestand: "%2". Reden: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP: port mapping mislukt. Bericht: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP: port mapping gelukt. Bericht: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP-filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). gefilterde poort (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). systeempoort (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent-sessie heeft een ernstige fout ondervonden. Reden: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5-proxyfout. Adres: %1. Bericht: "%2" - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 gemengde modus beperkingen - + Failed to load Categories. %1 Laden van categorieën mislukt: %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Laden van configuratie van categorieën mislukt. Bestand: "%1". Fout: "ongeldig gegevensformaat" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent verwijderd maar verwijderen van zijn inhoud en/of part-bestand is mislukt. Torrent: "%1". Fout: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 is uitgeschakeld - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 is uitgeschakeld - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Raadpleging van URL-seed-DNS mislukt. Torrent: "%1". URL: "%2". Fout: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Foutmelding ontvangen van URL-seed. Torrent: "%1". URL: "%2". Bericht: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Luisteren naar IP gelukt: %1. Poort: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Luisteren naar IP mislukt. IP: "%1". Poort: "%2/%3". Reden: "%4" - + Detected external IP. IP: "%1" Externe IP gedetecteerd. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Fout: de interne waarschuwingswachtrij is vol en er zijn waarschuwingen weggevallen, waardoor u mogelijk verminderde prestaties ziet. Soort weggevallen waarschuwingen: "%1". Bericht: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Verplaatsen van torrent gelukt. Torrent: "%1". Bestemming: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Verplaatsen van torrent mislukt. Torrent: "%1". Bron: "%2". Bestemming: "%3". Reden: "%4" @@ -2758,47 +2779,47 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Kon niet schrijven naar bestand. Reden: "%1". Torrent is nu in modus "alleen uploaden". - + Download first and last piece first: %1, torrent: '%2' Eerste en laatste deeltjes eerst downloaden: %1, torrent: '%2' - + On Aan - + Off Uit - + Failed to reload torrent. Torrent: %1. Reason: %2 Herladen van torrent mislukt. Torrent: %1. Reden: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Genereren van hervattingsgegevens mislukt. Torrent: "%1". Reden: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Herstellen van torrent mislukt. Bestanden zijn waarschijnlijk verplaatst of opslag is niet toegankelijk. Torrent: "%1". Reden: "%2". - + Missing metadata Ontbrekende metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Naam wijzigen van bestand mislukt. Torrent: "%1", bestand: "%2", reden: "%3" - + Performance alert: %1. More info: %2 Prestatiewaarschuwing: %1. Meer informatie: %2 @@ -2835,11 +2856,6 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Expected integer number in environment variable '%1', but got '%2' Geheel nummer verwacht in omgevingsvariabele '%1', maar kreeg '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' moet syntax '%1 = %2' volgen - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' moet syntax '%1 = %2' volgen + Parameter '%1' moet syntax '%1 = %2' volgen @@ -2968,11 +2984,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Add torrents as running or stopped - - - - Add torrents as started or paused - Torrents als gestart of gepauzeerd toevoegen + Torrents toevoegen als actief of gestopt @@ -3063,20 +3075,12 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Start torrents - + Torrents starten Stop torrents - - - - Resume torrents - Torrents hervatten - - - Pause torrents - Torrents pauzeren + Torrents stoppen @@ -3099,7 +3103,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o System - + Systeem @@ -3174,11 +3178,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Also remove the content files - - - - Also permanently delete the files - Bestanden ook permanent verwijderen + Ook de inhoud-bestanden verwijderen @@ -3390,47 +3390,43 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Pattern Format - + Patroon-formaat Plain text - + Platte tekst Wildcards - + Jokertekens Regular expression - + Reguliere expressie GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent downloaden... Bron: "%1" - Trackers cannot be merged because it is a private torrent - Trackers kunnen niet worden samengevoegd omdat het een privétorrent is - - - + Torrent is already present Torrent is reeds aanwezig - + Trackers cannot be merged because it is a private torrent. - + Trackers kunnen niet worden samengevoegd omdat het een privétorrent is. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' staat reeds in de overdrachtlijst. Wilt u trackers samenvoegen vanuit de nieuwe bron? @@ -3548,6 +3544,40 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Ondersteunde afbeeldingsbestanden + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Energiebeheer heeft geschikte D-Bus interface gevonden. Interface: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Fout in energiebeheer. Actie: %1. Fout: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Onverwachte fout in energiebeheer. Status: %1. Error: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o &Options... Opties... - - &Resume - Hervatten - &Remove @@ -3774,10 +3800,6 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Close Window Venster sluiten - - R&esume All - Alles hervatten - Manage Cookies... @@ -3816,12 +3838,12 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Sta&rt - + Starten Sto&p - + Stoppen @@ -3831,7 +3853,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Pau&se Session - + Sessie pauzeren @@ -3893,10 +3915,6 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o &Hibernate System Sluimerstand - - S&hutdown System - Afsluiten - &Statistics @@ -3917,14 +3935,6 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o &About Over - - &Pause - Pauzeren - - - P&ause All - Alles pauzeren - &Add Torrent File... @@ -3958,12 +3968,12 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o - + Show Weergeven - + Check for program updates Op programma-updates controleren @@ -3978,388 +3988,382 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Als u qBittorrent leuk vindt, doneer dan! - + Execution Log Uitvoeringslog - + Clear the password Wachtwoord wissen - + &Set Password Wachtwoord instellen - + Preferences Voorkeuren - + &Clear Password Wachtwoord wissen - + Transfers Overdrachten - - + + qBittorrent is minimized to tray qBittorrent is naar systeemvak geminimaliseerd - - - + + + This behavior can be changed in the settings. You won't be reminded again. Dit gedrag kan veranderd worden in de instellingen. U zult niet meer herinnerd worden. - + Icons Only Alleen pictogrammen - + Text Only Alleen tekst - + Text Alongside Icons Tekst naast pictogrammen - + Text Under Icons Tekst onder pictogrammen - + Follow System Style Systeemstijl volgen - - + + UI lock password Wachtwoord UI-vergrendeling - - + + Please type the UI lock password: Geef het wachtwoord voor UI-vergrendeling op: - + Are you sure you want to clear the password? Weet u zeker dat u het wachtwoord wilt wissen? - + Use regular expressions Reguliere expressies gebruiken - - + + Search Engine - Zoekmachine + Zoekmachine - + Search has failed - Zoeken mislukt + Zoeken mislukt - + Search has finished - Zoeken is voltooid + Zoeken is voltooid - + Search Zoeken - + Transfers (%1) Overdrachten (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent is bijgewerkt en moet opnieuw gestart worden om de wijzigingen toe te passen. - + qBittorrent is closed to tray qBittorrent is naar systeemvak gesloten - + Some files are currently transferring. Er worden momenteel een aantal bestanden overgedragen. - + Are you sure you want to quit qBittorrent? Weet u zeker dat u qBittorrent wilt afsluiten? - + &No Nee - + &Yes Ja - + &Always Yes Altijd ja - + Options saved. Opties opgeslagen - + [PAUSED] %1 %1 is the rest of the window title - + [GEPAUZEERD] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Ontbrekende Python-runtime - + qBittorrent Update Available qBittorrent-update beschikbaar - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python is vereist om de zoekmachine te gebruiken maar dit lijkt niet geïnstalleerd. Wilt u het nu installeren? - + Python is required to use the search engine but it does not seem to be installed. Python is vereist om de zoekmachine te gebruiken maar dit lijkt niet geïnstalleerd. - - + + Old Python Runtime Verouderde Python-runtime - + A new version is available. Er is een nieuwe versie beschikbaar. - + Do you want to download %1? Wilt u %1 downloaden? - + Open changelog... Wijzigingenlogboek openen... - + No updates available. You are already using the latest version. Geen updates beschikbaar. U gebruikt de laatste versie. - + &Check for Updates Controleren op updates - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Uw Python-versie (%1) is verouderd. Minimale vereiste: %2 Wilt u nu een nieuwere versie installeren? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Uw Pythonversie (%1) is verouderd. Werk bij naar de laatste versie om zoekmachines te laten werken. Minimale vereiste: %2. - + Paused - Gepauzeerd + Gepauzeerd - + Checking for Updates... Controleren op updates... - + Already checking for program updates in the background Reeds aan het controleren op programma-updates op de achtergrond - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Downloadfout - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python-installatie kon niet gedownload worden, reden: %1. -Gelieve het handmatig te installeren. - - - - + + Invalid password Ongeldig wachtwoord - + Filter torrents... Torrents filteren... - + Filter by: Filteren op: - + The password must be at least 3 characters long Het wachtwoord moet minstens 3 tekens lang zijn - - - + + + RSS (%1) RSS (%1) - + The password is invalid Het wachtwoord is ongeldig - + DL speed: %1 e.g: Download speed: 10 KiB/s Downloadsnelheid: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Uploadsnelheid: %1 - + Hide Verbergen - + Exiting qBittorrent qBittorrent afsluiten - + Open Torrent Files Torrentbestanden openen - + Torrent Files Torrentbestanden @@ -4556,7 +4560,7 @@ Gelieve het handmatig te installeren. SSL error, URL: "%1", errors: "%2" - + SSL-fout, URL: "%1", fouten: "%2" @@ -5853,47 +5857,47 @@ Gelieve het handmatig te installeren. Net::Smtp - + Connection failed, unrecognized reply: %1 Verbinding mislukt. Niet herkend antwoord: %1 - + Authentication failed, msg: %1 Authenticatie mislukt. Bericht: %1 - + <mail from> was rejected by server, msg: %1 <mail from> werd geweigerd door server. Bericht: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> werd geweigerd door server. Bericht: %1 - + <data> was rejected by server, msg: %1 <data> werd geweigerd door server. Bericht: %1 - + Message was rejected by the server, error: %1 Bericht werd geweigerd door de server. Fout: %1 - + Both EHLO and HELO failed, msg: %1 Zowel EHLO als HELO mislukt. Bericht: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 De SMTP-server lijkt geen van de door ons ondersteunde authenticatiemodi [CRAM-MD5|PLAIN|LOGIN] te ondersteunen. Authenticatie wordt overgeslagen omdat het waarschijnlijk zal mislukken... Server-authenticatiemodi: %1 - + Email Notification Error: %1 E-mail-meldingsfout: %1 @@ -5935,10 +5939,6 @@ Gelieve het handmatig te installeren. RSS RSS - - Web UI - Web-UI - Advanced @@ -5959,14 +5959,6 @@ Gelieve het handmatig te installeren. Confirm when deleting torrents Bevestigen bij verwijderen van torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Geeft een bevestigingsvenster weer bij het pauzeren/hervatten van alle torrents - - - Confirm "Pause/Resume all" actions - Bevestigen van "Alles pauzeren/hervatten"-acties - Use alternating row colors @@ -5983,10 +5975,6 @@ Gelieve het handmatig te installeren. Always Altijd - - Paused torrents only - Alleen gepauzeerde torrents - Action on double-click @@ -5997,10 +5985,6 @@ Gelieve het handmatig te installeren. Downloading torrents: Downloadende torrents: - - Start / Stop Torrent - Torrent starten/stoppen - @@ -6059,179 +6043,179 @@ Gelieve het handmatig te installeren. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Indeling van torrent-inhoud: - + Original Oorspronkelijk - + Create subfolder Submap aanmaken - + Don't create subfolder Geen submap aanmaken - + The torrent will be added to the top of the download queue De torrent wordt bovenaan de downloadwachtrij toegevoegd - + Add to top of queue The torrent will be added to the top of the download queue Bovenaan wachtrij toevoegen - + When duplicate torrent is being added Wanneer een dubbele torrent toegevoegd wordt - + Merge trackers to existing torrent Trackers samenvoegen in bestaande torrent - + Keep unselected files in ".unwanted" folder Niet-geselecteerde bestanden in ".unwanted"-map houden - + Add... Toevoegen... - + Options.. Opties... - + Remove Verwijderen - + Email notification &upon download completion Melding via e-mail wanneer download voltooid is - + Send test email - + Test e-mail versturen - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Peer-verbindingsprotocol: - + Any Om het even welke - + I2P (experimental) I2P (experimenteel) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Als &quot;gemengde modus&quot; is ingeschakeld, kunnen I2P-torrents ook peers krijgen van andere bronnen dan de tracker, en verbinding maken met gewone IP's, zonder enige anonimisering. Dit kan nuttig zijn als de gebruiker niet geïnteresseerd is in de anonimisering van I2P, maar toch wil kunnen verbinden met I2P-peers.</p></body></html> - - - + Mixed mode Gemengde modus - Some options are incompatible with the chosen proxy type! - Sommige opties zijn niet compatibel met het gekozen proxy-type! + Sommige opties zijn niet compatibel met het gekozen proxy-type! - + If checked, hostname lookups are done via the proxy Indien aangevinkt, worden hostnamen opgezocht via de proxy - + Perform hostname lookup via proxy Opzoeken van hostnamen uitvoeren via proxy - + Use proxy for BitTorrent purposes Proxy gebruiken voor BitTorrent-doeleinden - + RSS feeds will use proxy RSS-feeds zullen proxy gebruiken - + Use proxy for RSS purposes Proxy gebruiken voor RSS-doeleinden - + Search engine, software updates or anything else will use proxy Zoekmachine, software updates of iets anders zal gebruik maken van proxy - + Use proxy for general purposes Proxy gebruiken voor algemene doeleinden - + IP Fi&ltering IP-filtering - + Schedule &the use of alternative rate limits Gebruik van alternatieve snelheidsbegrenzing inplannen - + From: From start time Van: - + To: To end time Tot: - + Find peers on the DHT network Peers zoeken op het DHT-netwerk - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6224,190 @@ Versleuteling vereisen: uitsluitend verbinden met peers met protocolversleutelin Versleuteling uitschakelen: uitsluitend verbinden met peers zonder protocolversleuteling - + Allow encryption Versleuteling toestaan - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Meer informatie</a>) - + Maximum active checking torrents: Maximaal aantal actieve controlerende torrents: - + &Torrent Queueing Torrents in wachtrij plaatsen - + When total seeding time reaches Wanneer een totale seed-tijd bereikt wordt van - + When inactive seeding time reaches Wanneer een niet-actieve seed-tijd bereikt wordt van - A&utomatically add these trackers to new downloads: - Deze trackers automatisch toevoegen aan nieuwe downloads: - - - + RSS Reader RSS-lezer - + Enable fetching RSS feeds Ophalen van RSS-feeds inschakelen - + Feeds refresh interval: Vernieuwinterval feeds: - + Same host request delay: Vertraging voor verzoek van dezelfde host: - + Maximum number of articles per feed: Maximaal aantal artikels per feed: - - - + + + min minutes min - + Seeding Limits Begrenzing voor seeden - Pause torrent - Torrent pauzeren - - - + Remove torrent Torrent verwijderen - + Remove torrent and its files Torrent en zijn bestanden verwijderen - + Enable super seeding for torrent Superseeden inschakelen voor torrent - + When ratio reaches Wanneer verhouding bereikt wordt van - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Torrent stoppen - + A&utomatically append these trackers to new downloads: - + Deze trackers automatisch toevoegen aan nieuwe downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader Automatische RSS-torrent-downloader - + Enable auto downloading of RSS torrents Automatisch downloaden van RSS-torrents inschakelen - + Edit auto downloading rules... Regels voor automatisch downloaden bewerken... - + RSS Smart Episode Filter RSS slimme afleveringsfilter - + Download REPACK/PROPER episodes REPACK/PROPER-afleveringen downloaden - + Filters: Filters: - + Web User Interface (Remote control) Web-gebruikersinterface (bediening op afstand) - + IP address: IP-adres: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6416,37 @@ Geef een IPv4- of IPv6-adres op. U kunt "0.0.0.0" opgeven voor om het "::" voor om het even welk IPv6-adres of "*" voor IPv4 en IPv6. - + Ban client after consecutive failures: Cliënt verbannen na opeenvolgende fouten: - + Never Nooit - + ban for: verbannen voor: - + Session timeout: Sessie-timeout: - + Disabled Uitgeschakeld - Enable cookie Secure flag (requires HTTPS) - Secure-flag van cookie inschakelen (vereist HTTPS) - - - + Server domains: Server-domeinen: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6459,37 @@ zet u er domeinnamen in die gebruikt worden door de WebUI-server. Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. - + &Use HTTPS instead of HTTP HTTPS in plaats van HTTP gebruiken - + Bypass authentication for clients on localhost Authenticatie overslaan voor clients op localhost - + Bypass authentication for clients in whitelisted IP subnets Authenticatie overslaan voor clients in toegestane IP-subnets - + IP subnet whitelist... Toegestane IP-subnets... - + Use alternative WebUI - + Alternatieve WebUI gebruiken - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Geef reverse proxy IP's (of subnets, bijvoorbeeld 0.0.0.0/24) op om forwarded client adres te gebruiken (X-Forwarded-For header). Gebruik ';' om meerdere items te splitsen. - + Upda&te my dynamic domain name Mijn dynamische domeinnaam bijwerken @@ -6519,12 +6501,12 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka Search - Zoeken + Zoeken WebUI - + WebUI @@ -6539,17 +6521,17 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka Style: - + Stijl: Color scheme: - + Kleurenschema Stopped torrents only - + Alleen gestopte torrents @@ -6620,99 +6602,99 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka Back-up-logs verwijderen die ouder zijn dan: - + Show external IP in status bar - + When adding a torrent Bij toevoegen torrent - + Bring torrent dialog to the front Torrent-dialoogvenster naar voor brengen - + The torrent will be added to download list in a stopped state - + De torrent zal in een gestopte status aan de downloadlijst toegevoegd worden - + Also delete .torrent files whose addition was cancelled Ook .torrent-bestanden verwijderen waarvan de toevoeging geannuleerd werd. - + Also when addition is cancelled Ook wanneer toevoeging geannuleerd is - + Warning! Data loss possible! Waarschuwing! Gegevensverlies mogelijk! - + Saving Management Opslagbeheer - + Default Torrent Management Mode: Standaard torrent-beheermodus: - + Manual Handmatig - + Automatic Automatisch - + When Torrent Category changed: Wanneer torrentcategorie wijzigt: - + Relocate torrent Torrent verplaatsen - + Switch torrent to Manual Mode Torrent overschakelen naar handmatige modus - - + + Relocate affected torrents Beïnvloede torrents verplaatsen - - + + Switch affected torrents to Manual Mode Beïnvloede torrents overschakelen naar handmatige modus - + Use Subcategories Subcategorieën gebruiken - + Default Save Path: Standaard opslagpad: - + Copy .torrent files to: .torrent-bestanden kopiëren naar: @@ -6722,26 +6704,22 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka qBittorrent weergeven in systeemvak - &Log file - Logbestand - - - + Display &torrent content and some options Torrentinhoud en enkele opties weergeven - + De&lete .torrent files afterwards .torrent-bestanden nadien verwijderen - + Copy .torrent files for finished downloads to: .torrent-bestanden voor voltooide downloads kopiëren naar: - + Pre-allocate disk space for all files Schijfruimte vooraf toewijzen voor alle bestanden @@ -6771,10 +6749,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka Preview file, otherwise open destination folder Voorbeeld van bestand weergeven, anders doelmap openen - - Show torrent options - Torrent-opties weergeven - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6814,65 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' ka jaar - + Log performance warnings Prestatiewaarschuwingen loggen - The torrent will be added to download list in a paused state - De torrent zal in een gepauzeerde status aan de downloadlijst toegevoegd worden - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Download niet automatisch starten - + Whether the .torrent file should be deleted after adding it Of het .torrent-bestand moet worden verwijderd nadat het is toegevoegd - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Volledige bestandsgroottes toewijzen op schijf voordat het downloaden begint om fragmentatie tot een minimum te beperken. Alleen nuttig voor HDD's. - + Append .!qB extension to incomplete files .!qB-extensie toevoegen aan onvolledige bestanden - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Wanneer een torrent gedownload is, aanbieden om torrents toe te voegen van alle .torrent-bestanden die er zich in bevinden - + Enable recursive download dialog Venster voor recursieve download inschakelen - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatisch: verschillende torrent-eigenschappen (bijvoorbeeld opslagpad) worden bepaald door de bijbehorende categorie Handmatig: verschillende torrent-eigenschappen (bijvoorbeeld opslagpad) moeten handmatig worden toegewezen - + When Default Save/Incomplete Path changed: Wanneer standaard opslagpad of onvolledig pad wijzigt: - + When Category Save Path changed: Wanneer categorie-opslagpad wijzigt: - + Use Category paths in Manual Mode Categoriepaden gebruiken in handmatige modus - + Resolve relative Save Path against appropriate Category path instead of Default one Relatief opslagpad omzetten in het juiste categoriepad in plaats van het standaardpad @@ -6922,50 +6892,50 @@ Handmatig: verschillende torrent-eigenschappen (bijvoorbeeld opslagpad) moeten h Status van qBittorrent-venster bij opstarten - + Torrent stop condition: Stop-voorwaarde torrent: - - + + None Geen - - + + Metadata received Metadata ontvangen - - + + Files checked Bestanden gecontroleerd - + Ask for merging trackers when torrent is being added manually Vragen om trackers samen te voegen wanneer torrent handmatig toegevoegd wordt - + Use another path for incomplete torrents: Ander pad gebruiken voor onvolledige torrents: - + Automatically add torrents from: Torrents automatisch toevoegen vanuit: - + Excluded file names Uitgesloten bestandsnamen - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6964,510 @@ readme.txt: filtert de exacte bestandsnaam. readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar niet 'readme10.txt'. - + Receiver Ontvanger - + To: To receiver Aan: - + SMTP server: SMTP-server: - + Sender Afzender - + From: From sender Van: - + This server requires a secure connection (SSL) Deze server vereist een veilige verbinding (SSL) - - + + Authentication Authenticatie - - - - + + + + Username: Gebruikersnaam: - - - - + + + + Password: Wachtwoord: - + Run external program Extern programma uitvoeren - Run on torrent added - Uitvoeren wanneer torrent toegevoegd wordt - - - Run on torrent finished - Uitvoeren wanneer torrent klaar is - - - + Show console window Consolevenster weergeven - + TCP and μTP TCP en µTP - + Listening Port Luisterpoort - + Port used for incoming connections: Poort voor binnenkomende verbindingen: - + Set to 0 to let your system pick an unused port Instellen op 0 om uw systeem een ongebruikte poort te laten kiezen - + Random Willekeurig - + Use UPnP / NAT-PMP port forwarding from my router UPnP/NAT-PMP port forwarding van mijn router gebruiken - + Connections Limits Begrenzing verbindingen - + Maximum number of connections per torrent: Maximaal aantal verbindingen per torrent: - + Global maximum number of connections: Algemeen maximaal aantal verbindingen: - + Maximum number of upload slots per torrent: Maximaal aantal uploadslots per torrent: - + Global maximum number of upload slots: Algemeen maximaal aantal uploadslots: - + Proxy Server Proxy-server - + Type: Type: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Poort: - + Otherwise, the proxy server is only used for tracker connections Anders wordt de proxy server alleen gebruikt voor trackerverbindingen - + Use proxy for peer connections Proxy gebruiken voor peer-verbindingen - + A&uthentication Authenticatie - Info: The password is saved unencrypted - Info: het wachtwoord wordt onversleuteld opgeslagen + Info: het wachtwoord wordt onversleuteld opgeslagen - + Filter path (.dat, .p2p, .p2b): Filterpad (.dat, p2p, p2b): - + Reload the filter Filter opnieuw laden - + Manually banned IP addresses... Handmatig verbannen IP-adressen... - + Apply to trackers Toepassen op trackers - + Global Rate Limits Algemene snelheidsbegrenzing - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Upload: - - + + Download: Download: - + Alternative Rate Limits Alternatieve snelheidsbegrenzing - + Start time Begintijd - + End time Eindtijd - + When: Wanneer: - + Every day Elke dag - + Weekdays Weekdagen - + Weekends Weekends - + Rate Limits Settings Instellingen snelheidsbegrenzing - + Apply rate limit to peers on LAN Snelheidsbegrenzing toepassen op peers op LAN - + Apply rate limit to transport overhead Snelheidsbegrenzing toepassen op transport-overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Snelheidsbegrenzing toepassen op µTP-protocol - + Privacy Privacy - + Enable DHT (decentralized network) to find more peers DHT (decentralized network) inschakelen om meer peers te vinden - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Peers uitwisselen met compatibele Bittorrent-clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Peer-uitwisseling (PeX) inschakelen om meer peers te vinden - + Look for peers on your local network Zoeken naar peers in uw lokaal netwerk - + Enable Local Peer Discovery to find more peers Lokale peer-ontdekking inschakelen om meer peers te vinden - + Encryption mode: Versleutelingsmodus: - + Require encryption Versleuteling vereisen - + Disable encryption Versleuteling uitschakelen - + Enable when using a proxy or a VPN connection Inschakelen bij gebruik van een proxy of vpn-verbinding - + Enable anonymous mode Anonieme modus inschakelen - + Maximum active downloads: Maximaal aantal actieve downloads: - + Maximum active uploads: Maximaal aantal actieve uploads: - + Maximum active torrents: Maximaal aantal actieve torrents: - + Do not count slow torrents in these limits Trage torrents niet meerekenen bij deze begrenzing - + Upload rate threshold: Uploadsnelheid-drempel: - + Download rate threshold: Downloadsnelheid-drempel: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Inactiviteitstimer van torrent: - + then en daarna - + Use UPnP / NAT-PMP to forward the port from my router UPnP/NAT-PMP gebruiken om de poort van mijn router te forwarden - + Certificate: Certificaat: - + Key: Sleutel: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informatie over certificaten</a> - + Change current password Huidig wachtwoord wijzigen - Use alternative Web UI - Alternatieve web-UI gebruiken - - - + Files location: Locatie van bestanden: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Beveiliging - + Enable clickjacking protection Clickjacking-bescherming inschakelen - + Enable Cross-Site Request Forgery (CSRF) protection Bescherming tegen Cross-Site Request Forgery (CSRF) inschakelen - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Validatie van host-header inschakelen - + Add custom HTTP headers Aangepaste HTTP-headers toevoegen - + Header: value pairs, one per line Header: waardeparen, één per regel - + Enable reverse proxy support Ondersteuning voor reverse proxy inschakelen - + Trusted proxies list: Lijst van vertrouwde proxy's: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Dienst: - + Register Registreren - + Domain name: Domeinnaam: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Door deze opties in te schakelen, kunt u uw .torrent-bestanden <strong>onomkeerbaar kwijtraken</strong>! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Als u de tweede optie inschakelt (&ldquo;Ook als toevoegen geannuleerd wordt&rdquo;), zal het .torrent-bestand <strong>verwijderd worden</strong>, zelfs als u op &ldquo;<strong>annuleren</strong>&rdquo; drukt in het &ldquo;torrent toevoegen&rdquo;-scherm @@ -7520,12 +7477,12 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar n qBittorrent-UI-themabestand selecteren - + Choose Alternative UI files location Locatie van bestanden van alternatieve UI kiezen - + Supported parameters (case sensitive): Ondersteunde parameters (hoofdlettergevoelig): @@ -7545,183 +7502,183 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar n Uitgeschakeld omdat de aanwezigheid van het systeemvak niet is gedetecteerd - + No stop condition is set. Er is geen stop-voorwaarde ingesteld. - + Torrent will stop after metadata is received. Torrent zal stoppen nadat metadata is ontvangen. - + Torrent will stop after files are initially checked. Torrent zal stoppen nadat de bestanden in eerste instantie zijn gecontroleerd. - + This will also download metadata if it wasn't there initially. Dit zal ook metadata downloaden als die er aanvankelijk niet was. - + %N: Torrent name %N: naam torrent - + %L: Category %L: categorie - + %F: Content path (same as root path for multifile torrent) %F: pad naar inhoud (zelfde als root-pad voor torrent met meerdere bestanden) - + %R: Root path (first torrent subdirectory path) %R: root-pad (pad naar eerste submap van torrent) - + %D: Save path %D: opslagpad - + %C: Number of files %C: aantal bestanden - + %Z: Torrent size (bytes) %Z: grootte torrent (bytes) - + %T: Current tracker %T: huidige tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: omring de parameter met aanhalingstekens om te vermijden dat tekst afgekapt wordt bij witruimte (bijvoorbeeld: "%N") - + Test email - + Test e-mail - + Attempted to send email. Check your inbox to confirm success - + Geprobeerd e-mail te verzenden. Controleer uw inbox voor bevestiging - + (None) (Geen) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Een torrent zal als traag beschouwd worden als zijn download- en uploadsnelheden onder deze waarden blijven voor het aantal seconden in "inactiviteitstimer van torrent". - + Certificate Certificaat - + Select certificate Certificaat selecteren - + Private key Privésleutel - + Select private key Privésleutel selecteren - + WebUI configuration failed. Reason: %1 WebUI-configuratie mislukt. Reden: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 wordt aanbevolen voor beste compatibiliteit met de donkere modus van Windows - + System System default Qt style - + Systeem - + Let Qt decide the style for this system - + Laat Qt de stijl voor dit systeem bepalen - + Dark Dark color scheme - + Donker - + Light Light color scheme - + Licht - + System System color scheme - + Systeem - + Select folder to monitor Map selecteren om te monitoren - + Adding entry failed Item toevoegen mislukt - + The WebUI username must be at least 3 characters long. De WebUI-gebruikersnaam moet minstens 3 tekens lang zijn. - + The WebUI password must be at least 6 characters long. Het WebUI-wachtwoord moet minstens 6 tekens lang zijn. - + Location Error Locatiefout - - + + Choose export directory Export-map kiezen - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Wanneer deze opties ingeschakeld zijn, zal qBittorrent .torrent-bestanden <strong>verwijderen</strong> nadat ze met succes (de eerste optie) of niet (de tweede optie) toegevoegd zijn aan de downloadwachtrij. Dit wordt <strong>niet alleen</strong> toegepast op de bestanden die via de &ldquo;torrent toevoegen&rdquo;-menu-optie geopend worden, maar ook op de bestanden die via de <strong>bestandskoppeling</strong> geopend worden @@ -7731,69 +7688,69 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar n qBittorrent-UI-themabestand (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: labels (gescheiden door komma) - + %I: Info hash v1 (or '-' if unavailable) %I: Info-hash v1 (of '-' indien niet beschikbaar) - + %J: Info hash v2 (or '-' if unavailable) %J: Info-hash v2 (of '-' indien niet beschikbaar) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (ofwel sha-1 info-hash voor v1-torrent of afgekapte sha-256 info-hash voor v2/hybride-torrent) - - + + Choose a save directory Opslagmap kiezen - + Torrents that have metadata initially will be added as stopped. Torrents die in eerste instantie metadata hebben, worden toegevoegd als gestopt. - + Choose an IP filter file IP-filterbestand kiezen - + All supported filters Alle ondersteunde filters - + The alternative WebUI files location cannot be blank. De alternatieve locatie van WebUI-bestanden mag niet leeg zijn. - + Parsing error Verwerkingsfout - + Failed to parse the provided IP filter Verwerken van opgegeven IP-filter mislukt - + Successfully refreshed Vernieuwen gelukt - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Verwerken van opgegeven IP-filter gelukt: er werden %1 regels toegepast. @@ -7804,18 +7761,18 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar n Voorkeuren - + Time Error Tijd-fout - + The start time and the end time can't be the same. De starttijd en de eindtijd kan niet hetzelfde zijn. - - + + Length Error Lengte-fout @@ -7900,169 +7857,169 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar n Peer is using NAT hole punching - + Peer gebruikt NAT hole punching PeerListWidget - + Country/Region Land/regio - + IP/Address IP/adres - + Port Poort - + Flags Vlaggen - + Connection Verbinding - + Client i.e.: Client application Cliënt - + Peer ID Client i.e.: Client resolved from Peer ID Peer-ID client - + Progress i.e: % downloaded Voortgang - + Down Speed i.e: Download speed Downloadsnelheid - + Up Speed i.e: Upload speed Uploadsnelheid - + Downloaded i.e: total data downloaded Gedownload - + Uploaded i.e: total data uploaded Geüpload - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevantie - + Files i.e. files that are being downloaded right now Bestanden - + Column visibility Kolom-zichtbaarheid - + Resize columns Kolomgroottes aanpassen - + Resize all non-hidden columns to the size of their contents Alle niet-verborgen kolommen aanpassen aan de grootte van hun inhoud - + Add peers... Peers toevoegen... - - + + Adding peers Peers toevoegen - + Some peers cannot be added. Check the Log for details. Een aantal peers kunnen niet toegevoegd worden. Controleer het logbestand voor details. - + Peers are added to this torrent. Peers zijn toegevoegd aan deze torrent. - - + + Ban peer permanently Peer permanent verbannen - + Cannot add peers to a private torrent Kan geen peers toevoegen aan een privétorrent - + Cannot add peers when the torrent is checking Kan geen peers toevoegen wanneer de torrent wordt gecontroleerd - + Cannot add peers when the torrent is queued Kan geen peers toevoegen wanneer de torrent in de wachtrij staat - + No peer was selected Er werd geen peer geselecteerd - + Are you sure you want to permanently ban the selected peers? Weet u zeker dat u de geselecteerde peers permanent wilt verbannen? - + Peer "%1" is manually banned Peer "%1" is manueel verbannen - + N/A N/B - + Copy IP:port IP:poort kopiëren @@ -8343,34 +8300,27 @@ Deze plugins zijn uitgeschakeld. PowerManagement - qBittorrent is active - qBittorrent is actief + qBittorrent is actief PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Energiebeheer heeft geschikte D-Bus interface gevonden. Interface: %1 + Energiebeheer heeft geschikte D-Bus interface gevonden. Interface: %1 - Power management error. Did not found suitable D-Bus interface. - Fout in energiebeheer. Geen geschikte D-Bus interface gevonden. + Fout in energiebeheer. Geen geschikte D-Bus interface gevonden. - - - Power management error. Action: %1. Error: %2 - Fout in energiebeheer. Actie: %1. Fout: %2 + Fout in energiebeheer. Actie: %1. Fout: %2 - Power management unexpected error. State: %1. Error: %2 - Onverwachte fout in energiebeheer. Status: %1. Error: %2 + Onverwachte fout in energiebeheer. Status: %1. Error: %2 @@ -8614,12 +8564,12 @@ Deze plugins zijn uitgeschakeld. Ratio / Time Active (in months), indicates how popular the torrent is - + Verhouding / tijd actief (in maanden), geeft aan hoe populair de torrent is Popularity: - + Populariteit: @@ -8654,7 +8604,7 @@ Deze plugins zijn uitgeschakeld. Private: - + Privé: @@ -8662,153 +8612,124 @@ Deze plugins zijn uitgeschakeld. Opslagpad: - + Never Nooit - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (%3 in bezit) - - + + %1 (%2 this session) %1 (%2 deze sessie) - - + + N/A N/B - + Yes - Ja + Ja - + No - Nee + Nee - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (geseed voor %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 totaal) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 gem.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Nieuwe webseed - - - Remove Web seed - Webseed verwijderen - - - Copy Web seed URL - Webseed-URL kopiëren - - - Edit Web seed URL - Webseed-URL bewerken - - - + Filter files... Bestanden filteren... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Snelheidsgrafieken zijn uitgeschakeld - + You can enable it in Advanced Options U kunt het inschakelen in de geavanceerde opties - New URL seed - New HTTP source - Nieuwe URL-seed - - - New URL seed: - Nieuwe URL-seed: - - - This URL seed is already in the list. - Deze URL-seed staat al in de lijst. - - - + Web seed editing Webseed bewerken - + Web seed URL: Webseed-URL: @@ -8816,33 +8737,33 @@ Deze plugins zijn uitgeschakeld. RSS::AutoDownloader - - + + Invalid data format. Ongeldig gegevensformaat. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Kon gegevens van automatische RSS-downloader niet opslaan in %1. Fout: %2 - + Invalid data format Ongeldig gegevensformaat - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS-artikel '%1' wordt geaccepteerd door regel '%2'. Proberen om torrent toe te voegen... - + Failed to read RSS AutoDownloader rules. %1 Lezen van regels van automatische RSS-downloader mislukt. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Kon regels van automatische RSS-downloader niet laden. Reden: %1 @@ -8850,22 +8771,22 @@ Deze plugins zijn uitgeschakeld. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Downloaden van RSS-feed op '%1' mislukt. Reden: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-feed op '%1' bijgewerkt. %2 nieuwe artikels toegevoegd. - + Failed to parse RSS feed at '%1'. Reason: %2 Verwerken van RSS-feed op '%1' mislukt. Reden: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-feed op '%1' is met succes gedownload. Beginnen met verwerken van de feed. @@ -8914,12 +8835,12 @@ Deze plugins zijn uitgeschakeld. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Kon de configuratie van de RSS-sessie niet opslaan. Bestand: "%1". Fout: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Kon de gegevens van de RSS-sessie niet opslaan. Bestand: "%1". Fout: "%2" @@ -8941,76 +8862,121 @@ Deze plugins zijn uitgeschakeld. - + Item doesn't exist: %1. Item bestaat niet: %1. - Couldn't move folder into itself. - Kon map niet in zichzelf verplaatsen + Kon map niet in zichzelf verplaatsen - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Kan hoofdmap niet verwijderen. - + Failed to read RSS session data. %1 Lezen van RSS-sessiegegevens mislukt. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Verwerken van RSS-sessiegegevens mislukt. Bestand: "%1". Fout: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Laden van RSS-sessiegegevens mislukt. Bestand: "%1". Fout: "ongeldig gegevensformaat". - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Kon RSS-feed niet laden. Feed: "%1". Reden: URL is vereist. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Kon RSS-feed niet laden. Feed: "%1". Reden: UID is ongeldig. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Dubbele RSS-feed gevonden. UID: "%1". Fout: de configuratie lijkt beschadigd te zijn. - + Couldn't load RSS item. Item: "%1". Invalid data format. Kon RSS-item niet laden. Item: "%1". Ongeldig gegevensformaat. - + Corrupted RSS list, not loading it. Beschadigde RSS-lijst. Wordt niet geladen. - + Incorrect RSS Item path: %1. Onjuist RSS-item-pad: %1. - + RSS item with given path already exists: %1. RSS-item met opgegeven pad bestaat reeds: %1. - + Parent folder doesn't exist: %1. Bovenliggende map bestaat niet: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed bestaat niet: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Standaard + + RSSWidget @@ -9110,78 +9076,77 @@ Deze plugins zijn uitgeschakeld. + Feed options... + + + Edit feed URL... - Feed-URL bewerken... + Feed-URL bewerken... - Edit feed URL - Feed-URL bewerken + Feed-URL bewerken - + Please choose a folder name Mapnaam kiezen - + Folder name: Mapnaam: - + New folder Nieuwe map - - Please type a RSS feed URL - Typ een RSS-feed-URL + Typ een RSS-feed-URL - - Feed URL: - Feed-URL: + Feed-URL: - + Deletion confirmation Bevestiging verwijdering - + Are you sure you want to delete the selected RSS feeds? Weet u zeker dat u de geselecteerde RSS-feeds wilt verwijderen? - + Please choose a new name for this RSS feed Kies een nieuwe naam voor deze RSS-feed - + New feed name: Nieuwe feed-naam: - + Rename failed Naam wijzigen mislukt - + Date: Datum: - + Feed: Feed: - + Author: Auteur: @@ -9318,10 +9283,6 @@ Deze plugins zijn uitgeschakeld. i.e: Number of partial sources Leechers - - Search engine - Zoekmachine - Filter search results... @@ -9411,17 +9372,17 @@ Deze plugins zijn uitgeschakeld. Engine - + Engine Engine URL - + Engine-URL Published On - + Verschenen op @@ -9442,104 +9403,104 @@ Deze plugins zijn uitgeschakeld. SearchPluginManager - + Unknown search engine plugin file format. Onbekend bestandsformaat van zoekmachineplugin. - + Plugin already at version %1, which is greater than %2 Plugin is al op versie %1, die hoger is dan %2 - + A more recent version of this plugin is already installed. Er is al een nieuwere versie van deze plugin geïnstalleerd. - + Plugin %1 is not supported. Plugin %1 wordt niet ondersteund. - - + + Plugin is not supported. Plugin wordt niet ondersteund. - + Plugin %1 has been successfully updated. Plugin %1 werd met succes bijgewerkt. - + All categories Alle categorieën - + Movies Films - + TV shows Tv-shows - + Music Muziek - + Games Spellen - + Anime Anime - + Software Software - + Pictures Afbeeldingen - + Books Boeken - + Update server is temporarily unavailable. %1 Updateserver is tijdelijk niet bereikbaar. %1 - - + + Failed to download the plugin file. %1 Downloaden van pluginbestand mislukt. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" is verouderd. bijwerken naar versie %2 - + Incorrect update info received for %1 out of %2 plugins. Onjuiste update-info ontvangen voor %1 van %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') Zoekplugin '%1' bevat ongeldige versie-string ('%2') @@ -9565,135 +9526,127 @@ Klik op de knop "zoekplugins..." rechtsonder in het venster om er een Zoekplugins... - + A phrase to search for. Een zin om naar te zoeken. - + Spaces in a search term may be protected by double quotes. Spaties in een zoekterm kunnen beschermd worden door dubbele aanhalingstekens. - + Example: Search phrase example Voorbeeld: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: zoekt naar <b>foo bar</b> - + All plugins Alle plugins - + Only enabled Alleen ingeschakeld - - + + Invalid data format. - Ongeldig gegevensformaat. + Ongeldig gegevensformaat. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: zoekt naar <b>foo</b> en <b>bar</b> - + Refresh - + Close tab Tabblad sluiten - + Close all tabs Alle tabbladen sluiten - + Select... Selecteren... - - + + Search Engine Zoekmachine - - + + Please install Python to use the Search Engine. Installeer Python om de zoekmachine te gebruiken. - + Empty search pattern Leeg zoekpatroon - + Please type a search pattern first Typ eerst een zoekpatroon - + Stop Stoppen - - Search has finished - Zoeken is voltooid - - - Search has failed - Zoeken mislukt - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10091,67 +10044,77 @@ Klik op de knop "zoekplugins..." rechtsonder in het venster om er een StatusBar - + Connection status: Verbindingsstatus: - - + + No direct connections. This may indicate network configuration problems. Geen directe verbindingen. Dit kan komen door netwerkconfiguratieproblemen. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 nodes - + qBittorrent needs to be restarted! qBittorrent moet opnieuw gestart worden! - - + + Connection Status: Verbindingsstatus: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. Dit betekent meestal dat qBittorrent mislukte om te luisteren naar de geselecteerde poort voor binnenkomende verbindingen. - + Online Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Klikken om over te schakelen naar alternatieve snelheidbegrenzing - + Click to switch to regular speed limits Klikken om over te schakelen naar algemene snelheidbegrenzing @@ -10179,23 +10142,15 @@ Klik op de knop "zoekplugins..." rechtsonder in het venster om er een Completed (0) Voltooid (0) - - Resumed (0) - Hervat (0) - - - Paused (0) - Gepauzeerd (0) - Running (0) - + Actief (0) Stopped (0) - + Gestopt (0) @@ -10260,49 +10215,33 @@ Klik op de knop "zoekplugins..." rechtsonder in het venster om er een Running (%1) - + Actief (%1) Stopped (%1) - + Gestopt (%1) Start torrents - + Torrents starten Stop torrents - - - - Paused (%1) - Gepauzeerd (%1) + Torrents stoppen Moving (%1) Verplaatsen (%1) - - Resume torrents - Torrents hervatten - - - Pause torrents - Torrents pauzeren - Remove torrents Torrents verwijderen - - Resumed (%1) - Hervat (%1) - Active (%1) @@ -10374,32 +10313,20 @@ Klik op de knop "zoekplugins..." rechtsonder in het venster om er een Remove unused tags Niet-gebruikte labels verwijderen - - Resume torrents - Torrents hervatten - - - Pause torrents - Torrents pauzeren - Remove torrents Torrents verwijderen - - New Tag - Nieuw label - Start torrents - + Torrents starten Stop torrents - + Torrents stoppen @@ -10726,17 +10653,17 @@ Kies een andere naam en probeer het opnieuw. TorrentCreatorController - + Too many active tasks Te veel actieve taken - + Torrent creation is still unfinished. Torrent aanmaken is nog niet voltooid. - + Torrent creation failed. Torrent aanmaken mislukt. @@ -10988,17 +10915,6 @@ Kies een andere naam en probeer het opnieuw. Map volgen: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Toewijzen van geheugen bij lezen van bestand mislukt. Bestand: "%1". Fout: "%2" - - - Invalid metadata - Ongeldige metadata - - TorrentOptionsDialog @@ -11036,10 +10952,6 @@ Kies een andere naam en probeer het opnieuw. Torrent Share Limits - - Torrent speed limits - Torrent-snelheidsbegrenzing - Download: @@ -11072,34 +10984,6 @@ Kies een andere naam en probeer het opnieuw. Upload: Upload: - - Torrent share limits - Torrent-deelbegrenzing - - - Use global share limit - Algemene deelbegrenzing gebruiken - - - Set no share limit - Geen deelbegrenzing instellen - - - Set share limit to - Deelbegrenzing instellen op - - - ratio - ratio - - - total minutes - totaal aantal minuten - - - inactive minutes - aantal minuten niet actief - Disable DHT for this torrent @@ -11141,14 +11025,6 @@ Kies een andere naam en probeer het opnieuw. Not applicable to private torrents Niet van toepassing op privétorrents - - No share limit method selected - Geen deelbegrenzingsmethode geselecteerd - - - Please select a limit method first - Selecteer eerst een begrenzingsmethode - TorrentShareLimitsWidget @@ -11198,27 +11074,27 @@ Kies een andere naam en probeer het opnieuw. Action when the limit is reached: - + Actie wanneer de limiet bereikt is: Stop torrent - + Torrent stoppen Remove torrent - Torrent verwijderen + Torrent verwijderen Remove torrent and its content - + Torrent en zijn inhoud verwijderen Enable super seeding for torrent - Superseeden inschakelen voor torrent + Superseeden inschakelen voor torrent @@ -11233,10 +11109,6 @@ Kies een andere naam en probeer het opnieuw. Torrent Tags Torrent-labels - - New Tag - Nieuw label - Add tag @@ -11271,78 +11143,78 @@ Kies een andere naam en probeer het opnieuw. TorrentsController - + Error: '%1' is not a valid torrent file. Fout: '%1' is geen geldig torrentbestand. - + Priority must be an integer Prioriteit moet een geheel getal zijn - + Priority is not valid Prioriteit is niet geldig - + Torrent's metadata has not yet downloaded Metadata van torrent is nog niet gedownload - + File IDs must be integers Bestand-ID's moeten gehele getallen zijn - + File ID is not valid Bestand-ID is niet geldig - - - - + + + + Torrent queueing must be enabled Torrents in wachtrij plaatsen moet ingeschakeld zijn - - + + Save path cannot be empty Opslagpad mag niet leeg zijn - - + + Cannot create target directory Kan doelmap niet aanmaken - - + + Category cannot be empty Categorie mag niet leeg zijn - + Unable to create category Kan categorie niet aanmaken - + Unable to edit category Kan categorie niet bewerken - + Unable to export torrent file. Error: %1 Kan torrentbestand niet exporteren. Fout: %1 - + Cannot make save path Kan opslagpad niet aanmaken @@ -11362,39 +11234,39 @@ Kies een andere naam en probeer het opnieuw. De 'sort'-parameter is ongeldig - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" is geen geldige bestandsindex. - + Index %1 is out of bounds. Index %1 is buiten de grenzen. - - + + Cannot write to directory Kan niet schrijven naar map - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI locatie instellen: "%1" verplaatsen van "%2" naar "%3" - + Incorrect torrent name Incorrecte torrentnaam - - + + Incorrect category name Incorrecte categorienaam @@ -11477,45 +11349,33 @@ Kies een andere naam en probeer het opnieuw. Invalid state! - + Ongeldige status! URL/Announce Endpoint - + URL/aankondiging-endpoint BT Protocol - + BT-protocol Next Announce - + Volgende aankondiging Min Announce - - - - Invalid status! - Ongeldige status! - - - URL/Announce endpoint - URL/aankondiging-endpoint + Min aankondiging Tier Niveau - - Protocol - Protocol - Status @@ -11546,18 +11406,6 @@ Kies een andere naam en probeer het opnieuw. Message Bericht - - Next announce - Volgende aankondiging - - - Min announce - Min aankondiging - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11415,73 @@ Kies een andere naam en probeer het opnieuw. Deze torrent is privé - + Tracker editing Tracker bewerken - + Tracker URL: Tracker-URL: - - + + Tracker editing failed Tracker bewerken mislukt - + The tracker URL entered is invalid. De ingevoerde tracker-URL is ongeldig - + The tracker URL already exists. De tracker-URL bestaat al - + Edit tracker URL... Tracker-URL bewerken... - + Remove tracker Tracker verwijderen - + Copy tracker URL Tracker-URL kopiëren - + Force reannounce to selected trackers Opnieuw aankondigen bij geselecteerde trackers forceren - + Force reannounce to all trackers Opnieuw aankondigen bij alle trackers forceren - + Resize columns Kolomgroottes aanpassen - + Resize all non-hidden columns to the size of their contents Alle niet-verborgen kolommen aanpassen aan de grootte van hun inhoud - + Add trackers... Trackers toevoegen... - + Column visibility Kolom-zichtbaarheid @@ -11716,20 +11564,12 @@ Kies een andere naam en probeer het opnieuw. Start torrents - + Torrents starten Stop torrents - - - - Resume torrents - Torrents hervatten - - - Pause torrents - Torrents pauzeren + Torrents stoppen @@ -11853,10 +11693,6 @@ Kies een andere naam en probeer het opnieuw. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Hervattingsgegevens controleren - - Paused - Gepauzeerd - Completed @@ -11897,21 +11733,16 @@ Kies een andere naam en probeer het opnieuw. % Done Voortgang - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Gestopt Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11946,7 +11777,7 @@ Kies een andere naam en probeer het opnieuw. Popularity - + Populariteit @@ -12027,22 +11858,17 @@ Kies een andere naam en probeer het opnieuw. Time Active Time (duration) the torrent is active (not stopped) - Tijd actief + Tijd actief Yes - Ja + Ja No - Nee - - - Time Active - Time (duration) the torrent is active (not paused) - Tijd actief + Nee @@ -12114,12 +11940,12 @@ Kies een andere naam en probeer het opnieuw. Private Flags private torrents - + Privé Ratio / Time Active (in months), indicates how popular the torrent is - + Verhouding / tijd actief (in maanden), geeft aan hoe populair de torrent is @@ -12144,358 +11970,319 @@ Kies een andere naam en probeer het opnieuw. TransferListWidget - + Column visibility Kolom-zichtbaarheid - + Recheck confirmation Bevestiging opnieuw controleren - + Are you sure you want to recheck the selected torrent(s)? Weet u zeker dat u de geselecteerde torrent(s) opnieuw wilt controleren? - + Rename Naam wijzigen - + New name: Nieuwe naam: - + Choose save path Opslagpad kiezen - Confirm pause - Pauzeren bevestigen - - - Would you like to pause all torrents? - Wilt u alle torrents pauzeren? - - - Confirm resume - Hervatten bevestigen - - - Would you like to resume all torrents? - Wilt u alle torrents hervatten? - - - + Unable to preview Kan geen voorbeeld weergeven - + The selected torrent "%1" does not contain previewable files De geselecteerde torrent "%1" bevat geen bestanden waarvan een voorbeeld kan worden weergegeven - + Resize columns Kolomgroottes aanpassen - + Resize all non-hidden columns to the size of their contents Alle niet-verborgen kolommen aanpassen aan de grootte van hun inhoud - + Enable automatic torrent management Automatisch torrent-beheer inschakelen - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Weet u zeker dat u automatisch torrent-beheer wilt inschakelen voor de geselecteerde torrent(s)? Mogelijk worden ze verplaatst. - Add Tags - Labels toevoegen - - - + Choose folder to save exported .torrent files Map kiezen om geëxporteerde .torrent-bestanden op te slaan - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Exporteren van .torrent-bestand mislukt. Torrent: "%1". Opslagpad: "%2". Reden: "%3". - + A file with the same name already exists Er bestaat al een bestand met dezelfde naam - + Export .torrent file error Fout bij exporteren van .torrent-bestand - + Remove All Tags Alle labels verwijderen - + Remove all tags from selected torrents? Alle labels van geselecteerde torrents verwijderen? - + Comma-separated tags: Kommagescheiden labels: - + Invalid tag Ongeldig label - + Tag name: '%1' is invalid Labelnaam '%1' is ongeldig - &Resume - Resume/start the torrent - Hervatten - - - &Pause - Pause the torrent - Pauzeren - - - Force Resu&me - Force Resume/start the torrent - Geforceerd hervatten - - - + Pre&view file... Voorbeeld van bestand weergeven... - + Torrent &options... Torrent-opties... - + Open destination &folder Doelmap openen - + Move &up i.e. move up in the queue Omhoog verplaatsen - + Move &down i.e. Move down in the queue Omlaag verplaatsen - + Move to &top i.e. Move to top of the queue Bovenaan plaatsen - + Move to &bottom i.e. Move to bottom of the queue Onderaan plaatsen - + Set loc&ation... Locatie instellen... - + Force rec&heck Opnieuw controleren forceren - + Force r&eannounce Opnieuw aankondigen forceren - + &Magnet link Magneetkoppeling - + Torrent &ID Torrent-ID - + &Comment Opmerking - + &Name Naam - + Info &hash v1 Info-hash v1 - + Info h&ash v2 Info-hash v2 - + Re&name... Naam wijzigen... - + Edit trac&kers... Trackers bewerken... - + E&xport .torrent... .torrent exporteren... - + Categor&y Categorie - + &New... New category... Nieuw... - + &Reset Reset category Herstellen - + Ta&gs Labels - + &Add... Add / assign multiple tags... Toevoegen... - + &Remove All Remove all tags Alles verwijderen - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Kan opnieuw aankondigen niet forceren als een torrent gestopt is, in wachtrij geplaatst is, fouten heeft of aan het controleren is. - + &Queue Wachtrij - + &Copy Kopiëren - + Exported torrent is not necessarily the same as the imported De geëxporteerde torrent is niet noodzakelijk dezelfde als de geïmporteerde - + Download in sequential order In sequentiële volgorde downloaden - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Er zijn fouten opgetreden bij het exporteren van .torrent-bestanden. Controleer het uitvoeringslogboek voor details. - + &Start Resume/start the torrent - + Starten - + Sto&p Stop the torrent - + Stoppen - + Force Star&t Force Resume/start the torrent - + Geforceerd starten - + &Remove Remove the torrent Verwijderen - + Download first and last pieces first Eerste en laatste deeltjes eerst downloaden - + Automatic Torrent Management Automatisch torrent-beheer - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatische modus betekent dat verschillende torrent-eigenschappen (bijvoorbeeld opslagpad) bepaald zullen worden door de bijbehorende categorie. - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Kan opnieuw aankondigen niet forceren als een torrent gepauzeerd is, in wachtrij geplaatst is, fouten heeft of aan het controleren is. - - - + Super seeding mode Super-seeding-modus @@ -12571,7 +12358,7 @@ Kies een andere naam en probeer het opnieuw. Set app style failed. Unknown style: "%1" - + Instellen van app-stijl mislukt. Onbekende stijl: "%1" @@ -12627,32 +12414,32 @@ Kies een andere naam en probeer het opnieuw. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Python-executable teruggevonden. Naam: "%1". Versie: "%2" - + Failed to find Python executable. Path: "%1". Python-executable niet gevonden. Pad: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" 'Python3'-executable niet gevonden in PATH-omgevingsvariabele. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" 'Python'-executable niet gevonden in PATH-omgevingsvariabele. PATH: "%1" - + Failed to find `python` executable in Windows Registry. 'Python'-executable niet gevonden in Windows-register. - + Failed to find Python executable Python-excecutable niet gevonden @@ -12744,52 +12531,52 @@ Kies een andere naam en probeer het opnieuw. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Er is een onacceptabele sessie-cookienaam opgegeven: '%1'. De standaard wordt gebruikt. - + Unacceptable file type, only regular file is allowed. Niet-aanvaardbaar bestandstype, alleen gewoon bestand is toegestaan. - + Symlinks inside alternative UI folder are forbidden. Symlinks in map van alternatieve UI zijn verboden. - + Using built-in WebUI. Ingebouwde WebUI gebruiken - + Using custom WebUI. Location: "%1". Aangepaste WebUI gebruiken. Locatie: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. WebUI-vertaling voor geselecteerde taal (%1) is met succes geladen. - + Couldn't load WebUI translation for selected locale (%1). Kon vertaling van WebUI voor geselecteerde taal (%1) niet laden. - + Missing ':' separator in WebUI custom HTTP header: "%1" Ontbrekende ':'-separator in aangepaste HTTP-header van de WebUI: "%1" - + Web server error. %1 Webserver-fout; %1 - + Web server error. Unknown error. Webserver-fout. Onbekende fout. @@ -12847,7 +12634,7 @@ Kies een andere naam en probeer het opnieuw. Unknown error - Onbekende fout + Onbekende fout diff --git a/src/lang/qbittorrent_oc.ts b/src/lang/qbittorrent_oc.ts index 108332b87..6da4b3118 100644 --- a/src/lang/qbittorrent_oc.ts +++ b/src/lang/qbittorrent_oc.ts @@ -170,10 +170,6 @@ Never show again Afichar pas mai - - Torrent settings - Paramètres del torrent - Set as default category @@ -235,25 +231,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -368,112 +364,112 @@ - + I/O Error ErrorE/S - + Not Available This comment is unavailable Pas disponible - + Not Available This date is unavailable Pas disponible - + Not available Pas disponible - + Magnet link Ligam magnet - + Retrieving metadata... Recuperacion de las metadonadas… - - + + Choose save path Causir un repertòri de destinacion - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A N/A - + %1 (Free space on disk: %2) - + Not available This size is unavailable. Pas disponible - + Torrent file (*%1) - + Save as torrent file - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... Filtrar los fichièrs… - + Parsing metadata... Analisi sintaxica de las metadonadas... - + Metadata retrieval complete Recuperacion de las metadonadas acabada @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB Mio - + Recheck torrents on completion Reverificar los torrents quand son acabats - - + + ms milliseconds ms - + Setting Paramètre - + Value Value set for this setting Valor - + (disabled) - + (auto) (automatic) - - + + min minutes min - + All addresses Totas las adreças - + qBittorrent Section Seccion qBittorrent - - + + Open documentation Dobrir documentacion - + All IPv4 addresses - + All IPv6 addresses - + libtorrent Section Seccion libtorrent - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Normala - + Below normal - + Medium - + Low - + Very low - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache - - - - + + + + + s seconds s - + Disk cache expiry interval Interval de l'expiracion del cache disc - + Disk queue size - - + + Enable OS cache Activar lo cache del sistèma operatiu - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Afichar lo nom d'òste dels pars - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Afichar las notificacions - + Display notifications for added torrents Afichar las notificacions pels torrents aponduts - + Download tracker's favicon - + Save path history length - + Enable speed graphs - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck Confirmer la reverificacion del torrent - + Confirm removal of all tags - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface Quina interfàcia que siá - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker Activar lo tracker integrat - + Embedded tracker port Pòrt del tracker integrat @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 Nom del torrent : %1 - + Torrent size: %1 Talha del torrent : %1 - + Save path: %1 Camin de salvament : %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Lo torrent es estat telecargat dins %1. - - + + Thank you for using qBittorrent. Mercé d'utilizar qBittorrent. - + Torrent: %1, sending mail notification - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit &Quitar - + I/O Error i.e: Input/Output Error ErrorE/S - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ Rason : %2 - + Torrent added Torrent apondut - + '%1' was added. e.g: xxx.avi was added. '%1' es estat apondut. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Lo telecargament de « %1 » es acabat. - + Information Informacion - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation Confirmacion per telecargament recursiu - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Pas jamai - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Salvament de l'avançament del torrent. - + qBittorrent is now ready to exit @@ -1765,263 +1772,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Exportar... - + Matches articles based on episode filter. Articles correspondents basats sul filtratge episòdi - + Example: Exemple : - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match correspondrà als episòdis 2, 5, 8 e 15-30 e superiors de la sason 1 - + Episode filter rules: Règlas de filtratge d'episòdis : - + Season number is a mandatory non-zero value Lo numèro de sason es una valor obligatòria diferenta de zèro - + Filter must end with semicolon Lo filtre se deu acabar amb un punt-virgula - + Three range types for episodes are supported: Tres tipes d'intervals d'episòdis son preses en carga : - + Single number: <b>1x25;</b> matches episode 25 of season one Nombre simple : <b>1×25;</b> correspond a l'episòdi 25 de la sason 1 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Interval standard : <b>1×25-40;</b> correspond als episòdis 25 a 40 de la saison 1 - + Episode number is a mandatory positive value - + Rules - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago Darrièra correspondéncia : i a %1 jorns - + Last Match: Unknown Darrièra correspondéncia : desconegut - + New rule name Novèl nom per la règla - + Please type the name of the new download rule. Entratz lo nom de la novèla règla de telecargament. - - + + Rule name conflict Conflicte dins los noms de règla - - + + A rule with this name already exists, please choose another name. Una règla amb aqueste nom existís ja, causissètz-ne un autre. - + Are you sure you want to remove the download rule named '%1'? Sètz segur que volètz suprimir la règla de telecargament '%1' - + Are you sure you want to remove the selected download rules? Sètz segur que volètz suprimir las règlas seleccionadas ? - + Rule deletion confirmation Confirmacion de la supression - + Invalid action Accion invalida - + The list is empty, there is nothing to export. La lista es voida, i a pas res a exportar. - + Export RSS rules - + I/O Error Error E/S - + Failed to create the destination file. Reason: %1 - + Import RSS rules - + Failed to import the selected rules file. Reason: %1 - + Add new rule... Apondre una novèla règla… - + Delete rule Suprimir la règla - + Rename rule... Renomenar la règla… - + Delete selected rules Suprimir las règlas seleccionadas - + Clear downloaded episodes... - + Rule renaming Renommage de la règla - + Please type the new rule name Entratz lo novèl nom per la règla - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2073,28 +2080,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2105,16 +2122,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2122,38 +2140,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2161,22 +2201,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2184,498 +2224,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2725,47 +2770,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3028,14 +3073,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Aviar los torrents - - - Pause torrents - Metre en pausa los torrents - Remove torrents @@ -3365,22 +3402,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3498,6 +3535,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3639,10 +3710,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Opcions... - - &Resume - &Aviar - &Remove @@ -3724,10 +3791,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window - - R&esume All - A&viar tot - Manage Cookies... @@ -3843,10 +3906,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Metre en velha perlongada lo sistèma - - S&hutdown System - A&tudar lo sistèma - &Statistics @@ -3867,14 +3926,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &A prepaus - - &Pause - Metre en &pausa - - - P&ause All - Tout &metre en pausa - &Add Torrent File... @@ -3908,12 +3959,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Afichar - + Check for program updates Verificar la disponibilitat de mesas a jorn del logicial @@ -3928,386 +3979,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Se qBittorrent vos agrada, fasètz un don ! - + Execution Log Jornal d'execucion - + Clear the password Escafar lo senhal - + &Set Password &Definir lo senhal - + Preferences - + &Clear Password &Suprimir lo mot de pass - + Transfers Transferiments - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only Icònas solament - + Text Only Tèxte solament - + Text Alongside Icons Tèxte al costat de las Icònas - + Text Under Icons Tèxte jos las Icònas - + Follow System Style Seguir l'estil del sistèma - - + + UI lock password Senhal de verrolhatge - - + + Please type the UI lock password: Entratz lo senhal de verrolhatge : - + Are you sure you want to clear the password? Sètz segur que volètz escafar lo senhal ? - + Use regular expressions - - + + Search Engine - Motor de recèrca + Motor de recèrca - + Search has failed - La recèrca a fracassat + La recèrca a fracassat - + Search has finished - Recèrca acabada + Recèrca acabada - + Search Recèrca - + Transfers (%1) Transferiments (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent ven d'èsser mes a jorn e deu èsser reaviat per que los cambiaments sián preses en compte. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? - + &No &Non - + &Yes &Òc - + &Always Yes &Òc, totjorn - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime - + qBittorrent Update Available Mesa a jorn de qBittorrent disponibla - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python es necessari per fin d'utilizar lo motor de recèrca mas sembla pas èsser installat. Lo volètz installar ara ? - + Python is required to use the search engine but it does not seem to be installed. Python es necessari per fin d'utilizar lo motor de recèrca mas sembla pas èsser installat. - - + + Old Python Runtime - + A new version is available. - + Do you want to download %1? - + Open changelog... - + No updates available. You are already using the latest version. Pas de mesas a jorn disponiblas. Utilizatz ja la darrièra version. - + &Check for Updates &Verificar las mesas a jorn - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - En pausa + En pausa - + Checking for Updates... Verificacion de las mesas a jorn… - + Already checking for program updates in the background Recèrca de mesas a jorn ja en cors en prètzfait de fons - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Error de telecargament - Python setup could not be downloaded, reason: %1. -Please install it manually. - L’installador Python pòt pas èsser telecargat per la rason seguenta : %1. -Installatz-lo manualament. - - - - + + Invalid password Senhal invalid - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid Lo senhal fourni es invalid - + DL speed: %1 e.g: Download speed: 10 KiB/s Velocitat de recepcion : %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Velocitat de mandadís : %1 - + Hide Amagar - + Exiting qBittorrent Tampadura de qBittorrent - + Open Torrent Files Dobrir fichièrs torrent - + Torrent Files Fichièrs torrent @@ -5801,47 +5846,47 @@ Installatz-lo manualament. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5883,10 +5928,6 @@ Installatz-lo manualament. RSS - - Web UI - Interfàcia web - Advanced @@ -5991,392 +6032,402 @@ Installatz-lo manualament. - + + Show free disk space in status bar + + + + Torrent content layout: - + Original - + Create subfolder - + Don't create subfolder - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... - + Options.. - + Remove - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time De : - + To: To end time A : - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: Nombre maximum d'articles per flux : - - - + + + min minutes min - + Seeding Limits - + Remove torrent - + Remove torrent and its files - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: - + Web User Interface (Remote control) - + IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Pas jamai - + ban for: - + Session timeout: - + Disabled Desactivat - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6385,37 +6436,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6427,7 +6478,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Recèrca + Recèrca @@ -6528,99 +6579,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management - + Default Torrent Management Mode: - + Manual Manual - + Automatic Automatic - + When Torrent Category changed: - + Relocate torrent - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories - + Default Save Path: - + Copy .torrent files to: @@ -6630,22 +6681,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files @@ -6740,64 +6791,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.ans - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6817,50 +6868,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6877,511 +6928,506 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + To: To receiver A : - + SMTP server: Servidor SMTP : - + Sender - + From: From sender De : - + This server requires a secure connection (SSL) - - + + Authentication Autentificacion - - - - + + + + Username: Nom d'utilizaire : - - - - + + + + Password: Senhal : - + Run external program - + Show console window - + TCP and μTP - + Listening Port - + Port used for incoming connections: - + Set to 0 to let your system pick an unused port - + Random - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits - + Maximum number of connections per torrent: - + Global maximum number of connections: - + Maximum number of upload slots per torrent: - + Global maximum number of upload slots: - + Proxy Server - + Type: Tipe : - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Òste : - - - + + + Port: Pòrt : - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... - + Apply to trackers - + Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s - - + + Upload: Mandadís : - - + + Download: Telecargament : - + Alternative Rate Limits - + Start time - + End time - + When: Quora : - + Every day Cada jorn - + Weekdays Jorns de setmana - + Weekends Fins de setmanas - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds - + Torrent inactivity timer: - + then - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: Certificat : - + Key: Clau : - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password - + Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Servici : - + Register - + Domain name: Nom de domeni : - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7391,12 +7437,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7416,183 +7462,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N : Nom del torrent - + %L: Category %L : Categoria - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path %D : Camin de salvament - + %C: Number of files %C : Nombre de fichièrs - + %Z: Torrent size (bytes) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Pas cap) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7602,69 +7648,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Lo filtre IP es estat cargat corrèctament : %1 règlas son estadas aplicadas. @@ -7675,18 +7721,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Time Error - + The start time and the end time can't be the same. - - + + Length Error @@ -7777,163 +7823,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region - + IP/Address - + Port Pòrt - + Flags Indicadors - + Connection Connexion - + Client i.e.: Client application Logicial - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Progression - + Down Speed i.e: Download speed Velocitat DL - + Up Speed i.e: Upload speed Velocitat UP - + Downloaded i.e: total data downloaded Telecargat - + Uploaded i.e: total data uploaded Mandat - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Pertinéncia - + Files i.e. files that are being downloaded right now Fichièrs - + Column visibility Visibilitat de colomna - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently Blocar lo par indefinidament - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A N/A - + Copy IP:port Copiar l'IP:pòrt @@ -8211,39 +8257,6 @@ Los empeutons en question son estats desactivats. Ligam web - - PowerManagement - - - qBittorrent is active - - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - - - PreviewSelectDialog @@ -8533,153 +8546,124 @@ Los empeutons en question son estats desactivats. Camin de salvament : - + Never Pas jamai - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 × %2 (a %3) - - + + %1 (%2 this session) %1 (%2 aquesta session) - - + + N/A N/A - + Yes - Òc + Òc - + No - Non + Non - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (partejat pendent %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maximum) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 en mejana) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Novèla font web - - - Remove Web seed - Suprimir la font web - - - Copy Web seed URL - Copiar l'URL de la font web - - - Edit Web seed URL - Modificar l'URL de la font web - - - + Filter files... Filtrar los fichièrs… - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - New URL seed - New HTTP source - Novèla font URL - - - New URL seed: - Novèla font URL : - - - This URL seed is already in the list. - Aquesta font URL es ja sus la liste. - - - + Web seed editing Modificacion de la font web - + Web seed URL: URL de la font web : @@ -8687,33 +8671,33 @@ Los empeutons en question son estats desactivats. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8721,22 +8705,22 @@ Los empeutons en question son estats desactivats. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8785,12 +8769,12 @@ Los empeutons en question son estats desactivats. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8812,76 +8796,117 @@ Los empeutons en question son estats desactivats. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + + + + + Default + + + RSSWidget @@ -8981,78 +9006,61 @@ Los empeutons en question son estats desactivats. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Indicatz un nom de dorsièr - + Folder name: Nom del dorsièr : - + New folder Novèl dorsièr - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation Confirmacion de supression - + Are you sure you want to delete the selected RSS feeds? Sètz segur que volètz suprimir los fluxes RSS seleccionats ? - + Please choose a new name for this RSS feed Causissètz un novèl nom per aqueste flux RSS - + New feed name: Novèl nom del flux : - + Rename failed - + Date: Data : - + Feed: - + Author: Autor : @@ -9189,10 +9197,6 @@ Los empeutons en question son estats desactivats. i.e: Number of partial sources Fonts parcialas - - Search engine - Motor de recèrca - Filter search results... @@ -9313,104 +9317,104 @@ Los empeutons en question son estats desactivats. SearchPluginManager - + Unknown search engine plugin file format. Format de fichièrs de l'empeuton de recèrca desconegut. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. Una version mai recenta d'aqueste empeuton es ja installada. - + Plugin %1 is not supported. - - + + Plugin is not supported. L'empeuton es pas suportat. - + Plugin %1 has been successfully updated. - + All categories Totas las categorias - + Movies Filmes - + TV shows Serias TV - + Music Musica - + Games Jòcs - + Anime Anime - + Software Logicials - + Pictures Fòtos - + Books Libres - + Update server is temporarily unavailable. %1 O planhèm, lo servidor de mesa a jorn es temporàriament indisponible. %1 - - + + Failed to download the plugin file. %1 Impossible de telecargar l'empeuton. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9435,135 +9439,127 @@ Click the "Search plugins..." button at the bottom right of the window Empeutons de recèrca... - + A phrase to search for. Una frasa de recercar - + Spaces in a search term may be protected by double quotes. Los espacis dins un tèrme de recèrca pòdon èsser protegits per de verguetas. - + Example: Search phrase example Exemple : - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: recèrca <b>foo bar</b> - + All plugins Totes los empeutons - + Only enabled Unicament activat(s) - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: recèrca <b>foo</b> e <b>bar</b> - + Refresh - + Close tab - + Close all tabs - + Select... Causir... - - + + Search Engine Motor de recèrca - - + + Please install Python to use the Search Engine. Installatz Python per fin d'utilizar lo motor de recèrca. - + Empty search pattern Motiu de recèrca void - + Please type a search pattern first Entratz un motiu de recèrca - + Stop Arrestar - - Search has finished - Recèrca acabada - - - Search has failed - La recèrca a fracassat - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9961,67 +9957,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Estatut de la connexion : - - + + No direct connections. This may indicate network configuration problems. Pas cap de connexion dirècta. Aquò pòt èsser signe d'una marrida configuracion de la ret. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT : %1 nosèls - + qBittorrent needs to be restarted! - - + + Connection Status: Estat de la connexion : - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Fòra linha. Aquò significa generalament que qBittorrent a pas pogut se metre en escota sul pòrt definit per las connexions entrantas. - + Online Connectat - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Clicatz aicí per utilizar los limits de velocitat alternatius - + Click to switch to regular speed limits Clicatz aicí per utilizar los limits de velocitat normals @@ -10049,14 +10055,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Acabats (0) - - Resumed (0) - Aviats (0) - - - Paused (0) - En Pausa (0) - Running (0) @@ -10147,32 +10145,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - En Pausa (%1) - Moving (%1) - - Resume torrents - Aviar los torrents - - - Pause torrents - Metre en pausa los torrents - Remove torrents - - Resumed (%1) - Aviats (%1) - Active (%1) @@ -10244,14 +10226,6 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags - - Resume torrents - Aviar los torrents - - - Pause torrents - Metre en pausa los torrents - Remove torrents @@ -10589,17 +10563,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10851,13 +10825,6 @@ Please choose a different name and try again. - - TorrentInfo - - Invalid metadata - Metadata invalidas. - - TorrentOptionsDialog @@ -11086,78 +11053,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11177,39 +11144,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name Nom de categoria incorrect @@ -11353,73 +11320,73 @@ Please choose a different name and try again. Aqueste torrent es privat - + Tracker editing Modificacion del tracker - + Tracker URL: URL del tracker : - - + + Tracker editing failed Fracàs de la modificacion del tracker - + The tracker URL entered is invalid. L'URL del tracker provesit es invalid. - + The tracker URL already exists. L'URL del tracker existís ja. - + Edit tracker URL... - + Remove tracker Suprimir lo tracker - + Copy tracker URL Copiar l'URL del tracker - + Force reannounce to selected trackers Forçar una novèla anóncia als trackers seleccionats - + Force reannounce to all trackers Forçar una novèla anóncia a totes los trackers - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility Visibilitat de las colomnas @@ -11509,14 +11476,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - Aviar los torrents - - - Pause torrents - Metre en pausa los torrents - Remove torrents @@ -11639,10 +11598,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Verificacion de las donadas de reaviada - - Paused - En pausa - Completed @@ -11683,11 +11638,6 @@ Please choose a different name and try again. % Done Progression - - Status - Torrent status (e.g. downloading, seeding, paused) - Estatut - Stopped @@ -11697,7 +11647,7 @@ Please choose a different name and try again. Status Torrent status (e.g. downloading, seeding, stopped) - Estatut + Estatut @@ -11813,22 +11763,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Actiu pendent + Actiu pendent Yes - Òc + Òc No - Non - - - Time Active - Time (duration) the torrent is active (not paused) - Actiu pendent + Non @@ -11930,329 +11875,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Visibilitat de las colomnas - + Recheck confirmation Reverificar la confirmacion - + Are you sure you want to recheck the selected torrent(s)? Sètz segur que volètz reverificar lo o los torrent(s) seleccionat(s) ? - + Rename Renomenar - + New name: Novèl nom : - + Choose save path Causida del repertòri de destinacion - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags - + Remove all tags from selected torrents? - + Comma-separated tags: - + Invalid tag - + Tag name: '%1' is invalid - &Resume - Resume/start the torrent - &Aviar - - - &Pause - Pause the torrent - Metre en &pausa - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Telecargament sequencial - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first Telecargar primièras e darrièras pèças en primièr - + Automatic Torrent Management Gestion de torrent automatique - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode Mòde de superpartiment @@ -12384,32 +12319,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12501,52 +12436,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12604,7 +12539,7 @@ Please choose a different name and try again. Unknown error - Error desconeguda + Error desconeguda diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index 23568ae19..d687cd35e 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -170,10 +170,6 @@ Never show again Nigdy więcej nie pokazuj - - Torrent settings - Ustawienia torrenta - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Opcje torrentów @@ -235,25 +231,25 @@ Warunek zatrzymania: - - + + None Żaden - - + + Metadata received Odebrane metadane - + Torrents that have metadata initially will be added as stopped. Torrenty, które mają metadane, początkowo zostaną dodane jako zatrzymane. - + Files checked Sprawdzone pliki @@ -368,112 +364,112 @@ Zapisz jako plik .torrent... - + I/O Error Błąd we/wy - + Not Available This comment is unavailable Niedostępne - + Not Available This date is unavailable Niedostępne - + Not available Niedostępne - + Magnet link Odnośnik magnet - + Retrieving metadata... Pobieranie metadanych... - - + + Choose save path Wybierz ścieżkę zapisu - + No stop condition is set. Nie jest ustawiony żaden warunek zatrzymania. - + Torrent will stop after metadata is received. Torrent zatrzyma się po odebraniu metadanych. - + Torrent will stop after files are initially checked. Torrent zatrzyma się po wstępnym sprawdzeniu plików. - + This will also download metadata if it wasn't there initially. Spowoduje to również pobranie metadanych, jeśli początkowo ich tam nie było. - + N/A Nie dotyczy - + %1 (Free space on disk: %2) %1 (Wolne miejsce na dysku: %2) - + Not available This size is unavailable. Niedostępne - + Torrent file (*%1) Pliki torrent (*%1) - + Save as torrent file Zapisz jako plik torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Nie można wyeksportować pliku metadanych torrenta '%1'. Powód: %2. - + Cannot create v2 torrent until its data is fully downloaded. Nie można utworzyć torrenta v2, dopóki jego dane nie zostaną w pełni pobrane. - + Filter files... Filtruj pliki... - + Parsing metadata... Przetwarzanie metadanych... - + Metadata retrieval complete Pobieranie metadanych zakończone @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Pobieranie torrenta... Źródło: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Nie udało się dodać torrenta. Źródło: "%1". Powód: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Wykryto próbę dodania zduplikowanego torrenta. Źródło: %1. Istniejący torrent: %2. Wynik: %3 + Wykryto próbę dodania zduplikowanego torrenta. Źródło: %1. Istniejący torrent: %2. Wynik: %3 - + Merging of trackers is disabled Scalanie trackerów jest wyłączone - + Trackers cannot be merged because it is a private torrent Nie można scalić trackerów, ponieważ jest to prywatny torrent - + Trackers are merged from new source Trackery zostały scalone z nowego źródła + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Sprawdzaj dane po pobraniu - - + + ms milliseconds ms - + Setting Ustawienie - + Value Value set for this setting Wartość - + (disabled) (wyłączone) - + (auto) (auto) - - + + min minutes min - + All addresses Wszystkie adresy - + qBittorrent Section Sekcja qBittorrent - - + + Open documentation Otwórz dokumentację - + All IPv4 addresses Wszystkie adresy IPv4 - + All IPv6 addresses Wszystkie adresy IPv6 - + libtorrent Section Sekcja libtorrent - + Fastresume files Pliki fastresume - + SQLite database (experimental) Baza danych SQLite (eksperymentalne) - + Resume data storage type (requires restart) Wznów typ przechowywania danych (wymaga ponownego uruchomienia) - + Normal Normalny - + Below normal Poniżej normalnnego - + Medium Średni - + Low Niski - + Very low Bardzo niski - + Physical memory (RAM) usage limit Limit wykorzystania pamięci fizycznej (RAM) - + Asynchronous I/O threads Asynchroniczne wątki we-wy - + Hashing threads Wątki hashujące - + File pool size Rozmiar puli plików - + Outstanding memory when checking torrents Nieuregulowana pamięć podczas sprawdzania torrentów - + Disk cache Pamięć podręczna dysku - - - - + + + + + s seconds s - + Disk cache expiry interval Okres ważności pamięci podręcznej - + Disk queue size Rozmiar kolejki dysku - - + + Enable OS cache Włącz pamięć podręczną systemu operacyjnego - + Coalesce reads & writes Połączone odczyty i zapisy - + Use piece extent affinity Użyj koligacji zakresu części - + Send upload piece suggestions Wyślij sugestie wysyłanej części - - - - - + + + + + 0 (disabled) 0 (wyłączone) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Interwał zapisu danych wznowienia [0: wyłączone] - + Outgoing ports (Min) [0: disabled] Porty wychodzące (min.) [0: wyłączone] - + Outgoing ports (Max) [0: disabled] Porty wychodzące (maks.) [0: wyłączone] - + 0 (permanent lease) 0 (dzierżawa stała) - + UPnP lease duration [0: permanent lease] Okres dzierżawy UPnP [0: dzierżawa stała] - + Stop tracker timeout [0: disabled] Limit czasu zatrzymania trackera [0: wyłączone] - + Notification timeout [0: infinite, -1: system default] Limit czasu powiadomienia [0: nieskończony, -1: domyślne systemowe] - + Maximum outstanding requests to a single peer Maksymalne zaległe żądania do pojedynczego partnera - - - - - + + + + + KiB KiB - + (infinite) (nieskończone) - + (system default) (domyślne systemowe) - + Delete files permanently - + Usuń pliki trwale - + Move files to trash (if possible) - + Przenieś pliki do kosza (jeśli to możliwe) - + Torrent content removing mode - + Tryb usuwania zawartości torrenta - + This option is less effective on Linux Ta opcja jest mniej efektywna w systemie Linux - + Process memory priority Priorytet pamięci procesu - + Bdecode depth limit Limit głębi bdecode - + Bdecode token limit Limit tokena bdecode - + Default Domyślny - + Memory mapped files Pliki mapowane w pamięci - + POSIX-compliant Zgodny z POSIX - + Simple pread/pwrite - + Proste pread/pwrite - + Disk IO type (requires restart) Typ we/wy dysku (wymaga ponownego uruchomienia): - - + + Disable OS cache Wyłącz pamięć podręczną systemu operacyjnego - + Disk IO read mode Tryb odczytu we/wy dysku - + Write-through Bez buforowania zapisu - + Disk IO write mode Tryb zapisu we/wy dysku - + Send buffer watermark Wyślij limit bufora - + Send buffer low watermark Wyślij dolny limit bufora - + Send buffer watermark factor Wyślij czynnik limitu bufora - + Outgoing connections per second Połączenia wychodzące na sekundę - - + + 0 (system default) 0 (domyślne systemowe) - + Socket send buffer size [0: system default] Rozmiar bufora wysyłania gniazda [0: domyślne systemowe]: - + Socket receive buffer size [0: system default] Rozmiar bufora odbierania gniazda [0: domyślne systemowe] - + Socket backlog size Rozmiar zaległości gniazda - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Interwał zapisu statystyk [0: wyłączone] - + .torrent file size limit Limit rozmiaru pliku .torrent - + Type of service (ToS) for connections to peers Typ usługi (ToS) do połączeń z partnerami - + Prefer TCP Preferuj TCP - + Peer proportional (throttles TCP) Partner współmierny (dławi TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Obsługuj międzynarodowe nazwy domen (IDN) - + Allow multiple connections from the same IP address Zezwalaj na wiele połączeń z tego samego adresu IP - + Validate HTTPS tracker certificates Sprawdź poprawność certyfikatów HTTPS trackerów - + Server-side request forgery (SSRF) mitigation Zapobieganie fałszowaniu żądań po stronie serwera (SSRF) - + Disallow connection to peers on privileged ports Nie zezwalaj na połączenia z partnerami na portach uprzywilejowanych - + It appends the text to the window title to help distinguish qBittorent instances Dołącza tekst do tytułu okna, aby pomóc rozróżnić instancje qBittorent - + Customize application instance name Dostosuj nazwę instancji aplikacji - + It controls the internal state update interval which in turn will affect UI updates Kontroluje częstotliwość aktualizacji stanu wewnętrznego, co z kolei wpłynie na aktualizacje interfejsu użytkownika - + Refresh interval Częstotliwość odświeżania - + Resolve peer host names Odczytuj nazwy hostów partnerów - + IP address reported to trackers (requires restart) Adres IP zgłoszony trackerom (wymaga ponownego uruchomienia) - + Port reported to trackers (requires restart) [0: listening port] - + Port zgłoszony do trackerom (wymaga ponownego uruchomienia) [0: port nasłuchujący] - + Reannounce to all trackers when IP or port changed Rozgłaszaj wszystkim trackerom po zmianie adresu IP lub portu - + Enable icons in menus Włącz ikony w menu - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Włącz przekierowanie portów dla wbudowanego trackera - + Enable quarantine for downloaded files Włącz kwarantannę dla pobranych plików - + Enable Mark-of-the-Web (MOTW) for downloaded files Włącz Mark-of-the-Web (MOTW) dla pobranych plików - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Dotyczy walidacji certyfikatów i działań niezwiązanych z protokołami torrent (np. kanałów RSS, aktualizacji programów, plików torrent, bazy danych geoip itp.) - + Ignore SSL errors - + Ignoruj ​​błędy SSL: - + (Auto detect if empty) (Autowykrywanie, jeśli puste) - + Python executable path (may require restart) Ścieżka pliku wykonywalnego Pythona (może wymagać ponownego uruchomienia) - + Start BitTorrent session in paused state - + Uruchom sesję BitTorrent w stanie wstrzymanym - + sec seconds - s + s - + -1 (unlimited) - + -1 (nieograniczone) - + BitTorrent session shutdown timeout [-1: unlimited] - + Limit czasu zamknięcia sesji BitTorrent [-1: nieograniczony] - + Confirm removal of tracker from all torrents Potwierdź usunięcie trackera ze wszystkich torrentów - + Peer turnover disconnect percentage Procent rozłączania obrotu partnerów - + Peer turnover threshold percentage Procent progu obrotu partnerów - + Peer turnover disconnect interval Interwał rozłączania obrotu partnerów - + Resets to default if empty Resetuje do ustawień domyślnych, jeśli puste - + DHT bootstrap nodes Węzły bootstrap DHT - + I2P inbound quantity Ilość ruchu przychodzącego I2P - + I2P outbound quantity Ilość ruchu wychodzącego I2P - + I2P inbound length Długość ruchu przychodzącego I2P - + I2P outbound length Długość ruchu wychodzącego I2P - + Display notifications Wyświetlaj powiadomienia - + Display notifications for added torrents Wyświetlaj powiadomienia dodanych torrentów - + Download tracker's favicon Pobierz ikonę ulubionych trackera - + Save path history length Długość historii ścieżki zapisu - + Enable speed graphs Włącz wykresy prędkości - + Fixed slots Stałe sloty - + Upload rate based Na podstawie współczynnika wysyłania - + Upload slots behavior Zachowanie slotów wysyłania - + Round-robin Karuzela - + Fastest upload Najszybsze wysyłanie - + Anti-leech - Anty-pijawka + Antypijawka - + Upload choking algorithm Algorytm dławienia wysyłania - + Confirm torrent recheck Potwierdź ponowne sprawdzanie torrenta - + Confirm removal of all tags Potwierdź usunięcie wszystkich znaczników - + Always announce to all trackers in a tier Zawsze ogłaszaj do wszystkich trackerów na poziomie - + Always announce to all tiers Zawsze ogłaszaj na wszystkich poziomach - + Any interface i.e. Any network interface Dowolny interfejs - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algorytm trybu mieszanego %1-TCP - + Resolve peer countries Uzgodnij państwa partnera - + Network interface Interfejs sieciowy - + Optional IP address to bind to Opcjonalny adres IP do powiązania - + Max concurrent HTTP announces Maksymalna liczba jednoczesnych komunikatów HTTP - + Enable embedded tracker Włącz wbudowany tracker - + Embedded tracker port Port wbudowanego trackera @@ -1382,142 +1393,142 @@ Invalid directory path - + Nieprawidłowa ścieżka katalogu Directory does not exist - + Katalog nie istnieje Invalid mode, allowed values: %1 - + Nieprawidłowy tryb, dozwolone wartości: %1 cookies must be array - + ciasteczka muszą być tablicą Application - + Running in portable mode. Auto detected profile folder at: %1 Uruchomiono w trybie przenośnym. Automatycznie wykryty folder profilu w: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Wykryto nadmiarową flagę wiersza poleceń: "%1". Tryb przenośny oznacza względne fastresume. - + Using config directory: %1 Korzystanie z katalogu konfiguracji: %1 - + Torrent name: %1 Nazwa torrenta: %1 - + Torrent size: %1 Rozmiar torrenta: %1 - + Save path: %1 Ścieżka zapisu: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent został pobrany w %1. - - + + Thank you for using qBittorrent. Dziękujemy za używanie qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, wysyłanie powiadomienia e-mail - + Add torrent failed Dodanie torrenta nie powiodło się - + Couldn't add torrent '%1', reason: %2. Nie można dodać torrenta '%1', powód: %2. - + The WebUI administrator username is: %1 Nazwa użytkownika administratora interfejsu WWW to: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Hasło administratora interfejsu WWW nie zostało ustawione. Dla tej sesji podano tymczasowe hasło: %1 - + You should set your own password in program preferences. Należy ustawić własne hasło w preferencjach programu. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Interfejs WWW jest wyłączony! Aby go włączyć, edytuj ręcznie plik konfiguracyjny. - + Running external program. Torrent: "%1". Command: `%2` Uruchamianie programu zewnętrznego. Torrent: "%1". Polecenie: `% 2` - + Failed to run external program. Torrent: "%1". Command: `%2` Uruchomienie programu zewnętrznego nie powiodło się. Torrent: "%1". Polecenie: `%2` - + Torrent "%1" has finished downloading Torrent "%1" skończył pobieranie - + WebUI will be started shortly after internal preparations. Please wait... Interfejs WWW zostanie uruchomiony wkrótce po wewnętrznych przygotowaniach. Proszę czekać... - - + + Loading torrents... Ładowanie torrentów... - + E&xit Zak&ończ - + I/O Error i.e: Input/Output Error Błąd we/wy - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Powód: %2 - + Torrent added Dodano torrent - + '%1' was added. e.g: xxx.avi was added. '%1' został dodany. - + Download completed Pobieranie zakończone - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 został uruchomiony. Identyfikator procesu: %2 - + This is a test email. - + To jest e-mail testowy. - + Test email - + E-mail testowy - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' został pobrany. - + Information Informacje - + To fix the error, you may need to edit the config file manually. Aby naprawić błąd, może być konieczna ręczna edycja pliku konfiguracyjnego. - + To control qBittorrent, access the WebUI at: %1 Aby kontrolować qBittorrent, należy uzyskać dostęp do interfejsu WWW pod adresem: %1 - + Exit Zakończ - + Recursive download confirmation Potwierdzenie pobierania rekurencyjnego - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' zawiera pliki torrent, czy chcesz rozpocząć ich pobieranie? - + Never Nigdy - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekursywne pobieranie pliku .torrent w obrębie torrenta. Torrent źródłowy: "%1". Plik: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Nie udało się ustawić limitu wykorzystania pamięci fizycznej (RAM). Kod błędu: %1. Komunikat o błędzie: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Nie udało się ustawić twardego limitu użycia pamięci fizycznej (RAM). Żądany rozmiar: %1. Twardy limit systemowy: %2. Kod błędu: %3. Komunikat o błędzie: "%4" - + qBittorrent termination initiated Rozpoczęto wyłączanie programu qBittorrent - + qBittorrent is shutting down... qBittorrent wyłącza się... - + Saving torrent progress... Zapisywanie postępu torrenta... - + qBittorrent is now ready to exit qBittorrent jest teraz gotowy do zakończenia @@ -1766,263 +1777,263 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi &Eksportuj... - + Matches articles based on episode filter. Dopasowane artykuły na podstawie filtra epizodów. - + Example: Przykład: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match dopasuje 2, 5, 8, poprzez 15, 30 oraz dalsze odcinki pierwszego sezonu - + Episode filter rules: Reguły filra odcinków: - + Season number is a mandatory non-zero value Numer sezonu jest obowiązkową wartością niezerową - + Filter must end with semicolon Filtr musi być zakończony średnikiem - + Three range types for episodes are supported: Obsługiwane są trzy rodzaje zakresu odcinków: - + Single number: <b>1x25;</b> matches episode 25 of season one Liczba pojedyncza: <b>1x25;</b> dopasuje odcinek 25 sezonu pierwszego - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Zwykły zakres: <b>1x25-40;</b> dopasuje odcinki 25 do 40 sezonu pierwszego - + Episode number is a mandatory positive value Numer odcinka jest obowiązkową wartością dodatnią - + Rules Reguły - + Rules (legacy) Reguły (przestarzałe) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Nieskończony zakres: <b>1x25-;</b> dopasuje odcinki 25 i wzwyż sezonu pierwszego, a także wszystkie odcinki późniejszych sezonów - + Last Match: %1 days ago Ostatni pasujący: %1 dni temu - + Last Match: Unknown Ostatni pasujący: nieznany - + New rule name Nazwa nowej reguły - + Please type the name of the new download rule. Wprowadź nazwę dla tworzonej reguły pobierania. - - + + Rule name conflict Konflikt nazw reguł - - + + A rule with this name already exists, please choose another name. Reguła o wybranej nazwie już istnieje. Wybierz inną. - + Are you sure you want to remove the download rule named '%1'? Czy na pewno usunąć regułę pobierania o nazwie %1? - + Are you sure you want to remove the selected download rules? Czy na pewno usunąć wybrane reguły pobierania? - + Rule deletion confirmation Potwierdzenie usuwania reguły - + Invalid action Nieprawidłowa czynność - + The list is empty, there is nothing to export. Lista jest pusta, nie ma czego eksportować. - + Export RSS rules Eksportuj reguły RSS - + I/O Error Błąd we/wy - + Failed to create the destination file. Reason: %1 Nie udało się utworzyć pliku docelowego. Powód: %1 - + Import RSS rules Importuj reguły RSS - + Failed to import the selected rules file. Reason: %1 Nie udało się zaimportować wybranego pliku reguł. Powód: %1 - + Add new rule... Dodaj nową regułę... - + Delete rule Usuń regułę - + Rename rule... Zmień nazwę reguły... - + Delete selected rules Usuń wybrane reguły - + Clear downloaded episodes... Wyczyść pobrane odcinki... - + Rule renaming Zmiana nazwy reguły - + Please type the new rule name Podaj nową nazwę reguły - + Clear downloaded episodes Wyczyść pobrane odcinki - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Czy na pewno chcesz wyczyścić listę pobranych odcinków dla wybranej reguły? - + Regex mode: use Perl-compatible regular expressions Tryb regex: używaj wyrażeń regularnych zgodnych z Perl - - + + Position %1: %2 Pozycja %1: %2 - + Wildcard mode: you can use Tryb wieloznaczny: można używać - - + + Import error Błąd podczas importowania - + Failed to read the file. %1 Nie udało się odczytać pliku. %1 - + ? to match any single character ? do dopasowania dowolnego pojedynczego znaku - + * to match zero or more of any characters * do dopasowania zera lub więcej dowolnych znaków - + Whitespaces count as AND operators (all words, any order) Odstępy traktowane są jako operatory AND (wszystkie słowa, dowolna kolejność) - + | is used as OR operator | jest użyty jako operator OR - + If word order is important use * instead of whitespace. Jeśli kolejność słów jest ważna, użyj * zamiast odstępu. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Wyrażenie z pustą %1 klauzulą (np. %2) - + will match all articles. będzie pasować do wszystkich artykułów. - + will exclude all articles. wykluczy wszystkie artykuły. @@ -2074,28 +2085,38 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Nie można przetworzyć danych wznowienia - - + + Cannot parse torrent info: %1 Nie można przetworzyć informacji torrenta: %1 - + Cannot parse torrent info: invalid format Nie można przetworzyć informacji torrenta: nieprawidłowy format - + Mismatching info-hash detected in resume data Wykryto niezgodny info hash w danych wznawiania - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Nie można zapisać metdanych torrenta w '%1'. Błąd: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Nie można zapisać danych wznawiania torrenta w '%1'. Błąd: %2. @@ -2106,16 +2127,17 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi + Cannot parse resume data: %1 Nie można przetworzyć danych wznowienia: %1 - + Resume data is invalid: neither metadata nor info-hash was found Dane wznawiania są nieprawidłowe: nie znaleziono metadanych ani info hashu - + Couldn't save data to '%1'. Error: %2 Nie można zapisać danych w '%1'. Błąd: %2 @@ -2123,38 +2145,60 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi BitTorrent::DBResumeDataStorage - + Not found. Nie znaleziono. - + Couldn't load resume data of torrent '%1'. Error: %2 Nie można wczytać danych wznawiania torrenta '%1'. Błąd: %2 - - + + Database is corrupted. Baza danych jest uszkodzona. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Nie można włączyć trybu dziennikowania zapisu z wyprzedzeniem (WAL). Błąd: %1. - + Couldn't obtain query result. Nie można uzyskać wyniku zapytania. - + WAL mode is probably unsupported due to filesystem limitations. Tryb WAL prawdopodobnie nie jest obsługiwany ze względu na ograniczenia systemu plików. - + + + Cannot parse resume data: %1 + Nie można przetworzyć danych wznowienia: %1 + + + + + Cannot parse torrent info: %1 + Nie można przetworzyć informacji torrenta: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Nie można rozpocząć transakcji. Błąd: %1 @@ -2162,22 +2206,22 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Nie można zapisać metdanych torrenta. Błąd: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Nie można przechować danych wznawiania torrenta '%1'. Błąd: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Nie można usunąć danych wznawiania torrenta '%1'. Błąd: %2 - + Couldn't store torrents queue positions. Error: %1 Nie można przechować pozycji w kolejce torrentów. Błąd: %1 @@ -2185,530 +2229,507 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Obsługa rozproszonej tablicy mieszającej (DHT): %1 - - - - - - - - - + + + + + + + + + ON WŁ. - - - - - - - - - + + + + + + + + + OFF WYŁ. - - + + Local Peer Discovery support: %1 Obsługa wykrywania partnerów w sieci lokalnej: %1 - + Restart is required to toggle Peer Exchange (PeX) support Ponowne uruchomienie jest wymagane, aby przełączyć obsługę wymiany partnerów (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Nie udało się wznowić torrenta. Torrent: "%1". Powód: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Nie udało się wznowić torrenta: wykryto niespójny identyfikator torrenta. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Wykryto niespójne dane: brak kategorii w pliku konfiguracyjnym. Kategoria zostanie przywrócona, ale jej ustawienia zostaną zresetowane do wartości domyślnych. Torrent: "%1". Kategoria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Wykryto niespójne dane: nieprawidłowa kategoria. Torrent: "%1". Kategoria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Wykryto niezgodność między ścieżkami zapisu odzyskanej kategorii i bieżącą ścieżką zapisu torrenta. Torrent jest teraz przełączony w tryb ręczny. Torrent: "%1". Kategoria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Wykryto niespójne dane: w pliku konfiguracyjnym brakuje znacznika. Znacznik zostanie odzyskany. Torrent: "%1". Znacznik: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Wykryto niespójne dane: nieprawidłowy znacznik. Torrent: "%1". Znacznik: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Wykryto zdarzenie wybudzenia systemu. Rozgłaszam wszystkim trackerom... - + Peer ID: "%1" Identyfikator partnera: "%1" - + HTTP User-Agent: "%1" Agent użytkownika HTTP: "%1" - + Peer Exchange (PeX) support: %1 Obsługa wymiany partnerów (PeX): %1 - - + + Anonymous mode: %1 Tryb anonimowy: %1 - - + + Encryption support: %1 Obsługa szyfrowania: %1 - - + + FORCED WYMUSZONE - + Could not find GUID of network interface. Interface: "%1" Nie mozna uzyskać GUID interfejsu sieciowego. Interfejs: "%1" - + Trying to listen on the following list of IP addresses: "%1" Próbuję nasłuchiwać na poniższej liście adresów IP: "%1" - + Torrent reached the share ratio limit. Torrent osiągnął limit współczynnika udziału. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent usunięto. - - - Removed torrent and deleted its content. - Usunięto torrent i skasowano jego zawartość. - - - Torrent paused. - Torrent wstrzymano. - - - + Super seeding enabled. Super-seedowanie włączone. - + Torrent reached the seeding time limit. Torrent osiągnął limit czasu seedowania. - + Torrent reached the inactive seeding time limit. Torrent osiągnął limit nieaktywnego czasu seedowania. - + Failed to load torrent. Reason: "%1" Nie udało się załadować torrenta. Powód: "%1" - + I2P error. Message: "%1". Błąd I2P. Komunikat: "%1". - + UPnP/NAT-PMP support: ON Obsługa UPnP/NAT-PMP: WŁ - + Saving resume data completed. - + Zapisywanie danych wznowienia zostało zakończone. - + BitTorrent session successfully finished. - + Sesja BitTorrent zakończona pomyślnie. - + Session shutdown timed out. - + Upłynął limit czasu zamknięcia sesji. - + Removing torrent. - + Usuwanie torrenta. - + Removing torrent and deleting its content. - + Usuwanie torrenta i kasowanie jego zawartości. - + Torrent stopped. - + Torrent zatrzymano. - + Torrent content removed. Torrent: "%1" - + Usunięto zawartość torrenta. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Nie udało się usunąć zawartości torrenta. Torrent: "%1". Błąd: "%2" - + Torrent removed. Torrent: "%1" - + Torrent usunięto. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Wykryto próbę dodania duplikatu torrenta. Istniejący torrent: %1. Wynik: %2 - + Merging of trackers is disabled - Scalanie trackerów jest wyłączone + Scalanie trackerów jest wyłączone - + Trackers cannot be merged because it is a private torrent - Nie można scalić trackerów, ponieważ jest to prywatny torrent + Nie można scalić trackerów, ponieważ jest to prywatny torrent - + Trackers are merged from new source - Trackery zostały scalone z nowego źródła + Trackery zostały scalone z nowego źródła - + UPnP/NAT-PMP support: OFF Obsługa UPnP/NAT-PMP: WYŁ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Nie udało się wyeksportować torrenta. Torrent: "%1". Cel: "%2". Powód: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Przerwano zapisywanie danych wznowienia. Liczba zaległych torrentów: %1 - + The configured network address is invalid. Address: "%1" Skonfigurowany adres sieciowy jest nieprawidłowy. Adres: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Nie udało się znaleźć skonfigurowanego adresu sieciowego do nasłuchu. Adres: "%1" - + The configured network interface is invalid. Interface: "%1" Skonfigurowany interfejs sieciowy jest nieprawidłowy. Interfejs: "%1" - + Tracker list updated - + Zaktualizowano listę trackerów - + Failed to update tracker list. Reason: "%1" - + Nie udało się zaktualizować listy trackerów. Powód: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Odrzucono nieprawidłowy adres IP podczas stosowania listy zbanowanych adresów IP. Adres IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Dodano tracker do torrenta. Torrent: "%1". Tracker: "%2". - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Usunięto tracker z torrenta. Torrent: "%1". Tracker: "%2". - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Dodano adres URL seeda do torrenta. Torrent: "%1". URL: "%2". - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Usunięto adres URL seeda z torrenta. Torrent: "%1". URL: "%2". - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Nie udało się usunąć pliku partfile. Torrent: "%1". Powód: "%2". - Torrent paused. Torrent: "%1" - Torrent wstrzymano. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent wznowiono. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrenta pobieranie zakończyło się. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Anulowano przenoszenie torrenta. Torrent: "%1". Źródło: "%2". Cel: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent zatrzymano. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Nie udało się zakolejkować przenoszenia torrenta. Torrent: "%1". Źródło: "%2". Cel: "%3". Powód: torrent obecnie przenosi się do celu - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Nie udało się zakolejkować przenoszenia torrenta. Torrent: "%1". Źródło: "%2". Cel: "%3". Powód: obie ścieżki prowadzą do tej samej lokalizacji - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Przenoszenie zakolejkowanego torrenta. Torrent: "%1". Źródło: "%2". Cel: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Rozpoczęcie przenoszenia torrenta. Torrent: "%1". Cel: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Nie udało się zapisać konfiguracji kategorii. Plik: "%1" Błąd: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Nie udało się przetworzyć konfiguracji kategorii. Plik: "%1". Błąd: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Pomyślnie przetworzono plik filtra IP. Liczba zastosowanych reguł: %1 - + Failed to parse the IP filter file Nie udało się przetworzyć pliku filtra IP - + Restored torrent. Torrent: "%1" Przywrócono torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Dodano nowy torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent wadliwy. Torrent: "%1". Błąd: "%2" - Removed torrent. Torrent: "%1" - Usunięto torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Usunięto torrent i skasowano jego zawartość. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentowi brakuje parametrów SSL. Torrent: "%1". Komunikat: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Alert błędu pliku. Torrent: "%1". Plik: "%2". Powód: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Mapowanie portu UPnP/NAT-PMP nie powiodło się. Komunikat: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Mapowanie portu UPnP/NAT-PMP powiodło się. Komunikat: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtr IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). port filtrowany (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). port uprzywilejowany (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Połączenie z adresem URL seeda nie powiodło się. Torrent: "%1". URL: "%2". Błąd: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" Sesja BitTorrent napotkała poważny błąd. Powód: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Błąd proxy SOCKS5. Adres: %1. Komunikat: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 ograniczenia trybu mieszanego - + Failed to load Categories. %1 Nie udało się załadować kategorii. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Nie udało się załadować konfiguracji kategorii. Plik: "%1". Błąd: "Nieprawidłowy format danych" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Usunięto torrent, ale nie udało się skasować jego zawartości i/lub pliku częściowego. Torrent: "%1". Błąd: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 jest wyłączone - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 jest wyłączone - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Wyszukanie DNS adresu URL seeda nie powiodło się. Torrent: "%1". URL: "%2". Błąd: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Odebrano komunikat o błędzie URL seeda. Torrent: "%1". URL: "%2". Komunikat: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Pomyślne nasłuchiwanie IP. Adres IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Nie udało się nasłuchiwać IP. Adres IP: "%1". Port: "%2/%3". Powód: "%4" - + Detected external IP. IP: "%1" Wykryto zewnętrzny IP. Adres IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Błąd: wewnętrzna kolejka alertów jest pełna, a alerty są odrzucane, może wystąpić spadek wydajności. Porzucony typ alertu: "%1". Komunikat: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Przeniesiono torrent pomyślnie. Torrent: "%1". Cel: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Nie udało się przenieść torrenta. Torrent: "%1". Źródło: "%2". Cel: "%3". Powód "%4" @@ -2758,47 +2779,47 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Nie udało się zapisać do pliku. Powód: "%1". Torrent jest teraz w trybie "tylko przesyłanie". - + Download first and last piece first: %1, torrent: '%2' Pobierz najpierw część pierwszą i ostatnią: %1, torrent: '%2' - + On Wł. - + Off Wył. - + Failed to reload torrent. Torrent: %1. Reason: %2 Nie udało się ponownie załadować torrenta. Torrent: %1. Powód: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Nie udało się wygenerować danych wznowienia. Torrent: "%1". Powód: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Nie udało się przywrócić torrenta. Pliki zostały prawdopodobnie przeniesione lub pamięć jest niedostępna. Torrent: "%1". Powód: "%2" - + Missing metadata Brakujące metadane - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Zmiana nazwy pliku nie powiodła się. Torrent: "%1", plik: "%2", powód: "%3" - + Performance alert: %1. More info: %2 Alert wydajności: %1. Więcej informacji: %2 @@ -2835,11 +2856,6 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Expected integer number in environment variable '%1', but got '%2' Oczekiwano liczbę całkowitą w zmiennej środowiskowej '%1', ale otrzymano '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parametr '%1' musi odpowiadać składni '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parametr '%1' musi odpowiadać składni '%1=%2' + Parametr '%1' musi odpowiadać składni '%1=%2' @@ -2968,11 +2984,7 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Add torrents as running or stopped - - - - Add torrents as started or paused - Dodaj torrenty jako rozpoczęte lub wstrzymane + Dodaj torrenty jako uruchomione lub zatrzymane @@ -3063,20 +3075,12 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Start torrents - + Uruchom torrenty Stop torrents - - - - Resume torrents - Wznów torrenty - - - Pause torrents - Wstrzymaj torrenty + Zatrzymaj torrenty @@ -3099,7 +3103,7 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi System - + Systemowy @@ -3174,11 +3178,7 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Also remove the content files - - - - Also permanently delete the files - Również trwale usuń pliki + Usuń również pliki z zawartością @@ -3390,47 +3390,43 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Pattern Format - + Format wzoru Plain text - + Zwykły tekst Wildcards - + Symbole wieloznaczne Regular expression - + Wyrażenie regularne GUIAddTorrentManager - + Downloading torrent... Source: "%1" Pobieranie torrenta... Źródło: "%1" - Trackers cannot be merged because it is a private torrent - Nie można scalić trackerów, ponieważ jest to prywatny torrent - - - + Torrent is already present Torrent jest już obecny - + Trackers cannot be merged because it is a private torrent. - + Nie można scalić trackerów, ponieważ jest to prywatny torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' jest już na liście transferów. Czy chcesz scalić trackery z nowego źródła? @@ -3548,6 +3544,40 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Obsługiwane pliki obrazów + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Zarządzanie energią znalazło odpowiedni interfejs D-Bus. Interfejs: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Błąd zarządzania energią. Czynność: %1. Błąd: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Nieoczekiwany błąd zarządzania energią. Stan: %1. Błąd: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi &Options... &Opcje... - - &Resume - W&znów - &Remove @@ -3762,7 +3788,7 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Sh&utdown System - + Zamknij syst&em @@ -3774,10 +3800,6 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Close Window Zamknij okno - - R&esume All - Wznów wszystki&e - Manage Cookies... @@ -3816,22 +3838,22 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Sta&rt - + U&ruchom Sto&p - + Za&trzymaj R&esume Session - + &Wznów sesję Pau&se Session - + W&strzymaj sesję @@ -3893,10 +3915,6 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi &Hibernate System &Hibernuj system - - S&hutdown System - Zamknij syst&em - &Statistics @@ -3917,14 +3935,6 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi &About &O programie - - &Pause - &Wstrzymaj - - - P&ause All - Ws&trzymaj wszystkie - &Add Torrent File... @@ -3958,12 +3968,12 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi - + Show Pokaż - + Check for program updates Sprawdź aktualizacje programu @@ -3978,388 +3988,383 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Jeśli lubisz qBittorrent, przekaż pieniądze! - + Execution Log Dziennik programu - + Clear the password Wyczyść hasło - + &Set Password &Ustaw hasło - + Preferences Preferencje - + &Clear Password Wyczyść ha&sło - + Transfers Transfery - - + + qBittorrent is minimized to tray qBittorrent jest zminimalizowany do zasobnika - - - + + + This behavior can be changed in the settings. You won't be reminded again. To zachowanie można zmienić w ustawieniach. Nie będziesz już otrzymywać przypomnień. - + Icons Only Tylko ikony - + Text Only Tylko tekst - + Text Alongside Icons Tekst obok ikon - + Text Under Icons Tekst pod ikonami - + Follow System Style Dopasuj do stylu systemu - - + + UI lock password Hasło blokady interfejsu - - + + Please type the UI lock password: Proszę podać hasło blokady interfejsu: - + Are you sure you want to clear the password? Czy jesteś pewien, że chcesz wyczyścić hasło? - + Use regular expressions Użyj wyrażeń regularnych - - + + Search Engine - Wyszukiwarka + Wyszukiwarka - + Search has failed - Wyszukiwanie nie powiodło się + Wyszukiwanie nie powiodło się - + Search has finished - Wyszukiwanie zakończone + Wyszukiwanie zakończone - + Search Szukaj - + Transfers (%1) Transfery (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent został zaktualizowany i konieczne jest jego ponowne uruchomienie. - + qBittorrent is closed to tray qBittorrent jest zamknięty do zasobnika - + Some files are currently transferring. Niektóre pliki są obecnie przenoszone. - + Are you sure you want to quit qBittorrent? Czy na pewno chcesz zamknąć qBittorrent? - + &No &Nie - + &Yes &Tak - + &Always Yes &Zawsze tak - + Options saved. Opcje zapisane. - + [PAUSED] %1 %1 is the rest of the window title - + [WSTRZYMANO] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [P: %1, W: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Nie można pobrać instalatora Pythona. Błąd: %1. +Należy zainstalować go ręcznie. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Zmiana nazwy instalatora Pythona nie powiodła się. Źródło: "%1". Miejsce docelowe: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Instalacja Pythona zakończona sukcesem. + Exit code: %1. + Kod wyjścia: %1. + + + + Reason: installer crashed. + Powód: instalator uległ awarii. + + + Python installation failed. - + Instalacja Pythona nie powiodła się. - + Launching Python installer. File: "%1". - + Uruchamianie instalatora Pythona. Plik: "%1". - - + + Missing Python Runtime Nie znaleziono środowiska wykonawczego Pythona - + qBittorrent Update Available Dostępna aktualizacja qBittorrenta - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python jest wymagany do używania wyszukiwarki, ale wygląda na to, że nie jest zainstalowany. Czy chcesz go teraz zainstalować? - + Python is required to use the search engine but it does not seem to be installed. Python jest wymagany do używania wyszukiwarki, ale wygląda na to, że nie jest zainstalowany. - - + + Old Python Runtime Stare środowisko wykonawcze Pythona - + A new version is available. Dostępna jest nowa wersja. - + Do you want to download %1? Czy chcesz pobrać %1? - + Open changelog... Otwórz dziennik zmian... - + No updates available. You are already using the latest version. Nie ma dostępnych aktualizacji. Korzystasz już z najnowszej wersji. - + &Check for Updates S&prawdź aktualizacje - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Twoja wersja Pythona (%1) jest przestarzała. Minimalny wymóg: %2. Czy chcesz teraz zainstalować nowszą wersję? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Twoja wersja Pythona (%1) jest przestarzała. Uaktualnij ją do najnowszej wersji, aby wyszukiwarki mogły działać. Minimalny wymóg: %2. - + Paused - Wstrzymano + Wstrzymano - + Checking for Updates... Sprawdzanie aktualizacji... - + Already checking for program updates in the background Trwa sprawdzanie aktualizacji w tle - + Python installation in progress... - + Instalacja Pythona w toku... - + Failed to open Python installer. File: "%1". - + Nie udało się otworzyć instalatora Pythona. Plik: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Nieudane sprawdzenie skrótu MD5 instalatora Pythona. Plik: "%1". Wynik skrótu: "%2". Oczekiwany skrót: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Nieudane sprawdzenie skrótu SHA3-512 instalatora Pythona. Plik: "%1". Wynik skrótu: "%2". Oczekiwany skrót: "%3". - + Download error Błąd pobierania - Python setup could not be downloaded, reason: %1. -Please install it manually. - Nie można pobrać instalatora Pythona z powodu %1 . -Należy zainstalować go ręcznie. - - - - + + Invalid password Nieprawidłowe hasło - + Filter torrents... Filtruj torrenty... - + Filter by: Filtruj według: - + The password must be at least 3 characters long Hasło musi mieć co najmniej 3 znaki - - - + + + RSS (%1) RSS (%1) - + The password is invalid Podane hasło jest nieprawidłowe - + DL speed: %1 e.g: Download speed: 10 KiB/s Pobieranie: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Wysyłanie: %1 - + Hide Ukryj - + Exiting qBittorrent Zamykanie qBittorrent - + Open Torrent Files Otwórz pliki torrent - + Torrent Files Pliki .torrent @@ -4556,7 +4561,7 @@ Należy zainstalować go ręcznie. SSL error, URL: "%1", errors: "%2" - + Błąd SSL, adres URL: "%1", błędy: "%2" @@ -5853,47 +5858,47 @@ Należy zainstalować go ręcznie. Net::Smtp - + Connection failed, unrecognized reply: %1 Połączenie nie powiodło się, nierozpoznana odpowiedź: %1 - + Authentication failed, msg: %1 Uwierzytelnianie nie powiodło się, kom.: %1 - + <mail from> was rejected by server, msg: %1 <mail from> została odrzucona przez serwer, kom.: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> został odrzucony przez serwer, kom.: %1 - + <data> was rejected by server, msg: %1 <data> zostały odrzucone przez serwer, kom.: %1 - + Message was rejected by the server, error: %1 Wiadomość została odrzucona przez serwer, błąd: %1 - + Both EHLO and HELO failed, msg: %1 EHLO i HELO nie powiodły się, kom.: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Serwer SMTP nie wydaje się obsługiwać żadnych trybów uwierzytelniających, które obsługujemy [CRAM-MD5|PLAIN|LOGIN], pomijam uwierzytelnianie, wiedząc, że prawdopodobnie się nie powiedzie... Tryby uwierzytelniania serwera: %1 - + Email Notification Error: %1 Błąd powiadomienia e-mail: %1 @@ -5935,10 +5940,6 @@ Należy zainstalować go ręcznie. RSS RSS - - Web UI - Interfejs WWW - Advanced @@ -5959,14 +5960,6 @@ Należy zainstalować go ręcznie. Confirm when deleting torrents Potwierdzaj usuwanie torrentów - - Shows a confirmation dialog upon pausing/resuming all the torrents - Pokazuje okno dialogowe potwierdzenia po wstrzymaniu/wznawianiu wszystkich torrentów - - - Confirm "Pause/Resume all" actions - Potwierdź czynności "Wstrzymaj/Wznów wszystkie". - Use alternating row colors @@ -5983,10 +5976,6 @@ Należy zainstalować go ręcznie. Always Zawsze - - Paused torrents only - Tylko wstrzymane torrenty - Action on double-click @@ -5997,10 +5986,6 @@ Należy zainstalować go ręcznie. Downloading torrents: Pobierane torrenty: - - Start / Stop Torrent - Uruchom / Zatrzymaj pobieranie - @@ -6059,179 +6044,179 @@ Należy zainstalować go ręcznie. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Układ zawartości torrenta: - + Original Pierwotny - + Create subfolder Utwórz podfolder - + Don't create subfolder Nie twórz podfolderu - + The torrent will be added to the top of the download queue Torrent zostanie dodany na początek kolejki pobierania - + Add to top of queue The torrent will be added to the top of the download queue Dodaj na początek kolejki - + When duplicate torrent is being added Gdy dodawany jest zduplikowany torrent - + Merge trackers to existing torrent Scal trackery z istniejącym torrentem - + Keep unselected files in ".unwanted" folder Zachowaj niewybrane pliki w folderze ".unwanted" - + Add... Dodaj... - + Options.. Opcje... - + Remove Usuń - + Email notification &upon download completion Wyślij e-mail po &ukończeniu pobierania - + Send test email - + Wyślij e-mail testowy - + Run on torrent added: - + Uruchom po dodaniu torrenta: - + Run on torrent finished: - + Uruchom po ukończeniu torrenta: - + Peer connection protocol: Protokół połączenia z partnerami: - + Any Każdy - + I2P (experimental) I2P (eksperymentalne) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Jeśli &quot;tryb mieszany&quot; jest włączony, torrenty I2P mogą również uzyskiwać partnerzy z innych źródeł niż tracker i łączyć się ze zwykłymi adresami IP, nie zapewniając żadnej anonimizacji. Może to być przydatne, jeśli użytkownik nie jest zainteresowany anonimizacją I2P, ale nadal chce mieć możliwość łączenia się z partnerami I2P.</p></body></html> - - - + Mixed mode Tryb mieszany - Some options are incompatible with the chosen proxy type! - Niektóre opcje są niezgodne z wybranym typem proxy! + Niektóre opcje są niezgodne z wybranym typem proxy! - + If checked, hostname lookups are done via the proxy Jeśli zaznaczono, wyszukiwanie nazw hostów odbywa się za pośrednictwem proxy - + Perform hostname lookup via proxy Wykonaj wyszukiwanie nazwy hosta przez serwer proxy - + Use proxy for BitTorrent purposes Użyj proxy do celów BitTorrenta - + RSS feeds will use proxy Kanały RSS będą korzystać z proxy - + Use proxy for RSS purposes Użyj proxy do celów RSS - + Search engine, software updates or anything else will use proxy Wyszukiwarka, aktualizacje oprogramowania lub cokolwiek innego będzie używać proxy - + Use proxy for general purposes Użyj proxy do celów ogólnych - + IP Fi&ltering Filtrowa&nie IP - + Schedule &the use of alternative rate limits &Harmonogram użycia alternatywnych limitów prędkości - + From: From start time Od: - + To: To end time Do: - + Find peers on the DHT network Znajdź partnerów w sieci DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Wymagaj szyfrowania: łącz się tylko z partnerami z szyfrowaniem protokołu Wyłącz szyfrowanie: łącz się tylko z partnerami bez szyfrowania protokołu - + Allow encryption Zezwalaj na szyfrowanie - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Więcej informacji</a>) - + Maximum active checking torrents: Maksimum aktywnego sprawdzania torrentów: - + &Torrent Queueing K&olejkowanie torrentów - + When total seeding time reaches Gdy całkowity czas seedowania osiągnie - + When inactive seeding time reaches Gdy nieaktywny czas seedowania osiągnie - A&utomatically add these trackers to new downloads: - A&utomatycznie dodaj te trackery do nowych pobierań: - - - + RSS Reader Czytnik RSS - + Enable fetching RSS feeds Włącz pobieranie kanałów RSS - + Feeds refresh interval: Częstotliwość odświeżania kanałów: - + Same host request delay: Opóźnienie żądania tego samego hosta: - + Maximum number of articles per feed: Maksymalna liczba artykułów na kanał: - - - + + + min minutes min - + Seeding Limits Limity seedowania - Pause torrent - Wstrzymaj torrent - - - + Remove torrent Usuń torrent - + Remove torrent and its files Usuń torrent i jego pliki - + Enable super seeding for torrent Włącz super-seedowanie dla torrenta - + When ratio reaches Gdy współczynnik udziału osiągnie - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Zatrzymaj torrent - + A&utomatically append these trackers to new downloads: - + Auto&matycznie dodawaj te trackery do nowych pobrań: - + Automatically append trackers from URL to new downloads: - + Automatycznie dodawaj trackery z adresu URL do nowych pobrań: - + URL: - Adres URL: + Adres URL: - + Fetched trackers - + Pobrane trackery - + Search UI - + Interfejs wyszukiwania - + Store opened tabs - + Przechowuj otwarte karty - + Also store search results - + Przechowuj również wyniki wyszukiwania - + History length - + Długość historii - + RSS Torrent Auto Downloader Automatyczne pobieranie torrentów RSS - + Enable auto downloading of RSS torrents Włącz automatyczne pobieranie torrentów RSS - + Edit auto downloading rules... Edytuj reguły automatycznego pobierania... - + RSS Smart Episode Filter Inteligentny filtr odcinków RSS - + Download REPACK/PROPER episodes Pobierz odcinki REPACK/PROPER - + Filters: Filtry: - + Web User Interface (Remote control) Interfejs WWW (zdalne zarządzanie) - + IP address: Adres IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Ustal adres IPv4 albo IPv6. Możesz ustawić 0.0.0.0 dla adresu IPv4, "::" dla adresu IPv6, albo "*" dla zarówno IPv4 oraz IPv6. - + Ban client after consecutive failures: Zbanuj klienta po kolejnych niepowodzeniach: - + Never Nigdy - + ban for: ban na: - + Session timeout: Limit czasu sesji: - + Disabled Wyłączone - Enable cookie Secure flag (requires HTTPS) - Włącz flagę bezpieczeństwa ciasteczka (wymaga HTTPS) - - - + Server domains: Domeny serwera: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ należy wpisać nazwy domen używane przez serwer interfejsu WWW. Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. - + &Use HTTPS instead of HTTP &Używaj HTTPS zamiast HTTP - + Bypass authentication for clients on localhost Pomiń uwierzytelnianie dla klientów lokalnego hosta - + Bypass authentication for clients in whitelisted IP subnets Pomiń uwierzytelnianie dla klientów w podsieciach IP z białej listy - + IP subnet whitelist... Biała lista podsieci IP... - + Use alternative WebUI - + Używaj alternatywnego interfejsu WWW - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Określ adresy IP zwrotnego proxy (lub podsieci, np. 0.0.0.0/24), aby używać przekazywanego adresu klienta (nagłówek X-Forwarded-For). Użyj ';' do dzielenia wielu wpisów. - + Upda&te my dynamic domain name A&ktualizuj nazwę domeny dynamicznej @@ -6519,12 +6502,12 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika Search - + Szukaj WebUI - + Interfejs WWW @@ -6539,29 +6522,29 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika Style: - + Styl: Color scheme: - + Schemat kolorów: Stopped torrents only - + Tylko zatrzymane torrenty Start / stop torrent - + Uruchom / zatrzymaj torrent Open torrent options dialog - + Otwórz okno dialogowe opcji torrenta @@ -6602,7 +6585,7 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika &Log Files - + Plik &dziennika @@ -6620,99 +6603,99 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika Usuń kopie dzienników starszych niż: - + Show external IP in status bar - + Pokaż zewnętrzny adres IP na pasku stanu - + When adding a torrent Podczas dodawania torrenta - + Bring torrent dialog to the front Przywołaj okno dialogowe torrenta na wierzch - + The torrent will be added to download list in a stopped state - + Torrent zostanie dodany do listy pobierania w stanie zatrzymanym - + Also delete .torrent files whose addition was cancelled Usuń także pliki .torrent, których dodanie zostało anulowane - + Also when addition is cancelled Także gdy dodanie zostało anulowane - + Warning! Data loss possible! Uwaga! Możliwa utrata danych! - + Saving Management Zarządzanie zapisywaniem - + Default Torrent Management Mode: Domyślny tryb zarządzania torrentem: - + Manual Ręczny - + Automatic Automatyczny - + When Torrent Category changed: Gdy zmieniono kategorię torrenta: - + Relocate torrent Przenieś torrent - + Switch torrent to Manual Mode Przełącz torrent na tryb ręczny - - + + Relocate affected torrents Przenieś dotknięte torrenty - - + + Switch affected torrents to Manual Mode Przełącz zależne torrenty na tryb ręczny - + Use Subcategories Użyj podkategorii - + Default Save Path: Domyślna ścieżka zapisu: - + Copy .torrent files to: Kopiuj pliki .torrent do: @@ -6722,26 +6705,22 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika Pokazuj ikonę &qBittorrent w obszarze powiadomień - &Log file - Plik &dziennika - - - + Display &torrent content and some options Pokaż zawartość &torrenta i kilka opcji - + De&lete .torrent files afterwards P&otem usuń pliki .torrent - + Copy .torrent files for finished downloads to: Kopiuj pliki .torrent zakończonych pobierań do: - + Pre-allocate disk space for all files Rezerwuj miejsce na dysku dla wszystkich plików @@ -6771,10 +6750,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika Preview file, otherwise open destination folder Podgląd pliku, w przeciwnym razie otwórz folder docelowy - - Show torrent options - Pokaż opcje torrenta - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika lat - + Log performance warnings Rejestruj ostrzeżenia dotyczące wydajności - The torrent will be added to download list in a paused state - Torrent zostanie dodany do listy pobierania w stanie wstrzymanym - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Nie uruchamiaj automatycznie pobierań - + Whether the .torrent file should be deleted after adding it Czy plik .torrent powinien zostać usunięty po jego dodaniu - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Przydziel pełne rozmiary plików na dysku przed rozpoczęciem pobierania, aby zminimalizować fragmentację. Przydatne tylko w przypadku dysków twardych (HDD). - + Append .!qB extension to incomplete files Dodaj rozszerzenie .!qB do niekompletnych plików - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Gdy pobierany jest torrent, zaoferuj dodanie torrentów z dowolnych plików .torrent w nim zawartych - + Enable recursive download dialog Włącz okno dialogowe pobierania rekursywnego - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatycznie: różne właściwości torrentów (np. ścieżka zapisu) zostaną określone przez powiązaną kategorię Ręcznie: różne właściwości torrenta (np. ścieżka zapisu) muszą być przypisane ręcznie - + When Default Save/Incomplete Path changed: Po zmianie domyślnej ścieżki zapisu/ścieżki niekompletnych: - + When Category Save Path changed: Gdy zmieniono ścieżkę zapisu kategorii: - + Use Category paths in Manual Mode Użyj ścieżek kategorii w trybie ręcznym - + Resolve relative Save Path against appropriate Category path instead of Default one Rozwiąż relatywną ścieżkę zapisu z odpowiednią ścieżką kategorii zamiast domyślnej @@ -6922,50 +6893,50 @@ Ręcznie: różne właściwości torrenta (np. ścieżka zapisu) muszą być prz Stan okna qBittorrent przy uruchamianiu - + Torrent stop condition: Warunek zatrzymania torrenta: - - + + None Żaden - - + + Metadata received Odebrane metadane - - + + Files checked Sprawdzone pliki - + Ask for merging trackers when torrent is being added manually Pytaj o scalenie trackerów, gdy torrent jest dodawany ręcznie - + Use another path for incomplete torrents: Użyj innej ścieżki do niekompletnych torrentów: - + Automatically add torrents from: Automatycznie dodawaj torrenty z: - + Excluded file names Wykluczone nazwy plików - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: filtruje dokładną nazwę pliku. readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale nie 'readme10.txt'. - + Receiver Odbiorca - + To: To receiver Do: - + SMTP server: Serwer SMTP: - + Sender Nadawca - + From: From sender Od: - + This server requires a secure connection (SSL) Ten serwer wymaga bezpiecznego połączenia (SSL) - - + + Authentication Uwierzytelnianie - - - - + + + + Username: Nazwa użytkownika: - - - - + + + + Password: Hasło: - + Run external program Uruchom program zewnętrzny - Run on torrent added - Uruchom po dodaniu torrenta - - - Run on torrent finished - Uruchom po ukończeniu torrenta - - - + Show console window Pokaż okno konsoli - + TCP and μTP TCP oraz μTP - + Listening Port Port nasłuchu - + Port used for incoming connections: Port do połączeń przychodzących: - + Set to 0 to let your system pick an unused port Ustaw na 0, aby system mógł wybrać nieużywany port - + Random Losowy - + Use UPnP / NAT-PMP port forwarding from my router Używaj UPnP / NAT-PMP do przekierowania portów na moim routerze - + Connections Limits Limit połączeń - + Maximum number of connections per torrent: Maksymalna liczba połączeń na torrent: - + Global maximum number of connections: Maksymalna liczba połączeń: - + Maximum number of upload slots per torrent: Maksymalna liczba slotów wysyłania na torrent: - + Global maximum number of upload slots: Maksymalna liczba slotów wysyłania: - + Proxy Server Serwer proxy - + Type: Typ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections W przeciwnym razie serwer proxy będzie używany tylko do połączeń z trackerem - + Use proxy for peer connections Użyj proxy do połączeń z partnerami - + A&uthentication U&wierzytelnianie - Info: The password is saved unencrypted - Informacja: hasło jest zapisywane bez szyfrowania + Informacja: hasło jest zapisywane bez szyfrowania - + Filter path (.dat, .p2p, .p2b): Ścieżka do pliku filtra (.dat, .p2p, .p2b): - + Reload the filter Przeładuj filtr - + Manually banned IP addresses... Ręcznie zbanowane adresy IP... - + Apply to trackers Zastosuj do trackerów - + Global Rate Limits Ogólne limity prędkości - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Wysyłanie: - - + + Download: Pobieranie: - + Alternative Rate Limits Alternatywne limity prędkości - + Start time Czas rozpoczęcia - + End time Czas zakończenia - + When: Kiedy: - + Every day Codziennie - + Weekdays Dni robocze - + Weekends Weekendy - + Rate Limits Settings Ustawienia limitów prędkości - + Apply rate limit to peers on LAN Stosuj limity prędkości do partnerów w LAN - + Apply rate limit to transport overhead Stosuj limity prędkości do transferów z narzutem - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Jeśli "tryb mieszany" jest włączony, torrenty I2P mogą również uzyskiwać partnerzy z innych źródeł niż tracker i łączyć się ze zwykłymi adresami IP, nie zapewniając żadnej anonimizacji. Może to być przydatne, jeśli użytkownik nie jest zainteresowany anonimizacją I2P, ale nadal chce mieć możliwość łączenia się z partnerami I2P.</p></body></html> - + Apply rate limit to µTP protocol Stosuj limity prędkości do protokołu µTP - + Privacy Prywatność - + Enable DHT (decentralized network) to find more peers Włącz sieć DHT (sieć rozproszona), aby odnależć więcej partnerów - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Wymieniaj partnerów pomiędzy kompatybilnymi klientami sieci Bittorrent (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Włącz wymianę partnerów (PeX), aby odnależć więcej partnerów - + Look for peers on your local network Wyszukuj partnerów w sieci lokalnej - + Enable Local Peer Discovery to find more peers Włącz wykrywanie partnerów w sieci lokalnej, aby znaleźć więcej partnerów - + Encryption mode: Tryb szyfrowania: - + Require encryption Wymagaj szyfrowania - + Disable encryption Wyłącz szyfrowanie - + Enable when using a proxy or a VPN connection Włącz podczas używania proxy lub połączenia VPN - + Enable anonymous mode Włącz tryb anonimowy - + Maximum active downloads: Maksymalna liczba aktywnych pobierań: - + Maximum active uploads: Maksymalna liczba aktywnych wysyłań: - + Maximum active torrents: Maksymalna liczba aktywnych torrentów: - + Do not count slow torrents in these limits Nie wliczaj powolnych torrentów do tych limitów - + Upload rate threshold: Próg prędkości wysyłania: - + Download rate threshold: Próg prędkości pobierania: - - - - + + + + sec seconds s - + Torrent inactivity timer: Zegar bezczynności torrenta: - + then następnie - + Use UPnP / NAT-PMP to forward the port from my router Używaj UPnP / NAT-PMP do przekierowania portów na moim routerze - + Certificate: Certyfikat: - + Key: Klucz: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informacje o certyfikatach</a> - + Change current password Zmień obecne hasło - Use alternative Web UI - Używaj alternatywnego interfejsu WWW - - - + Files location: Położenie plików: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Lista alternatywnych interfejsów WWW</a> - + Security Bezpieczeństwo - + Enable clickjacking protection Włącz ochronę przed porywaniem kliknięć - + Enable Cross-Site Request Forgery (CSRF) protection Włącz ochronę przed Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Włącz flagę bezpieczeństwa ciasteczka (wymaga połączenia HTTPS lub localhost) - + Enable Host header validation Włącz sprawdzanie nagłówków hosta - + Add custom HTTP headers Dodaj niestandardowe nagłówki HTTP - + Header: value pairs, one per line Nagłówek: pary wartości, po jednej w wierszu - + Enable reverse proxy support Włącz obsługę zwrotnego proxy - + Trusted proxies list: Lista zaufanych proxy: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Przykłady konfiguracji odwrotnego serwera proxy</a> - + Service: Usługa: - + Register Zarejestruj - + Domain name: Nazwa domeny: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Poprzez włączenie tych opcji możesz <strong>nieodwołalnie stracić</strong> twoje pliki .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Jeżeli włączysz drugą opcję (&ldquo;Także gdy dodanie zostało anulowane&rdquo;), plik .torrent <strong>zostanie usunięty</strong> nawet po wciśnięciu &ldquo;<strong>Anuluj</strong>&rdquo; w oknie &ldquo;Dodaj torrent&rdquo; @@ -7520,12 +7478,12 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Wybierz plik motywu interfejsu qBittorrent - + Choose Alternative UI files location Wybierz położenie plików alternatywnego interfejsu - + Supported parameters (case sensitive): Obsługiwane parametry (z uwzględnieniem wielkości liter): @@ -7545,183 +7503,183 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Wyłączono, ponieważ nie udało się wykryć obecności w zasobniku systemowym - + No stop condition is set. Nie jest ustawiony żaden warunek zatrzymania. - + Torrent will stop after metadata is received. Torrent zatrzyma się po odebraniu metadanych. - + Torrent will stop after files are initially checked. Torrent zatrzyma się po wstępnym sprawdzeniu plików. - + This will also download metadata if it wasn't there initially. Spowoduje to również pobranie metadanych, jeśli początkowo ich tam nie było. - + %N: Torrent name %N: Nazwa torrenta - + %L: Category %L: Kategoria - + %F: Content path (same as root path for multifile torrent) %F: Ścieżka zawartości (taka sama, jak główna ścieżka do wieloplikowych torrentów) - + %R: Root path (first torrent subdirectory path) %R: Ścieżka główna (pierwsza ścieżka podkatalogu torrenta) - + %D: Save path %D: Ścieżka zapisu - + %C: Number of files %C: Liczba plików - + %Z: Torrent size (bytes) %Z: Rozmiar torrenta (w bajtach) - + %T: Current tracker %T: Bieżący tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Wskazówka: otocz parametr cudzysłowem, aby uniknąć odcięcia tekstu (np. "%N") - + Test email - + E-mail testowy - + Attempted to send email. Check your inbox to confirm success - + Próbowano wysłać e-mail. Sprawdź skrzynkę odbiorczą, aby potwierdzić powodzenie - + (None) (Żaden) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent będzie uważany za powolny, jeśli jego szybkość pobierania i wysyłania pozostanie poniżej tych wartości sekund "Zegara bezczynności torrenta" - + Certificate Certyfikat - + Select certificate Wybierz certyfikat - + Private key Klucz prywatny - + Select private key Wybierz klucz prywatny - + WebUI configuration failed. Reason: %1 Konfiguracja interfejsu WWW nie powiodła się. Powód: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + Zaleca się korzystanie z %1 w celu zapewnienia najlepszej zgodności z ciemnym trybem systemu Windows - + System System default Qt style - + Systemowy - + Let Qt decide the style for this system - + Niech Qt zdecyduje o stylu tego systemu - + Dark Dark color scheme - + Ciemny - + Light Light color scheme - + Jasny - + System System color scheme - + Systemowy - + Select folder to monitor Wybierz folder do monitorowania - + Adding entry failed Dodanie wpisu nie powiodło się - + The WebUI username must be at least 3 characters long. Nazwa użytkownika interfejsu WWW musi składać się z co najmniej 3 znaków. - + The WebUI password must be at least 6 characters long. Hasło interfejsu WWW musi składać się z co najmniej 6 znaków. - + Location Error Błąd położenia - - + + Choose export directory Wybierz katalog eksportu - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Gdy te opcje zostaną włączone, qBittorrent <strong>usunie</strong> pliki .torrent po ich pomyślnym (pierwsza opcja) lub niepomyślnym (druga opcja) dodaniu do kolejki pobierania. Stosuje się to <strong>nie tylko</strong> do plików otwarych poprzez czynność menu &ldquo;Dodaj torrent&rdquo;, ale także do plików otwartych poprzez <strong>skojarzenie typu pliku</strong> @@ -7731,69 +7689,69 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Plik motywu interfejsu qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Znaczniki (oddzielone przecinkiem) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (lub '-', jeśli niedostępne) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (lub '-', jeśli niedostępne) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Identyfikator torrenta (albo info hash sha-1 dla torrenta v1 lub przycięty info hash sha-256 dla torrenta v2/hybrydowego) - - + + Choose a save directory Wybierz katalog docelowy - + Torrents that have metadata initially will be added as stopped. Torrenty, które mają metadane, początkowo zostaną dodane jako zatrzymane. - + Choose an IP filter file Wybierz plik filtra IP - + All supported filters Wszystkie obsługiwane filtry - + The alternative WebUI files location cannot be blank. Lokalizacja plików alternatywnego interfejsu WWW nie może być pusta. - + Parsing error Błąd przetwarzania - + Failed to parse the provided IP filter Nie udało się przetworzyć podanego filtra IP - + Successfully refreshed Pomyślnie odświeżony - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Pomyślnie przetworzono podany filtr IP: zastosowano %1 reguł. @@ -7804,18 +7762,18 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Preferencje - + Time Error Błąd ustawień harmonogramu - + The start time and the end time can't be the same. Czas uruchomienia nie może byś taki sam jak czas zakończenia. - - + + Length Error Błąd długości @@ -7900,169 +7858,169 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Peer is using NAT hole punching - + Partner używa dziurkowania NAT PeerListWidget - + Country/Region Kraj/Region - + IP/Address IP/Addres - + Port Port - + Flags Flagi - + Connection Połączenie - + Client i.e.: Client application Klient - + Peer ID Client i.e.: Client resolved from Peer ID Identyfikator klienta partnera - + Progress i.e: % downloaded Postęp - + Down Speed i.e: Download speed Pobieranie - + Up Speed i.e: Upload speed Wysyłanie - + Downloaded i.e: total data downloaded Pobrano - + Uploaded i.e: total data uploaded Wysłano - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Trafność - + Files i.e. files that are being downloaded right now Pliki - + Column visibility Widoczność kolumy - + Resize columns Zmień rozmiar kolumn - + Resize all non-hidden columns to the size of their contents Zmień rozmiar wszystkich nieukrytych kolumn do rozmiaru ich zawartości - + Add peers... Dodaj partnerów... - - + + Adding peers Dodawamie partnerów - + Some peers cannot be added. Check the Log for details. Niektórzy partnerzy nie mogą zostać dodani. Sprawdź szczegóły w Dzienniku. - + Peers are added to this torrent. Partnerzy zostają dodawani do tego torrenta. - - + + Ban peer permanently Zbanuj partnera na stałe - + Cannot add peers to a private torrent Nie można dodać partnerów do prywatnego torrenta - + Cannot add peers when the torrent is checking Nie można dodać partnerów, gdy torrent jest sprawdzany - + Cannot add peers when the torrent is queued Nie można dodać partnerów, gdy torrent jest w kolejce - + No peer was selected Nie wybrano partnera - + Are you sure you want to permanently ban the selected peers? Czy na pewno zbanować na stałe wybranych partnerów? - + Peer "%1" is manually banned Partner "%1" został zbanowany ręcznie - + N/A Nie dotyczy - + Copy IP:port Kopiuj IP:port @@ -8343,34 +8301,27 @@ Te wtyczki zostały wyłączone. PowerManagement - qBittorrent is active - qBittorrent jest aktywny + qBittorrent jest aktywny PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Zarządzanie energią znalazło odpowiedni interfejs D-Bus. Interfejs: %1 + Zarządzanie energią znalazło odpowiedni interfejs D-Bus. Interfejs: %1 - Power management error. Did not found suitable D-Bus interface. - Błąd zarządzania energią. Nie znaleziono odpowiedniego interfejsu D-Bus. + Błąd zarządzania energią. Nie znaleziono odpowiedniego interfejsu D-Bus. - - - Power management error. Action: %1. Error: %2 - Błąd zarządzania energią. Czynność: %1. Błąd: %2 + Błąd zarządzania energią. Czynność: %1. Błąd: %2 - Power management unexpected error. State: %1. Error: %2 - Nieoczekiwany błąd zarządzania energią. Stan: %1. Błąd: %2 + Nieoczekiwany błąd zarządzania energią. Stan: %1. Błąd: %2 @@ -8614,12 +8565,12 @@ Te wtyczki zostały wyłączone. Ratio / Time Active (in months), indicates how popular the torrent is - + Współczynnik / Czas aktywności (w miesiącach) wskazuje, jak popularny jest torrent Popularity: - + Popularność: @@ -8654,7 +8605,7 @@ Te wtyczki zostały wyłączone. Private: - + Prywatne: @@ -8662,187 +8613,158 @@ Te wtyczki zostały wyłączone. Ścieżka zapisu: - + Never Nigdy - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ma %3) - - + + %1 (%2 this session) %1 (w tej sesji %2) - - + + N/A Nie dotyczy - + Yes - Tak + Tak - + No - Nie + Nie - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (seedowane przez %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (maksymalnie %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (całkowicie %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (średnio %2) - + Add web seed Add HTTP source - + Dodaj seed sieciowy - + Add web seed: - + Dodaj seed sieciowy: - - + + This web seed is already in the list. - + Ten seed sieciowy już jest na liście. - New Web seed - Nowy seed sieciowy - - - Remove Web seed - Usuń seed sieciowy - - - Copy Web seed URL - Kopiuj URL seeda sieciowego - - - Edit Web seed URL - Edytuj URL seeda sieciowego - - - + Filter files... Filtrowane pliki... - + Add web seed... - + Dodaj seed sieciowy... - + Remove web seed - + Usuń seed sieciowy - + Copy web seed URL - + Kopiuj adres URL seeda sieciowego - + Edit web seed URL... - + Edytuj adres URL seeda sieciowego... - + Speed graphs are disabled Wykresy prędkości są wyłączone - + You can enable it in Advanced Options Możesz to włączyć w opcjach zaawansowanych - New URL seed - New HTTP source - Nowy URL seeda - - - New URL seed: - Nowy URL seeda: - - - This URL seed is already in the list. - Ten URL seeda już jest na liście. - - - + Web seed editing Edytowanie seeda sieciowego - + Web seed URL: - URL seeda sieciowego: + Adres URL seeda sieciowego: RSS::AutoDownloader - - + + Invalid data format. Nieprawidłowy format danych. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Nie można zapisać danych automatycznego pobierania RSS w %1. Błąd: %2 - + Invalid data format Nieprawidłowy format danych - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... Artykuł RSS '%1' jest akceptowany przez regułę '%2'. Próbuję dodać torrenta... - + Failed to read RSS AutoDownloader rules. %1 Nie udało się wczytać reguł automatycznego pobierania RSS. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Nie można wczytać reguł automatycznego pobierania RSS. Powód: %1 @@ -8850,22 +8772,22 @@ Te wtyczki zostały wyłączone. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Nie udało się pobrać kanału RSS z '%1'. Powód: %2 - + RSS feed at '%1' updated. Added %2 new articles. Kanał RSS z '%1' został zaktualizowany. Dodano %2 nowe artykuły. - + Failed to parse RSS feed at '%1'. Reason: %2 Nie udało się przetworzyć kanału RSS z '%1'. Powód: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Kanał RSS z '%1' został pomyślnie pobrany. Zaczynam go przetwarzać. @@ -8914,12 +8836,12 @@ Te wtyczki zostały wyłączone. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Nie można zapisać konfiguracji sesji RSS. Plik: "%1". Błąd: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Nie można zapisać danych sesji RSS. Plik: "%1". Błąd: "%2" @@ -8941,76 +8863,121 @@ Te wtyczki zostały wyłączone. - + Item doesn't exist: %1. Element nie istnieje: %1. - Couldn't move folder into itself. - Nie można przenieść folderu do siebie. + Nie można przenieść folderu do siebie. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Nie można usunąć folderu głównego. - + Failed to read RSS session data. %1 Nie udało się odczytać danych sesji RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Nie udało się przeanalizować danych sesji RSS. Plik: "%1". Błąd: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Nie udało się załadować danych sesji RSS. Plik: "%1". Błąd: "Nieprawidłowy format danych." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Nie można załadować kanału RSS. Kanał: "%1". Powód: adres URL jest wymagany. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Nie można załadować kanału RSS. Kanał: "%1". Powód: UID jest nieprawidłowy. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Znaleziono zduplikowany UID kanału RSS. UID: "%1". Błąd: konfiguracja wydaje się uszkodzona. - + Couldn't load RSS item. Item: "%1". Invalid data format. Nie można załadować elementu RSS. Element: "%1". Niepoprawny format danych. - + Corrupted RSS list, not loading it. Uszkodzona lista RSS, nie ładuję jej. - + Incorrect RSS Item path: %1. Nieprawidłowa ścieżka elementu RSS: %1. - + RSS item with given path already exists: %1. Element RSS z tą samą ścieżką już istnieje: %1. - + Parent folder doesn't exist: %1. Folder nadrzędny nie istnieje: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Kanał nie istnieje: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Adres URL: + + + + Refresh interval: + + + + + sec + s + + + + Default + + + RSSWidget @@ -9110,78 +9077,77 @@ Te wtyczki zostały wyłączone. + Feed options... + + + Edit feed URL... - Edytuj adres URL kanału... + Edytuj adres URL kanału... - Edit feed URL - Edytuj adres URL kanału + Edytuj adres URL kanału - + Please choose a folder name Wybierz nazwę folderu - + Folder name: Nazwa folderu: - + New folder Nowy folder - - Please type a RSS feed URL - Proszę wpisać adres URL kanału RSS + Proszę wpisać adres URL kanału RSS - - Feed URL: - Adres URL kanału: + Adres URL kanału: - + Deletion confirmation Potwierdzenie usuwania - + Are you sure you want to delete the selected RSS feeds? Czy na pewno chcesz usunąć wybrane kanały RSS? - + Please choose a new name for this RSS feed Wybierz nową nazwę dla tego kanału RSS - + New feed name: Nowa nazwa kanału: - + Rename failed Zmiana nazwy nie powiodła się - + Date: Data: - + Feed: Kanał: - + Author: Autor: @@ -9318,10 +9284,6 @@ Te wtyczki zostały wyłączone. i.e: Number of partial sources Pijawki - - Search engine - Wyszukiwarka - Filter search results... @@ -9411,17 +9373,17 @@ Te wtyczki zostały wyłączone. Engine - + Wyszukiwarka Engine URL - + Adres URL wyszukiwarki Published On - + Opublikowano @@ -9442,104 +9404,104 @@ Te wtyczki zostały wyłączone. SearchPluginManager - + Unknown search engine plugin file format. Nieznany format pliku wtyczki wyszukiwania. - + Plugin already at version %1, which is greater than %2 Wtyczka jest już w wersji %1, która jest większa niż %2 - + A more recent version of this plugin is already installed. Najnowsza wersja tej wtyczki jest już zainstalowana. - + Plugin %1 is not supported. Wtyczka %1 nie jest obsługiwania. - - + + Plugin is not supported. Wtyczka nie jest obsługiwania. - + Plugin %1 has been successfully updated. Pomyślnie zaktualizowano wtyczkę %1. - + All categories Wszystko - + Movies Filmy - + TV shows Seriale TV - + Music Muzyka - + Games Gry - + Anime Anime - + Software Oprogramowanie - + Pictures Obrazki - + Books Książki - + Update server is temporarily unavailable. %1 Serwer aktualizacji jest tymczasowo niedostępny. %1 - - + + Failed to download the plugin file. %1 Nie udało się pobrać pliku wtyczki. %1 - + Plugin "%1" is outdated, updating to version %2 Wtyczka "%1" jest nieaktualna, aktualizowanie do wersji %2 - + Incorrect update info received for %1 out of %2 plugins. Otrzymano niepoprawne informacje o aktualizacji dla wtyczek %1 z %2. - + Search plugin '%1' contains invalid version string ('%2') Wtyczka wyszukiwania '%1' zawiera nieprawidłowy ciąg wersji ('%2') @@ -9565,137 +9527,129 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, Wtyczki wyszukiwania... - + A phrase to search for. Fraza do wyszukiwania. - + Spaces in a search term may be protected by double quotes. Odstępy w wyszukiwanej frazie mogą być chronione przez cudzysłów. - + Example: Search phrase example Przykład: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: wyszukaj <b>foo bar</b> - + All plugins Wszystkie wtyczki - + Only enabled Tylko włączone - - + + Invalid data format. - Nieprawidłowy format danych. + Nieprawidłowy format danych. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: wyszukaj <b>foo</b> oraz <b>bar</b> - + Refresh - + Odśwież - + Close tab Zamknij kartę - + Close all tabs Zamknij wszystkie karty - + Select... Wybierz... - - + + Search Engine Wyszukiwarka - - + + Please install Python to use the Search Engine. Należy zainstalować Pythona, aby móc używać wyszukiwarki. - + Empty search pattern Pusty wzorzec wyszukiwania - + Please type a search pattern first Najpierw podaj wzorzec wyszukiwania - + Stop Zatrzymaj - - Search has finished - Wyszukiwanie zakończone - - - Search has failed - Wyszukiwanie nie powiodło się - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Nie udało się załadować zapisanych danych stanu interfejsu wyszukiwania. Plik: "%1". Błąd: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Nie udało się załadować zapisanych wyników wyszukiwania. Karta: "%1". Plik: "%2". Błąd: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Nie udało się zapisać stanu interfejsu wyszukiwania. Plik: "%1". Błąd: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Nie udało się zapisać wyników wyszukiwania. Karta: "%1". Plik: "%2". Błąd: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Nie udało się załadować historii interfejsu wyszukiwania. Plik: "%1". Błąd: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Nie udało się zapisać historii wyszukiwania. Plik: "%1". Błąd: "%2" @@ -10091,67 +10045,77 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, StatusBar - + Connection status: Stan połączenia: - - + + No direct connections. This may indicate network configuration problems. Brak bezpośrednich połączeń. Może to oznaczać problem z konfiguracją sieci. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Zewnętrzny adres IP: brak + + + + DHT: %1 nodes Węzły DHT: %1 - + qBittorrent needs to be restarted! qBittorrent musi zostać uruchomiony ponownie! - - + + Connection Status: Stan połączenia: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. Oznacza, że qBittorent nie jest w stanie nasłuchiwać połączeń przychodzących na wybranym porcie. - + Online Połączony - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Zewnętrzne adresy IP: %1, %2 + + + + External IP: %1%2 + Zewnętrzny adres IP: %1%2 + + + Click to switch to alternative speed limits Kliknij, aby przełączyć na alternatywne limity prędkości - + Click to switch to regular speed limits Kliknij, aby przełączyć na normalne limity prędkości @@ -10179,23 +10143,15 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, Completed (0) Ukończone (0) - - Resumed (0) - Wznowione (0) - - - Paused (0) - Wstrzymane (0) - Running (0) - + Uruchomione (0) Stopped (0) - + Zatrzymane (0) @@ -10260,49 +10216,33 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, Running (%1) - + Uruchomione (%1) Stopped (%1) - + Zatrzymane (%1) Start torrents - + Uruchom torrenty Stop torrents - - - - Paused (%1) - Wstrzymane (%1) + Zatrzymaj torrenty Moving (%1) Przenoszenie (%1) - - Resume torrents - Wznów torrenty - - - Pause torrents - Wstrzymaj torrenty - Remove torrents Usuń torrenty - - Resumed (%1) - Wznowione (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, Remove unused tags Usuń nieużywane znaczniki - - Resume torrents - Wznów torrenty - - - Pause torrents - Wstrzymaj torrenty - Remove torrents Usuń torrenty - - New Tag - Nowy znacznik - Start torrents - + Uruchom torrenty Stop torrents - + Zatrzymaj torrenty @@ -10409,7 +10337,7 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, Add tag - + Dodaj znacznik @@ -10726,17 +10654,17 @@ Wybierz inną nazwę i spróbuj ponownie. TorrentCreatorController - + Too many active tasks Zbyt wiele aktywnych zadań - + Torrent creation is still unfinished. Tworzenie torrenta nie zostało jeszcze ukończone. - + Torrent creation failed. Niepowodzenie tworzenia torrenta. @@ -10988,17 +10916,6 @@ Wybierz inną nazwę i spróbuj ponownie. Obserwowanie folderu: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Nie udało się przydzielić pamięci podczas odczytu pliku. Plik: "%1". Błąd: "%2" - - - Invalid metadata - Nieprawidłowe metadane - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Wybierz inną nazwę i spróbuj ponownie. Torrent Share Limits - - - - Torrent speed limits - Limity prędkości torrenta + Limity udostępniania torrenta @@ -11054,7 +10967,7 @@ Wybierz inną nazwę i spróbuj ponownie. Torrent Speed Limits - + Limity prędkości torrenta @@ -11072,34 +10985,6 @@ Wybierz inną nazwę i spróbuj ponownie. Upload: Wysyłanie: - - Torrent share limits - Limity udziału torrenta - - - Use global share limit - Użyj ogólnego limitu udziału - - - Set no share limit - Ustaw bez limitu udziału - - - Set share limit to - Ustaw limit udziału na - - - ratio - ratio - - - total minutes - łączne minuty - - - inactive minutes - nieaktywne minuty - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Wybierz inną nazwę i spróbuj ponownie. Not applicable to private torrents Nie dotyczy prywatnych torrentów - - No share limit method selected - Nie wybrano metody limitu udziału - - - Please select a limit method first - Proszę najpierw wybrać metodę limitu - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Wybierz inną nazwę i spróbuj ponownie. Action when the limit is reached: - + Działanie po osiągnięciu limitu: Stop torrent - + Zatrzymaj torrent Remove torrent - Usuń torrent + Usuń torrent Remove torrent and its content - + Usuń torrent i jego zawartość Enable super seeding for torrent - Włącz super-seedowanie dla torrenta + Włącz super-seedowanie dla torrenta @@ -11233,14 +11110,10 @@ Wybierz inną nazwę i spróbuj ponownie. Torrent Tags Znaczniki torrenta - - New Tag - Nowy znacznik - Add tag - + Dodaj znacznik @@ -11271,90 +11144,90 @@ Wybierz inną nazwę i spróbuj ponownie. TorrentsController - + Error: '%1' is not a valid torrent file. Błąd: '%1' nie jest prawidłowym plikiem torrent. - + Priority must be an integer Priorytet musi być liczbą całkowitą - + Priority is not valid Priorytet jest nieprawidłowy - + Torrent's metadata has not yet downloaded Metadane torrenta nie zostały jeszcze pobrane - + File IDs must be integers Identyfikatory plików muszą być liczbami całkowitymi - + File ID is not valid Identyfikator pliku jest nieprawidłowy - - - - + + + + Torrent queueing must be enabled Kolejkowanie torrentów musi być włączone - - + + Save path cannot be empty Ścieżka zapisu nie może być pusta - - + + Cannot create target directory Nie można utworzyć katalogu docelowego - - + + Category cannot be empty Kategoria nie może być pusta - + Unable to create category Nie można utworzyć kategorii - + Unable to edit category Nie można edytować kategorii - + Unable to export torrent file. Error: %1 Nie można wyeksportować pliku torrent. Błąd: %1 - + Cannot make save path Nie można utworzyć ścieżki zapisu "%1" is not a valid URL - + "%1" nie jest prawidłowym adresem URL URL scheme must be one of [%1] - + Schemat URL musi być jednym z [%1] @@ -11362,39 +11235,39 @@ Wybierz inną nazwę i spróbuj ponownie. Parametr 'sort' jest nieprawidłowy - + "%1" is not an existing URL - + "%1" nie jest istniejącym adresem URL - + "%1" is not a valid file index. "%1" nie jest prawidłowym indeksem plików. - + Index %1 is out of bounds. Indeks %1 jest poza zakresem. - - + + Cannot write to directory Nie można zapisać do katalogu - + WebUI Set location: moving "%1", from "%2" to "%3" Interfejs WWW Ustaw położenie: przenoszenie "%1", z "%2" do "%3" - + Incorrect torrent name Nieprawidłowa nazwa torrenta - - + + Incorrect category name Nieprawidłowa nazwa kategorii @@ -11477,45 +11350,33 @@ Wybierz inną nazwę i spróbuj ponownie. Invalid state! - + Nieprawidłowy stan! URL/Announce Endpoint - + Punkt końcowy adresu URL/rozgłoszenia BT Protocol - + Protokół BT Next Announce - + Następne rozgłoszenie Min Announce - - - - Invalid status! - Nieprawidłowy stan! - - - URL/Announce endpoint - Punkt końcowy adresu URL/rozgłoszenia + Minimalne rozgłoszenie Tier Poziom - - Protocol - Protokół - Status @@ -11546,18 +11407,6 @@ Wybierz inną nazwę i spróbuj ponownie. Message Komunikat - - Next announce - Następne rozgłoszenie - - - Min announce - Minimalne rozgłoszenie - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Wybierz inną nazwę i spróbuj ponownie. Ten torrent jest prywatny - + Tracker editing Edytowanie trackera - + Tracker URL: Adres URL trackera: - - + + Tracker editing failed Edytowanie trackera nie powiodła się - + The tracker URL entered is invalid. Wprowadzony adres URL trackera jest nieprawidłowy. - + The tracker URL already exists. Adres URL trackera już istnieje. - + Edit tracker URL... Edytuj adres URL trackera... - + Remove tracker Usuń tracker - + Copy tracker URL Kopiuj adres URL trackera - + Force reannounce to selected trackers Wymuś rozgłoszenie do wybranych trackerów - + Force reannounce to all trackers Wymuś rozgłoszenie do wszystkich trackerów - + Resize columns Zmień rozmiar kolumn - + Resize all non-hidden columns to the size of their contents Zmień rozmiar wszystkich nieukrytych kolumn do rozmiaru ich zawartości - + Add trackers... Dodaj trackery... - + Column visibility Widoczność kolumy @@ -11716,20 +11565,12 @@ Wybierz inną nazwę i spróbuj ponownie. Start torrents - + Uruchom torrenty Stop torrents - - - - Resume torrents - Wznów torrenty - - - Pause torrents - Wstrzymaj torrenty + Zatrzymaj torrenty @@ -11853,10 +11694,6 @@ Wybierz inną nazwę i spróbuj ponownie. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Sprawdzanie danych wznawiania - - Paused - Wstrzymano - Completed @@ -11897,21 +11734,16 @@ Wybierz inną nazwę i spróbuj ponownie. % Done Postęp - - Status - Torrent status (e.g. downloading, seeding, paused) - Stan - Stopped - + Zatrzymany Status Torrent status (e.g. downloading, seeding, stopped) - Stan + Stan @@ -11946,7 +11778,7 @@ Wybierz inną nazwę i spróbuj ponownie. Popularity - + Popularność @@ -12027,22 +11859,17 @@ Wybierz inną nazwę i spróbuj ponownie. Time Active Time (duration) the torrent is active (not stopped) - Aktywny przez + Aktywny przez Yes - Tak + Tak No - Nie - - - Time Active - Time (duration) the torrent is active (not paused) - Aktywny przez + Nie @@ -12114,12 +11941,12 @@ Wybierz inną nazwę i spróbuj ponownie. Private Flags private torrents - + Prywatne Ratio / Time Active (in months), indicates how popular the torrent is - + Współczynnik / Czas aktywności (w miesiącach) wskazuje, jak popularny jest torrent @@ -12144,358 +11971,319 @@ Wybierz inną nazwę i spróbuj ponownie. TransferListWidget - + Column visibility Widoczność kolumn - + Recheck confirmation Potwierdzenie ponownego sprawdzania - + Are you sure you want to recheck the selected torrent(s)? Czy na pewno ponownie sprawdzić wybrane torrenty? - + Rename Zmień nazwę - + New name: Nowa nazwa: - + Choose save path Wybierz katalog docelowy - Confirm pause - Potwierdź wstrzymanie - - - Would you like to pause all torrents? - Czy chcesz wstrzymać wszystkie torrenty? - - - Confirm resume - Potwierdź wznowienie - - - Would you like to resume all torrents? - Czy chcesz wznowić wszystkie torrenty? - - - + Unable to preview Nie można wyświetlić podglądu - + The selected torrent "%1" does not contain previewable files Wybrany torrent "%1" nie zawiera plików możliwych do podglądu - + Resize columns Zmień rozmiar kolumn - + Resize all non-hidden columns to the size of their contents Zmień rozmiar wszystkich nieukrytych kolumn do rozmiaru ich zawartości - + Enable automatic torrent management Włącz automatyczne zarządzanie torrentem - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Czy na pewno chcesz włączyć automatyczne zarządzanie torrentem dla wybranego torrenta lub torrentów? Mogą zostać przeniesione. - Add Tags - Dodaj znaczniki - - - + Choose folder to save exported .torrent files Wybierz folder do zapisywania wyeksportowanych plików .torrent - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Nie udało się wyeksportować pliku .torrent. Torrent: "%1". Ścieżka zapisu: "%2". Powód: "%3" - + A file with the same name already exists Plik o tej nazwie już istnieje - + Export .torrent file error Błąd eksportu pliku .torrent - + Remove All Tags Usuń wszystkie znaczniki - + Remove all tags from selected torrents? Usunąć wszystkie znaczniki z wybranych torrentów? - + Comma-separated tags: Znaczniki rozdzielone przecinkami: - + Invalid tag Niepoprawny znacznik - + Tag name: '%1' is invalid Nazwa znacznika '%1' jest nieprawidłowa - &Resume - Resume/start the torrent - W&znów - - - &Pause - Pause the torrent - &Wstrzymaj - - - Force Resu&me - Force Resume/start the torrent - Wymuś wz&nowienie - - - + Pre&view file... Podglą&d pliku... - + Torrent &options... &Opcje torrenta... - + Open destination &folder Otwórz &folder pobierań - + Move &up i.e. move up in the queue Przenieś w &górę - + Move &down i.e. Move down in the queue Przenieś w &dół - + Move to &top i.e. Move to top of the queue Przenieś na &początek - + Move to &bottom i.e. Move to bottom of the queue Przenieś na &koniec - + Set loc&ation... U&staw położenie... - + Force rec&heck Wy&muś ponowne sprawdzenie - + Force r&eannounce Wymuś ro&zgłoszenie - + &Magnet link Odnośnik &magnet - + Torrent &ID &Identyfikator torrenta - + &Comment &Komentarz: - + &Name &Nazwa - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Zmień &nazwę... - + Edit trac&kers... Edytuj trac&kery... - + E&xport .torrent... Eksportuj .torrent... - + Categor&y Kategor&ia - + &New... New category... &Nowa... - + &Reset Reset category &Resetuj - + Ta&gs Zna&czniki - + &Add... Add / assign multiple tags... &Dodaj... - + &Remove All Remove all tags Usuń &wszystkie - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Nie można wymusić rozgłaszania, jeśli torrent jest zatrzymany/w kolejce/błędny/sprawdzany - + &Queue Ko&lejka - + &Copy &Kopiuj - + Exported torrent is not necessarily the same as the imported Eksportowany torrent niekoniecznie jest taki sam jak importowany - + Download in sequential order Pobierz w kolejności sekwencyjnej - + Add tags - + Dodaj znaczniki - + Errors occurred when exporting .torrent files. Check execution log for details. Podczas eksportowania plików .torrent wystąpiły błędy. Sprawdź dziennik wykonania, aby uzyskać szczegółowe informacje. - + &Start Resume/start the torrent - + &Uruchom - + Sto&p Stop the torrent - + Za&trzymaj - + Force Star&t Force Resume/start the torrent - + Wymuś uruc&homienie - + &Remove Remove the torrent &Usuń - + Download first and last pieces first Pobierz najpierw część pierwszą i ostatnią - + Automatic Torrent Management Automatyczne zarządzanie torrentem - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Tryb automatyczny oznacza, że różne właściwości torrenta (np. ścieżka zapisu) będą określane przez powiązaną kategorię - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Nie można wymusić rozgłaszania, jeśli torrent jest wstrzymany/w kolejce/błędny/sprawdzany - - - + Super seeding mode Tryb super-seeding @@ -12571,7 +12359,7 @@ Wybierz inną nazwę i spróbuj ponownie. Set app style failed. Unknown style: "%1" - + Nie udało się ustawić stylu aplikacji. Nieznany styl: "%1" @@ -12627,32 +12415,32 @@ Wybierz inną nazwę i spróbuj ponownie. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Znaleziono plik wykonywalny Pythona. Nazwa: "%1". Wersja: "%2" - + Failed to find Python executable. Path: "%1". Nie udało się znaleźć pliku wykonywalnego Pythona. Ścieżka: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Nie udało się znaleźć pliku wykonywalnego `python3` w zmiennej środowiskowej PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Nie udało się znaleźć pliku wykonywalnego `python` w zmiennej środowiskowej PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Nie udało się znaleźć pliku wykonywalnego `python` w rejestrze systemu Windows. - + Failed to find Python executable Nie udało się znaleźć pliku wykonywalnego Pythona @@ -12744,52 +12532,52 @@ Wybierz inną nazwę i spróbuj ponownie. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Określono nieakceptowalną nazwę pliku cookie sesji: '%1'. Używana jest domyślna. - + Unacceptable file type, only regular file is allowed. Niedozwolony typ pliku, dozwolone są tylko zwykłe pliki. - + Symlinks inside alternative UI folder are forbidden. Dowiązania symboliczne w alternatywnym folderze interfejsu są zabronione. - + Using built-in WebUI. Używanie wbudowanego interfejsu WWW. - + Using custom WebUI. Location: "%1". Używanie niestandardowego interfejsu WWW. Położenie: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Pomyślnie załadowano tłumaczenie interfejsu WWW dla wybranych ustawień narodowych (%1). - + Couldn't load WebUI translation for selected locale (%1). Nie można załadować tłumaczenia interfejsu WWW dla wybranych ustawień narodowych (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Brak separatora ':' w niestandardowym nagłówku HTTP interfejsu WWW: "%1" - + Web server error. %1 Błąd serwera WWW. %1 - + Web server error. Unknown error. Błąd serwera WWW. Nieznany błąd. @@ -12847,7 +12635,7 @@ Wybierz inną nazwę i spróbuj ponownie. Unknown error - Nieznany błąd + Nieznany błąd diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index fd9d99335..20fef76ed 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -170,10 +170,6 @@ Never show again Nunca mostrar de novo - - Torrent settings - Configurações do torrent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Opções do torrent @@ -235,25 +231,25 @@ Condição de parada: - - + + None Nenhum - - + + Metadata received Metadados recebidos - + Torrents that have metadata initially will be added as stopped. Torrents que possuem metadados inicialmente serão adicionados como parados. - + Files checked Arquivos verificados @@ -368,112 +364,112 @@ Salvar como arquivo .torrent... - + I/O Error Erro de E/S - + Not Available This comment is unavailable Não disponível - + Not Available This date is unavailable Não disponível - + Not available Não disponível - + Magnet link Link magnético - + Retrieving metadata... Recuperando metadados... - - + + Choose save path Escolha o caminho do salvamento - + No stop condition is set. Nenhuma condição de parada definida. - + Torrent will stop after metadata is received. O torrent será parado após o recebimento dos metadados. - + Torrent will stop after files are initially checked. O torrent será parado após o a verificação inicial dos arquivos. - + This will also download metadata if it wasn't there initially. Isso também fará o download dos metadados, caso não existam inicialmente. - + N/A N/D - + %1 (Free space on disk: %2) %1 (Espaço livre no disco: %2) - + Not available This size is unavailable. Não disponível - + Torrent file (*%1) Arquivo torrent (*%1) - + Save as torrent file Salvar como arquivo torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Não pôde exportar o arquivo de metadados do torrent '%1'. Motivo: %2. - + Cannot create v2 torrent until its data is fully downloaded. Não pôde criar o torrent v2 até que seus dados sejam totalmente baixados. - + Filter files... Filtrar arquivos... - + Parsing metadata... Analisando metadados... - + Metadata retrieval complete Recuperação dos metadados completa @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Baixando torrent... Fonte: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Falha ao adicionar o torrent. Fonte: "%1". Motivo: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detectada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 + Detectada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 - + Merging of trackers is disabled A mesclagem de rastreadores está desativada - + Trackers cannot be merged because it is a private torrent Os rastreadores não podem ser mesclados pois este é um torrent privado - + Trackers are merged from new source Rastreadores mesclados a partir da nova fonte + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Verificar os torrents de novo ao completar - - + + ms milliseconds ms - + Setting Configuração - + Value Value set for this setting Valor - + (disabled) (desativado) - + (auto) (auto) - - + + min minutes mín - + All addresses Todos os endereços - + qBittorrent Section Seção do qBittorrent - - + + Open documentation Abrir documentação - + All IPv4 addresses Todos os endereços IPv4 - + All IPv6 addresses Todos os endereços IPv6 - + libtorrent Section Seção do libtorrent - + Fastresume files Retomada rápida dos arquivos - + SQLite database (experimental) Banco de dados do SQLite (experimental) - + Resume data storage type (requires restart) Retomar tipo de armazenamento de dados (requer reinicialização) - + Normal Normal - + Below normal Abaixo do normal - + Medium Média - + Low Baixa - + Very low Muito baixa - + Physical memory (RAM) usage limit Limite de uso da memória física (RAM) - + Asynchronous I/O threads Threads de E/S assíncronos - + Hashing threads Threads de cálculo do hash - + File pool size Tamanho do conjunto de arquivos - + Outstanding memory when checking torrents Memória excelente quando verificar torrents - + Disk cache Cache do disco - - - - + + + + + s seconds s - + Disk cache expiry interval Intervalo de expiração do cache do disco - + Disk queue size Tamanho da fila do disco - - + + Enable OS cache Ativar cache do sistema operacional - + Coalesce reads & writes Coalescer leituras & gravações - + Use piece extent affinity Usar afinidade da extensão dos pedaços - + Send upload piece suggestions Enviar sugestões de pedaços do upload - - - - - + + + + + 0 (disabled) 0 (desativado) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Salvar o intervalo de dados de retomada [0: desativado] - + Outgoing ports (Min) [0: disabled] Portas de saída (Mín) [0: desativado] - + Outgoing ports (Max) [0: disabled] Portas de saída (Máx) [0: desativado] - + 0 (permanent lease) 0 (locação permanente) - + UPnP lease duration [0: permanent lease] Duração da locação UPnP [0: locação permanente] - + Stop tracker timeout [0: disabled] Intervalo para parar o rastreador [0: disabled] - + Notification timeout [0: infinite, -1: system default] Intervalo da notificação [0: infinito, -1: padrão do sistema] - + Maximum outstanding requests to a single peer Máximo de requisições pendentes pra um único par - - - - - + + + + + KiB KiB - + (infinite) (infinito) - + (system default) (padrão do sistema) - + Delete files permanently - + Excluir arquivos permanentemente - + Move files to trash (if possible) - + Mover arquivos para a Lixeira (se possível) - + Torrent content removing mode - + Modo de remoção de conteúdo do torrent - + This option is less effective on Linux Esta opção é menos efetiva no Linux - + Process memory priority Prioridade de memória de processo - + Bdecode depth limit Limite de profundidade Bdecode - + Bdecode token limit Limite do token Bdecode - + Default Padrão - + Memory mapped files Arquivos mapeados na memória - + POSIX-compliant Compatível com POSIX - + Simple pread/pwrite - + Pread/pwrite simples - + Disk IO type (requires restart) Tipo de E/S de disco (requer reinicialização) - - + + Disable OS cache Desativar cache do sistema - + Disk IO read mode Modo de leitura de E/S do disco: - + Write-through Write-through - + Disk IO write mode Modo de escrita de E/S do disco - + Send buffer watermark Enviar marca d'água do buffer - + Send buffer low watermark Enviar marca d'água do buffer baixo - + Send buffer watermark factor Enviar fator de marca d'água do buffer - + Outgoing connections per second Conexões de saída por segundo - - + + 0 (system default) 0 (padrão do sistema) - + Socket send buffer size [0: system default] Tamanho do buffer do socket de envio [0: padrão do sistema] - + Socket receive buffer size [0: system default] Tamanho do buffer do socket de recebimento [0: padrão do sistema] - + Socket backlog size Tamanho do backlog do soquete - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Intervalo para salvar estatísticas [0: desativado] - + .torrent file size limit Limite de tamanho do arquivo .torrent - + Type of service (ToS) for connections to peers Tipo de serviço (ToS) para as conexões com os pares - + Prefer TCP Preferir TCP - + Peer proportional (throttles TCP) Par proporcional (sufoca o TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Suporte a nome internacionalizado de domínio (IDN) - + Allow multiple connections from the same IP address Permitir múltiplas conexões do mesmo endereço de IP - + Validate HTTPS tracker certificates Validar certificados dos rastreadores HTTPS - + Server-side request forgery (SSRF) mitigation Atenuação da falsificação da requisição do lado do servidor (SSRF) - + Disallow connection to peers on privileged ports Não permitir conexão com pares em portas privilegiadas - + It appends the text to the window title to help distinguish qBittorent instances Ele anexa o texto ao título da janela para ajudar a distinguir as instâncias do qBittorent - + Customize application instance name Personalizar nome da instância do aplicativo - + It controls the internal state update interval which in turn will affect UI updates Ele controla o intervalo de atualização do estado interno que, por sua vez, afetará as atualizações da interface do usuário - + Refresh interval Intervalo de atualização - + Resolve peer host names Revelar nomes dos hospedeiros pares - + IP address reported to trackers (requires restart) Endereço de IP reportado aos rastreadores (requer reiniciar) - + Port reported to trackers (requires restart) [0: listening port] - + Porta reportada aos trackers (necessário reiniciar) [0: porta de escuta] - + Reannounce to all trackers when IP or port changed Reanunciar para todos os rastreadores quando o IP ou porta for alterado - + Enable icons in menus Ativar ícones nos menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Habilitar encaminhamento de porta para o rastreador incorporado - + Enable quarantine for downloaded files Ativar quarentena par arquivos baixados - + Enable Mark-of-the-Web (MOTW) for downloaded files Ativar Mark-of-the-Web (MOTW) para arquivos baixados - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Afeta a validação de certificados e atividades de protocolo não torrent (por exemplo, feeds RSS, atualizações de programas, arquivos torrent, banco de dados geoip, etc.) - + Ignore SSL errors - + Ignorar erros SSL - + (Auto detect if empty) (Auto detect if empty) - + Python executable path (may require restart) Caminho do executável do Python (pode ser necessário reiniciar) - + Start BitTorrent session in paused state - + Iniciar sessão do Bittorrent no modo pausado - + sec seconds - seg + seg - + -1 (unlimited) - + -1 (ilimitado) - + BitTorrent session shutdown timeout [-1: unlimited] - + Tempo limite de encerramento da sessão BitTorrent [-1: ilimitado] - + Confirm removal of tracker from all torrents Confirmar remoção do rastreador de todos os torrents - + Peer turnover disconnect percentage Porcentagem da desconexão da rotatividade dos pares - + Peer turnover threshold percentage Porcentagem do limite da rotatividade dos pares - + Peer turnover disconnect interval Intervalo da desconexão da rotatividade dos pares - + Resets to default if empty Resets to default if empty - + DHT bootstrap nodes Nós de inicialização DHT - + I2P inbound quantity Quantidade de entrada I2P - + I2P outbound quantity Quantidade de saída I2P - + I2P inbound length Comprimento de entrada I2P - + I2P outbound length Comprimento de saída I2P - + Display notifications Exibir notificações - + Display notifications for added torrents Exibe notificações pros torrents adicionados - + Download tracker's favicon Baixar favicon do rastreador - + Save path history length Tamanho do histórico do caminho do salvamento - + Enable speed graphs Ativar os gráficos da velocidade - + Fixed slots Slots fixos - + Upload rate based Baseado na taxa de upload - + Upload slots behavior Comportamento dos slots de upload - + Round-robin Pontos-corridos - + Fastest upload Upload mais rápido - + Anti-leech Anti-leech - + Upload choking algorithm Algorítmo de sufoco do upload - + Confirm torrent recheck Confirmar nova verificação do torrent - + Confirm removal of all tags Confirmar remoção de todas as etiquetas - + Always announce to all trackers in a tier Sempre anunciar a todos os rastreadores numa camada - + Always announce to all tiers Sempre anunciar pra todas as camadas - + Any interface i.e. Any network interface Qualquer interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algorítmo de modo misto %1-TCP - + Resolve peer countries Revelar os países dos pares - + Network interface Interface de rede - + Optional IP address to bind to Endereço de IP opcional pra se vincular - + Max concurrent HTTP announces Máximo de anúncios HTTP simultâneos - + Enable embedded tracker Ativar rastreador embutido - + Embedded tracker port Porta do rastreador embutido @@ -1382,142 +1393,142 @@ Invalid directory path - + Caminho da pasta inválido Directory does not exist - + A pasta não existe Invalid mode, allowed values: %1 - + Modo inválido, valores permitidos: %1 cookies must be array - + os cookies devem ser uma matriz Application - + Running in portable mode. Auto detected profile folder at: %1 Executando no modo portátil. Pasta do perfil auto-detectada em: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Bandeira de linha de comando redundante detectado: "%1". O modo portátil implica uma retomada rápida relativa. - + Using config directory: %1 Usando diretório das configurações: %1 - + Torrent name: %1 Nome do torrent: %1 - + Torrent size: %1 Tamanho do torrent: %1 - + Save path: %1 Caminho do salvamento: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds O torrent foi baixado em %1. - - + + Thank you for using qBittorrent. Obrigado por usar o qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, enviando notificação por e-mail - + Add torrent failed Falha ao adicionar torrent - + Couldn't add torrent '%1', reason: %2. Não foi possível adicionar o torrent '%1', motivo: %2. - + The WebUI administrator username is: %1 O nome de usuário do administrador da interface web é: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 A senha do administrador da interface web não foi definida. Uma senha temporária será fornecida para esta sessão: %1 - + You should set your own password in program preferences. Você deve definir sua própria senha nas preferências do programa. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. A interface web está desativada! Para ativar, edite o arquivo de configuração manualmente. - + Running external program. Torrent: "%1". Command: `%2` Execução de programa externo. Torrent: "%1". Comando: '%2' - + Failed to run external program. Torrent: "%1". Command: `%2` Falha ao executar o programa externo. Torrent: "%1". Comando: '%2' - + Torrent "%1" has finished downloading O torrent "%1" terminou de ser baixado - + WebUI will be started shortly after internal preparations. Please wait... A interface web será iniciada logo após os preparativos internos. Por favor, aguarde... - - + + Loading torrents... Carregando torrents... - + E&xit S&air - + I/O Error i.e: Input/Output Error Erro de E/S - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Motivo: %2 - + Torrent added Torrent adicionado - + '%1' was added. e.g: xxx.avi was added. '%1' foi adicionado. - + Download completed Download concluído - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 iniciado. ID do proceso: %2 - + This is a test email. - + Este é um e-mail de teste. - + Test email - + Testar e-mail - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' terminou de ser baixado. - + Information Informação - + To fix the error, you may need to edit the config file manually. Para corrigir o erro, pode ser necessário editar o arquivo de configuração manualmente. - + To control qBittorrent, access the WebUI at: %1 Pra controlar o qBittorrent acesse a interface de usuário da web em: %1 - + Exit Sair - + Recursive download confirmation Confirmação do download recursivo - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? O torrent '%1' contém arquivos .torrent, deseja continuar com o download deles? - + Never Nunca - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Download recursivo do arquivo .torrent dentro do torrent. Torrent fonte: "%1". Arquivo: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Falhou em definir o limite de uso da memória física (RAM). Código do erro: %1. Mensagem de erro: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Falha ao definir limite de uso de memória física (RAM). Tamanho solicitado: %1. Limite do sistema: %2. Código de erro: %3. Mensagem de erro: "%4" - + qBittorrent termination initiated Finalização do qBittorrent iniciada - + qBittorrent is shutting down... O qBittorrent está fechando... - + Saving torrent progress... Salvando o progresso do torrent... - + qBittorrent is now ready to exit O qBittorrent agora está pronto para ser fechado @@ -1766,263 +1777,263 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t &Exportar... - + Matches articles based on episode filter. Combina artigos baseado no filtro dos episódios. - + Example: Exemplo: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match combinará nos episódios 2, 5, 8 até 15, 30 e dos episódios posteriores da temporada um - + Episode filter rules: Regras do filtro dos episódios: - + Season number is a mandatory non-zero value O número da temporada é um valor obrigatório não-zero - + Filter must end with semicolon O filtro deve terminar com ponto e vírgula - + Three range types for episodes are supported: Três tipos de alcance pros episódios são suportados: - + Single number: <b>1x25;</b> matches episode 25 of season one Número único: <b>1x25;</b> combina com o episódio 25 da temporada um - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Alcance normal: <b>1x25-40;</b> combina com os episódios 25 até 40 da temporada um - + Episode number is a mandatory positive value O número do episódio é um valor positivo obrigatório - + Rules Regras - + Rules (legacy) Regras (legado) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Alcance infinito: <b>1x25-;</b> combina com os episódios 25 e acima da temporada um e todos os episódios das temporadas posteriores - + Last Match: %1 days ago Última combinação: %1 dias atrás - + Last Match: Unknown Última combinação: desconhecida - + New rule name Nome da nova regra - + Please type the name of the new download rule. Por favor digite o nome da nova regra de download. - - + + Rule name conflict Conflito do nome da regra - - + + A rule with this name already exists, please choose another name. Uma regra com este nome já existe, por favor escolha outro nome. - + Are you sure you want to remove the download rule named '%1'? Você tem certeza que você quer remover a regra do download chamada "%1"? - + Are you sure you want to remove the selected download rules? Você tem certeza que você quer remover as regras de download selecionadas? - + Rule deletion confirmation Confirmação de exclusão da regra - + Invalid action Ação inválida - + The list is empty, there is nothing to export. A lista está vazia, não há nada pra exportar. - + Export RSS rules Exportar regras do RSS - + I/O Error Erro de E/S - + Failed to create the destination file. Reason: %1 Falhou em criar o arquivo de destino. Motivo: %1 - + Import RSS rules Importar regras do RSS - + Failed to import the selected rules file. Reason: %1 Falhou em importar o arquivo de regras selecionado. Motivo: %1 - + Add new rule... Adicionar nova regra... - + Delete rule Apagar regra - + Rename rule... Renomear regra... - + Delete selected rules Apagar as regras selecionadas - + Clear downloaded episodes... Limpar episódios baixados... - + Rule renaming Renomear regra - + Please type the new rule name Por favor digite o novo nome da regra - + Clear downloaded episodes Limpar episódios baixados - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Você tem certeza que você quer limpar a lista de episódios baixados da regra selecionada? - + Regex mode: use Perl-compatible regular expressions Modo Regex: usar expressões regulares compatíveis com Perl - - + + Position %1: %2 Posição %1: %2 - + Wildcard mode: you can use Modo wildcard: você pode usar - - + + Import error Erro ao importar - + Failed to read the file. %1 Falha ao ler o arquivo. %1 - + ? to match any single character ? pra combinar com qualquer caractere único - + * to match zero or more of any characters * pra combinar com zero ou mais de quaisquer caracteres - + Whitespaces count as AND operators (all words, any order) Espaços em branco contam como operadores AND (todas as palavras, qualquer ordem) - + | is used as OR operator | é usado como operador OR - + If word order is important use * instead of whitespace. Se as ordem das palavras é importante, use * ao invés de espaço em branco. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Uma expressão com uma cláusula %1 vazia (ex: %2) - + will match all articles. combinará com todos os artigos. - + will exclude all articles. apagará todos os artigos. @@ -2074,28 +2085,38 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Não foi possível analisar os dados de retomada: formato inválido - - + + Cannot parse torrent info: %1 Não foi possível analisar as informações do torrent: %1 - + Cannot parse torrent info: invalid format Não foi possível analisar as informações do torrent: formato inválido - + Mismatching info-hash detected in resume data Hash de informações incompatível detectado nos dados de resumo - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Não pôde salvar os metadados do torrent em '%1'. Erro: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Não foi possível salvar os dados de retomada do torrent para '%1'. Erro: %2. @@ -2106,16 +2127,17 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t + Cannot parse resume data: %1 Não foi possível analisar os dados de retomada: %1 - + Resume data is invalid: neither metadata nor info-hash was found Dados de retomada inválidos: não foram encontrados nem metadados, nem informações do hash - + Couldn't save data to '%1'. Error: %2 Não pôde salvar os dados em '%1'. Erro: %2 @@ -2123,38 +2145,60 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t BitTorrent::DBResumeDataStorage - + Not found. Não encontrado. - + Couldn't load resume data of torrent '%1'. Error: %2 Não foi possível carregar os dados de retomada do torrent '%1'. Erro: %2 - - + + Database is corrupted. O banco de dados está corrompido. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Não foi possível ativar o modo de registro Write-Ahead Logging (WAL). Erro: %1. - + Couldn't obtain query result. Não foi possível obter o resultado da consulta. - + WAL mode is probably unsupported due to filesystem limitations. O modo WAL provavelmente não é suportado devido a limitações do sistema de arquivos. - + + + Cannot parse resume data: %1 + Não foi possível analisar os dados de retomada: %1 + + + + + Cannot parse torrent info: %1 + Não foi possível analisar as informações do torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Não foi possível iniciar a transação. Erro: %1 @@ -2162,22 +2206,22 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Não pôde salvar os metadados do torrent. Erro: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Não foi possível armazenar os dados de retomada do torrent '%1'. Erro: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Não foi possível apagar os dados de retomada do torrent '%1'. Erro: %2 - + Couldn't store torrents queue positions. Error: %1 Não pôde armazenar as posições da fila dos torrents. Erro: %1 @@ -2185,530 +2229,507 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Suporte a Tabela do Hash Distribuído (DHT): %1 - - - - - - - - - + + + + + + + + + ON LIGADO - - - - - - - - - + + + + + + + + + OFF DESLIGADO - - + + Local Peer Discovery support: %1 Suporte a Descoberta de Pares locais: %1 - + Restart is required to toggle Peer Exchange (PeX) support É necessário reiniciar para ativar/desativar o suporte para Troca de Pares (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Falha ao retomar o torrent. Torrent: "%1". Motivo: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Falha ao retomar o torrent: ID de torrent inconsistente detectado. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Dados inconsistentes detectados: a categoria está ausente no arquivo de configuração. A categoria será recuperada, mas suas configurações serão redefinidas para o padrão. Torrent: "%1". Categoria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Dados inconsistentes detectados: categoria inválida. Torrent: "%1". Categoria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Detectada falta de combinação entre os caminhos do salvamento da categoria recuperada e o caminho de salvamento atual do torrent. O torrent agora foi trocado pro modo Manual. Torrent: "%1". Categoria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Dados inconsistentes detectados: a tag está ausente no arquivo de configuração. A tag será recuperada. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Dados inconsistentes detectados: tag inválida. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Detectado evento de despertar do sistema. Reanunciando a todos os rastreadores... - + Peer ID: "%1" ID do par: "%1" - + HTTP User-Agent: "%1" Agente do Usuário HTTP: "%1" - + Peer Exchange (PeX) support: %1 Suporte para Troca de Pares (PeX): %1 - - + + Anonymous mode: %1 Modo anônimo: %1 - - + + Encryption support: %1 Suporte a criptografia: %1 - - + + FORCED FORÇADO - + Could not find GUID of network interface. Interface: "%1" Não foi possível encontrar o GUID da interface de rede. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" Tentando escutar na seguinte lista de endereços de IP: "%1" - + Torrent reached the share ratio limit. O torrent atingiu o limite da proporção de compartimento. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent removido. - - - Removed torrent and deleted its content. - Torrent removido e apagado o seu conteúdo. - - - Torrent paused. - Torrent pausado. - - - + Super seeding enabled. Super semeadura ativada. - + Torrent reached the seeding time limit. O torrent atingiu o limite de tempo de semeadura. - + Torrent reached the inactive seeding time limit. O torrent atingiu o limite de tempo de seeding inativo. - + Failed to load torrent. Reason: "%1" Falha ao carregar o torrent. Motivo: "%1" - + I2P error. Message: "%1". I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON Suporte UPnP/NAT-PMP: LIGADO - + Saving resume data completed. - + Salvamento dos dados de retomada concluído. - + BitTorrent session successfully finished. - + Sessão Bittorrent encerrada em sucesso. - + Session shutdown timed out. - + O tempo limite do encerramento da sessão foi atingido. - + Removing torrent. - + Removendo o torrent. - + Removing torrent and deleting its content. - + Removendo o torrent e excluindo seu conteúdo. - + Torrent stopped. - + Torrent parado. - + Torrent content removed. Torrent: "%1" - + Conteúdo do torrent removido. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Falha ao remover conteúdo do torrent. Torrent: "%1". Erro: "%2" - + Torrent removed. Torrent: "%1" - + Torrent removido. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Detectada uma tentativa de adicionar um torrent duplicado. Torrent existente: %1. Resultado: %2 - + Merging of trackers is disabled - A mesclagem de rastreadores está desativada + A mesclagem de rastreadores está desativada - + Trackers cannot be merged because it is a private torrent - Os rastreadores não podem ser mesclados pois este é um torrent privado + Os rastreadores não podem ser mesclados pois este é um torrent privado - + Trackers are merged from new source - Rastreadores mesclados a partir da nova fonte + Rastreadores mesclados a partir da nova fonte - + UPnP/NAT-PMP support: OFF Suporte a UPnP/NAT-PMP: DESLIGADO - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Falha ao exportar o torrent. Torrent: "%1". Destino: "%2". Motivo: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Abortado o salvamento dos dados de retomada. Número de torrents pendentes: %1 - + The configured network address is invalid. Address: "%1" O endereço de rede configurado é inválido. Endereço: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Falha ao encontrar o endereço de rede configurado para escutar. Endereço: "%1" - + The configured network interface is invalid. Interface: "%1" A interface da rede configurada é inválida. Interface: "%1" - + Tracker list updated - + Lista de trackers atualizada - + Failed to update tracker list. Reason: "%1" - + Falha ao atualizar lista de trackers. Motivo: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Endereço de IP inválido rejeitado enquanto aplicava a lista de endereços de IP banidos. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Adicionado o rastreador ao torrent. Torrent: "%1". Rastreador: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Removido o rastreador do torrent. Torrent: "%1". Rastreador: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL da semente adicionada ao torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL da semente removida do torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Falha ao remover arquivo parcial. Torrent: "%1". Motivo: "%2". - Torrent paused. Torrent: "%1" - Torrent pausado. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent retomado. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Download do torrent concluído. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Movimentação do torrent cancelada. Torrent: "%1". Fonte: "%2". Destino: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent parado. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Falha ao enfileirar a movimentação do torrent. Torrent: "%1". Fonte: "%2". Destino: "%3". Motivo: o torrent está sendo movido atualmente para o destino - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Falha ao enfileirar a movimentação do torrent. Torrent: "%1". Fonte: "%2". Destino: "%3". Motivo: ambos os caminhos apontam para o mesmo local - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Enfileirada a movimentação do torrent. Torrent: "%1". Fonte: "%2". Destino: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Iniciando a movimentação do torrent. Torrent: "%1". Destino: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Falha ao salvar a configuração das categorias. Arquivo: "%1". Erro: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Falha ao analisar a configuração das categorias. Arquivo: "%1". Erro: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Arquivo de filtro dos IPs analisado com sucesso. Número de regras aplicadas: %1 - + Failed to parse the IP filter file Falha ao analisar o arquivo de filtro de IPs - + Restored torrent. Torrent: "%1" Torrent restaurado. Torrent: "%1" - + Added new torrent. Torrent: "%1" Novo torrent adicionado. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent com erro. Torrent: "%1". Erro: "%2" - Removed torrent. Torrent: "%1" - Torrent removido. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent removido e apagado o seu conteúdo. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Os parâmetros SSL do torrent estão faltando. Torrent: "%1". Mensagem: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Alerta de erro de arquivo. Torrent: "%1". Arquivo: "%2". Motivo: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Falha ao mapear portas UPnP/NAT-PMP. Mensagem: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Êxito ao mapear portas UPnP/NAT-PMP. Mensagem: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtro de IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). porta filtrada (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). porta privilegiada (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Falha na conexão com o URL de seed. Torrent: "%1". URL: "%2". Erro: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Erro de proxy SOCKS5. Endereço: %1. Mensagem: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 restrições do modo misto - + Failed to load Categories. %1 Falha ao carregar as categorias. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Falha ao carregar a configuração das categorias. Arquivo: "%1". Erro: "Formato inválido dos dados" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent removido, mas ocorreu uma falha ao excluir o seu conteúdo e/ou arquivo parcial. Torrent: "%1". Erro: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 está desativado - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 está desativado - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Falha ao buscar DNS do URL da semente. Torrent: "%1". URL: "%2". Erro: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Mensagem de erro recebida do URL da semente. Torrent: "%1". URL: "%2". Mensagem: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Êxito ao escutar no IP. IP: "%1". Porta: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Falha ao escutar o IP. IP: "%1". Porta: "%2/%3". Motivo: "%4" - + Detected external IP. IP: "%1" Detectado IP externo. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Erro: a fila de alertas internos está cheia e os alertas foram descartados, você pode experienciar uma desempenho baixo. Tipos de alerta descartados: "%1". Mensagem: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent movido com sucesso. Torrent: "%1". Destino: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Falha ao mover o torrent. Torrent: "%1". Fonte: "%2". Destino: "%3". Motivo: "%4" @@ -2758,47 +2779,47 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Não foi possível salvar no arquivo. Motivo: "%1". O torrent agora está no modo "somente upload". - + Download first and last piece first: %1, torrent: '%2' Baixar primeiro os primeiros e os últimos pedaços: %1, torrent: '%2' - + On Ligado - + Off Desligado - + Failed to reload torrent. Torrent: %1. Reason: %2 Falha ao recarregar o torrent. Torrent: %1. Motivo: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Falha ao gerar dados de resumo. Torrent: "%1". Motivo: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Falha ao restaurar o torrent. Os arquivos provavelmente foram movidos ou o armazenamento não está acessível. Torrent: "%1". Motivo: "%2" - + Missing metadata Metadados faltando - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Falhou em renomear o arquivo. Torrent: "%1", arquivo: "%2", motivo: "%3" - + Performance alert: %1. More info: %2 Alerta de performance: %1. Mais informações: %2 @@ -2835,11 +2856,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Expected integer number in environment variable '%1', but got '%2' Número inteiro esperado na variável do ambiente '%1', mas obteve '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - O parâmetro '%1' deve seguir a sintaxe '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - O parâmetro '%1' deve seguir a sintaxe '%1=%2' + O parâmetro '%1' deve seguir a sintaxe '%1=%2' @@ -2968,11 +2984,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Add torrents as running or stopped - - - - Add torrents as started or paused - Adicionar torrents como iniciados ou pausados + Adicionar torrents como iniciados ou parados @@ -3063,20 +3075,12 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents + Parar torrents @@ -3099,7 +3103,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t System - + Sistema @@ -3174,11 +3178,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Also remove the content files - - - - Also permanently delete the files - Também excluir permanentemente os arquivos + Remover também os arquivos de conteúdo @@ -3390,47 +3390,43 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Pattern Format - + Formato padrão Plain text - + Texto simples Wildcards - + Curingas Regular expression - + Expressão regular GUIAddTorrentManager - + Downloading torrent... Source: "%1" Baixando torrent... Fonte: "%1" - Trackers cannot be merged because it is a private torrent - Os rastreadores não podem ser mesclados pois este é um torrent privado - - - + Torrent is already present O torrent já está presente - + Trackers cannot be merged because it is a private torrent. - + Os rastreadores não podem ser mesclados pois este é um torrent privado. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? O torrent '%1' já existe na lista de transferências. Deseja unir os rastreadores da nova fonte? @@ -3548,6 +3544,40 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Arquivos de imagem suportados + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + O gerenciamento de energia encontrou uma interface D-Bus adequada. Interface: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Erro de gerenciamento de energia. Ação: %1. Erro: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Erro inesperado do gerenciamento de energia. Estado: %1. Erro: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t &Options... &Opções... - - &Resume - &Retomar - &Remove @@ -3762,7 +3788,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Sh&utdown System - + D&esligar o sistema @@ -3774,10 +3800,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Close Window Fechar Janela - - R&esume All - R&etomar Todos - Manage Cookies... @@ -3816,22 +3838,22 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Sta&rt - + Inicia&r Sto&p - + &Parar R&esume Session - + &Retomar sessão Pau&se Session - + Pau&sar sessão @@ -3893,10 +3915,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t &Hibernate System &Hibernar o sistema - - S&hutdown System - D&esligar o sistema - &Statistics @@ -3917,14 +3935,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t &About &Sobre - - &Pause - &Pausar - - - P&ause All - P&ausar Todos - &Add Torrent File... @@ -3958,12 +3968,12 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t - + Show Mostrar - + Check for program updates Procurar atualizações do programa @@ -3978,388 +3988,383 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Se você gosta do qBittorrent, por favor, doe! - + Execution Log Log da Execução - + Clear the password Limpar a senha - + &Set Password &Definir senha - + Preferences Preferências - + &Clear Password &Limpar senha - + Transfers Transferências - - + + qBittorrent is minimized to tray O qBittorrent está minimizado no tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. Este comportamento pode ser mudado nas configurações. Você não será lembrado de novo. - + Icons Only Só ícones - + Text Only Só texto - + Text Alongside Icons Texto junto dos ícones - + Text Under Icons Texto sob os ícones - + Follow System Style Seguir estilo do sistema - - + + UI lock password Senha da tranca da IU - - + + Please type the UI lock password: Por favor digite a senha da tranca da IU: - + Are you sure you want to clear the password? Você tem certeza que você quer limpar a senha? - + Use regular expressions Usar expressões regulares - - + + Search Engine - Motor de Busca + Motor de Busca - + Search has failed - A busca falhou + A busca falhou - + Search has finished - A busca foi concluída + A busca foi concluída - + Search Busca - + Transfers (%1) Transferências (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. O qBittorrent foi atualizado e precisa ser reiniciado para as mudanças serem efetivas. - + qBittorrent is closed to tray O qBittorrent está fechado no tray - + Some files are currently transferring. Alguns arquivos estão atualmente sendo transferidos. - + Are you sure you want to quit qBittorrent? Você tem certeza que você quer sair do qBittorrent? - + &No &Não - + &Yes &Sim - + &Always Yes &Sempre sim - + Options saved. Opções salvas. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSADO] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + A instalação do Python não pôde ser baixada. Erro: %1. +Por favor, instale-o manualmente. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Falha ao renomear instalador do Python. Origem: "%1". Destino: "%2" - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python instalado com sucesso. + Exit code: %1. + Código de saída: %1. + + + + Reason: installer crashed. + Motivo: o instalador travou. + + + Python installation failed. - + Falha na instalação do Python. - + Launching Python installer. File: "%1". - + Executando instalador do Python. Arquivo: "%1". - - + + Missing Python Runtime Runtime do python ausente - + qBittorrent Update Available Atualização do qBittorent disponível - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? O Python é requerido pra usar o motor de busca mas ele não parece estar instalado. Você quer instalá-lo agora? - + Python is required to use the search engine but it does not seem to be installed. O Python é requerido pra usar o motor de busca mas ele não parece estar instalado. - - + + Old Python Runtime Runtime do python antigo - + A new version is available. Uma nova versão está disponível. - + Do you want to download %1? Você quer baixar o %1? - + Open changelog... Abrir changelog... - + No updates available. You are already using the latest version. Não há atualizações disponíveis. Você já está usando a versão mais recente. - + &Check for Updates &Procurar atualizações - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? A sua versão do Python (%1) está desatualizada. Requerimento mínimo: %2. Você quer instalar uma versão mais nova agora? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. A sua versão do Python (%1) está desatualizada. Por favor atualize pra versão mais recente pras engines de busca funcionarem. Requerimento mínimo: %2. - + Paused - Pausado + Pausado - + Checking for Updates... Procurar atualizações... - + Already checking for program updates in the background Já procurando por atualizações do programa em segundo plano - + Python installation in progress... - + Instalação do Python em andamento... - + Failed to open Python installer. File: "%1". - + Falha ao abrir instalador do Python. Arquivo: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Falha na verificação de hash MD5 para o instalador Python. Arquivo: "%1". Hash do resultado: "%2". Hash esperado: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Falha na verificação de hash SHA3-512 para o instalador Python. Arquivo: "%1". Hash do resultado: "%2". Hash esperado: "%3". - + Download error Erro do download - Python setup could not be downloaded, reason: %1. -Please install it manually. - A instalação do Python não pôde ser baixada, motivo: %1. -Por favor instale-o manualmente. - - - - + + Invalid password Senha inválida - + Filter torrents... Filtrar torrents... - + Filter by: Filtrar por: - + The password must be at least 3 characters long A senha deve ter pelo menos 3 caracteres - - - + + + RSS (%1) RSS (%1) - + The password is invalid A senha é inválida - + DL speed: %1 e.g: Download speed: 10 KiB/s Velocidade de download: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Velocidade de upload: %1 - + Hide Esconder - + Exiting qBittorrent Saindo do qBittorrent - + Open Torrent Files Abrir Arquivos Torrent - + Torrent Files Arquivos Torrent @@ -4556,7 +4561,7 @@ Por favor instale-o manualmente. SSL error, URL: "%1", errors: "%2" - + Erro SSL, URL: "%1", erros: "%2" @@ -5853,47 +5858,47 @@ Por favor instale-o manualmente. Net::Smtp - + Connection failed, unrecognized reply: %1 A conexão falhou, resposta não reconhecida: %1 - + Authentication failed, msg: %1 A autenticação falhou, mensagem: %1 - + <mail from> was rejected by server, msg: %1 O <mail from> foi rejeitado pelo servidor, mensagem: %1 - + <Rcpt to> was rejected by server, msg: %1 O <Rcpt to> foi rejeitado pelo servidor, mensagem: %1 - + <data> was rejected by server, msg: %1 O <data> foi rejeitado pelo servidor, mensagem: %1 - + Message was rejected by the server, error: %1 A mensagem foi rejeitada pelo servidor, erro: %1 - + Both EHLO and HELO failed, msg: %1 Ambos o EHLO e o HELO falharam, mensagem: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 O servidor SMTP não parece oferecer suporte a qualquer dos modos de autenticação que nós suportamos [CRAM-MD5|PLAIN|LOGIN], ignorando a autenticação, sabendo que provavelmente falhará... Modos de autenticação do servidor: %1 - + Email Notification Error: %1 E-mail de Notificação do Erro: %1 @@ -5935,10 +5940,6 @@ Por favor instale-o manualmente. RSS RSS - - Web UI - Interface de usuário da web - Advanced @@ -5959,14 +5960,6 @@ Por favor instale-o manualmente. Confirm when deleting torrents Confirmar quando apagar torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - Mostra uma caixa de diálogo de confirmação ao pausar/retomar todos os torrents - - - Confirm "Pause/Resume all" actions - Confirmar ações "Pausar/Retomar todos" - Use alternating row colors @@ -5983,10 +5976,6 @@ Por favor instale-o manualmente. Always Sempre - - Paused torrents only - Só torrents pausados - Action on double-click @@ -5997,10 +5986,6 @@ Por favor instale-o manualmente. Downloading torrents: Baixando torrents: - - Start / Stop Torrent - Iniciar / Parar Torrent - @@ -6059,179 +6044,179 @@ Por favor instale-o manualmente. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Layout do conteúdo do torrent: - + Original Original - + Create subfolder Criar sub-pasta - + Don't create subfolder Não criar sub-pasta - + The torrent will be added to the top of the download queue O torrent será adicionado ao início da fila de downloads - + Add to top of queue The torrent will be added to the top of the download queue Adicionar ao início da fila - + When duplicate torrent is being added Quando um torrent duplicado for adicionado - + Merge trackers to existing torrent Mesclar rastreadores ao torrent existente - + Keep unselected files in ".unwanted" folder Manter arquivos não selecionados na pasta ".unwanted" - + Add... Adicionar... - + Options.. Opções.. - + Remove Remover - + Email notification &upon download completion Notificação por e-mail &ao completar o download - + Send test email - + Enviar e-mail de teste - + Run on torrent added: - + Executar ao adicionar o torrent: - + Run on torrent finished: - + Executar ao concluir o torrent: - + Peer connection protocol: Protocolo de conexão com os pares: - + Any Qualquer um - + I2P (experimental) I2P (experimental) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Se o &quot;modo misto&quot; estiver habilitado, torrents I2P terão permissão para acessar pares de outras fontes além do rastreador e conectar com IPs regulares, não fornecendo nenhum anonimato. Isso pode ser útil caso o usuário não esteja interessado no anonimato do I2P mas ainda deseje a possibilidade de se conectar a pares I2P.</p></body></html> - - - + Mixed mode Modo misto - Some options are incompatible with the chosen proxy type! - Algumas opções são incompatíveis com o tipo de proxy escolhido! + Algumas opções são incompatíveis com o tipo de proxy escolhido! - + If checked, hostname lookups are done via the proxy Se marcado, as pesquisas de nome de servidor são feitas por meio do proxy - + Perform hostname lookup via proxy Realize a consulta de hostname via proxy - + Use proxy for BitTorrent purposes Use proxy para fins de BitTorrent - + RSS feeds will use proxy Os feeds RSS irão usar proxy - + Use proxy for RSS purposes Usar proxy para fins de RSS - + Search engine, software updates or anything else will use proxy Mecanismo de pesquisa, atualizações de software ou qualquer outra coisa usará proxy - + Use proxy for general purposes Usar proxy para fins gerais - + IP Fi&ltering Filtra&gem dos IPs - + Schedule &the use of alternative rate limits Agendar &o uso de limites alternativos das taxas - + From: From start time De: - + To: To end time Até: - + Find peers on the DHT network Achar pares na rede DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Requer encriptação: Só conectar com os pares com encriptação do protocolo Desativar encriptação: Só conectar com os pares sem encriptação do protocolo - + Allow encryption Permitir encriptação - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Mais informações</a>) - + Maximum active checking torrents: Máximo de torrents ativos em verificação: - + &Torrent Queueing &Torrents na Fila - + When total seeding time reaches Quando o tempo total de semeadura for atingido - + When inactive seeding time reaches Quando o tempo inativo de semeadura for atingido - A&utomatically add these trackers to new downloads: - A&dicionar automaticamente estes rastreadores aos novos downloads: - - - + RSS Reader Leitor do RSS - + Enable fetching RSS feeds Ativar a busca de feeds do RSS - + Feeds refresh interval: Intervalo de atualização dos feeds: - + Same host request delay: Atraso na solicitação do mesmo host: - + Maximum number of articles per feed: Número máximo de artigos por feed: - - - + + + min minutes min - + Seeding Limits Limites de Semeadura - Pause torrent - Pausar torrent - - - + Remove torrent Remover torrent - + Remove torrent and its files Remover o torrent e seus arquivos - + Enable super seeding for torrent Ativar super semeadura para o torrent - + When ratio reaches Quando a proporção alcançar - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Parar torrent - + A&utomatically append these trackers to new downloads: - + A&utomaticamente adicionar estes rastreadores aos novos downloads: - + Automatically append trackers from URL to new downloads: - + Automaticamente adicionar estes rastreadores do URL aos novos downloads: - + URL: - URL: + URL: - + Fetched trackers - + Rastreadores buscados - + Search UI - + Interface de busca - + Store opened tabs - + Armazenar abas abertas - + Also store search results - + Também armazenar resultados da busca - + History length - + Tamanho do histórico - + RSS Torrent Auto Downloader Auto-Baixador de Torrents do RSS - + Enable auto downloading of RSS torrents Ativar auto-download dos torrents do RSS - + Edit auto downloading rules... Editar regras de auto-download... - + RSS Smart Episode Filter Filtro inteligente de episódios do RSS - + Download REPACK/PROPER episodes Baixar episódios REPACK/PROPER - + Filters: Filtros: - + Web User Interface (Remote control) Interface de Usuário da Web (Controle remoto) - + IP address: Endereço de IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Especifique um endereço IPv4 ou IPv6. Você pode especificar "0.0.0.0" "::" pra qualquer endereço IPv6 ou "*" pra ambos IPv4 e IPv6. - + Ban client after consecutive failures: Banir cliente após falhas consecutivas: - + Never Nunca - + ban for: banir por: - + Session timeout: Tempo pra esgotar a sessão: - + Disabled Desativado - Enable cookie Secure flag (requires HTTPS) - Ativar bandeira segura do cookie (requer HTTPS) - - - + Server domains: Domínios do servidor: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ você deve colocar nomes de domínio usados pelo servidor WebUI. Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. - + &Use HTTPS instead of HTTP &Usar HTTPS ao invés do HTTP - + Bypass authentication for clients on localhost Ignorar autenticação pra clientes no hospedeiro local - + Bypass authentication for clients in whitelisted IP subnets Ignorar autenticação pra clientes em sub-redes com IPs na lista branca - + IP subnet whitelist... Lista branca de sub-redes dos IPs... - + Use alternative WebUI - + Usar interface web alternativa - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Especifique IPs de proxies reversos (ou sub-máscaras, ex.: 0.0.0.0/24) para usar no endereço do cliente encaminhado (atributo X-Forwarded-For). Use ';' pra dividir múltiplas entradas. - + Upda&te my dynamic domain name Atualiz&ar meu nome de domínio dinâmico @@ -6519,12 +6502,12 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& Search - Busca + Busca WebUI - + Interface Web @@ -6539,29 +6522,29 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& Style: - + Estilo: Color scheme: - + Esquema de cor: Stopped torrents only - + Somente torrents parados Start / stop torrent - + Iniciar / Parar torrent Open torrent options dialog - + Abrir diálogo de opções do torrent @@ -6602,7 +6585,7 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& &Log Files - + &Arquivos do log @@ -6620,99 +6603,99 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& Apagar logs de backup mais velhos do que: - + Show external IP in status bar - + Mostrar IP externo na barra de status - + When adding a torrent Quando adicionar um torrent - + Bring torrent dialog to the front Trazer o diálogo do torrent para a frente - + The torrent will be added to download list in a stopped state - + O torrent será adicionado à lista de downloads no estado parado - + Also delete .torrent files whose addition was cancelled Também apagar arquivos .torrent cuja adição foi cancelada - + Also when addition is cancelled Também quando a adição for cancelada - + Warning! Data loss possible! Aviso! Perda de dados possível! - + Saving Management Gerenciamento do salvamento - + Default Torrent Management Mode: Modo de gerenciamento padrão dos torrents: - + Manual Manual - + Automatic Automático - + When Torrent Category changed: Quando a categoria do torrent for mudada: - + Relocate torrent Re-alocar torrent - + Switch torrent to Manual Mode Trocar o torrent pro modo manual - - + + Relocate affected torrents Re-alocar torrents afetados - - + + Switch affected torrents to Manual Mode Trocar os torrents afetados pro modo manual - + Use Subcategories Usar sub-categorias - + Default Save Path: Caminho padrão do salvamento: - + Copy .torrent files to: Copiar os arquivos .torrent pra: @@ -6722,26 +6705,22 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& Mostrar o &qBittorrent na área de notificação - &Log file - &Arquivo do log - - - + Display &torrent content and some options Exibir &conteúdo do torrent e algumas opções - + De&lete .torrent files afterwards Ap&agar os arquivos .torrent mais tarde - + Copy .torrent files for finished downloads to: Copiar os arquivos .torrent dos downloads concluídos para: - + Pre-allocate disk space for all files Pré-alocar espaço em disco pra todos os arquivos @@ -6771,10 +6750,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& Preview file, otherwise open destination folder Pré-visualizar arquivo, de outro modo abrir a pasta de destino - - Show torrent options - Mostrar opções do torrent - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*& anos - + Log performance warnings Registrar avisos sobre a performance - The torrent will be added to download list in a paused state - O torrent será adicionado a lista de downloads num estado pausado - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Não iniciar o download automaticamente - + Whether the .torrent file should be deleted after adding it Se o arquivo .torrent deve ser apagado após adicioná-lo - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Aloca o tamanho completo dos arquivos no disco antes de iniciar os downloads pra minimizar a fragmentação. Só é útil pra HDDs. - + Append .!qB extension to incomplete files Adicionar a extensão .!qB nos arquivos incompletos - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Quando um torrent é baixado oferece pra adicionar torrents de quaisquer arquivos .torrent achados dentro dele - + Enable recursive download dialog Ativar diálogo de download recursivo - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automático: Várias propriedades do torrent (ex: o caminho do salvamento) serão decididas pela categoria associada Manual: Várias propriedades do torrent (ex: o caminho do salvamento) devem ser atribuídas manualmente - + When Default Save/Incomplete Path changed: Quando o caminho padrão pra Salvar/Incompleto mudar: - + When Category Save Path changed: Quando o caminho do salvamento da categoria for mudado: - + Use Category paths in Manual Mode Usar os caminhos da Categoria no Modo Manual - + Resolve relative Save Path against appropriate Category path instead of Default one Resolver o Caminho de Salvamento relativo contra o Caminho da Categoria apropriado ao invés do caminho Padrão @@ -6922,50 +6893,50 @@ Manual: Várias propriedades do torrent (ex: o caminho do salvamento) devem ser Estado da janela do qBittorrent ao iniciar - + Torrent stop condition: Condição de parada do torrent: - - + + None Nenhum - - + + Metadata received Metadados recebidos - - + + Files checked Arquivos verificados - + Ask for merging trackers when torrent is being added manually Pedir para mesclar rastreadores quando o torrent estiver sendo adicionado manualmente - + Use another path for incomplete torrents: Usar outro caminho pros torrents incompletos: - + Automatically add torrents from: Adicionar automaticamente torrents de: - + Excluded file names Nomes de arquivos excluídos - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: filtra o nome exato do arquivo. readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas não 'readme10.txt'. - + Receiver Receptor - + To: To receiver Até: - + SMTP server: Servidor SMTP: - + Sender Remetente - + From: From sender De: - + This server requires a secure connection (SSL) Este servidor requer uma conexão segura (SSL) - - + + Authentication Autenticação - - - - + + + + Username: Nome de usuário: - - - - + + + + Password: Senha: - + Run external program Executar programa externo - Run on torrent added - Executar ao adicionar o torrent - - - Run on torrent finished - Executar ao concluir o torrent - - - + Show console window Mostrar janela do console - + TCP and μTP TCP e μTP - + Listening Port Porta de Escuta - + Port used for incoming connections: Porta usada pra conexões de entrada: - + Set to 0 to let your system pick an unused port Defina em 0 pra deixar seu sistema escolher uma porta não usada - + Random Aleatória - + Use UPnP / NAT-PMP port forwarding from my router Usar abertura de porta UPnP / NAT-PMP do meu roteador - + Connections Limits Limites da Conexão - + Maximum number of connections per torrent: Número máximo de conexões por torrent: - + Global maximum number of connections: Número máximo global de conexões: - + Maximum number of upload slots per torrent: Número máximo de slots de upload por torrent: - + Global maximum number of upload slots: Número global máximo de slots de upload: - + Proxy Server Servidor Proxy - + Type: Tipo: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Hospedeiro: - - - + + + Port: Porta: - + Otherwise, the proxy server is only used for tracker connections De outro modo o servidor proxy só é usado pra conexões com o rastreador - + Use proxy for peer connections Usar proxy pra conexões com os pares - + A&uthentication A&utenticação - Info: The password is saved unencrypted - Info: A senha é salva desencriptada + Info: A senha é salva desencriptada - + Filter path (.dat, .p2p, .p2b): Caminho do filtro (.dat, .p2p, .p2b): - + Reload the filter Recarregar o filtro - + Manually banned IP addresses... Endereços de IP banidos manualmente... - + Apply to trackers Aplicar aos rastreadores - + Global Rate Limits Limites Globais da Taxa - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Upload: - - + + Download: Download: - + Alternative Rate Limits Limites Alternativos da Taxa - + Start time Hora do início - + End time Hora do término - + When: Quando: - + Every day Todo dia - + Weekdays Dias da semana - + Weekends Finais de semana - + Rate Limits Settings Configurações dos Limites da Taxa - + Apply rate limit to peers on LAN Aplicar limite da taxa aos pares na LAN - + Apply rate limit to transport overhead Aplicar limite da taxa a sobrecarga do transporte - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Se o "modo misto" estiver habilitado, torrents I2P terão permissão para acessar pares de outras fontes além do rastreador e conectar com IPs regulares, não fornecendo nenhum anonimato. Isso pode ser útil caso o usuário não esteja interessado no anonimato do I2P mas ainda deseje a possibilidade de se conectar a pares I2P.</p></body></html> - + Apply rate limit to µTP protocol Aplicar limite da taxa ao protocolo µTP - + Privacy Privacidade - + Enable DHT (decentralized network) to find more peers Ativar DHT (rede decentralizada) pra achar mais pares - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Trocar pares com clientes Bittorrent compatíveis (µTorrent, Vuze...) - + Enable Peer Exchange (PeX) to find more peers Ativar Troca de Pares (PeX) pra achar mais pares - + Look for peers on your local network Procurar pares na sua rede local - + Enable Local Peer Discovery to find more peers Ativar descoberta de pares locais pra achar mais pares - + Encryption mode: Modo de encriptação: - + Require encryption Requer encriptação - + Disable encryption Desativar encriptação - + Enable when using a proxy or a VPN connection Ativar quando usar um proxy ou uma conexão VPN - + Enable anonymous mode Ativar modo anônimo - + Maximum active downloads: Máximo de downloads ativos: - + Maximum active uploads: Máximo de uploads ativos: - + Maximum active torrents: Máximo de torrents ativos: - + Do not count slow torrents in these limits Não contar torrents lentos nestes limites - + Upload rate threshold: Limite da taxa de upload: - + Download rate threshold: Limite da taxa de download: - - - - + + + + sec seconds seg - + Torrent inactivity timer: Cronômetro da inatividade do torrent: - + then então - + Use UPnP / NAT-PMP to forward the port from my router Usar UPnP / NAT-PMP pra abrir a porta do meu roteador - + Certificate: Certificado: - + Key: Chave: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informações sobre certificados</a> - + Change current password Mudar a senha atual - Use alternative Web UI - Usar interface alternativa de usuário da web - - - + Files location: Local dos arquivos: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Lista de WebUI alternativo</a> - + Security Segurança - + Enable clickjacking protection Ativar proteção contra clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Ativar proteção contra falsificação de requisição de sites cruzados (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Habilitar sinalizador de cookie seguro (requer conexão HTTPS ou localhost) - + Enable Host header validation Ativar validação de cabeçalho do hospedeiro - + Add custom HTTP headers Adicionar cabeçalhos HTTP personalizados - + Header: value pairs, one per line Cabeçalho: pares de valores, um por linha - + Enable reverse proxy support Ativar suporte pro proxy reverso - + Trusted proxies list: Lista de proxies confiáveis: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Exemplos de configuração de proxy reverso</a> - + Service: Serviço: - + Register Registrar - + Domain name: Nome do domínio: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Ao ativar estas opções, você pode <strong>perder irremediavelmente</strong> seus arquivos .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Se você ativar a segunda opção (&ldquo;Também quando a adição for cancelada&rdquo;) o arquivo .torrent <strong>será apagado</strong> mesmo se você pressionar &ldquo;<strong>Cancelar</strong>&rdquo; no diálogo &ldquo;Adicionar torrent&rdquo; @@ -7520,12 +7478,12 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Selecione o arquivo do tema da interface do usuário do qBittorrent - + Choose Alternative UI files location Escolha o local alternativo dos arquivos da interface do usuário - + Supported parameters (case sensitive): Parâmetros suportados (caso sensitivo): @@ -7545,183 +7503,183 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Desativado devido a falha ao detectar presença na área de notificação do sistema - + No stop condition is set. Nenhuma condição de parada definida. - + Torrent will stop after metadata is received. O torrent será parado após o recebimento dos metadados. - + Torrent will stop after files are initially checked. O torrent será parado após o a verificação inicial dos arquivos. - + This will also download metadata if it wasn't there initially. Isso também fará o download dos metadados, caso não existam inicialmente. - + %N: Torrent name %N: Nome do torrent - + %L: Category %L: Categoria - + %F: Content path (same as root path for multifile torrent) %F: Caminho do conteúdo (o mesmo do caminho raiz pra torrent multi-arquivos) - + %R: Root path (first torrent subdirectory path) %R: Caminho raiz (primeiro caminho do sub-diretório do torrent) - + %D: Save path %D: Caminho do salvamento - + %C: Number of files %C: Número de arquivos - + %Z: Torrent size (bytes) %Z: Tamanho do torrent (bytes) - + %T: Current tracker %T: Rastreador atual - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Dica: Encapsule o parâmetro entre aspas pra evitar que o texto seja cortado nos espaços em branco (ex: "%N") - + Test email - + Testar e-mail - + Attempted to send email. Check your inbox to confirm success - + Tentativa de enviar e-mail. Verifique sua caixa de entrada para confirmar o sucesso - + (None) (Nenhum) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Um torrent será considerado lento se suas taxas de download e upload ficarem abaixo destes valores pelos segundos do "Cronômetro de inatividade do torrent" - + Certificate Certificado - + Select certificate Selecionar certificado - + Private key Chave privada - + Select private key Selecione a chave privada - + WebUI configuration failed. Reason: %1 Falha na configuração da WebUI. Motivo: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + O %1 é recomendado para melhor compatibilidade com o modo escuro do Windows - + System System default Qt style - + Sistema - + Let Qt decide the style for this system - + Deixar o Qt decidir o estilo para este sistema - + Dark Dark color scheme - + Escuro - + Light Light color scheme - + Claro - + System System color scheme - + Sistema - + Select folder to monitor Selecione a pasta a monitorar - + Adding entry failed Falhou em adicionar a entrada - + The WebUI username must be at least 3 characters long. O nome de usuário da interface web deve ter pelo menos 3 caracteres. - + The WebUI password must be at least 6 characters long. A senha de interface web deve ter pelo menos 6 caracteres. - + Location Error Erro do local - - + + Choose export directory Escolha o diretório pra exportar - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Quando estas opções estão ativadas o qBittorrent <strong>apagará</strong> os arquivos .torrent após eles serem adicionados com sucesso (a primeira opção) ou não (a segunda opção) nas suas filas de download. Isto será aplicado <strong>não só</strong> nos arquivos abertos via ação pelo menu &ldquo;Adicionar torrent&rdquo;, mas também para aqueles abertos via <strong>associação de tipos de arquivo</strong> @@ -7731,69 +7689,69 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Arquivo do tema da interface do usuário do qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiquetas (separadas por vírgula) - + %I: Info hash v1 (or '-' if unavailable) %I: Informações do hash v1 (ou '-' se indisponível) - + %J: Info hash v2 (or '-' if unavailable) %J: Informações do hash v2 (ou '-' se indisponível) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ID do torrent (hash das informações do sha-1 pro torrent v1 ou hash das informações do sha-256 truncadas pra torrent v2/híbrido) - - + + Choose a save directory Escolha um diretório pra salvar - + Torrents that have metadata initially will be added as stopped. Torrents que possuem metadados inicialmente serão adicionados como parados. - + Choose an IP filter file Escolha um arquivo de filtro de IP - + All supported filters Todos os filtros suportados - + The alternative WebUI files location cannot be blank. O local alternativo dos arquivos da interface web não pode estar em branco. - + Parsing error Erro de análise - + Failed to parse the provided IP filter Falhou em analisar o filtro de IP fornecido - + Successfully refreshed Atualizado com sucesso - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Analisou com sucesso o filtro de IP fornecido: %1 regras foram aplicadas. @@ -7804,18 +7762,18 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Preferências - + Time Error Erro do Tempo - + The start time and the end time can't be the same. A hora de início e a hora do término não podem ser as mesmas. - - + + Length Error Erro de Comprimento @@ -7900,169 +7858,169 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Peer is using NAT hole punching - + O peer está usando NAT Hole Punching PeerListWidget - + Country/Region País/Região - + IP/Address IP/Endereço - + Port Porta - + Flags Bandeiras - + Connection Conexão - + Client i.e.: Client application Cliente - + Peer ID Client i.e.: Client resolved from Peer ID Cliente de ID do par - + Progress i.e: % downloaded Progresso - + Down Speed i.e: Download speed Velocidade de download - + Up Speed i.e: Upload speed Velocidade de upload - + Downloaded i.e: total data downloaded Baixados - + Uploaded i.e: total data uploaded Enviados - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevância - + Files i.e. files that are being downloaded right now Arquivos - + Column visibility Visibilidade da coluna - + Resize columns Redimensionar colunas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as colunas não ocultas para o tamanho do conteúdo delas - + Add peers... Adicionar pares... - - + + Adding peers Adicionando pares - + Some peers cannot be added. Check the Log for details. Alguns pares não puderam ser adicionados. Verifique o log pra detalhes. - + Peers are added to this torrent. Os pares são adicionados a este torrent. - - + + Ban peer permanently Banir o par permanentemente - + Cannot add peers to a private torrent Não pôde adicionar os pares em um torrent privado - + Cannot add peers when the torrent is checking Não pode adicionar os pares quando o torrent está verificando - + Cannot add peers when the torrent is queued Não pode adicionar os pares quando o torrent está na fila - + No peer was selected Nenhum par foi selecionado - + Are you sure you want to permanently ban the selected peers? Você tem certeza que você quer banir permanentemente os pares selecionados? - + Peer "%1" is manually banned O Par "%1" foi banido manualmente - + N/A N/D - + Copy IP:port Copiar IP:porta @@ -8343,34 +8301,27 @@ Esses plugins foram desativados. PowerManagement - qBittorrent is active - O qBittorrent está ativo + O qBittorrent está ativo PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - O gerenciamento de energia encontrou uma interface D-Bus adequada. Interface: %1 + O gerenciamento de energia encontrou uma interface D-Bus adequada. Interface: %1 - Power management error. Did not found suitable D-Bus interface. - Erro de gerenciamento de energia. Não foi encontrada uma interface D-Bus adequada. + Erro de gerenciamento de energia. Não foi encontrada uma interface D-Bus adequada. - - - Power management error. Action: %1. Error: %2 - Erro de gerenciamento de energia. Ação: %1. Erro: %2 + Erro de gerenciamento de energia. Ação: %1. Erro: %2 - Power management unexpected error. State: %1. Error: %2 - Erro inesperado do gerenciamento de energia. Estado: %1. Erro: %2 + Erro inesperado do gerenciamento de energia. Estado: %1. Erro: %2 @@ -8614,12 +8565,12 @@ Esses plugins foram desativados. Ratio / Time Active (in months), indicates how popular the torrent is - + Proporção / Tempo ativo (em meses), indica o quão popular o torrent é Popularity: - + Popularidade: @@ -8654,7 +8605,7 @@ Esses plugins foram desativados. Private: - + Privado: @@ -8662,153 +8613,124 @@ Esses plugins foram desativados. Caminho do salvamento: - + Never Nunca - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (tem %3) - - + + %1 (%2 this session) %1 (%2 nesta sessão) - - + + N/A N/D - + Yes - Sim + Sim - + No - Não + Não - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (semeado por %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 máx.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 em média) - + Add web seed Add HTTP source - + Novo seed da web - + Add web seed: - + Adicionar seed da web: - - + + This web seed is already in the list. - + O seed da web já está na lista - New Web seed - Nova semente da Web - - - Remove Web seed - Remover semente da web - - - Copy Web seed URL - Copiar URL da semente da web - - - Edit Web seed URL - Editar a URL da semente da web - - - + Filter files... Filtrar arquivos... - + Add web seed... - + Adicionar seed da web... - + Remove web seed - + Remover seed da web - + Copy web seed URL - + Copiar URL do seed da web - + Edit web seed URL... - + Editar a URL do seed da web... - + Speed graphs are disabled Os gráficos de velocidade estão desativados - + You can enable it in Advanced Options Você pode ativá-lo nas Opções Avançadas - New URL seed - New HTTP source - Nova URL da semente - - - New URL seed: - Nova URL da semente: - - - This URL seed is already in the list. - Essa URL da semente já está na lista. - - - + Web seed editing Editando a semente da web - + Web seed URL: URL da semente da web: @@ -8816,33 +8738,33 @@ Esses plugins foram desativados. RSS::AutoDownloader - - + + Invalid data format. Formato inválido dos dados. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Não pôde salvar os dados do auto-baixador do RSS em %1. Erro: %2 - + Invalid data format Formato inválido dos dados - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... O artigo RSS "%1" é aceito pela regra "%2". Tentando adicionar o torrent... - + Failed to read RSS AutoDownloader rules. %1 Falha ao ler as regras do RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Não pôde carregar as regras do auto-baixador do RSS. Motivo: %1 @@ -8850,22 +8772,22 @@ Esses plugins foram desativados. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Falhou em baixar o feed do RSS em '%1'. Motivo: %2 - + RSS feed at '%1' updated. Added %2 new articles. Feed do RSS em '%1' atualizado. Adicionou %2 novos artigos. - + Failed to parse RSS feed at '%1'. Reason: %2 Falhou em analisar o feed do RSS em '%1'. Motivo: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. O feed do RSS em '%1' foi baixado com sucesso. Começando a analisá-lo. @@ -8914,12 +8836,12 @@ Esses plugins foram desativados. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Não pôde salvar a configuração da sessão do RSS. Arquivo "%1". Erro: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Não pôde salvar os dados da sessão do RSS. Arquivo "%1". Erro: "%2" @@ -8941,76 +8863,121 @@ Esses plugins foram desativados. - + Item doesn't exist: %1. O item não existe: %1. - Couldn't move folder into itself. - Não foi possível mover a pasta para dentro dela. + Não foi possível mover a pasta para dentro dela. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Não pôde apagar a pasta raiz. - + Failed to read RSS session data. %1 Falha ao ler os dados da sessão RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Falha ao analisar os dados da sessão RSS. Arquivo: "%1". Erro: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Falha ao carregar os dados da sessão RSS. Arquivo: "%1". Erro: "Formato de dados inválido." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Não pôde carregar o feed do RSS. Feed: "%1". Motivo: a URL é requerida. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Não pôde carregar o feed do RSS. Feed: "%1". Motivo: UID inválido. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Feed duplicado do RSS encontrado. UID: "%1". Erro: A configuração parece estar corrompida. - + Couldn't load RSS item. Item: "%1". Invalid data format. Não pôde carregar o item do RSS. Item: "%1". Formato inválidos dos dados inválido. - + Corrupted RSS list, not loading it. Lista do RSS corrompida, não irá carregá-la. - + Incorrect RSS Item path: %1. Caminho incorreto do item do RSS: %1. - + RSS item with given path already exists: %1. O item do RSS com o caminho dado já existe: %1. - + Parent folder doesn't exist: %1. A pasta pai não existe: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + O feed não existe: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + seg + + + + Default + Padrão + + RSSWidget @@ -9110,78 +9077,77 @@ Esses plugins foram desativados. + Feed options... + + + Edit feed URL... - Editar URL do feed... + Editar URL do feed... - Edit feed URL - Editar URL do feed + Editar URL do feed - + Please choose a folder name Por favor escolha um nome de pasta - + Folder name: Nome da pasta: - + New folder Nova pasta - - Please type a RSS feed URL - Por favor digite uma URL de feed do RSS + Por favor digite uma URL de feed do RSS - - Feed URL: - URL do feed: + URL do feed: - + Deletion confirmation Confirmação de exclusão - + Are you sure you want to delete the selected RSS feeds? Você tem certeza que você quer apagar os feeds do RSS selecionados? - + Please choose a new name for this RSS feed Por favor escolha um novo nome pra este feed do RSS - + New feed name: Novo nome do feed: - + Rename failed Falhou em renomear - + Date: Data: - + Feed: Feed: - + Author: Autor: @@ -9318,10 +9284,6 @@ Esses plugins foram desativados. i.e: Number of partial sources Leechers - - Search engine - Motor de busca - Filter search results... @@ -9411,17 +9373,17 @@ Esses plugins foram desativados. Engine - + Mecanismo Engine URL - + URL do mecanismo Published On - + Publicado em @@ -9442,104 +9404,104 @@ Esses plugins foram desativados. SearchPluginManager - + Unknown search engine plugin file format. Formato desconhecido do arquivo do plugin do motor de busca. - + Plugin already at version %1, which is greater than %2 O plugin já está na versão: %1, a qual é superior a %2 - + A more recent version of this plugin is already installed. Uma versão mais recente deste plugin já está instalada. - + Plugin %1 is not supported. O plugin %1 não é suportado. - - + + Plugin is not supported. O plugin não é suportado. - + Plugin %1 has been successfully updated. O plugin %1 foi atualizado com sucesso. - + All categories Todas as categorias - + Movies Filmes - + TV shows Shows de TV - + Music Músicas - + Games Jogos - + Anime Animes - + Software Softwares - + Pictures Imagens - + Books Livros - + Update server is temporarily unavailable. %1 O servidor de atualização está temporariamente indisponível. %1 - - + + Failed to download the plugin file. %1 Falhou em baixar o arquivo do plugin. %1 - + Plugin "%1" is outdated, updating to version %2 O plugin "%1" está desatualizado, atualizando para a versão %2 - + Incorrect update info received for %1 out of %2 plugins. Informação de atualização incorreta recebida por %1 de %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') O plugin de busca '%1' contém uma string de versão inválida ('%2') @@ -9565,137 +9527,129 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel Plugins de busca... - + A phrase to search for. Uma frase a ser procurada. - + Spaces in a search term may be protected by double quotes. Os espaços num termo de busca podem ser protegidos por aspas duplas. - + Example: Search phrase example Exemplo: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: procure por <b>foo bar</b> - + All plugins Todos os plugins - + Only enabled Só ativados - - + + Invalid data format. - Formato inválido dos dados. + Formato inválido dos dados. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: procure por <b>foo</b> e <b>bar</b> - + Refresh - + Atualizar - + Close tab Fechar aba - + Close all tabs Fechar todas as abas - + Select... Selecionar... - - + + Search Engine Motor de Busca - - + + Please install Python to use the Search Engine. Por favor instale o Python pra usar o motor de busca. - + Empty search pattern Modelo de busca vazio - + Please type a search pattern first Por favor digite um modelo de busca primeiro - + Stop Parar - - Search has finished - A busca foi concluída - - - Search has failed - A busca falhou - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Falha ao carregar dados de estado salvos da interface de busca. Arquivo: "%1". Erro: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Falha ao carregar resultados de busca salvos. Guia: "%1". Arquivo: "%2". Erro: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Falha ao salvar o estado da interface de busca. Arquivo: "%1". Erro: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Falha ao salvar resultados da busca. Guia: "%1". Arquivo: "%2". Erro: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Falha ao carregar histórico da interface de busca. Arquivo: "%1". Erro: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Falha ao salvar histórico de busca. Arquivo: "%1". Erro: "%2" @@ -10091,67 +10045,77 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel StatusBar - + Connection status: Status da conexão: - - + + No direct connections. This may indicate network configuration problems. Não há conexões diretas. Isto pode indicar problemas na configuração da rede. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + IP externo: N/A + + + + DHT: %1 nodes DHT: %1 nós - + qBittorrent needs to be restarted! O qBittorrent precisa ser reiniciado! - - + + Connection Status: Status da conexão: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Offline. Isto geralmente significa que o qBittorrent falhou em escutar a porta selecionada pra conexões de entrada. - + Online Online - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + IPs externos: %1, %2 + + + + External IP: %1%2 + IP externo: %1%2 + + + Click to switch to alternative speed limits Clique pra trocar pros limites alternativos da velocidade - + Click to switch to regular speed limits Clique pra trocar pros limites regulares da velocidade @@ -10179,23 +10143,15 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel Completed (0) Completado (0) - - Resumed (0) - Retomado (0) - - - Paused (0) - Pausado (0) - Running (0) - + Em andamento (0) Stopped (0) - + Parado (0) @@ -10260,49 +10216,33 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel Running (%1) - + Em andamento (%1) Stopped (%1) - + Parado (%1) Start torrents - + Iniciar torrents Stop torrents - - - - Paused (%1) - Pausado (%1) + Parar torrents Moving (%1) Movendo (%1) - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents - Remove torrents Remover torrents - - Resumed (%1) - Retomado (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel Remove unused tags Remover etiquetas não usadas - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents - Remove torrents Remover torrents - - New Tag - Nova etiqueta - Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -10409,7 +10337,7 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel Add tag - + Adicionar etiqueta @@ -10726,17 +10654,17 @@ Por favor escolha um nome diferente e tente de novo. TorrentCreatorController - + Too many active tasks Muitas tarefas ativas - + Torrent creation is still unfinished. A criação do torrent não foi concluída ainda. - + Torrent creation failed. Falha na criação do torrent. @@ -10988,17 +10916,6 @@ Por favor escolha um nome diferente e tente de novo. Pasta de observação: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Falha ao alocar memória ao ler o arquivo. Arquivo: "%1". Erro: "%2" - - - Invalid metadata - Metadados inválidos - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Por favor escolha um nome diferente e tente de novo. Torrent Share Limits - - - - Torrent speed limits - Limites da velocidade do torrent + Limites de compartilhamento do torrent @@ -11054,7 +10967,7 @@ Por favor escolha um nome diferente e tente de novo. Torrent Speed Limits - + Limites da velocidade do torrent @@ -11072,34 +10985,6 @@ Por favor escolha um nome diferente e tente de novo. Upload: Upload: - - Torrent share limits - Limites de compartilhamento do torrent - - - Use global share limit - Usar limite global de compartilhamento - - - Set no share limit - Definir nenhum limite de compartilhamento - - - Set share limit to - Definir limite de compartilhamento pra - - - ratio - proporção - - - total minutes - total de minutos - - - inactive minutes - minutos inativos - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Por favor escolha um nome diferente e tente de novo. Not applicable to private torrents Não aplicável a torrents privados - - No share limit method selected - Nenhum método de limite de compartilhamento selecionado - - - Please select a limit method first - Por favor selecione um método limite primeiro - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Por favor escolha um nome diferente e tente de novo. Action when the limit is reached: - + Ação ao atingir o limite: Stop torrent - + Parar torrent Remove torrent - Remover torrent + Remover torrent Remove torrent and its content - + Remover torrent e seu conteúdo Enable super seeding for torrent - Ativar super semeadura para o torrent + Ativar super semeadura para o torrent @@ -11233,14 +11110,10 @@ Por favor escolha um nome diferente e tente de novo. Torrent Tags Tags do torrent - - New Tag - Nova etiqueta - Add tag - + Adicionar etiqueta @@ -11271,90 +11144,90 @@ Por favor escolha um nome diferente e tente de novo. TorrentsController - + Error: '%1' is not a valid torrent file. Erro: '%1' não é um arquivo torrent válido. - + Priority must be an integer A prioridade deve ser um inteiro - + Priority is not valid A prioridade não é válida - + Torrent's metadata has not yet downloaded Os metadados do torrent ainda não foram baixados - + File IDs must be integers As IDs dos arquivos devem ser inteiras - + File ID is not valid A ID do arquivo não é válida - - - - + + + + Torrent queueing must be enabled Os torrents na fila devem estar ativados - - + + Save path cannot be empty O caminho do salvamento não pode estar vazio - - + + Cannot create target directory Não pôde criar a pasta de destino - - + + Category cannot be empty A categoria não pode estar vazia - + Unable to create category Incapaz de criar a categoria - + Unable to edit category Incapaz de editar a categoria - + Unable to export torrent file. Error: %1 Não foi possível exportar o arquivo torrent. Erro: %1 - + Cannot make save path Não pôde criar o caminho do salvamento "%1" is not a valid URL - + "%1" não é um URL válido URL scheme must be one of [%1] - + O esquema do URL deve ser um de [%1} @@ -11362,39 +11235,39 @@ Por favor escolha um nome diferente e tente de novo. O parâmetro 'sort' é inválido - + "%1" is not an existing URL - + "%1" não é um URL existente - + "%1" is not a valid file index. "%1" não é um arquivo de índice válido. - + Index %1 is out of bounds. O índice %1 está fora dos limites. - - + + Cannot write to directory Não pôde gravar no diretório - + WebUI Set location: moving "%1", from "%2" to "%3" Definir local da interface de usuário da web: movendo "%1", de "%2" pra "%3" - + Incorrect torrent name Nome incorreto do torrent - - + + Incorrect category name Nome incorreto da categoria @@ -11477,45 +11350,33 @@ Por favor escolha um nome diferente e tente de novo. Invalid state! - + Estado inválido! URL/Announce Endpoint - + Endpoint de URL/anúncio BT Protocol - + Protocolo BT Next Announce - + Próximo anúncio Min Announce - - - - Invalid status! - Status inválido! - - - URL/Announce endpoint - Endpoint de URL/anúncio + Anúncio mínimo Tier Camada - - Protocol - Protocolo - Status @@ -11546,18 +11407,6 @@ Por favor escolha um nome diferente e tente de novo. Message Mensagem - - Next announce - Próximo anúncio - - - Min announce - Anúncio mínimo - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Por favor escolha um nome diferente e tente de novo. Este torrent é privado - + Tracker editing Editando o rastreador - + Tracker URL: URL do rastreador: - - + + Tracker editing failed Falhou em editar o rastreador - + The tracker URL entered is invalid. A URL inserida do rastreador é inválida. - + The tracker URL already exists. A URL do rastreador já existe. - + Edit tracker URL... Editar URL do rastreador... - + Remove tracker Remover rastreador - + Copy tracker URL Copiar URL do rastreador - + Force reannounce to selected trackers Forçar reanúncio para os rastreadores selecionados - + Force reannounce to all trackers Forçar reanúncio para todos os rastreadores - + Resize columns Redimensionar colunas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as colunas não ocultas para o tamanho do conteúdo delas - + Add trackers... Adicionar rastreadores... - + Column visibility Visibilidade da coluna @@ -11716,20 +11565,12 @@ Por favor escolha um nome diferente e tente de novo. Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents + Parar torrents @@ -11853,10 +11694,6 @@ Por favor escolha um nome diferente e tente de novo. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Verificando dados de retomada - - Paused - Pausado - Completed @@ -11897,21 +11734,16 @@ Por favor escolha um nome diferente e tente de novo. % Done Progresso - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Parado Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11946,7 +11778,7 @@ Por favor escolha um nome diferente e tente de novo. Popularity - + Popularidade @@ -12027,22 +11859,17 @@ Por favor escolha um nome diferente e tente de novo. Time Active Time (duration) the torrent is active (not stopped) - Tempo ativo + Tempo ativo Yes - Sim + Sim No - Não - - - Time Active - Time (duration) the torrent is active (not paused) - Tempo ativo + Não @@ -12114,12 +11941,12 @@ Por favor escolha um nome diferente e tente de novo. Private Flags private torrents - + Privado Ratio / Time Active (in months), indicates how popular the torrent is - + Proporção / Tempo ativo (em meses), indica o quão popular o torrent é @@ -12144,358 +11971,319 @@ Por favor escolha um nome diferente e tente de novo. TransferListWidget - + Column visibility Visibilidade da coluna - + Recheck confirmation Confirmação da nova verificação - + Are you sure you want to recheck the selected torrent(s)? Você tem certeza que você quer verificar de novo o(s) torrent(s) selecionado(s)? - + Rename Renomear - + New name: Novo nome: - + Choose save path Escolha o caminho do salvamento - Confirm pause - Confirmar pausar - - - Would you like to pause all torrents? - Você gostaria de pausar todos os torrents? - - - Confirm resume - Confirmar retomada - - - Would you like to resume all torrents? - Você gostaria de retomar todos os torrents? - - - + Unable to preview Incapaz de pré-visualizar - + The selected torrent "%1" does not contain previewable files O torrent selecionado "%1" não contém arquivos pré-visualizáveis - + Resize columns Redimensionar colunas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as colunas não ocultas para o tamanho do conteúdo delas - + Enable automatic torrent management Ativar gerenciamento automático dos torrents - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Você tem certeza que você quer ativar o gerenciamento automático dos torrents para os torrents selecionados? Eles podem ser realocados. - Add Tags - Adicionar etiquetas - - - + Choose folder to save exported .torrent files Escolha a pasta para salvar os arquivos .torrent exportados - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Falha ao exportar o arquivo .torrent. Torrent: "%1". Caminho para salvar: "%2". Motivo: "%3" - + A file with the same name already exists Um arquivo com o mesmo nome já existe - + Export .torrent file error Erro ao exportar arquivo .torrent - + Remove All Tags Remover todas as etiquetas - + Remove all tags from selected torrents? Remover todas as etiquetas dos torrents selecionados? - + Comma-separated tags: Etiquetas separadas por vírgulas: - + Invalid tag Etiqueta inválida - + Tag name: '%1' is invalid O nome da etiqueta '%1' é inválido - &Resume - Resume/start the torrent - &Retomar - - - &Pause - Pause the torrent - &Pausar - - - Force Resu&me - Force Resume/start the torrent - Forçar retor&nar - - - + Pre&view file... Pré-&visualizar arquivo... - + Torrent &options... &Opções do torrent... - + Open destination &folder Abrir &pasta de destino - + Move &up i.e. move up in the queue Mover para &cima - + Move &down i.e. Move down in the queue Mover para &baixo - + Move to &top i.e. Move to top of the queue Mover para o &início - + Move to &bottom i.e. Move to bottom of the queue Mover para o &final - + Set loc&ation... Definir loc&al... - + Force rec&heck Forçar no&va verificação - + Force r&eannounce Forçar r&eanunciar - + &Magnet link Link &magnético - + Torrent &ID &ID do torrent - + &Comment &Comentário - + &Name &Nome - + Info &hash v1 Informações do &hash v1 - + Info h&ash v2 Informações do h&ash v2 - + Re&name... Re&nomear... - + Edit trac&kers... Editar trac&kers... - + E&xport .torrent... E&xportar .torrent... - + Categor&y Categor&ia - + &New... New category... &Novo... - + &Reset Reset category &Redefinir - + Ta&gs Ta&gs - + &Add... Add / assign multiple tags... &Adicionar... - + &Remove All Remove all tags &Remover tudo - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Não é possível forçar reanunciar se o torrent está Pausado/Na Fila/Com Erro/Verificando - + &Queue &Fila - + &Copy &Copiar - + Exported torrent is not necessarily the same as the imported O torrent exportado não é necessariamente o mesmo do importado - + Download in sequential order Baixar em ordem sequencial - + Add tags - + Adicionar etiquetas - + Errors occurred when exporting .torrent files. Check execution log for details. Ocorreram erros ao exportar os arquivos .torrent. Verifique o log de execução para detalhes. - + &Start Resume/start the torrent - + &Iniciar - + Sto&p Stop the torrent - + &Parar - + Force Star&t Force Resume/start the torrent - + &Forçar início - + &Remove Remove the torrent &Remover - + Download first and last pieces first Baixar os primeiros e os últimos pedaços primeiro - + Automatic Torrent Management Gerenciamento automático dos torrents - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category O modo automático significa que várias propriedades do torrent (ex: caminho do salvamento) serão decididas pela categoria associada - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Não é possível forçar reanúncio se o torrent está Pausado/Na Fila/Com Erro/Verificando - - - + Super seeding mode Modo super semeadura @@ -12571,7 +12359,7 @@ Por favor escolha um nome diferente e tente de novo. Set app style failed. Unknown style: "%1" - + Falha ao definir estilo do aplicativo. Estilo desconhecido: "%1" @@ -12627,32 +12415,32 @@ Por favor escolha um nome diferente e tente de novo. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Encontrado o executável do Python. Nome: "%1". Versão: "%2" - + Failed to find Python executable. Path: "%1". Falha ao localizar o executável do Python. Caminho: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Falha ao localizar o executável do 'python3' na variável de ambiente PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Falha ao localizar o executável do 'python' na variável de ambiente PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Falha ao localizar o executável do Python no registro do Windows. - + Failed to find Python executable Falha ao localizar o executável do Python @@ -12744,52 +12532,52 @@ Por favor escolha um nome diferente e tente de novo. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Nome do cookie de sessão inaceitável especificado: '%1'. O padrão será usado. - + Unacceptable file type, only regular file is allowed. Tipo de arquivo inaceitável, só o arquivo regular é permitido. - + Symlinks inside alternative UI folder are forbidden. Os links simbólicos dentro da pasta alternativa da interface do usuário são proibidos. - + Using built-in WebUI. Utilizando a interface web incluída. - + Using custom WebUI. Location: "%1". Utilizando interface web personalizada. Localização: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. A tradução da interface web para o idioma selecionado (%1) foi carregada com sucesso. - + Couldn't load WebUI translation for selected locale (%1). Não foi possível carregar a tradução da interface web para o idioma selecionado (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Separador ':' ausente no cabeçalho HTTP personalizado da interface de usuário da web: "%1" - + Web server error. %1 Erro do servidor web. %1 - + Web server error. Unknown error. Erro do servidor web. Erro desconhecido. @@ -12847,7 +12635,7 @@ Por favor escolha um nome diferente e tente de novo. Unknown error - Erro desconhecido + Erro desconhecido diff --git a/src/lang/qbittorrent_pt_PT.ts b/src/lang/qbittorrent_pt_PT.ts index d1657cdda..202dac433 100644 --- a/src/lang/qbittorrent_pt_PT.ts +++ b/src/lang/qbittorrent_pt_PT.ts @@ -170,10 +170,6 @@ Never show again Não mostrar novamente - - Torrent settings - Definições do torrent - Set as default category @@ -235,25 +231,25 @@ Condição para parar: - - + + None Nenhum - - + + Metadata received Metadados recebidos - + Torrents that have metadata initially will be added as stopped. Os torrents que possuem metadados inicialmente serão adicionados como parados. - + Files checked Ficheiros verificados @@ -368,112 +364,112 @@ Guardar como ficheiro .torrent... - + I/O Error Erro I/O - + Not Available This comment is unavailable Indisponível - + Not Available This date is unavailable Indisponível - + Not available Indisponível - + Magnet link Ligação magnet - + Retrieving metadata... Obtenção de metadados... - - + + Choose save path Escolha o caminho para guardar - + No stop condition is set. Não foi definida nenhuma condição para parar. - + Torrent will stop after metadata is received. O torrent será parado após a recepção dos metadados. - + Torrent will stop after files are initially checked. O torrent parará após o a verificação inicial dos ficheiros. - + This will also download metadata if it wasn't there initially. Isso também fará a transferência dos metadados, caso não existam inicialmente. - + N/A N/D - + %1 (Free space on disk: %2) %1 (Espaço livre no disco: %2) - + Not available This size is unavailable. Indisponível - + Torrent file (*%1) Ficheiro torrent (*%1) - + Save as torrent file Guardar como ficheiro torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Não foi possível exportar o arquivo de metadados do torrent '%1'. Motivo: %2. - + Cannot create v2 torrent until its data is fully downloaded. Não é possível criar o torrent v2 até que seus dados sejam totalmente transferidos. - + Filter files... Filtrar ficheiros... - + Parsing metadata... Análise de metadados... - + Metadata retrieval complete Obtenção de metadados terminada @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" A transferir torrent... Fonte: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Ocorreu um erro ao adicionar o torrent. Fonte: "%1". Motivo: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detetada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 + Detetada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 - + Merging of trackers is disabled A fusão de trackers está desativada - + Trackers cannot be merged because it is a private torrent Os trackers não podem ser fundidos porque se trata de um torrent privado - + Trackers are merged from new source Os trackers são fundidos a partir da nova fonte + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Verificar torrents ao terminar - - + + ms milliseconds ms - + Setting Definição - + Value Value set for this setting Valor - + (disabled) (desativado) - + (auto) (automático) - - + + min minutes min - + All addresses Todos os endereços - + qBittorrent Section Secção qBittorrent - - + + Open documentation Abrir documentação - + All IPv4 addresses Todos os endereços IPv4 - + All IPv6 addresses Todos os endereços IPv6 - + libtorrent Section Secção libtorrent - + Fastresume files Resumo rápido dos ficheiros - + SQLite database (experimental) Base de dados do SQLite (experimental) - + Resume data storage type (requires restart) Retomar tipo de armazenamento de dados (requer reinício) - + Normal Normal - + Below normal Abaixo do normal - + Medium Médio - + Low Baixo - + Very low Muito baixo - + Physical memory (RAM) usage limit Limite de utilização da memória física (RAM) - + Asynchronous I/O threads Threads assíncronas I/O - + Hashing threads Segmentos de cálculo de hash - + File pool size Tamanho do pool de ficheiros - + Outstanding memory when checking torrents Memória excelente ao verificar os torrents - + Disk cache Cache do disco - - - - + + + + + s seconds s - + Disk cache expiry interval Intervalo para cache de disco - + Disk queue size Tamanho da fila do disco - - + + Enable OS cache Ativar cache do sistema - + Coalesce reads & writes Unir leituras e escritas - + Use piece extent affinity Utilizar a afinidade da extensão da peça - + Send upload piece suggestions Enviar o upload da peça de sugestões - - - - - + + + + + 0 (disabled) 0 (desativado) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Guardar o intervalo de dados de retomada [0: desativado] - + Outgoing ports (Min) [0: disabled] Portas de saída (Mín) [0: desativado] - + Outgoing ports (Max) [0: disabled] Portas de saída (Máx) [0: desativado] - + 0 (permanent lease) 0 (locação permanente) - + UPnP lease duration [0: permanent lease] Duração da locação UPnP [0: locação permanente] - + Stop tracker timeout [0: disabled] Intervalo para parar o tracker [0: disativado] - + Notification timeout [0: infinite, -1: system default] Intervalo da notificação [0: infinito, -1: predefinição do sistema] - + Maximum outstanding requests to a single peer Máximo de pedidos pendentes a uma única fonte: - - - - - + + + + + KiB KiB - + (infinite) (infinito) - + (system default) (predefinição do sistema) - + Delete files permanently - + Eliminar ficheiros permanentemente - + Move files to trash (if possible) - + Mover ficheiros para o lixo (se possível) - + Torrent content removing mode - + Modo de remoção de conteúdo do torrent - + This option is less effective on Linux Esta opção é menos efetiva no Linux - + Process memory priority Prioridade de memória de processo - + Bdecode depth limit Limite de profundidade Bdecode - + Bdecode token limit Limite do token Bdecode - + Default Padrão - + Memory mapped files Arquivos mapeados na memória - + POSIX-compliant Compatível com POSIX - + Simple pread/pwrite - + Pread/pwrite simples - + Disk IO type (requires restart) Tipo de E/S de disco (requer reinicialização) - - + + Disable OS cache Desativar cache do sistema - + Disk IO read mode Modo de leitura de E/S do disco - + Write-through Write-through - + Disk IO write mode Modo de gravação de E/S do disco - + Send buffer watermark Marca de água do buffer de envio - + Send buffer low watermark Marca de água baixa do buffer de envio - + Send buffer watermark factor Fator da marca de água do buffer de envio - + Outgoing connections per second Ligações de saída por segundo - - + + 0 (system default) 0 (predefinição do sistema) - + Socket send buffer size [0: system default] Tamanho do buffer do socket de envio [0: system default] - + Socket receive buffer size [0: system default] Tamanho do buffer do socket de recebimento [0: system default] - + Socket backlog size Tamanho da lista pendente do socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit Limite de tamanho do ficheiro .torrent - + Type of service (ToS) for connections to peers Tipo de serviço (TdS) para ligações com pares - + Prefer TCP Preferir TCP - + Peer proportional (throttles TCP) Semear de forma proporcional (limita TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Suporta nome de domínio internacionalizado (IDN) - + Allow multiple connections from the same IP address Permitir várias ligações a partir do mesmo endereço de IP - + Validate HTTPS tracker certificates Validar certificados de rastreio HTTPS - + Server-side request forgery (SSRF) mitigation Redução do pedido de falsificação do lado do servidor (SSRF) - + Disallow connection to peers on privileged ports Não permitir ligação com pares em portas privilegiadas - + It appends the text to the window title to help distinguish qBittorent instances Anexa o texto ao título da janela para ajudar a distinguir as instâncias do qBittorent - + Customize application instance name Personalizar nome da instância da aplicação - + It controls the internal state update interval which in turn will affect UI updates Controla o intervalo de atualização do estado interno que, por sua vez, afetará as atualizações da interface do utilizador - + Refresh interval Intervalo de atualização - + Resolve peer host names Resolver nomes dos servidores de fontes - + IP address reported to trackers (requires restart) Endereço de IP reportado aos rastreadores (requer reinício) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Reanunciar para todos os trackers quando o IP ou porta forem alterados - + Enable icons in menus Ativar ícones nos menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Ativar reencaminhamento de porta para o rastreador incorporado - + Enable quarantine for downloaded files Ativar quarentena para ficheiros transferidos - + Enable Mark-of-the-Web (MOTW) for downloaded files Ativar Mark-of-the-Web (MOTW) para ficheiros transferidos - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) (Deteção automática se estiver vazio) - + Python executable path (may require restart) Caminho do executável Python (pode ser necessário reiniciar) - + Start BitTorrent session in paused state - + Iniciar sessão do Bittorrent no modo pausado - + sec seconds - seg + seg - + -1 (unlimited) - + -1 (ilimitado) - + BitTorrent session shutdown timeout [-1: unlimited] - + Tempo limite de encerramento da sessão BitTorrent [-1: ilimitado] - + Confirm removal of tracker from all torrents Confirmar a remoção do tracker de todos os torrents - + Peer turnover disconnect percentage Percentagem de não ligação da rotatividade dos pares - + Peer turnover threshold percentage Percentagem de limite de rotatividade de pares - + Peer turnover disconnect interval Intervalo de não ligação de rotatividade de pares - + Resets to default if empty Repor o valor por defeito se estiver vazio - + DHT bootstrap nodes Nós de inicialização DHT - + I2P inbound quantity Quantidade de entrada I2P - + I2P outbound quantity Quantidade de saída I2P - + I2P inbound length Comprimento de entrada I2P - + I2P outbound length Comprimento de saída I2P - + Display notifications Mostrar notificações - + Display notifications for added torrents Mostrar notificações para os torrents adicionados - + Download tracker's favicon Fazer a transferência do favicon tracker - + Save path history length Guardar o tamanho do histórico do caminho - + Enable speed graphs Ativar gráfico de velocidade - + Fixed slots Slots corrigidos - + Upload rate based Baseado no rácio de upload - + Upload slots behavior Comportamento das slots de upload - + Round-robin Round-robin - + Fastest upload Upload mais rápido - + Anti-leech Anti-sanguessuga - + Upload choking algorithm Algoritmo choking do upload - + Confirm torrent recheck Confirmar reverificação do torrent - + Confirm removal of all tags Confirme o remover de todas as etiquetas - + Always announce to all trackers in a tier Anunciar sempre para todos os rastreadores numa fila - + Always announce to all tiers Anunciar sempre para todos as filas - + Any interface i.e. Any network interface Qualquer interface - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algoritmo do modo de mistura %1-TCP - + Resolve peer countries Resolver fontes dos países - + Network interface Interface de rede - + Optional IP address to bind to Endereço de IP opcional para ligar-se - + Max concurrent HTTP announces Máximo de anúncios HTTP simultâneos - + Enable embedded tracker Ativar tracker embutido - + Embedded tracker port Porta do tracker embutido @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 A correr no modo portátil. Detectada automaticamente pasta de perfil em: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Detetado um sinalizador de linha de comando redundante: "%1". O modo portátil implica um resumo relativo. - + Using config directory: %1 A utilizar diretoria de configuração: %1 - + Torrent name: %1 Nome do torrent: %1 - + Torrent size: %1 Tamanho do torrent: %1 - + Save path: %1 Caminho para guardar: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Foi feita a transferência do torrent para %1. - - + + Thank you for using qBittorrent. Obrigado por utilizar o qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, a enviar notificação por e-mail - + Add torrent failed Ocorreu um erro ao adicionar o torrent - + Couldn't add torrent '%1', reason: %2. Não foi possível adicionar o torrent '%1', motivo: %2. - + The WebUI administrator username is: %1 O nome de utilizador do administrador da interface web é: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 A palavra-passe do administrador da interface web não foi definida. Uma palavra-passe temporária será fornecida para esta sessão: %1 - + You should set your own password in program preferences. Deve definir a sua própria palavra-passe nas preferências do programa. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. A interface web está desativada! Para ativar, edite o ficheiro de configuração manualmente. - + Running external program. Torrent: "%1". Command: `%2` Execução de programa externo. Torrent: "%1". Comando: '%2' - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading O torrent "%1" terminou a transferência - + WebUI will be started shortly after internal preparations. Please wait... A interface web será iniciada logo após os preparativos internos. Aguarde... - - + + Loading torrents... A carregar torrents... - + E&xit S&air - + I/O Error i.e: Input/Output Error Erro de E/S - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Motivo: %2 - + Torrent added Torrent adicionado - + '%1' was added. e.g: xxx.avi was added. '%1' foi adicionado. - + Download completed Transferência concluída - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' terminou a transferência. - + Information Informações - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 Para controlar o qBittorrent, aceda ao WebUI em: %1 - + Exit Sair - + Recursive download confirmation Confirmação de transferência recursiva - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? O torrent '%1' contém ficheiros .torrent. Quer continuar com a sua transferência? - + Never Nunca - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Transferência recursiva do ficheiro .torrent dentro do torrent. Torrent fonte: "%1". Ficheiro: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Falha ao definir o limite de utilização da memória física (RAM). Código do erro: %1. Mensagem de erro: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated Finalização do qBittorrent iniciada - + qBittorrent is shutting down... O qBittorrent está a fechar... - + Saving torrent progress... A guardar progresso do torrent... - + qBittorrent is now ready to exit O qBittorrent está agora pronto para ser fechado @@ -1766,263 +1777,263 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para &Exportar... - + Matches articles based on episode filter. Correspondência de artigos tendo por base o filtro de episódios. - + Example: Exemplo: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match irá corresponder aos episódios 2, 5, 8 até 15, 30 e subsequentes da primeira temporada - + Episode filter rules: Regras para filtro de episódios: - + Season number is a mandatory non-zero value O número de temporada tem que ser um valor positivo - + Filter must end with semicolon O filtro deve terminar com ponto e vírgula - + Three range types for episodes are supported: São suportados três tipos de intervalos para episódios: - + Single number: <b>1x25;</b> matches episode 25 of season one Um número: <b>1x25;</b> corresponde ao episódio 25 da temporada um - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Intervalo normal: <b>1x25-40;</b> corresponde aos episódios 25 a 40 da temporada um - + Episode number is a mandatory positive value O número de episódio tem de ser obrigatóriamente positivo - + Rules Regras - + Rules (legacy) Regras (legado) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Limite infinito: <b>1x25-;</b> corresponde os episódios 25 e superiores da temporada um, e a todos os episódios de temporadas posteriores - + Last Match: %1 days ago Última correspondência: %1 dias atrás - + Last Match: Unknown Última correspondência: desconhecida - + New rule name Nome da nova regra - + Please type the name of the new download rule. Escreva o nome da nova regra para transferências. - - + + Rule name conflict Conflito no nome da regra - - + + A rule with this name already exists, please choose another name. Já existe uma regra com este nome. Por favor, escolha outro nome. - + Are you sure you want to remove the download rule named '%1'? Tem a certeza de que deseja remover a regra para transferências com o nome '%1'? - + Are you sure you want to remove the selected download rules? Tem a certeza de que quer remover as regras de transferência selecionadas? - + Rule deletion confirmation Confirmação de eliminação de regra - + Invalid action Ação inválida - + The list is empty, there is nothing to export. A lista encontra-se vazia, não há nada para exportar. - + Export RSS rules Exportar regras RSS - + I/O Error Erro I/O - + Failed to create the destination file. Reason: %1 Ocorreu um erro ao tentar criar o ficheiro de destino. Motivo: %1 - + Import RSS rules Importar regras RSS - + Failed to import the selected rules file. Reason: %1 Ocorreu um erro ao tentar o ficheiro com as regras selecionadas. Motivo: %1 - + Add new rule... Adicionar nova regra... - + Delete rule Eliminar regra - + Rename rule... Renomear regra... - + Delete selected rules Eliminar regras selecionadas - + Clear downloaded episodes... Limpar os episódios transferidos... - + Rule renaming Renomear regra - + Please type the new rule name Por favor, escreva o novo nome da regra - + Clear downloaded episodes Limpar episódios transferidos - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Deseja realmente limpar a lista de episódios transferidos da regra selecionada? - + Regex mode: use Perl-compatible regular expressions Modo regex: utilizar expressões regulares compatíveis com Perl - - + + Position %1: %2 Posição %1: %2 - + Wildcard mode: you can use Modo 'Wildcard': você pode utilizar - - + + Import error Erro ao importar - + Failed to read the file. %1 Ocorreu um erro ao tentar ler o ficheiro. %1 - + ? to match any single character ? para corresponder a qualquer caracter - + * to match zero or more of any characters * para igualar a zero ou mais caracteres - + Whitespaces count as AND operators (all words, any order) Os espaços em branco contam como operadores AND (E) (todas as palavras, qualquer ordem) - + | is used as OR operator É utilizado como operador OU (OR) - + If word order is important use * instead of whitespace. Se a ordem das palavras é importante utilize * em vez de um espaço em branco. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Uma expressão com uma cláusula %1 vazia (por exemplo, %2) - + will match all articles. irá corresponder a todos os artigos. - + will exclude all articles. irá excluir todos os artigos. @@ -2074,28 +2085,38 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Não foi possível analisar os dados para retomar: formato inválido - - + + Cannot parse torrent info: %1 Não foi possível analisar as informações do torrent: %1 - + Cannot parse torrent info: invalid format Não foi possível analisar as informações do torrent: formato inválido - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Não foi possível guardar metadados de torrents para '%1'. Erro: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Não foi possível guardar os dados do retomar do torrent para '%1'. Erro: %2. @@ -2106,16 +2127,17 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para + Cannot parse resume data: %1 Não foi possível analisar os dados de retomada: %1 - + Resume data is invalid: neither metadata nor info-hash was found Dados de retomada inválidos: não foram encontrados nem metadados, nem informações do hash - + Couldn't save data to '%1'. Error: %2 Não foi possível guardar dados para '%1'. Erro: %2 @@ -2123,38 +2145,60 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para BitTorrent::DBResumeDataStorage - + Not found. Não encontrado. - + Couldn't load resume data of torrent '%1'. Error: %2 Não foi possível carregar os dados do retomar do torrent '%1'. Erro: %2 - - + + Database is corrupted. A base de dados está corrompida. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Não foi possível ativar o modo de registo Write-Ahead Logging (WAL). Erro: %1. - + Couldn't obtain query result. Não foi possível obter o resultado da análise. - + WAL mode is probably unsupported due to filesystem limitations. O modo WAL provavelmente não é suportado devido a limitações do sistema de ficheiros. - + + + Cannot parse resume data: %1 + Não foi possível analisar os dados de retomada: %1 + + + + + Cannot parse torrent info: %1 + Não foi possível analisar as informações do torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Não foi possível iniciar a transação. Erro: %1 @@ -2162,22 +2206,22 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Não foi possível guardar os metadados do torrent. Erro: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Não foi possível armazenar os dados do retomar do torrent '%1'. Erro: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Não foi possível eliminar os dados do retomar do torrent '%1'. Erro: %2 - + Couldn't store torrents queue positions. Error: %1 Não foi possível armazenar as posições da lista de torrents. Erro:%1 @@ -2185,530 +2229,503 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Suporte para a 'Tabela do hash distribuído (DHT)': %1 - - - - - - - - - + + + + + + + + + ON ON - - - - - - - - - + + + + + + + + + OFF OFF - - + + Local Peer Discovery support: %1 Suporte para a 'Descoberta de fontes locais': %1 - + Restart is required to toggle Peer Exchange (PeX) support É necessário reiniciar para ativar/desativar o suporte para Troca de pares (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Falha ao retomar o torrent. Torrent: "%1". Motivo: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Falha ao retomar o torrent: Foi detetado um ID inconsistente do torrent. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Detetados dados inconsistentes: a categoria está ausente no ficheiro de configuração. A categoria será recuperada, mas as suas configurações serão redefinidas para os valores padrão. Torrent: "%1". Categoria: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Detetados dados inconsistentes: categoria inválida. Torrent: "%1". Categoria: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Detetada falta de combinação entre os caminhos para guardar da categoria recuperada e o caminho para guardar atual do torrent. O torrent agora foi trocado para o modo 'Manual'. Torrent: "%1". Categoria: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Detetados dados inconsistentes: a categoria está ausente no ficheiro de configuração. A categoria será recuperada. Torrent: "%1". Etiqueta: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Detetados dados inconsistentes: Etiqueta inválida. Torrent: "%1". Etiqueta: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Detectado evento de despertar do sistema. Reanunciando a todos os rastreadores... - + Peer ID: "%1" ID da fonte: "%1" - + HTTP User-Agent: "%1" Agente de utilizador HTTP: "%1" - + Peer Exchange (PeX) support: %1 Suporte para 'Troca de fontes (PeX)': %1 - - + + Anonymous mode: %1 Modo anónimo: %1 - - + + Encryption support: %1 Suporte à encriptação: %1 - - + + FORCED FORÇADO - + Could not find GUID of network interface. Interface: "%1" Não é possível encontrar o 'Identificador único global' (GUID) da interface de rede: "%1" - + Trying to listen on the following list of IP addresses: "%1" A tentar escutar na seguinte lista de endereços de IP: "%1" - + Torrent reached the share ratio limit. O torrent atingiu o limite da proporção de partilha. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent removido. - - - Removed torrent and deleted its content. - Torrent removido e eliminado o seu conteúdo. - - - Torrent paused. - Torrent em pausa. - - - + Super seeding enabled. Modo super semeador ativado. - + Torrent reached the seeding time limit. O torrent atingiu o limite de tempo a semear. - + Torrent reached the inactive seeding time limit. O torrent atingiu o limite de tempo inativo a semear. - + Failed to load torrent. Reason: "%1" Falha ao carregar o torrent. Motivo: "%1" - + I2P error. Message: "%1". Erro I2P. Mensagem: "%1". - + UPnP/NAT-PMP support: ON Suporte a UPnP/NAT-PMP: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - A fusão de trackers está desativada + A fusão de trackers está desativada - + Trackers cannot be merged because it is a private torrent - Os trackers não podem ser fundidos porque se trata de um torrent privado + Os trackers não podem ser fundidos porque se trata de um torrent privado - + Trackers are merged from new source - Os trackers são fundidos a partir da nova fonte + Os trackers são fundidos a partir da nova fonte - + UPnP/NAT-PMP support: OFF Suporte a UPnP/NAT-PMP: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Falha ao exportar o torrent. Torrent: "%1". Destino: "%2". Motivo: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 O retomar da poupança de dados foi abortado. Número de torrents pendentes: %1 - + The configured network address is invalid. Address: "%1" O endereço de rede configurado é inválido. Endereço: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Falha ao encontrar o endereço de rede configurado para escutar. Endereço: "%1" - + The configured network interface is invalid. Interface: "%1" A interface da rede configurada é inválida. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Endereço de IP inválido rejeitado enquanto aplicava a lista de endereços de IP banidos. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Adicionado o tracker ao torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Removido o tracker do torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL da semente adicionado ao torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Removido o URL da semente do torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent em pausa. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent retomado. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Transferência do torrent concluída. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Movimentação do torrent cancelada. Torrent: "%1". Fonte: "%2". Destino: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Falha ao enfileirar a movimentação do torrent. Torrent: "%1". Fonte: "%2". Destino: "%3". Motivo: o torrent está atualmente a ser movido para o destino - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Falha ao enfileirar a movimentação do torrent. Torrent: "%1". Fonte: "%2". Destino: "%3". Motivo: ambos os caminhos apontam para o mesmo local - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Enfileirada a movimentação do torrent. Torrent: "%1". Fonte: "%2". Destino: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Iniciada a movimentação do torrent. Torrent: "%1". Destino: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Falha ao guardar a configuração das categorias. Ficheiro: "%1". Erro: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Falha ao analisar a configuração das categorias. Ficheiro: "%1". Erro: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Ficheiro de filtro dos IPs analisado com sucesso. Número de regras aplicadas: %1 - + Failed to parse the IP filter file Falha ao analisar o ficheiro de filtro dos IPs - + Restored torrent. Torrent: "%1" Torrent restaurado. Torrent: "%1" - + Added new torrent. Torrent: "%1" Novo torrent adicionado. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Erro de torrent. Torrent: "%1". Erro: "%2" - Removed torrent. Torrent: "%1" - Torrent removido. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent removido e eliminado o seu conteúdo. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Alerta de erro no ficheiro. Torrent: "%1". Ficheiro: "%2". Motivo: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Falha no mapeamento das portas UPnP/NAT-PMP. Mensagem: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Mapeamento das portas UPnP/NAT-PMP realizado com sucesso. Mensagem: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtro de IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). porta filtrada (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). porta privilegiada (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" A sessão BitTorrent encontrou um erro grave. Motivo: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Erro de proxy SOCKS5. Endereço: %1. Mensagem: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 restrições de modo misto - + Failed to load Categories. %1 Ocorreu um erro ao carregar as Categorias. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Ocorreu um erro ao carregar a configuração das Categorias. Ficheiro: "%1". Erro: "Formato de dados inválido" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent removido, mas ocorreu uma falha ao eliminar o seu conteúdo e/ou ficheiro parcial. Torrent: "%1". Erro: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 encontra-se inativo - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 está desativado - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Falha na pesquisa do DNS da URL da semente. Torrent: "%1". URL: "%2". Erro: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Mensagem de erro recebida do URL da semente. Torrent: "%1". URL: "%2". Mensagem: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" A receber com sucesso através do IP. IP: "%1". Porta: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Falha de recepção no IP. IP: "%1". Porta: "%2/%3". Motivo: "%4" - + Detected external IP. IP: "%1" IP externo detetado. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Erro: A fila de alertas internos está cheia e os alertas foram perdidos, poderá experienciar uma degradação na performance. Tipos de alertas perdidos: "%1". Mensagem: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent movido com sucesso. Torrent: "%1". Destino: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Falha ao mover o torrent. Torrent: "%1". Fonte: "%2". Destino: "%3". Motivo: "%4" @@ -2758,47 +2775,47 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Não foi possível guardar no ficheiro. Motivo: "%1". O torrent agora está no modo "somente upload". - + Download first and last piece first: %1, torrent: '%2' Fazer a transferência da primeira e última parte primeiro: %1, torrent: '%2' - + On On - + Off Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Falha ao gerar dados de resumo. Torrent: "%1". Motivo: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Falha ao restaurar o torrent. Os arquivos provavelmente foram movidos ou o armazenamento não está acessível. Torrent: "%1". Motivo: "%2" - + Missing metadata Metadados faltando - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Falha ao renomear. Torrent: "%1", ficheiro: "%2", razão: "%3" - + Performance alert: %1. More info: %2 Alerta de performance: %1. Mais informações: %2 @@ -2835,11 +2852,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Expected integer number in environment variable '%1', but got '%2' Era esperado o número inteiro na variável ambiente '%1', mas foi obtido '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - O parâmetro '%1' deverá seguir a sintaxe '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2892,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - O parâmetro '%1' deverá seguir a sintaxe '%1=%2' + O parâmetro '%1' deverá seguir a sintaxe '%1=%2' @@ -2968,11 +2980,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Add torrents as running or stopped - - - - Add torrents as started or paused - Adicionar torrents como iniciados ou pausados + Adicionar torrents como em execução ou parados @@ -3063,20 +3071,12 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents + Parar torrents @@ -3174,11 +3174,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Also remove the content files - - - - Also permanently delete the files - Também eliminar permanentemente os ficheiros + Remover também os ficheiros de conteúdo @@ -3411,26 +3407,22 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para GUIAddTorrentManager - + Downloading torrent... Source: "%1" A transferir torrent... Fonte: "%1" - Trackers cannot be merged because it is a private torrent - Os trackers não podem ser fundidos porque se trata de um torrent privado - - - + Torrent is already present O torrent já se encontra presente - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? O torrent '%1' já existe na lista de transferências. Deseja unir os rastreadores da nova fonte? @@ -3548,6 +3540,40 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Ficheiros de imagem suportados + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3715,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para &Options... &Opções... - - &Resume - &Retomar - &Remove @@ -3774,10 +3796,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Close Window Fechar janela - - R&esume All - R&etomar tudo - Manage Cookies... @@ -3893,10 +3911,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para &Hibernate System &Hibernar sistema - - S&hutdown System - D&esligar sistema - &Statistics @@ -3917,14 +3931,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para &About &Acerca - - &Pause - &Pausar - - - P&ause All - P&ausar tudo - &Add Torrent File... @@ -3958,12 +3964,12 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para - + Show Mostrar - + Check for program updates Pesquisar por atualizações da aplicação @@ -3978,388 +3984,382 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Se gosta do qBittorrent, ajude-nos e faça uma doação! - + Execution Log Registo de execução - + Clear the password Limpar palavra-passe - + &Set Password Definir palavra-pa&sse - + Preferences Preferências - + &Clear Password &Limpar palavra-passe - + Transfers Transferências - - + + qBittorrent is minimized to tray O qBittorrent foi minimizado para a barra de tarefas - - - + + + This behavior can be changed in the settings. You won't be reminded again. Este comportamento pode ser modificado nas definições. Você não será novamente relembrado. - + Icons Only Apenas ícones - + Text Only Apenas texto - + Text Alongside Icons Texto ao lado dos ícones - + Text Under Icons Texto abaixo dos ícones - + Follow System Style Utilizar o estilo do sistema - - + + UI lock password Palavra-passe da interface - - + + Please type the UI lock password: Escreva a palavra-passe da interface: - + Are you sure you want to clear the password? Tem a certeza que pretende eliminar a palavra-passe? - + Use regular expressions Utilizar expressões regulares - - + + Search Engine - Motor de pesquisa + Motor de pesquisa - + Search has failed - A pesquisa falhou + A pesquisa falhou - + Search has finished - A pesquisa terminou + A pesquisa terminou - + Search Pesquisar - + Transfers (%1) Transferências (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. O qBittorrent foi atualizado e necessita de ser reiniciado para que as alterações tenham efeito. - + qBittorrent is closed to tray O qBittorrent foi fechado para a barra de tarefas - + Some files are currently transferring. Ainda estão a ser transferidos alguns ficheiros. - + Are you sure you want to quit qBittorrent? Tem a certeza que deseja sair do qBittorrent? - + &No &Não - + &Yes &Sim - + &Always Yes &Sair sempre - + Options saved. Opções guardadas. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Python Runtime em falta - + qBittorrent Update Available Atualização disponível - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? É necessário o Python para poder utilizar o motor de pesquisa, mas parece que não existe nenhuma versão instalada. Gostaria de o instalar agora? - + Python is required to use the search engine but it does not seem to be installed. É necessário o Python para poder utilizar o motor de pesquisa, mas parece que não existe nenhuma versão instalada. - - + + Old Python Runtime Python Runtime antigo - + A new version is available. Está disponível uma nova versão. - + Do you want to download %1? Pretende transferir %1? - + Open changelog... Abrir histórico de alterações... - + No updates available. You are already using the latest version. Não existem atualizações disponíveis. Você já possui a versão mais recente. - + &Check for Updates Pesq&uisar por atualizações - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? A sua versão do Python (%1) está desatualizada. Requerimento mínimo: %2. Quer instalar uma versão mais recente agora? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. A sua versão do Python (%1) está desatualizada. Atualize para a versão mais recente para que os motores de pesquisa funcionem. Requerimento mínimo: %2. - + Paused - Em pausa + Em pausa - + Checking for Updates... A pesquisar atualizações... - + Already checking for program updates in the background O programa já está à procura de atualizações em segundo plano - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Ocorreu um erro ao tentar transferir - Python setup could not be downloaded, reason: %1. -Please install it manually. - Não foi possível fazer a transferência do Python. Motivo: %1. -Por favor, instale-o manualmente. - - - - + + Invalid password Palavra-passe inválida - + Filter torrents... Filtrar torrents... - + Filter by: Filtrar por: - + The password must be at least 3 characters long A palavra-passe deve ter pelo menos 3 caracteres - - - + + + RSS (%1) RSS (%1) - + The password is invalid A palavra-passe é inválida - + DL speed: %1 e.g: Download speed: 10 KiB/s Veloc. download: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Vel. upload: %1 - + Hide Ocultar - + Exiting qBittorrent A sair do qBittorrent - + Open Torrent Files Abrir ficheiros torrent - + Torrent Files Ficheiros torrent @@ -5853,47 +5853,47 @@ Por favor, instale-o manualmente. Net::Smtp - + Connection failed, unrecognized reply: %1 Falha na ligação, resposta não reconhecida: %1 - + Authentication failed, msg: %1 Falha na autenticação, mensagem: %1 - + <mail from> was rejected by server, msg: %1 <mail from> foi rejeitado pelo servidor, mensagem: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> foi rejeitado pelo servidor, mensagem: %1 - + <data> was rejected by server, msg: %1 <data> foi rejeitado pelo servidor, mensagem: %1 - + Message was rejected by the server, error: %1 A mensagem foi rejeitada pelo servidor, erro: %1 - + Both EHLO and HELO failed, msg: %1 Ambos o EHLO e o HELO falharam, mensagem: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 O servidor SMTP não parece oferecer suporte a nenhum dos modos de autenticação que suportamos [CRAM-MD5|PLAIN|LOGIN], ignorando a autenticação, sabendo que provavelmente falhará... Modos de autenticação do servidor: %1 - + Email Notification Error: %1 E-mail de notificação de erro: %1 @@ -5935,10 +5935,6 @@ Por favor, instale-o manualmente. RSS RSS - - Web UI - Interface Web - Advanced @@ -5975,10 +5971,6 @@ Por favor, instale-o manualmente. Always Sempre - - Paused torrents only - Apenas os torrents pausados - Action on double-click @@ -5989,10 +5981,6 @@ Por favor, instale-o manualmente. Downloading torrents: A transferir torrents: - - Start / Stop Torrent - Iniciar/Parar torrent - @@ -6051,175 +6039,179 @@ Por favor, instale-o manualmente. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Disposição do conteúdo do torrent: - + Original Original - + Create subfolder Criar subpasta - + Don't create subfolder Não criar subpasta - + The torrent will be added to the top of the download queue O torrent será adicionado ao início da fila de transferências - + Add to top of queue The torrent will be added to the top of the download queue Adicionar ao início da fila - + When duplicate torrent is being added Quando um torrent duplicado for adicionado - + Merge trackers to existing torrent Unir rastreadores ao torrent existente - + Keep unselected files in ".unwanted" folder Manter ficheiros não selecionados na pasta ".unwanted" - + Add... Adicionar... - + Options.. Opções.. - + Remove Remover - + Email notification &upon download completion Enviar notificação &por e-mail ao terminar a transferência - + Send test email - + Enviar e-mail de teste - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Protocolo de ligação de pares: - + Any Qualquer um - + I2P (experimental) I2P (experimental) - + Mixed mode Modo misto - Some options are incompatible with the chosen proxy type! - Algumas opções são incompatíveis com o tipo de proxy escolhido! + Algumas opções são incompatíveis com o tipo de proxy escolhido! - + If checked, hostname lookups are done via the proxy Se selecionado, as pesquisas de nome de servidor são feitas por meio do proxy - + Perform hostname lookup via proxy Realizar a consulta de hostname via proxy - + Use proxy for BitTorrent purposes Utilize um proxy para fins de BitTorrent - + RSS feeds will use proxy Os feeds RSS irão usar proxy - + Use proxy for RSS purposes Utilizar proxy para fins de RSS - + Search engine, software updates or anything else will use proxy Mecanismo de pesquisa, atualizações de software ou outra coisa qualquer usará proxy - + Use proxy for general purposes Utilizar proxy para fins gerais - + IP Fi&ltering Fi&ltro de IP - + Schedule &the use of alternative rate limits Agendar &a utilização dos limites de rácio alternativos - + From: From start time De: - + To: To end time Para: - + Find peers on the DHT network Encontrar fontes na rede DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6228,188 +6220,190 @@ Exigir encriptação: Apenas liga a fontes com protocolo de encriptação Desativar encriptação: Apenas liga a fontes sem protocolo de encriptação - + Allow encryption Permitir encriptação - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Mais informação</a>) - + Maximum active checking torrents: Máximo de torrents ativos em verificação: - + &Torrent Queueing Fila de &torrents - + When total seeding time reaches Quando o tempo total de semear for atingido - + When inactive seeding time reaches Quando o tempo inativo de semear for atingido - A&utomatically add these trackers to new downloads: - Adicionar a&utomaticamente estes rastreadores às novas transferências: - - - + RSS Reader Leitor RSS - + Enable fetching RSS feeds Ativar a procura de fontes RSS - + Feeds refresh interval: Intervalo de atualização das fontes: - + Same host request delay: Atraso na solicitação do mesmo host: - + Maximum number of articles per feed: Número máximo de artigos por fonte: - - - + + + min minutes min - + Seeding Limits Limites do semear - Pause torrent - Pausar torrent - - - + Remove torrent Remover torrent - + Remove torrent and its files Remover o torrent e os seus ficheiros - + Enable super seeding for torrent Ativar o super semear para o torrent - + When ratio reaches Quando o rácio atingir - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + Parar torrent + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader Transferidor automático de RSS Torrent - + Enable auto downloading of RSS torrents Ativar a transferência automática de torrents RSS - + Edit auto downloading rules... Editar regras da transferência automática... - + RSS Smart Episode Filter Filtro inteligente de episódios RSS - + Download REPACK/PROPER episodes Transferir episódios REPACK/PROPER - + Filters: Filtros: - + Web User Interface (Remote control) Interface web do utilizador (controlo remoto) - + IP address: Endereço IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6418,41 +6412,37 @@ Especifique um endereço IPv4 ou IPv6. Você pode especificar "0.0.0.0" "::" para qualquer endereço IPv6, ou "*" para IPv4 e IPv6. - + Ban client after consecutive failures: Banir cliente depois de várias falhas consecutivas: - + Never Nunca - + ban for: banir durante: - + Session timeout: Terminado o tempo da sessão: - + Disabled Desativado(a) - Enable cookie Secure flag (requires HTTPS) - Ativar cookie bandeira segura (requer HTTPS) - - - + Server domains: Domínio do servidor: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6465,37 +6455,37 @@ você deverá colocar os nomes de domínio usados pelo servidor da interface web Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. - + &Use HTTPS instead of HTTP &Utilizar o HTTPS como alternativa ao HTTP - + Bypass authentication for clients on localhost Desativar a autenticação para clientes no localhost - + Bypass authentication for clients in whitelisted IP subnets Desativar a autenticação para clientes pertencentes à lista de IPs confiáveis - + IP subnet whitelist... Sub-rede de IP confiável... - + Use alternative WebUI - + Usar interface web alternativa - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Especifique IPs de proxies reversos (ou sub-máscaras, ex.: 0.0.0.0/24) para utilizar no endereço do cliente encaminhado (atributo X-Forwarded-For). Utilize ';' para dividir múltiplas entradas. - + Upda&te my dynamic domain name A&tualizar o nome de domínio dinâmico @@ -6507,12 +6497,12 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco &apos Search - + Procurar WebUI - + Interface Web @@ -6608,99 +6598,99 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco &apos Eliminar registos de backup anteriores a: - + Show external IP in status bar - + When adding a torrent Ao adicionar um torrent - + Bring torrent dialog to the front Trazer o diálogo do torrent para a frente - + The torrent will be added to download list in a stopped state - + O torrent será adicionado à lista de transferências no estado parado - + Also delete .torrent files whose addition was cancelled Eliminar também os ficheiros .torrent cuja adição foi cancelada - + Also when addition is cancelled Também quando a adição for cancelada - + Warning! Data loss possible! Atenção! Possível perda de dados! - + Saving Management Gestão do "Guardar" - + Default Torrent Management Mode: Modo de gestão do torrent por defeito: - + Manual Manual - + Automatic Automático - + When Torrent Category changed: Quando a 'Categoria do torrent' for alterada: - + Relocate torrent Realocar torrent - + Switch torrent to Manual Mode Mudar o torrent para o 'Modo manual' - - + + Relocate affected torrents Realocar torrents afetados - - + + Switch affected torrents to Manual Mode Mudar os torrents afetados para o 'Modo manual' - + Use Subcategories Utilizar subcategorias - + Default Save Path: Caminho padrão para o 'Guardar': - + Copy .torrent files to: Copiar os ficheiros .torrent para: @@ -6710,26 +6700,22 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco &apos Mostrar o &qBittorrent na área de notificação - &Log file - Ficheiro de &registo - - - + Display &torrent content and some options Mostrar o conteúdo do &torrent e algumas opções - + De&lete .torrent files afterwards E&liminar os ficheiros .torrent mais tarde - + Copy .torrent files for finished downloads to: Copiar os ficheiros .torrent das transferências terminadas para: - + Pre-allocate disk space for all files Pré-alocar espaço em disco para todos os ficheiros @@ -6759,10 +6745,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco &apos Preview file, otherwise open destination folder Pré-visualizar ficheiro, alternativamente abrir a pasta de destino - - Show torrent options - Mostrar opções do torrent - Shows a confirmation dialog when exiting with active torrents @@ -6828,69 +6810,65 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco &apos anos - + Log performance warnings Registar avisos de desempenho - The torrent will be added to download list in a paused state - O torrent será adicionado à lista de transferências em estado de pausa - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Não iniciar a transferência automaticamente - + Whether the .torrent file should be deleted after adding it Se o ficheiro .torrent deve ser eliminado após ter sido adicionado - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Atribui o tamanho total dos ficheiros no disco antes de iniciar as transferências, para minimizar a fragmentação. Útil apenas para HDDs. - + Append .!qB extension to incomplete files Adicionar a extensão .!qB aos ficheiros incompletos - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Quando está a ser descarregado um torrent, oferecer para adicionar torrents a partir de ficheiros .torrent encontrados dentro deles - + Enable recursive download dialog Ativar o diálogo de transferência recursiva - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automático: Várias propriedades do torrent (ex: caminho para guardar) serão decididas pela categoria associada Manual: Várias propriedades do torrent (ex: caminho para guardar) deverão ser decididas manualmente - + When Default Save/Incomplete Path changed: Quando o caminho padrão para Guardar/Incompleto mudar: - + When Category Save Path changed: Quando alterar a 'Categoria do caminho para guardar': - + Use Category paths in Manual Mode Utilizar os caminhos de 'Categoria' no 'Modo manual' - + Resolve relative Save Path against appropriate Category path instead of Default one Resolver o 'Caminho para guardar' relativo contra o 'Caminho da categoria' apropriado ao invés do 'Caminho padrão' @@ -6910,50 +6888,50 @@ Manual: Várias propriedades do torrent (ex: caminho para guardar) deverão ser Estado da janela do qBittorrent ao iniciar - + Torrent stop condition: Condição para parar torrent: - - + + None Nenhum - - + + Metadata received Metadados recebidos - - + + Files checked Ficheiros verificados - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Usar outro caminho para os torrents incompletos: - + Automatically add torrents from: Adicionar automaticamente os torrents de: - + Excluded file names Nomes de ficheiro excluídos - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6982,523 +6960,510 @@ readme.txt: filtra o nome exato do ficheiro. readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas não 'readme10.txt'. - + Receiver Recetor - + To: To receiver Para: - + SMTP server: Servidor SMTP: - + Sender Emissor - + From: From sender De: - + This server requires a secure connection (SSL) Este servidor requer uma ligação segura (SSL) - - + + Authentication Autenticação - - - - + + + + Username: Nome de utilizador: - - - - + + + + Password: Palavra-passe: - + Run external program Executar programa externo - Run on torrent added - Executar ao adicionar o torrent - - - Run on torrent finished - Executar ao concluir o torrent - - - + Show console window Mostrar a janela da consola - + TCP and μTP TCP e μTP - + Listening Port Porta de receção - + Port used for incoming connections: Porta utilizada para as ligações recebidas: - + Set to 0 to let your system pick an unused port Definir para 0 para deixar o seu sistema escolher uma porta não utilizada - + Random Aleatória - + Use UPnP / NAT-PMP port forwarding from my router Utilizar o reencaminhamento de portas UPnP/NAT-PMP do meu router - + Connections Limits Limites das ligações - + Maximum number of connections per torrent: Número máximo de ligações por torrent: - + Global maximum number of connections: Número máximo de ligações globais: - + Maximum number of upload slots per torrent: Número máximo de slots de upload por torrent: - + Global maximum number of upload slots: Número máximo de slots de upload por torrent: - + Proxy Server Servidor proxy - + Type: Tipo: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Servidor: - - - + + + Port: Porta: - + Otherwise, the proxy server is only used for tracker connections Se não o fizer, o servidor proxy só será utilizado para as ligações aos trackers - + Use proxy for peer connections Utilizar um proxy para ligações às fontes - + A&uthentication A&utenticação - Info: The password is saved unencrypted - Informação: A palavra-passe é guardada sem encriptação + Informação: A palavra-passe é guardada sem encriptação - + Filter path (.dat, .p2p, .p2b): Filtrar caminho (.dat, .p2p, .p2b): - + Reload the filter Recarregar o filtro - + Manually banned IP addresses... Endereços de IP banidos manualmente... - + Apply to trackers Aplicar aos rastreadores - + Global Rate Limits Limites de rácio globais - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Upload: - - + + Download: Transferência: - + Alternative Rate Limits Limites de rácio alternativo - + Start time Hora de início - + End time Hora de fim - + When: Quando: - + Every day Diariamente - + Weekdays Dias da semana - + Weekends Fins de semana - + Rate Limits Settings Definições dos limites de rácio - + Apply rate limit to peers on LAN Aplicar o limite de rácio às fontes nas ligações LAN - + Apply rate limit to transport overhead Aplicar os limites de rácio para o transporte "overhead" - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Aplicar os limites de rácio ao protocolo µTP - + Privacy Privacidade - + Enable DHT (decentralized network) to find more peers Ativar DHT (rede descentralizada) para encontrar mais fontes - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Trocar fontes com clientes Bittorrent compatíveis (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Ativar a 'Troca de Fontes' (PeX) para encontrar mais fontes - + Look for peers on your local network Procurar fontes na rede local - + Enable Local Peer Discovery to find more peers Ativar 'Descoberta de fontes locais' para encontrar mais fontes - + Encryption mode: Modo de encriptação: - + Require encryption Requer encriptação - + Disable encryption Desativar encriptação - + Enable when using a proxy or a VPN connection Ativar ao utilizar uma ligação proxy ou VPN - + Enable anonymous mode Ativar o modo anónimo - + Maximum active downloads: Nº máximo de transferências ativas: - + Maximum active uploads: Nº máximo de uploads ativos: - + Maximum active torrents: Nº máximo de torrents ativos: - + Do not count slow torrents in these limits Não considerar os torrents lentos para estes limites - + Upload rate threshold: Limite do rácio de upload: - + Download rate threshold: Limite do rácio de transferência: - - - - + + + + sec seconds seg - + Torrent inactivity timer: Temporizador de inatividade do torrent: - + then depois - + Use UPnP / NAT-PMP to forward the port from my router Utilizar o reencaminhamento de portas UPnP/NAT-PMP do meu router - + Certificate: Certificado: - + Key: Chave: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informação acerca dos certificados</a> - + Change current password Alterar a palavra-passe atual - Use alternative Web UI - Utilizar a interface web alternativa - - - + Files location: Localização dos ficheiros: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Segurança - + Enable clickjacking protection Ativar a proteção contra o "clickjacking" - + Enable Cross-Site Request Forgery (CSRF) protection Ativar a proteção contra falsificação de solicitação entre sites (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Ativar a validação do cabeçalho do Host - + Add custom HTTP headers Adicionar cabeçalhos HTTP personalizados - + Header: value pairs, one per line Cabeçalho: pares de valores, um por linha - + Enable reverse proxy support Ativar o suporte para proxy reverso - + Trusted proxies list: Lista de proxies confiáveis: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Serviço: - + Register Registar - + Domain name: Nome do domínio: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Ao ativar estas opções, poderá <strong>perder permanentemente</strong> os seus ficheiros .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Se ativar a segunda opção (&ldquo;Também quando a adição for cancelada&rdquo;) o ficheiro .torrent <strong>será eliminado</strong>, mesmo que prima &ldquo;<strong>Cancelar</ strong>&rdquo; no diálogo &ldquo;Adicionar torrent&rdquo; @@ -7508,12 +7473,12 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Selecione o ficheiro do tema da interface do utilizador do qBittorrent - + Choose Alternative UI files location Escolher localização alternativa para os ficheiros da interface do utilizador - + Supported parameters (case sensitive): Parâmetros suportados (sensível a maiúsculas/minúsculas): @@ -7533,183 +7498,183 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Desativado devido a falha ao detectar presença na área de notificação do sistema - + No stop condition is set. Não foi definida nenhuma condição para parar. - + Torrent will stop after metadata is received. O torrent será parado após a recepção dos metadados. - + Torrent will stop after files are initially checked. O torrent parará após o a verificação inicial dos ficheiros. - + This will also download metadata if it wasn't there initially. Isto também irá transferir metadados caso não existam inicialmente. - + %N: Torrent name %N: Nome do torrent - + %L: Category %L: Categoria - + %F: Content path (same as root path for multifile torrent) %F: Caminho do conteúdo (igual ao caminho raiz para torrents de vários ficheiros) - + %R: Root path (first torrent subdirectory path) %R: Caminho raiz (caminho da primeira subdiretoria do torrent) - + %D: Save path %D: Caminho para gravar - + %C: Number of files %C: Número de ficheiros - + %Z: Torrent size (bytes) %Z: Tamanho do torrent (bytes) - + %T: Current tracker %T: Tracker atual - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Dica: Encapsule o parâmetro entre aspas para evitar que sejam cortados os espaços em branco do texto (ex: "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + Tentativa de enviar e-mail. Verifique a sua caixa de entrada para confirmar - + (None) (Nenhum(a)) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Um torrent será considerado lento se os rácios de download e upload se mantiverem abaixo destes valores durante "Temporizador de inatividade do torrent" segundos - + Certificate Certificado - + Select certificate Selecionar certificado - + Private key Chave privada - + Select private key Selecionar chave privada - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Selecione a pasta a ser monitorizada - + Adding entry failed Ocorreu um erro ao tentar adicionar a entrada - + The WebUI username must be at least 3 characters long. O nome de utilizador da interface web deve ter pelo menos 3 caracteres. - + The WebUI password must be at least 6 characters long. A palavra-passe da interface web tem de ter pelo menos 6 caracteres. - + Location Error Erro de localização - - + + Choose export directory Escolha a diretoria para exportar - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Quando estas opções estão ativadas, o qBittorrent irá <strong>eliminar</strong> os ficheiros .torrent após serem adicionados com sucesso (primeira opção) ou não (segunda opção) nas suas filas de transferência. Isto será aplicado <strong>não apenas</strong> aos ficheiros abertos pelo menu &ldquo;Adicionar torrent&rdquo;, mas também para aqueles abertos pela <strong>associação de tipos de ficheiro</strong> @@ -7719,69 +7684,69 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Ficheiro do tema da IU do qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiquetas (separadas por vírgula) - + %I: Info hash v1 (or '-' if unavailable) %I: Informações do hash v1 (ou '-' se indisponível) - + %J: Info hash v2 (or '-' if unavailable) %J: Informações do hash v2 (ou '-' se indisponível) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ID do torrent (hash das informações do sha-1 pro torrent v1 ou hash das informações do sha-256 truncadas para torrent v2/híbrido) - - + + Choose a save directory Escolha uma diretoria para o gravar - + Torrents that have metadata initially will be added as stopped. Os torrents que possuem metadados inicialmente serão adicionados como parados. - + Choose an IP filter file Escolha um ficheiro de filtro IP - + All supported filters Todos os filtros suportados - + The alternative WebUI files location cannot be blank. O local alternativo dos ficheiros da interface web não pode estar em branco. - + Parsing error Erro de processamento - + Failed to parse the provided IP filter Ocorreu um erro ao processar o filtro IP indicado - + Successfully refreshed Atualizado com sucesso - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number O filtro de IP fornecido foi processado com sucesso: Foram aplicadas %1 regras. @@ -7792,18 +7757,18 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n Preferências - + Time Error Erro de horário - + The start time and the end time can't be the same. A hora de início e a de fim não podem ser idênticas. - - + + Length Error Erro de comprimento @@ -7894,163 +7859,163 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n PeerListWidget - + Country/Region País/Região - + IP/Address Endereço IP: - + Port Porta - + Flags Bandeiras - + Connection Ligação - + Client i.e.: Client application Cliente - + Peer ID Client i.e.: Client resolved from Peer ID Cliente de ID do par - + Progress i.e: % downloaded Evolução - + Down Speed i.e: Download speed Vel. download - + Up Speed i.e: Upload speed Vel. upload - + Downloaded i.e: total data downloaded Transferido - + Uploaded i.e: total data uploaded Enviado - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Importância - + Files i.e. files that are being downloaded right now Ficheiros - + Column visibility Visibilidade da coluna - + Resize columns Redimensionar colunas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as colunas visíveis para o tamanho dos seus conteúdos - + Add peers... Adicionar peers... - - + + Adding peers A adicionar fontes - + Some peers cannot be added. Check the Log for details. Não foi possível adicionar algumas das sementes. Para mais detalhes consulte o 'Registo'. - + Peers are added to this torrent. As fontes foram adicionadas a este torrent. - - + + Ban peer permanently Banir fonte permanentemente - + Cannot add peers to a private torrent Não foi possível adicionar fontes a um torrent privado - + Cannot add peers when the torrent is checking Não pode adicionar às fontes enquanto o torrent está a ser verificado - + Cannot add peers when the torrent is queued Não pode adicionar às fontes enquanto o torrent está a ser colocado em fila - + No peer was selected Não foi selecionada nenhuma fonte - + Are you sure you want to permanently ban the selected peers? Tem a certeza que deseja banir permanentemente as fontes selecionadas? - + Peer "%1" is manually banned A fonte "%1" foi banida manualmente - + N/A N/A - + Copy IP:port Copiar IP: porta @@ -8331,34 +8296,8 @@ Esses plugins foram desativados. PowerManagement - qBittorrent is active - O qBittorrent encontra-se ativo - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + O qBittorrent encontra-se ativo @@ -8602,12 +8541,12 @@ Esses plugins foram desativados. Ratio / Time Active (in months), indicates how popular the torrent is - + Proporção / Tempo ativo (em meses), indica o quão popular o torrent é Popularity: - + Popularidade: @@ -8642,7 +8581,7 @@ Esses plugins foram desativados. Private: - + Privado: @@ -8650,153 +8589,124 @@ Esses plugins foram desativados. Guardado em: - + Never Nunca - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (tem %3) - - + + %1 (%2 this session) %1 (%2 nesta sessão) - - + + N/A N/D - + Yes - Sim + Sim - + No - Não + Não - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (semeado durante %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (máximo: %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (total: %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (média: %2) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Nova fonte web - - - Remove Web seed - Remover fonte web - - - Copy Web seed URL - Copiar URL da fonte web - - - Edit Web seed URL - Editar URL da fonte web - - - + Filter files... Filtrar ficheiros... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Os gráficos de velocidade estão desativados - + You can enable it in Advanced Options Pode ativá-lo nas Opções Avançadas - New URL seed - New HTTP source - Novo URL de sementes - - - New URL seed: - Novo URL de sementes: - - - This URL seed is already in the list. - Este URL de sementes já existe na lista. - - - + Web seed editing Edição de sementes web - + Web seed URL: URL de sementes da web: @@ -8804,33 +8714,33 @@ Esses plugins foram desativados. RSS::AutoDownloader - - + + Invalid data format. Formato de dados inválido. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Não foi possível guardar os dados RSS do AutoDownloader em %1. Erro: %2 - + Invalid data format Formato de dados inválido - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 Ocorreu um erro ao ler as regras do RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Não foi possível carregar as regras RSS do AutoDownloader. Motivo: %1 @@ -8838,22 +8748,22 @@ Esses plugins foram desativados. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Não foi possível fazer o download da fonte RSS em '%1'. Motivo: %2 - + RSS feed at '%1' updated. Added %2 new articles. A fonte RSS em '%1' foi atualizada. Adicionados %2 novos artigos. - + Failed to parse RSS feed at '%1'. Reason: %2 Não foi possível analisar a fonte RSS em '%1'. Motivo: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Feito o download com sucesso da fonte RSS em '%1'. A começar a iniciá-lo. @@ -8902,12 +8812,12 @@ Esses plugins foram desativados. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Não foi possível guardar a 'Sessão RSS' de configuração. Ficheiro: "%1". Erro: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Não foi possível guardar os dados da sessão RSS. Ficheiro "%1". Erro: "%2" @@ -8929,76 +8839,121 @@ Esses plugins foram desativados. - + Item doesn't exist: %1. O item não existe: %1. - Couldn't move folder into itself. - Não foi possível mover a pasta para dentro da mesma. + Não foi possível mover a pasta para dentro da mesma. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Não é possível eliminar a pasta root. - + Failed to read RSS session data. %1 Ocorreu um erro ao ler os dados da sessão RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Não foi possível carregar o feed RSS: "%1". Motivo: É necessário um URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Não foi possível carregar o feed RSS: "%1". Motivo: O URL é inválido. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Encontrada fonte RSS duplicada. UID: "%1". Erro: A configuração parece estar corrompida. - + Couldn't load RSS item. Item: "%1". Invalid data format. Não foi possível carregar o item RSS:. Item: "%1". Formato de dados inválido. - + Corrupted RSS list, not loading it. Lista RSS corrompida, não irá carregá-la. - + Incorrect RSS Item path: %1. Caminho do item RSS incorreto: %1. - + RSS item with given path already exists: %1. Já existe o item RSS com o caminho dado: %1. - + Parent folder doesn't exist: %1. Pasta associada inexistente: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + O feed não existe: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + seg + + + + Default + Padrão + + RSSWidget @@ -9098,78 +9053,77 @@ Esses plugins foram desativados. + Feed options... + + + Edit feed URL... - Editar URL do feed... + Editar URL do feed... - Edit feed URL - Editar URL do feed + Editar URL do feed - + Please choose a folder name Por favor, escolha o nome da pasta - + Folder name: Nome da pasta: - + New folder Nova pasta - - Please type a RSS feed URL - Por favor, introduza um URL com fonte RSS + Por favor, introduza um URL com fonte RSS - - Feed URL: - URL fonte: + URL fonte: - + Deletion confirmation Confirmação de eliminação - + Are you sure you want to delete the selected RSS feeds? Tem a certeza de que deseja eliminar as fontes RSS selecionadas? - + Please choose a new name for this RSS feed Por favor escolha um novo nome para esta fonte RSS - + New feed name: Novo nome da fonte: - + Rename failed Ocorreu um erro ao tentar renomear - + Date: Data: - + Feed: Feed: - + Author: Autor: @@ -9306,10 +9260,6 @@ Esses plugins foram desativados. i.e: Number of partial sources Sanguessugas - - Search engine - Motor de pesquisa - Filter search results... @@ -9409,7 +9359,7 @@ Esses plugins foram desativados. Published On - + Publicado em @@ -9430,104 +9380,104 @@ Esses plugins foram desativados. SearchPluginManager - + Unknown search engine plugin file format. Formato desconhecido do ficheiro do plugin de motor de pesquisa. - + Plugin already at version %1, which is greater than %2 O plugin já se encontra na versão %1, que é superior à %2 - + A more recent version of this plugin is already installed. Já se encontra instalada uma versão mais recente deste plugin. - + Plugin %1 is not supported. O plugin %1 não é suportado. - - + + Plugin is not supported. Plugin não suportado. - + Plugin %1 has been successfully updated. O plugin %1 foi atualizado com sucesso. - + All categories Todas as categorias - + Movies Filmes - + TV shows Programas de TV - + Music Música - + Games Jogos - + Anime Animação - + Software Software - + Pictures Imagens - + Books Livros - + Update server is temporarily unavailable. %1 O servidor de atualizações encontra-se temporariamente indisponível. %1 - - + + Failed to download the plugin file. %1 Ocorreu um erro ao tentar fazer o download do ficheiro de plugin. %1 - + Plugin "%1" is outdated, updating to version %2 O plugin "%1" encontra-se desatualizado, a fazer o update para a versão %2 - + Incorrect update info received for %1 out of %2 plugins. Foi recebida uma informação de atualização incorreta para %1 de %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') O plugin de procura '%1' contém uma versão inválida da string ('%2') @@ -9553,135 +9503,127 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Plugins de pesquisa... - + A phrase to search for. Uma frase para procurar. - + Spaces in a search term may be protected by double quotes. Os espaços dentro de um termo de pesquisa poderão ser protegidos com aspas duplas. - + Example: Search phrase example Exemplo: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: pesquisar por <b>foo bar</b> - + All plugins Todos os plugins - + Only enabled Apenas ativo(s) - - + + Invalid data format. - Formato de dados inválido. + Formato de dados inválido. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: procurar por <b>foo</b> e <b>bar</b> - + Refresh - + Close tab Fechar separador - + Close all tabs Fechar todos os separadores - + Select... Selecionar... - - + + Search Engine Motor de pesquisa - - + + Please install Python to use the Search Engine. Por favor, instale o Python para poder utilizar o Motor de pesquisa. - + Empty search pattern Padrão de procura vazio - + Please type a search pattern first Por favor, indique primeiro um padrão de procura - + Stop Parar - - Search has finished - A pesquisa terminou - - - Search has failed - A pesquisa falhou - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10079,67 +10021,77 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali StatusBar - + Connection status: Estado da ligação: - - + + No direct connections. This may indicate network configuration problems. Sem ligações diretas. Isto poderá indicar erros na configuração da rede. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 nós - + qBittorrent needs to be restarted! O qBittorrent necessita de ser reiniciado! - - + + Connection Status: Estado da ligação: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Off-line. Normalmente isto significa que o qBittorrent não conseguiu ativar a porta selecionada para as ligações recebidas. - + Online On-line - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Clique para mudar para os limites alternativos de velocidade - + Click to switch to regular speed limits Clique para mudar para os limites normais de velocidade @@ -10167,23 +10119,15 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Completed (0) Terminado(s) (0) - - Resumed (0) - Retomado(s) (0) - - - Paused (0) - Em pausa (0) - Running (0) - + Em execução (0) Stopped (0) - + Parado (0) @@ -10248,49 +10192,33 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Running (%1) - + Em execução (%1) Stopped (%1) - + Parado (%1) Start torrents - + Iniciar torrents Stop torrents - - - - Paused (%1) - Em pausa (%1) + Parar torrents Moving (%1) A mover (%1) - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents - Remove torrents Remover torrents - - Resumed (%1) - Retomado(s) (%1) - Active (%1) @@ -10362,32 +10290,20 @@ Para instalar alguns, clique no botão "Plugins de pesquisa..." locali Remove unused tags Remover etiquetas não utilizadas - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents - Remove torrents Remover torrents - - New Tag - Nova etiqueta - Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -10714,17 +10630,17 @@ Por favor, escolha um nome diferente e tente novamente. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10976,13 +10892,6 @@ Por favor, escolha um nome diferente e tente novamente. A observar pasta: "%1" - - TorrentInfo - - Invalid metadata - Metadados inválidos - - TorrentOptionsDialog @@ -11020,10 +10929,6 @@ Por favor, escolha um nome diferente e tente novamente. Torrent Share Limits - - Torrent speed limits - Limites de velocidade do torrent - Download: @@ -11056,34 +10961,6 @@ Por favor, escolha um nome diferente e tente novamente. Upload: Envio: - - Torrent share limits - Limites de partilha de torrent - - - Use global share limit - Utilizar limite de partilha global - - - Set no share limit - Definir ausência de limite de partilha - - - Set share limit to - Definir o limite de partilha para - - - ratio - rácio - - - total minutes - minutos totais - - - inactive minutes - minutos inativos - Disable DHT for this torrent @@ -11125,14 +11002,6 @@ Por favor, escolha um nome diferente e tente novamente. Not applicable to private torrents Não aplicável a torrents privados - - No share limit method selected - Não foi selecionado nenhum método de limite de partilha - - - Please select a limit method first - Selecione primeiro um método de limite - TorrentShareLimitsWidget @@ -11187,12 +11056,12 @@ Por favor, escolha um nome diferente e tente novamente. Stop torrent - + Parar torrent Remove torrent - Remover torrent + Remover torrent @@ -11202,7 +11071,7 @@ Por favor, escolha um nome diferente e tente novamente. Enable super seeding for torrent - Ativar o super semear para o torrent + Ativar o super semear para o torrent @@ -11217,10 +11086,6 @@ Por favor, escolha um nome diferente e tente novamente. Torrent Tags Etiquetas do torrent - - New Tag - Nova etiqueta - Add tag @@ -11255,78 +11120,78 @@ Por favor, escolha um nome diferente e tente novamente. TorrentsController - + Error: '%1' is not a valid torrent file. Erro: '%1' não é um ficheiro torrent válido. - + Priority must be an integer A prioridade deverá ser um número inteiro - + Priority is not valid A prioridade não é válida - + Torrent's metadata has not yet downloaded Os metadados do torrent ainda não foram descarregados - + File IDs must be integers Os IDs do ficheiro deverão ser números inteiros - + File ID is not valid O ID do ficheiro não é válido - - - - + + + + Torrent queueing must be enabled Deverá ser ativada a fila de torrents - - + + Save path cannot be empty O caminho para gravar não pode estar em branco - - + + Cannot create target directory Não é possível criar a diretoria de destino - - + + Category cannot be empty A categoria não pode estar em branco - + Unable to create category Não foi possível criar a categoria - + Unable to edit category Não foi possível editar a categoria - + Unable to export torrent file. Error: %1 Não foi possível exportar o arquivo torrent. Erro: %1 - + Cannot make save path Não é possível criar o caminho de gravação @@ -11346,39 +11211,39 @@ Por favor, escolha um nome diferente e tente novamente. O parâmetro 'ordenar' é inválido - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" não é um índice de ficheiro válido. - + Index %1 is out of bounds. O índice %1 está fora dos limites. - - + + Cannot write to directory Não é possível escrever na diretoria - + WebUI Set location: moving "%1", from "%2" to "%3" Definir localização da interface web: a mover "%1", de "%2" para"%3" - + Incorrect torrent name Nome do torrent incorreto - - + + Incorrect category name Nome de categoria incorreto @@ -11483,19 +11348,11 @@ Por favor, escolha um nome diferente e tente novamente. Min Announce - - Invalid status! - Estado inválido! - Tier Fila - - Protocol - Protocolo - Status @@ -11526,18 +11383,6 @@ Por favor, escolha um nome diferente e tente novamente. Message Mensagem - - Next announce - Próximo anúncio - - - Min announce - Anúncio mínimo - - - v%1 - v%1 - TrackerListWidget @@ -11547,73 +11392,73 @@ Por favor, escolha um nome diferente e tente novamente. Este torrent é privado - + Tracker editing A editar tracker - + Tracker URL: URL do tracker: - - + + Tracker editing failed Ocorreu um erro ao tentar editar o tracker - + The tracker URL entered is invalid. O URL do tracker introduzido é inválido. - + The tracker URL already exists. O URL do tracker já existe. - + Edit tracker URL... Editar URL do tracker... - + Remove tracker Remover tracker - + Copy tracker URL Copiar URL do tracker - + Force reannounce to selected trackers Forçar novo anúncio dos rastreadores selecionados - + Force reannounce to all trackers Forçar novo anúncio de todos os rastreadores - + Resize columns Redimensionar colunas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as colunas visíveis para o tamanho dos seus conteúdos - + Add trackers... Adicionar trackers... - + Column visibility Visibilidade da coluna @@ -11696,20 +11541,12 @@ Por favor, escolha um nome diferente e tente novamente. Start torrents - + Iniciar torrents Stop torrents - - - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents + Parar torrents @@ -11833,10 +11670,6 @@ Por favor, escolha um nome diferente e tente novamente. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. A analisar dados para retomar - - Paused - Em pausa - Completed @@ -11877,21 +11710,16 @@ Por favor, escolha um nome diferente e tente novamente. % Done Evolução - - Status - Torrent status (e.g. downloading, seeding, paused) - Estado - Stopped - + Parado Status Torrent status (e.g. downloading, seeding, stopped) - Estado + Estado @@ -11926,7 +11754,7 @@ Por favor, escolha um nome diferente e tente novamente. Popularity - + Popularidade @@ -12007,22 +11835,17 @@ Por favor, escolha um nome diferente e tente novamente. Time Active Time (duration) the torrent is active (not stopped) - Tempo ativo + Tempo ativo Yes - Sim + Sim No - Não - - - Time Active - Time (duration) the torrent is active (not paused) - Tempo ativo + Não @@ -12094,12 +11917,12 @@ Por favor, escolha um nome diferente e tente novamente. Private Flags private torrents - + Privado Ratio / Time Active (in months), indicates how popular the torrent is - + Proporção / Tempo ativo (em meses), indica o quão popular o torrent é @@ -12124,358 +11947,319 @@ Por favor, escolha um nome diferente e tente novamente. TransferListWidget - + Column visibility Visibilidade das colunas - + Recheck confirmation Confirmação de reverificação - + Are you sure you want to recheck the selected torrent(s)? Tem a certeza de que deseja reverificar o(s) torrent(s) selecionado(s)? - + Rename Renomear - + New name: Novo nome: - + Choose save path Escolha o caminho para guardar - Confirm pause - Confirmar pausa - - - Would you like to pause all torrents? - Colocar todos os torrents em pausa? - - - Confirm resume - Confirmar o retomar - - - Would you like to resume all torrents? - Retomar todos os torrents? - - - + Unable to preview Impossível pré-visualizar - + The selected torrent "%1" does not contain previewable files O torrent selecionado "%1" não contém ficheiros onde seja possível pré-visualizar - + Resize columns Redimensionar colunas - + Resize all non-hidden columns to the size of their contents Redimensionar todas as colunas visíveis para o tamanho dos seus conteúdos - + Enable automatic torrent management Ativar a gestão automática dos torrents - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Tem a certeza que deseja ativar o gestor automático dos torrents para os torrents selecionados? Eles poderão ser realocados. - Add Tags - Adicionar etiquetas - - - + Choose folder to save exported .torrent files Escolha a pasta para salvar os arquivos .torrent exportados - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Falha ao exportar o arquivo .torrent. Torrent: "%1". Caminho para salvar: "%2". Motivo: "%3" - + A file with the same name already exists Um arquivo com o mesmo nome já existe - + Export .torrent file error Erro ao exportar arquivo .torrent - + Remove All Tags Remover todas as etiquetas - + Remove all tags from selected torrents? Remover todas as etiquetas dos torrents selecionados? - + Comma-separated tags: Etiquetas separadas por virgulas: - + Invalid tag Etiqueta inválida - + Tag name: '%1' is invalid Nome da etiqueta: '%1' é inválido - &Resume - Resume/start the torrent - &Retomar - - - &Pause - Pause the torrent - &Pausar - - - Force Resu&me - Force Resume/start the torrent - Forçar retor&nar - - - + Pre&view file... Pré-&visualizar arquivo... - + Torrent &options... &Opções do torrent... - + Open destination &folder Abrir &pasta de destino - + Move &up i.e. move up in the queue Mover para &cima - + Move &down i.e. Move down in the queue Mover para &baixo - + Move to &top i.e. Move to top of the queue Mover para o &início - + Move to &bottom i.e. Move to bottom of the queue Mover para o &final - + Set loc&ation... Definir loc&al... - + Force rec&heck Forçar no&va verificação - + Force r&eannounce Forçar r&eanunciar - + &Magnet link Link &magnet - + Torrent &ID &ID do torrent - + &Comment - + &Name &Nome - + Info &hash v1 Informações do &hash v1 - + Info h&ash v2 Informações do h&ash v2 - + Re&name... Re&nomear... - + Edit trac&kers... Editar trac&kers... - + E&xport .torrent... E&xportar .torrent... - + Categor&y Categor&ia - + &New... New category... &Novo... - + &Reset Reset category &Redefinir - + Ta&gs Ta&gs - + &Add... Add / assign multiple tags... &Adicionar... - + &Remove All Remove all tags &Remover tudo - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Fila - + &Copy &Copiar - + Exported torrent is not necessarily the same as the imported O torrent exportado não é necessariamente o mesmo do importado - + Download in sequential order Fazer o download sequencialmente - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Ocorreram erros ao exportar os ficheiros .torrent. Verifique o registo de execução para mais detalhes. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &Remover - + Download first and last pieces first Fazer o download da primeira e última peça primeiro - + Automatic Torrent Management Gestão automática do torrent - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category O modo automático significa que várias propriedades do torrent (ex: guardar caminho) serão decididas pela categoria associada - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Não pode forçar o re-anúncio caso o torrent esteja Pausado/Na fila/Com erro/A verificar - - - + Super seeding mode Modo super semeador @@ -12607,32 +12391,32 @@ Por favor, escolha um nome diferente e tente novamente. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Ocorreu um erro ao tentar localizar o executável do Python no registo do Windows. - + Failed to find Python executable Ocorreu um erro ao tentar localizar o executável do Python @@ -12724,52 +12508,52 @@ Por favor, escolha um nome diferente e tente novamente. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Nome do cookie de sessão inaceitável especificado: '%1'. O padrão será usado. - + Unacceptable file type, only regular file is allowed. Tipo de ficheiro não permitido, apenas são permitidos ficheiros regulares. - + Symlinks inside alternative UI folder are forbidden. São proibidos Symlinks dentro da pasta alternativa da interface o utilizador. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Falta o separador ':' no cabeçalho personalizado HTTP da interface web: "%1" - + Web server error. %1 Erro do servidor web. %1 - + Web server error. Unknown error. Erro do servidor web. Erro desconhecido. @@ -12827,7 +12611,7 @@ Por favor, escolha um nome diferente e tente novamente. Unknown error - Erro desconhecido + Erro desconhecido diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index 22855c26c..d6c3c8ca6 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -170,10 +170,6 @@ Never show again Nu arăta din nou - - Torrent settings - Configurări torent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Opțiuni torent @@ -235,25 +231,25 @@ Condiție de oprire: - - + + None Niciuna - - + + Metadata received Metadate primite - + Torrents that have metadata initially will be added as stopped. - + Torentele care au metadate inițial o să fie adăugate ca oprite. - + Files checked Fișiere verificate @@ -368,112 +364,112 @@ Salvare ca fișier .torrent... - + I/O Error Eroare Intrare/Ieșire - + Not Available This comment is unavailable Nu este disponibil - + Not Available This date is unavailable Nu este disponibil - + Not available Nu este disponibil - + Magnet link Legătură magnet - + Retrieving metadata... Se obțin metadatele... - - + + Choose save path Alegeți calea de salvare - + No stop condition is set. Nicio condiție de oprire stabilită. - + Torrent will stop after metadata is received. Torentul se va opri dupa ce se primesc metadatele. - + Torrent will stop after files are initially checked. Torentul se va opri după ce fișierele sunt verificate inițial. - + This will also download metadata if it wasn't there initially. Aceasta va descarca de asemenea și metadatele dacă nu au fost acolo inițial. - + N/A Indisponibil - + %1 (Free space on disk: %2) %1 (Spațiu disponibil pe disc: %2) - + Not available This size is unavailable. Indisponibil - + Torrent file (*%1) Fisier torent (*%1) - + Save as torrent file Salvează ca fișier torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Nu s-a putut exporta fișierul „%1” cu metadatele torentului. Motiv: %2. - + Cannot create v2 torrent until its data is fully downloaded. Nu poate fi creat un torent de versiuna 2 ptână când datele nu sunt complet descărcate. - + Filter files... Filtrare fișiere... - + Parsing metadata... Se analizează metadatele... - + Metadata retrieval complete Metadatele au fost obținute @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Se descarcă torentul… Sursă: „%1” - + Failed to add torrent. Source: "%1". Reason: "%2" - + Adăugarea torentului a eșuat. Sursă: „%1”. Motiv: „%2” - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - + A fost detectată o încercare de a adăuga un torent duplicat. Sursa: %1. Torent existent: %2. Rezultat: %3 - + Merging of trackers is disabled Combinarea urmăritoarelor este dezactivată - + Trackers cannot be merged because it is a private torrent Urmăritoarele nu a putut fi combinate deoarece este un torent privat - + Trackers are merged from new source Urmăritoarele sunt combinate cu cele din sursa nouă + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiO - + Recheck torrents on completion Reverifică torentele la finalizare - - + + ms milliseconds ms - + Setting Configurare - + Value Value set for this setting Valoare - + (disabled) (dezactivată) - + (auto) (automată) - - + + min minutes min - + All addresses Toate adresele - + qBittorrent Section Secțiune qBittorrent - - + + Open documentation Deschide documentația - + All IPv4 addresses Toate adresele IPv4 - + All IPv6 addresses Toate adresele IPv6 - + libtorrent Section Secțiune libtorrent - + Fastresume files Reia rapid fișierele - + SQLite database (experimental) Bază de date SQLite (experimental) - + Resume data storage type (requires restart) Tip stocare date de reluare (necesită repornirea programului) - + Normal Normal - + Below normal Sub normal - + Medium Mediu - + Low Scăzut - + Very low Foarte scăzut - + Physical memory (RAM) usage limit Limită de folosire a memorie fizice (RAM) - + Asynchronous I/O threads Fire de execuție Intrare/Ieșire asincrone - + Hashing threads Fire pentru sumele de control - + File pool size Numărul maxim de fișiere deschise - + Outstanding memory when checking torrents Memorie pentru verificarea torentelor - + Disk cache Prestocare disc - - - - + + + + + s seconds s - + Disk cache expiry interval Interval de expirare prestocare (cache) disc - + Disk queue size Dimensiune coadă disc - - + + Enable OS cache Activează prestocarea (cache-ul) sistemului - + Coalesce reads & writes Contopește citirile și scrierile - + Use piece extent affinity - + Send upload piece suggestions Trimite sugestii bucăți de încărcat - - - - - + + + + + 0 (disabled) 0 (dezactivat) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Porturi de ieșire (Min) [0: dezactivat] - + Outgoing ports (Max) [0: disabled] - + Porturi de ieșire (Max) [0: dezactivat] - + 0 (permanent lease) - + 0 (închiriere permanentă) - + UPnP lease duration [0: permanent lease] - + Durata închirierii UPnP [0: închiriere permanentă] - + Stop tracker timeout [0: disabled] - + Oprește timeout-ul trackerului [0: dezactivat] - + Notification timeout [0: infinite, -1: system default] - + Durată expirare notificare [0: infinit, -1: prestabilit sistem] - + Maximum outstanding requests to a single peer Număr maxim de cereri în așteptare spre un singur partener - - - - - + + + + + KiB KiO - + (infinite) (infinit) - + (system default) (implicit sistemului) - + Delete files permanently - + Șterge permanent fișiere - + Move files to trash (if possible) - + Mută fișiere la gunoi (dacă e posibil) - + Torrent content removing mode - + Regim de ștergere a conținutului torentului: - + This option is less effective on Linux Această opțiune are mai puțin efect pe Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default Implicit - + Memory mapped files Fișiere mapate în memorie - + POSIX-compliant Compatibil cu standardul POSIX - + Simple pread/pwrite - + Disk IO type (requires restart) Tipul IO al discului (neceistă repornire) - - + + Disable OS cache Dezactivează prestocarea (cache-ul) sistemului - + Disk IO read mode Modul de citire IO al discului - + Write-through - + Disk IO write mode Modul de scriere IO al discului - + Send buffer watermark Filigranul tamponului de trimitere - + Send buffer low watermark - + Send buffer watermark factor Factorul filigranului tamponului de trimitere - + Outgoing connections per second Conexiuni de ieșire pe secundă - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Dimensiunea cozii pentru socluri - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers Tip de serviciu (ToS) pentru conexiunile spre parteneri - + Prefer TCP Preferă TCP - + Peer proportional (throttles TCP) Proporțional cu partenerii (limitează protocolul TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Sprijină nume de domenii internaționale (IDN) - + Allow multiple connections from the same IP address Permite conexiuni multiple de la aceeași adresă IP - + Validate HTTPS tracker certificates Validează certificatele HTTPS ale urmăritoarelor - + Server-side request forgery (SSRF) mitigation Atenuare contrafacere cerere pe partea servitorului (SSRF) - + Disallow connection to peers on privileged ports Interzice conexiuni spre parteneri pe porturi privilegiate - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates Controlează intervalul de actualizare al stării interne care la rândul său va afecta actualizările interfeței grafice - + Refresh interval Interval de reîmprospătare - + Resolve peer host names Rezolvă numele de gazdă ale partenerilor - + IP address reported to trackers (requires restart) Adresa IP raportată umăritoarelor (necesită repornirea programului) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Reanunță toate urmăritoarele când se schimbă IP-ul sau portul - + Enable icons in menus Activează pictogramele în meniuri - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Activează port forwarding pentru urmăritoarele încorporate - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - sec + sec - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents Cere confirmarea eliminării unui urmăritor de la toate torentele - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Afișează notificări - + Display notifications for added torrents Afișează notificări pentru torentele adăugate - + Download tracker's favicon Descarcă pictograma de favorite a urmăritorului - + Save path history length Lungime istoric cale de salvare - + Enable speed graphs Activează graficele de viteză - + Fixed slots Socluri fixe - + Upload rate based Bazat pe rata de încărcare - + Upload slots behavior Comportament socluri de încărcare - + Round-robin Round-robin - + Fastest upload Cea mai rapidă încărcare - + Anti-leech Anti-lipitori - + Upload choking algorithm Algoritm de înecare a încărcării - + Confirm torrent recheck Cere confirmare pentru reverificarea torentelor - + Confirm removal of all tags Confirmă ștergerea tuturor marcajelor - + Always announce to all trackers in a tier Anunță întotdeauna tuturor urmăritoarelor dintr-un strat - + Always announce to all tiers Anunță întotdeauna tuturor straturilor - + Any interface i.e. Any network interface Oricare interfață - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Algoritm %1-TCP în regim amestecat - + Resolve peer countries Rezolvă țările partenerilor - + Network interface Interfața de rețea - + Optional IP address to bind to Adresă IP opțională de ascultat - + Max concurrent HTTP announces Număr maxim de anunțuri HTTP simultane - + Enable embedded tracker Activează urmăritorul încorporat - + Embedded tracker port Port urmăritor încorporat @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Rulează în regim portabil. Dosar de profil detectat automat la: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Fanion redundant depistat în linia de comandă: „%1”. Regimul portabil implică reîncepere-rapidă relativă. - + Using config directory: %1 Se folosește directorul de configurație: %1 - + Torrent name: %1 Nume torent: %1 - + Torrent size: %1 Mărime torent: %1 - + Save path: %1 Calea de salvare: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torentul a fost descărcat în %1 - - + + Thank you for using qBittorrent. Vă mulțumim că folosiți qBittorrent. - + Torrent: %1, sending mail notification Torent: %1, se trimite notificare prin poșta electronică - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` Se rulează program extern. Torent: „%1”. Comandă: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torentul '%1' s-a terminat de descărcat - + WebUI will be started shortly after internal preparations. Please wait... Interfața web va porni la scurt timp după pregătiri interne. Așteptați… - - + + Loading torrents... Se încarcă torentele... - + E&xit Închid&e programul - + I/O Error i.e: Input/Output Error Eroare I/O - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Motivul: %2 - + Torrent added Torent adăugat - + '%1' was added. e.g: xxx.avi was added. „%1” a fost adăugat. - + Download completed Descărcare finalizată - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 a pornit. ID proces: %2 - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' s-a descărcat. - + Information Informație - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 Pentru a controla qBittorrent, accesați interfața web la adresa: %1 - + Exit Ieșire - + Recursive download confirmation Confirmare descărcare recursivă - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torentul „%1” conține fișiere .torrent, doriți să continuați cu descărcarea acestora? - + Never Niciodată - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Descarc recursiv fișierul .torrent din torent. Torentul sursă: „%1”. Fișier: „%2” - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" A eșuat stabilirea unei limite de folosire a memorie fizice (RAM). Error code: %1. Mesaj de eroare: „%2” - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated Terminare qBittorrent inițiată - + qBittorrent is shutting down... qBittorrent se închide... - + Saving torrent progress... Se salvează progresul torentelor... - + qBittorrent is now ready to exit qBittorrent e gata să iasă @@ -1766,263 +1777,263 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d &Exportare... - + Matches articles based on episode filter. Articole care se potrivesc bazate pe filtrul episod. - + Example: Exemple: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match va potrivi 2, 5, 8 din 15, 30 și episoadele ulterioare al sezonului unu - + Episode filter rules: Reguli filtru episod: - + Season number is a mandatory non-zero value Numărul sezonului este obligatoriu nu o valoare zero - + Filter must end with semicolon Filtrul trebuie să se termine cu punct și virgulă - + Three range types for episodes are supported: Sunt sprijinite trei tipuri de intervale pentru episoade: - + Single number: <b>1x25;</b> matches episode 25 of season one Un singur număr: <b>1x25;</b> se potrivește cu episodul 25 al sezonului unu - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Gamă normală: <b>1x25-40;</b> se potrivește cu episoadele de la 25 la 40 ale sezonului unu - + Episode number is a mandatory positive value Numărul episodului este o valoare pozitivă obligatorie - + Rules Reguli - + Rules (legacy) Reguli (moștenit) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Interval infinit: <b>1x25-;</b> potrivește episoadele 25 și mai sus ale sezonului unu, și toate episoadele sezoanelor ulterioare - + Last Match: %1 days ago Ultima potrivire: acum %1 zile - + Last Match: Unknown Ultima potrivire: necunoscută - + New rule name Nume regulă nouă - + Please type the name of the new download rule. Introduceți numele noii reguli de descărcare. - - + + Rule name conflict Conflict nume regulă - - + + A rule with this name already exists, please choose another name. O regulă cu acest nume există deja, alegeți alt nume. - + Are you sure you want to remove the download rule named '%1'? Sigur doriți să eliminați regula de descărcare numită „%1”? - + Are you sure you want to remove the selected download rules? Sigur doriți să eliminați regulile de descărcare selectate? - + Rule deletion confirmation Confirmare ștergere regulă - + Invalid action Acțiune nevalidă - + The list is empty, there is nothing to export. Lista e goală, nu e nimic de exportat. - + Export RSS rules Exportă reguli RSS - + I/O Error Eroare de Intrare/Ieșire - + Failed to create the destination file. Reason: %1 Eșec la crearea fișierului destinație. Motiv: %1 - + Import RSS rules Importă reguli RSS - + Failed to import the selected rules file. Reason: %1 A eșuat importarea fișierului de reguli ales. Motiv: %1 - + Add new rule... Adăugare regulă nouă... - + Delete rule Șterge regula - + Rename rule... Redenumire regulă... - + Delete selected rules Șterge regulile selectate - + Clear downloaded episodes... Ștergere episoade descărcate... - + Rule renaming Redenumire regulă - + Please type the new rule name Introduceți noul nume al regulii - + Clear downloaded episodes Șterge episoadele descărcate - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Sigur doriți să goliți lista episoadelor descărcate pentru regula aleasă? - + Regex mode: use Perl-compatible regular expressions Regim expresii regulate: folosește expresii regulate compatibile cu Perl - - + + Position %1: %2 Poziția %1: %2 - + Wildcard mode: you can use Mod metacaractere: le puteți utiliza - - + + Import error - + Failed to read the file. %1 - + ? to match any single character ? pentru a potrivi un oricare caracter - + * to match zero or more of any characters * pentru a potrivi zero sau mai multe oricare caractere - + Whitespaces count as AND operators (all words, any order) Spațiile albe se consideră operatori ȘI (toate cuvintele, în orice ordine) - + | is used as OR operator | este folosit ca operator SAU - + If word order is important use * instead of whitespace. Dacă ordinea cuvintelor este importantă utilizați * în loc de spațiu alb (gol). - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) O expresie cu o clauză %1 goală (de ex.: %2) - + will match all articles. va potrivi toate articolele. - + will exclude all articles. va exclude toate articolele. @@ -2074,28 +2085,38 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Datele despre reluare nu pot fi parcurse: format nevalid - - + + Cannot parse torrent info: %1 Informațiile despre torent nu pot fi parcurse: %1 - + Cannot parse torrent info: invalid format Informațiile despre torent nu pot fi parcurse: format nevalid - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Nu s-au putut salva metadatele torentului în „%1”. Eroare: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Nu s-au putut salva datele de reluare ale torentului în „%1”. Eroare: %2. @@ -2106,16 +2127,17 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d + Cannot parse resume data: %1 Datele despre reluare nu pot fi parcurse: %1 - + Resume data is invalid: neither metadata nor info-hash was found Datele despre reluare sunt nevalide: nu s-au găsit nici metadate, nici info-hash - + Couldn't save data to '%1'. Error: %2 Nu s-au putut salva datele în „%1”. Eroare: %2 @@ -2123,38 +2145,60 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d BitTorrent::DBResumeDataStorage - + Not found. Nu a fost găsit. - + Couldn't load resume data of torrent '%1'. Error: %2 Nu s-au putut încărca datele de reluare ale torentului „%1”. Eroare: %2 - - + + Database is corrupted. Baza de date este coruptă. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. Nu s-a putut obține rezultatul interogării. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + Datele despre reluare nu pot fi parcurse: %1 + + + + + Cannot parse torrent info: %1 + Informațiile despre torent nu pot fi parcurse: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2206,22 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Nu s-au putut salva metadatele torentului. Eroare: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Nu s-au putut stoca datele de reluare ale torentului „%1”. Eroare: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Nu s-au putut șterge datele de reluare ale torentului „%1”. Eroare: %2 - + Couldn't store torrents queue positions. Error: %1 Nu s-a putut stoca coada cu pozițiile torentelor. Eroare: %1 @@ -2185,522 +2229,503 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Susținere Distributed Hash Table (DHT): %1 - - - - - - - - - + + + + + + + + + ON PORNIT - - - - - - - - - + + + + + + + + + OFF OPRIT - - + + Local Peer Discovery support: %1 Susținere Local Peer Discovery: %1 - + Restart is required to toggle Peer Exchange (PeX) support Repornirea este necesară pentru comutarea susținerii Peer Exchange (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Reluarea torentului a eșuat Torent: „%1”: Motiv: „%2” - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Reluarea torentului a eșuat: s-a depistat identificator de torent inconsistent. Torent: „%1” - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" S-au depistat date neconsistente: categoria lipsește din fișierul de configurare. Categoria va fi recuperată dar configurările acesteia vor fi inițializate cu valori implicite. Torent: „%1”. Categorie: „%2” - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" S-au depistat date neconsistente: categoria nu e validă. Torent: „%1”. Categorie: „%2” - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" S-au depistat divergențe între căile de salvare ale categoriei recuperate și calea actuală de salvare a torentului. Torentul e trecut acum la regim manual. Torent: „%1”. Categorie: „%2” - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" S-au depistat date neconsistente: marcajul lipsește din fișierul de configurare. Marcajul va fi recuperat. Torent: „%1”. Marcaj: „%2” - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" S-au depistat date neconsistente: marcaj nevalid. Torent: „%1”. Marcaj: „%2” - + System wake-up event detected. Re-announcing to all the trackers... A fost detectat evenimentul de trezire a sistemului. Se reanunță toate urmăritoarele... - + Peer ID: "%1" Id. partener: „%1” - + HTTP User-Agent: "%1" Agent utilizator HTTP: „%1” - + Peer Exchange (PeX) support: %1 Susținere Peer Exchange (PeX): %1 - - + + Anonymous mode: %1 Regim anonim: %1 - - + + Encryption support: %1 Susținerea criptării: %1 - - + + FORCED FORȚAT - + Could not find GUID of network interface. Interface: "%1" Nu se poate găsi GUID al interfeței de rețea. Interfața: "%1" - + Trying to listen on the following list of IP addresses: "%1" Se încearcă urmărirea următoarei liste de adrese IP: "%1" - + Torrent reached the share ratio limit. Torentul a atins limita raportului de partajare. - + Torrent: "%1". Torentul: "%1". - Removed torrent. - Torentul a fost eliminat. - - - Removed torrent and deleted its content. - Torentul a fost eliminat și conținutul său a fost șters. - - - Torrent paused. - Torentul a fost pus în pauză. - - - + Super seeding enabled. Super-contribuirea a fost activată. - + Torrent reached the seeding time limit. Torentul a atins limita timpului de partajare. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Nu s-a putut încărca torentul. Motivul: %1. - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON Susținere UPnP/NAT-PMP: ACTIVĂ - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - Combinarea urmăritoarelor este dezactivată + Combinarea urmăritoarelor este dezactivată - + Trackers cannot be merged because it is a private torrent - Urmăritoarele nu a putut fi combinate deoarece este un torent privat + Urmăritoarele nu a putut fi combinate deoarece este un torent privat - + Trackers are merged from new source - Urmăritoarele sunt combinate cu cele din sursa nouă + Urmăritoarele sunt combinate cu cele din sursa nouă - + UPnP/NAT-PMP support: OFF Susținere UPnP/NAT-PMP: INACTIVĂ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Exportul torentului a eșuat. Torent: „%1”. Destinație: „%2”. Motiv: „%3” - + Aborted saving resume data. Number of outstanding torrents: %1 S-a abandonat salvarea datelor de reluare. Număr de torente în așteptare: %1 - + The configured network address is invalid. Address: "%1" Adresa configurată a interfeței de rețea nu e validă. Adresă: „%1” - - + + Failed to find the configured network address to listen on. Address: "%1" Nu s-a putut găsi adresa de rețea configurată pentru ascultat. Adresă: „%1” - + The configured network interface is invalid. Interface: "%1" Interfața de rețea configurată nu e validă. Interfață: „%1” - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" S-a respins adresa IP nevalidă în timpul aplicării listei de adrese IP blocate. IP: „%1” - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" S-a adăugat urmăritor la torent. Torent: „%1”. Urmăritor: „%2” - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" S-a eliminat urmăritor de la torent. Torent: „%1”. Urmăritor: „%2” - + Added URL seed to torrent. Torrent: "%1". URL: "%2" S-a adăugat sămânță URL la torent. Torent: „%1”. URL: „%2” - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" S-a eliminat sămânță URL de la torent. Torent: „%1”. URL: „%2” - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torentul a fost pus în pauză. Torentul: "%1" - - - + Torrent resumed. Torrent: "%1" Torent reluat. Torentul: "%1" - + Torrent download finished. Torrent: "%1" Descărcare torent încheiată. Torentul: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Mutare torent anulată. Torent: „%1”. Sursă: „%2”. Destinație: „%3” - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Nu s-a putut pune în coadă mutarea torentului. Torent: „%1”. Sursă: „%2”. Destinație: „%3”. Motiv: torentul e în curs de mutare spre destinație - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Nu s-a putut pune în coadă mutarea torentului. Torent: „%1”. Sursă: „%2”. Destinație: „%3”. Motiv: ambele căi indică spre același loc - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" S-a pus în coadă mutarea torentului. Torent: „%1”. Sursă: „%2”. Destinație: „%3” - + Start moving torrent. Torrent: "%1". Destination: "%2" Începe mutarea torentului. Torent: „%1”. Destinație: „%2” - + Failed to save Categories configuration. File: "%1". Error: "%2" Nu s-a putut salva configurația categoriilor. Fișier: „%1”. Eroare: „%2” - + Failed to parse Categories configuration. File: "%1". Error: "%2" Nu s-a putut parcurge configurația categoriilor. Fișier: „%1”. Eroare: „%2” - + Successfully parsed the IP filter file. Number of rules applied: %1 Fișierul cu filtre IP a fost parcurs cu succes. Numărul de reguli aplicate: %1 - + Failed to parse the IP filter file Eșec la parcurgerea fișierului cu filtre IP - + Restored torrent. Torrent: "%1" Torent restaurat. Torent: "%1" - + Added new torrent. Torrent: "%1" S-a adăugat un nou torent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torent eronat. Torent: „%1”. Eroare: „%2” - Removed torrent. Torrent: "%1" - Torent eliminat. Torent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torentul a fost eliminat și conținutul său a fost șters. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Alertă de eroare în fișier. Torent: „%1”. Fișier: „%2”. Motiv: „%3” - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filtru IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 restricții de regim mixt - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 este dezactivat. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 este dezactivat. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Se ascultă cu succes pe IP. IP: „%1”. Port: „%2/%3” - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Ascultarea pe IP a eșuat. IP: „%1”. Port: „%2/%3”. Motiv: „%4” - + Detected external IP. IP: "%1" IP extern depistat. IP: „%1” - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Eroare: Coada internă de alerte e plină și alertele sunt aruncate, e posibil să observați performanță redusă. Tip alertă aruncată: „%1”. Mesaj: „%2” - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torent mutat cu succes. Torent: „%1”. Destinație: „%2” - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Mutarea torent eșuată. Torent: „%1”. Sursă: „%2”. Destinație: „%3”. Motiv: „%4” @@ -2750,47 +2775,47 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Nu s-a putut scrie în fișier. Motiv: „%1. Torentul e acum în regim „numai încărcare”. - + Download first and last piece first: %1, torrent: '%2' Descarcă întâi prima și ultima bucată: %1, torent: '%2' - + On Pornit - + Off Oprit - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Generarea datelor de reluare a eșuat. Torent: „%1”. Motiv: „%2” - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Restabilirea torentului a eșuat. Fișierele au fost probabil mutate sau stocarea nu e accesibilă. Torent: „%1”. Motiv: „%2” - + Missing metadata Metadate lipsă - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Redenumirea fișierului a eșuat. Torent: „%1”, fișier: „%2”, motiv: „%3” - + Performance alert: %1. More info: %2 Alertă performanță: %1. Mai multe informații: %2 @@ -2957,10 +2982,6 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Add torrents as running or stopped - - Add torrents as started or paused - Adaugă torente în modul pornite sau suspendate - Skip hash check @@ -3057,14 +3078,6 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Stop torrents - - Resume torrents - Reia torentele - - - Pause torrents - Întrerupe torentele - Remove torrents @@ -3163,10 +3176,6 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Also remove the content files - - Also permanently delete the files - Deasemenea șterge permanent fișierele - Are you sure you want to remove '%1' from the transfer list? @@ -3398,26 +3407,22 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Se descarcă torentul… Sursă: „%1” - Trackers cannot be merged because it is a private torrent - Urmăritoarele nu a putut fi combinate deoarece este un torent privat - - - + Torrent is already present Torentul este deja prezent - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torentul „%1” este deja în lista de transferuri. Doriți să combinați urmăritoarele de la sursa nouă? @@ -3535,6 +3540,40 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3676,10 +3715,6 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d &Options... &Opțiuni... - - &Resume - &Reia - &Remove @@ -3761,10 +3796,6 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Close Window Închide fereastra - - R&esume All - Reia &toate - Manage Cookies... @@ -3880,10 +3911,6 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d &Hibernate System &Hibernează sistemul - - S&hutdown System - &Oprește sistemul - &Statistics @@ -3904,14 +3931,6 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d &About &Despre - - &Pause - &Suspendă - - - P&ause All - Suspendă to&ate - &Add Torrent File... @@ -3945,12 +3964,12 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d - + Show Arată - + Check for program updates Verifică pentru actualizări program @@ -3965,388 +3984,382 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Dacă vă place qBittorrent, vă rugăm să donați! - + Execution Log Jurnal de execuție - + Clear the password Eliminare parolă - + &Set Password &Stabilire parolă - + Preferences Preferințe - + &Clear Password &Eliminare parolă - + Transfers Transferuri - - + + qBittorrent is minimized to tray qBittorrent este minimizat în tăvița de sistem - - - + + + This behavior can be changed in the settings. You won't be reminded again. Acest comportament poate fi schimbat în configurări. Nu vi se va mai reaminti. - + Icons Only Doar pictograme - + Text Only Doar text - + Text Alongside Icons Text alături de pictograme - + Text Under Icons Text sub pictograme - + Follow System Style Utilizează stilul sistemului - - + + UI lock password Parolă de blocare interfață - - + + Please type the UI lock password: Introduceți parola pentru blocarea interfeței: - + Are you sure you want to clear the password? Sigur doriți să eliminați parola? - + Use regular expressions Folosește expresii regulate - - + + Search Engine - Motor de căutare + Motor de căutare - + Search has failed - Căutarea a eșuat + Căutarea a eșuat - + Search has finished - + Căutarea s-a încheiat - + Search Căutare - + Transfers (%1) Transferuri (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent tocmai a fost actualizat și trebuie să fie repornit pentru ca schimbările să intre în vigoare. - + qBittorrent is closed to tray qBittorrent este închis în tăvița de sistem - + Some files are currently transferring. Unele fișiere sunt în curs de transferare. - + Are you sure you want to quit qBittorrent? Sigur doriți să închideți qBittorrent? - + &No &Nu - + &Yes &Da - + &Always Yes Î&ntotdeauna Da - + Options saved. Opțiuni salvate. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Lipsește executabilul Python - + qBittorrent Update Available Este disponibilă o actualizare pentru qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python este necesar pentru a putea folosi motorul de căutare, dar nu pare a fi instalat. Doriți să îl instalați acum? - + Python is required to use the search engine but it does not seem to be installed. Python este necesar pentru a putea folosi motorul de căutare, dar nu pare a fi instalat. - - + + Old Python Runtime Executabil Python învechit. - + A new version is available. Este disponibilă o nouă versiune. - + Do you want to download %1? Doriți să descărcați %1? - + Open changelog... Deschidere jurnalul cu modificări… - + No updates available. You are already using the latest version. Nu sunt disponibile actualizări. Utilizați deja ultima versiune. - + &Check for Updates &Verifică dacă sunt actualizări - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Versiunea dumneavoastră de Python (%1) este învechită. Versiunea minimiă necesară este: %2. Doriți să instalați o versiune mai nouă acum? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Versiunea dumneavoastră de Python (%1) este învechită. Actualizați-l la ultima versiune pentru ca motoarele de căutare să funcționeze. Cerința minimă: %2. - + Paused - Suspendat + Întrerupt - + Checking for Updates... Se verifică dacă sunt actualizări... - + Already checking for program updates in the background Se caută deja actualizări de program în fundal - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Eroare la descărcare - Python setup could not be downloaded, reason: %1. -Please install it manually. - Programul de instalare Python nu a putut fi descărcat, motivul: %1. -Instalați-l manual. - - - - + + Invalid password Parolă nevalidă - + Filter torrents... Filtrare torente... - + Filter by: Filtrare după: - + The password must be at least 3 characters long Parola trebuie să aibă o lungime de minim 3 caractere - - - + + + RSS (%1) RSS (%1) - + The password is invalid Parola nu este validă - + DL speed: %1 e.g: Download speed: 10 KiB/s Viteză descărcare: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Viteză încărcare: %1 - + Hide Ascunde - + Exiting qBittorrent Se închide qBittorrent - + Open Torrent Files Deschide fișiere torrent - + Torrent Files Fișiere torrent @@ -5840,47 +5853,47 @@ Instalați-l manual. Net::Smtp - + Connection failed, unrecognized reply: %1 Conexiunea a eșuat, răspuns nerecunoscut: %1 - + Authentication failed, msg: %1 Autentificare eșuată, mesaj: %1 - + <mail from> was rejected by server, msg: %1 <mail from> a fost respins de către server, mesaj: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> a fost respins de către server, mesaj: %1 - + <data> was rejected by server, msg: %1 <data> a fost respins de către server, mesaj: %1 - + Message was rejected by the server, error: %1 Mesajul a fost respins de către server, eroare: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Servitorul SMTP nu pare să sprijine niciunul dintre modurile de autentificare pe care noi le sprijinim [CRAM-MD5|PLAIN|LOGIN], se omite autentificarea, pentru că cel mai probabil o să eșueze... Moduri autentificare servitor: %1 - + Email Notification Error: %1 Eroare de notificare prin poșta electronică: %1 @@ -5922,10 +5935,6 @@ Instalați-l manual. RSS RSS - - Web UI - Interfață Web - Advanced @@ -5962,10 +5971,6 @@ Instalați-l manual. Always Întotdeauna - - Paused torrents only - Doar torentele suspendate - Action on double-click @@ -5976,10 +5981,6 @@ Instalați-l manual. Downloading torrents: Torente în curs de descărcare: - - Start / Stop Torrent - Pornește / Oprește torent - @@ -6038,175 +6039,175 @@ Instalați-l manual. KiO - + + Show free disk space in status bar + + + + Torrent content layout: Amplasarea conținutului torentului: - + Original Original - + Create subfolder Creează subdosar - + Don't create subfolder Nu crea subdosar - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue Adaugă în vârful cozii - + When duplicate torrent is being added - + Merge trackers to existing torrent Combină urmăritoarele unui torent existent - + Keep unselected files in ".unwanted" folder - + Add... Adăugare... - + Options.. Opțiuni.. - + Remove Elimină - + Email notification &upon download completion Trimite notificări prin poșta electronică la finalizarea descărcării - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Conexiuni totale cu parteneri: - + Any Oricare - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering Fi&ltrare adrese IP - + Schedule &the use of alternative rate limits Planifică utilizarea limitelor alternative de viteză - + From: From start time De la: - + To: To end time Către: - + Find peers on the DHT network Găsiți colegi în rețeaua DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6215,188 +6216,190 @@ Necesită criptare: conectați-vă numai la parteneri cu criptare de protocol Dezactivați criptarea: conectați-vă numai la parteneri fără criptarea protocolului - + Allow encryption Permite criptarea - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Mai multe informații</a>) - + Maximum active checking torrents: - + &Torrent Queueing Coadă torente - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - Adaugă a&utomat aceste urmăritoare la noile descărcări: - - - + RSS Reader Cititor RSS - + Enable fetching RSS feeds Activează preluarea fluxurilor RSS - + Feeds refresh interval: Interval de reîmprospătare al fluxurilor: - + Same host request delay: - + Maximum number of articles per feed: Numărul maxim de articole pe flux: - - - + + + min minutes min - + Seeding Limits Limite de contribuire - Pause torrent - Suspendă torentul - - - + Remove torrent Elimină torentul - + Remove torrent and its files Elimină torentul și fișierele acestuia - + Enable super seeding for torrent Activați super contribuirea pentru torent - + When ratio reaches Când raportul ajunge la - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - Adresă URL: + Adresă URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader Descărcare automată a torentelor RSS - + Enable auto downloading of RSS torrents Activați descărcarea automată a torrentelor RSS - + Edit auto downloading rules... Modifică reguli de descărcare automată… - + RSS Smart Episode Filter Filtru RSS Smart Episode - + Download REPACK/PROPER episodes Descarcă episoade REPACK/PROPER - + Filters: Filtre: - + Web User Interface (Remote control) Interfață utilizator Web (Control la distanță) - + IP address: Adrese IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6405,41 +6408,37 @@ Specificați o adresă IPv4 sau IPv6. Puteți folosii „0.0.0.0” pentru orice „::” pentru orice adresă IPv6, sau „*” pentru amândouă IPv4 și IPv6. - + Ban client after consecutive failures: Interzice clientul după eșecuri consecutive: - + Never Niciodată - + ban for: interzice pentru: - + Session timeout: Expirarea sesiunii: - + Disabled Dezactivat - Enable cookie Secure flag (requires HTTPS) - Activează fanionul de securitate pentru cookie (necesită HTTPS) - - - + Server domains: Domenii servitor: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6448,37 +6447,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Utilizează HTTPS în locul HTTP - + Bypass authentication for clients on localhost Sari autentificarea pentru clienți din rețeaua locală - + Bypass authentication for clients in whitelisted IP subnets Sari autentificarea pentru clienți din rețele IP permise - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6490,7 +6489,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - + Caută @@ -6591,99 +6590,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Șterge copiile de rezervă ale fișierului jurnal mai vechi decât: - + Show external IP in status bar - + When adding a torrent Când se adaugă un torent - + Bring torrent dialog to the front Adu fereastra de dialog a torentului în față - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Șterge fișierele .torent a căror adăugare a fost abandonată - + Also when addition is cancelled Și când adăugarea a fost abandonată - + Warning! Data loss possible! Atenție! Este posibilă pierderea datelor! - + Saving Management Gestionare salvare - + Default Torrent Management Mode: Mod implicit de gestionare a torentelor: - + Manual Manual - + Automatic Automat - + When Torrent Category changed: Când categoria torentului s-a schimbat: - + Relocate torrent Mută torentul - + Switch torrent to Manual Mode Treci torentul în regim manual - - + + Relocate affected torrents Mută torentele afectate - - + + Switch affected torrents to Manual Mode Treci torentele afectate în regim manual - + Use Subcategories Utilizează subcategoriile - + Default Save Path: Cale de salvare implicită: - + Copy .torrent files to: Copiază fișierele .torrent în: @@ -6693,26 +6692,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Arată qBittorrent în zona de notificare - &Log file - Fișier jurna&l - - - + Display &torrent content and some options - + De&lete .torrent files afterwards Șterge fișierele .torrent după - + Copy .torrent files for finished downloads to: Copiază fișierele .torrent pentru descărcările încheiate în: - + Pre-allocate disk space for all files Pre-alocă spațiu pe disc pentru toate fișierele @@ -6742,10 +6737,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Previzualizează fișierul, altfel deschide dosarul destinație - - Show torrent options - Arată opțiunile torentului - Shows a confirmation dialog when exiting with active torrents @@ -6811,68 +6802,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.ani - + Log performance warnings Înregistrează avertizările de performanță - The torrent will be added to download list in a paused state - Torentul va fi adăugat în lista de descărcare cu starea suspendat - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Nu porni automat descărcarea - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Adaugă extensia .!qB fișierelor incomplete - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: Când calea de salvare a categoriei s-a schimbat: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6892,50 +6879,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: Condiție de oprire a torentului: - - + + None Niciuna - - + + Metadata received Metadate primite - - + + Files checked Fișiere verificate - + Ask for merging trackers when torrent is being added manually Întreabă de combinarea urmăritoarelor când un torent este adăugat manual - + Use another path for incomplete torrents: Folosește o altă cale pentru torentele incomplete: - + Automatically add torrents from: Adaugă automat torente din: - + Excluded file names Denumiri de fișiere excluse - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6952,523 +6939,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Destinatarul - + To: To receiver Către: - + SMTP server: Servitor SMTP: - + Sender Expeditor - + From: From sender De la: - + This server requires a secure connection (SSL) Servitorul necesită o conexiune securizată (SSL) - - + + Authentication Autentificare - - - - + + + + Username: Nume utilizator: - - - - + + + + Password: Parolă: - + Run external program Rulează program extern - Run on torrent added - Rulează când este adăugat un torent - - - Run on torrent finished - Rulează când un torent este finalizat - - - + Show console window Arată fereastra de consolă - + TCP and μTP TCP și μTP - + Listening Port Port ascultat - + Port used for incoming connections: Portul utilizat pentru conexiunile de intrare: - + Set to 0 to let your system pick an unused port Setează ca 0 pentru a lăsa sistemul să folosească un port neutilizat. - + Random Aleator - + Use UPnP / NAT-PMP port forwarding from my router Utilizează înaintare port UPnP / NAT-PMP de la routerul meu - + Connections Limits Stabilește limitele conexiunii - + Maximum number of connections per torrent: Numărul maxim de conexiuni per torent: - + Global maximum number of connections: Număr maxim global de conexiuni: - + Maximum number of upload slots per torrent: Numărul maxim de sloturi de încărcare per torent: - + Global maximum number of upload slots: Număr maxim global de sloturi de încărcare: - + Proxy Server Servitor proxy - + Type: Tip: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Gazdă: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Altfel, servitorul proxy este utilizat doar pentru conexiuni la urmăritor - + Use proxy for peer connections Utilizează proxy pentru conexiuni la parteneri - + A&uthentication A&utentificare - Info: The password is saved unencrypted - Informație: Parola este salvată fără criptare + Informație: Parola este salvată fără criptare - + Filter path (.dat, .p2p, .p2b): Cale filtru (.dat, .p2p, .p2b): - + Reload the filter Reîncarcă filtrul - + Manually banned IP addresses... Adrese IP blocate manual... - + Apply to trackers Aplică urmăritoarelor - + Global Rate Limits Limite de viteză globale - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Încărcare: - - + + Download: Descărcare: - + Alternative Rate Limits Limite de viteză alternative - + Start time Timpul de început - + End time Timpul de finalizare - + When: Când: - + Every day Zilnic - + Weekdays Zile lucrătoare - + Weekends Zile libere - + Rate Limits Settings Setări limite de viteză - + Apply rate limit to peers on LAN Aplică limitarea ratei partenerilor din rețeaua locală - + Apply rate limit to transport overhead Aplică limitarea de viteză incluzând datele de transport - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Aplică limitarea ratei protocolului µTP - + Privacy Confidențialitate - + Enable DHT (decentralized network) to find more peers Activează rețeaua descentralizată (DHT) pentru a găsi mai multe surse - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Schimbă parteneri cu clienții Bittorrent compatibili (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Activează schimbul de surse (PeX) cu alți clienți pentru a găsi mai multe surse - + Look for peers on your local network Caută parteneri în rețeaua locală - + Enable Local Peer Discovery to find more peers Activează descoperirea partenerilor locali pentru a găsi mai mulți parteneri - + Encryption mode: Modul criptării: - + Require encryption Necesită criptarea - + Disable encryption Dezactivează criptarea - + Enable when using a proxy or a VPN connection Activează când este utilizată o conexiune VPN sau proxy - + Enable anonymous mode Activează modalitatea anonimă - + Maximum active downloads: Numărul maxim de descărcări active: - + Maximum active uploads: Numărul maxim de încărcări active: - + Maximum active torrents: Numărul maxim de torente active: - + Do not count slow torrents in these limits Nu socoti torentele lente în aceste limite - + Upload rate threshold: Prag viteză de încărcare: - + Download rate threshold: Prag viteză de descărcare: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Temporizator de inactivitate a torentului: - + then apoi - + Use UPnP / NAT-PMP to forward the port from my router Utilizează UPnP / NAT-PMP pentru a înainta portul din routerul meu - + Certificate: Certificat: - + Key: Cheie: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informații despre certificate</a> - + Change current password Schimbă parola curentă - Use alternative Web UI - Folosește interfață web alternativă - - - + Files location: Amplasarea fișierelor: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Securitate - + Enable clickjacking protection Activează protecția împotriva furtului de clicuri - + Enable Cross-Site Request Forgery (CSRF) protection Activează protecția Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Activează validarea antetului gazdei - + Add custom HTTP headers Adaugă antete HTTP particularizate - + Header: value pairs, one per line - + Enable reverse proxy support Activează sprijin proximitate (proxy) - + Trusted proxies list: Listă cu proxy-uri de încredere: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Serviciu: - + Register Înregistrează - + Domain name: Nume de domeniu: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Prin activarea acestor opțiuni, puteți <strong>pierde în mod definitiv<strong> fișierele dumneavoastră .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Dacă activați cea de-a doua opțiune (&ldquo;Și când adăugarea a fost abandonată&rdquo;) fișierul .torent <strong>va fi șters<strong>chiar dacă apăsați &ldquo; <strong>Abandonează<strong>&rdquo; în fereastra de dialog &ldquo;Adăugare torent&rdquo; @@ -7479,12 +7453,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location Alege o locație alternativă pentru fișierele UI - + Supported parameters (case sensitive): Parametri sprijiniți (sensibil la majuscule): @@ -7504,183 +7478,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. Nicio condiție de oprire stabilită. - + Torrent will stop after metadata is received. Torentul se va opri dupa ce se primesc metadatele. - + Torrent will stop after files are initially checked. Torentul se va opri după ce fișierele sunt verificate inițial. - + This will also download metadata if it wasn't there initially. Aceasta va descarca de asemenea și metadatele dacă nu au fost acolo inițial. - + %N: Torrent name %N: Nume torent - + %L: Category %L: Categorie - + %F: Content path (same as root path for multifile torrent) %F: Cale conținut (aceeași cu calea rădăcină pentru torrent cu mai multe fișiere) - + %R: Root path (first torrent subdirectory path) %R: Cale rădăcină (cale subdirector a primului torrent) - + %D: Save path %D: Cale de salvare - + %C: Number of files %C: Număr de fișiere - + %Z: Torrent size (bytes) %Z: Dimensiune torrent (octeți) - + %T: Current tracker %T: Urmăritor actual - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Sfat: Încapsulați parametrul între ghilimele (englezești) pentru a evita ca textul să fie tăiat la spațiu (de ex., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Niciunul) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate Certificat - + Select certificate Selectare certificat - + Private key Cheie privată - + Select private key Selectare cheie privată - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Selectați dosarul ce va fi supravegheat - + Adding entry failed Adăugarea intrării a eșuat - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Eroare locație - - + + Choose export directory Alegeți un dosar pentru exportare - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7690,69 +7664,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: Etichete (separate prin virgulă) - + %I: Info hash v1 (or '-' if unavailable) %I: Informații index v1 (or „-” dacă nu sunt disponibile) - + %J: Info hash v2 (or '-' if unavailable) %J: Informații index v2 (sau „-” dacă nu sunt disponibile) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ID torent (ori informații index de tip sha-1 pentru un torent de versiuna 1 ori informații de tip sha-256 reduse pentru un torent de versiunea 2/torent hibrid) - - + + Choose a save directory Alegeți un dosar pentru salvare - + Torrents that have metadata initially will be added as stopped. - + Torentele care au metadate inițial o să fie adăugate ca oprite. - + Choose an IP filter file Alegeți un fișier filtru IP - + All supported filters Toate filtrele sprijinite - + The alternative WebUI files location cannot be blank. - + Parsing error Eroare de analiză - + Failed to parse the provided IP filter A eșuat analiza filtrului IP furnizat - + Successfully refreshed Reîmprospătat cu succes - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number S-a analizat cu succes filtrul IP furnizat: %1 reguli au fost aplicate. @@ -7763,18 +7737,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Preferințe - + Time Error Eroare timp - + The start time and the end time can't be the same. Timpul de pornire și timpul de încheiere nu pot fi aceiași. - - + + Length Error Eroare lungime @@ -7865,163 +7839,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Țară/Regiune - + IP/Address - + Port Port - + Flags Indicatori - + Connection Conexiune - + Client i.e.: Client application Client - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Progres - + Down Speed i.e: Download speed Viteză descărcare - + Up Speed i.e: Upload speed Viteză încărcare - + Downloaded i.e: total data downloaded Descărcat - + Uploaded i.e: total data uploaded Încărcat - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevanță - + Files i.e. files that are being downloaded right now Fișiere - + Column visibility Vizibilitate coloană - + Resize columns Redimensionează coloanele - + Resize all non-hidden columns to the size of their contents Redimensionează toate coloanele neascunse la dimensiunea conținutului acestora - + Add peers... Adăugare parteneri... - - + + Adding peers Se adaugă parteneri - + Some peers cannot be added. Check the Log for details. Unii parteneri nu au putut fi adăugați. Verificați jurnalul de execuție pentru detalii. - + Peers are added to this torrent. Partenerii au fost adăugați la acest torrent. - - + + Ban peer permanently Blochează permanent partenerul - + Cannot add peers to a private torrent Nu pot fi adăugați parteneri la un torent privat - + Cannot add peers when the torrent is checking Nu pot fi adăugați parteneri la un torent care se verifică - + Cannot add peers when the torrent is queued Nu pot fi adăugați parteneri la un torent care este pus la coadă - + No peer was selected Nu a fost selectat niciun partener - + Are you sure you want to permanently ban the selected peers? Sigur doriți să blocați definitiv partenerii aleși? - + Peer "%1" is manually banned Partenerul „%1” este interzis manual - + N/A Indisp. - + Copy IP:port Copiază IP:port @@ -8302,34 +8276,8 @@ Totuși, acele module au fost dezactivate. PowerManagement - qBittorrent is active - qBittorrent este activ - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent este activ @@ -8621,153 +8569,124 @@ Totuși, acele module au fost dezactivate. Cale de salvare: - + Never Niciodată - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (avem %3) - - + + %1 (%2 this session) %1 (%2 în această sesiune) - - + + N/A Indisponibil - + Yes - Da + Da - + No - Nu + Nu - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (contribuit pentru %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maxim) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 în total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 în medie) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Sursă Web nouă - - - Remove Web seed - Elimină sursa Web - - - Copy Web seed URL - Copiază URL-ul sursei Web - - - Edit Web seed URL - Editare URL sursă Web - - - + Filter files... Filtrare nume dosare și fișiere... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Graficele de viteză sunt dezactivate - + You can enable it in Advanced Options Puteți să le activați în: Preferințe -> Avansat - New URL seed - New HTTP source - Sursă URL nouă - - - New URL seed: - Sursa URL nouă: - - - This URL seed is already in the list. - Această sursă URL este deja în listă. - - - + Web seed editing Editare sursă Web - + Web seed URL: URL sursă Web: @@ -8775,33 +8694,33 @@ Totuși, acele module au fost dezactivate. RSS::AutoDownloader - - + + Invalid data format. Format de date nevalid . - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format Format date nevalid - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8809,22 +8728,22 @@ Totuși, acele module au fost dezactivate. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8873,12 +8792,12 @@ Totuși, acele module au fost dezactivate. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8900,76 +8819,117 @@ Totuși, acele module au fost dezactivate. - + Item doesn't exist: %1. Elementul nu există: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. Nu se poate șterge dosarul rădăcină. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. Calea pentru elementul RSS e incorectă: %1 - + RSS item with given path already exists: %1. Elementul RSS cu calea dată există deja: %1. - + Parent folder doesn't exist: %1. Dosarul părinte nu există: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Adresă URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Implicit + + RSSWidget @@ -9069,78 +9029,69 @@ Totuși, acele module au fost dezactivate. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Alegeți o denumire pentru dosar - + Folder name: Denumire dosar: - + New folder Dosar nou - - Please type a RSS feed URL - Introduceți un URL pentru fluxul RSS + Introduceți un URL pentru fluxul RSS - - Feed URL: - URL-ul fluxului: + URL-ul fluxului: - + Deletion confirmation Confirmare ștergere - + Are you sure you want to delete the selected RSS feeds? Sigur doriți să ștergeți fluxurile RSS alese? - + Please choose a new name for this RSS feed Alegeți o nouă denumire pentru acest flux RSS - + New feed name: Denumire flux nou: - + Rename failed Redenumirea a eșuat - + Date: Dată: - + Feed: - + Author: Autor: @@ -9277,10 +9228,6 @@ Totuși, acele module au fost dezactivate. i.e: Number of partial sources Lipitori - - Search engine - Motor de căutare - Filter search results... @@ -9401,104 +9348,104 @@ Totuși, acele module au fost dezactivate. SearchPluginManager - + Unknown search engine plugin file format. Format fișier necunoscut pentru modul motor de căutare. - + Plugin already at version %1, which is greater than %2 Plugin-ul este la versiunea %1, care e mai mare decât %2 - + A more recent version of this plugin is already installed. O versiune mai recentă a acestui plugin este deja instalată - + Plugin %1 is not supported. Modulul %1 nu este sprijinit. - - + + Plugin is not supported. Modulul nu este sprijinit. - + Plugin %1 has been successfully updated. Extensia %1 a fost actualizată cu succes. - + All categories Toate categoriile - + Movies Filme artistice - + TV shows Filme seriale - + Music Muzică - + Games Jocuri - + Anime Anime - + Software Software - + Pictures Imagini - + Books Cărți - + Update server is temporarily unavailable. %1 Servitorul de actualizări este temporar nedisponibil. %1 - - + + Failed to download the plugin file. %1 Descărcarea fișierului modulului a eșuat. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9524,135 +9471,127 @@ Dați clic pe butonul „Module de căutare...” din colțul din dreapta-jos al Module de căutare... - + A phrase to search for. O expresie de căutat. - + Spaces in a search term may be protected by double quotes. Spațiile dintr-o expresie de căutare pot fi protejate prin ghilimele (englezești, duble). - + Example: Search phrase example Exemplu: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: caută după <b>foo bar</b> - + All plugins Toate modulele - + Only enabled Doar activate - - + + Invalid data format. - Format de date nevalid . + Format de date nevalid . - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: caută după <b>foo</b> și <b>bar</b> - + Refresh - + Close tab Închide fila - + Close all tabs Închide toate filele - + Select... Alege… - - + + Search Engine Motor de căutare - - + + Please install Python to use the Search Engine. Instalați Python pentru a utiliza motorul de căutare. - + Empty search pattern Model de căutare gol - + Please type a search pattern first Introduceți întâi un model de căutare - + Stop Oprește - - Search has finished - Căutarea s-a finalizat - - - Search has failed - Căutarea a eșuat - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10050,67 +9989,77 @@ Dați clic pe butonul „Module de căutare...” din colțul din dreapta-jos al StatusBar - + Connection status: Stare conexiune: - - + + No direct connections. This may indicate network configuration problems. Fără conexiuni directe. Aceasta ar putea indica o problemă la configurarea rețelei. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 noduri - + qBittorrent needs to be restarted! qBittorrent trebuie să fie repornit! - - + + Connection Status: Stare conexiune: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Deconectat. Aceasta înseamnă de obicei că qBittorrent a eșuat în ascultarea portului selectat pentru conexiuni de intrare. - + Online Conectat - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Clic pentru a activa limitele de viteză alternative - + Click to switch to regular speed limits Clic pentru a activa limitele de viteză obișnuite @@ -10138,14 +10087,6 @@ Dați clic pe butonul „Module de căutare...” din colțul din dreapta-jos al Completed (0) Încheiate (0) - - Resumed (0) - Reluate (0) - - - Paused (0) - Suspendate (0) - Running (0) @@ -10236,32 +10177,16 @@ Dați clic pe butonul „Module de căutare...” din colțul din dreapta-jos al Stop torrents - - Paused (%1) - Suspendate (%1) - Moving (%1) Se mută (%1) - - Resume torrents - Reia torentele - - - Pause torrents - Pauzează torentele - Remove torrents Elimină torentele - - Resumed (%1) - Reluate (%1) - Active (%1) @@ -10333,23 +10258,11 @@ Dați clic pe butonul „Module de căutare...” din colțul din dreapta-jos al Remove unused tags Elimină marcaje nefolosite - - Resume torrents - Reia torentele - - - Pause torrents - Întrerupe torente - Remove torrents Elimină torentele - - New Tag - Marcaj nou - Start torrents @@ -10685,17 +10598,17 @@ Alegeți o denumire diferită și încercați iar. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10947,13 +10860,6 @@ Alegeți o denumire diferită și încercați iar. Se supraveghează dosarul: „%1” - - TorrentInfo - - Invalid metadata - Metadate nevalide - - TorrentOptionsDialog @@ -10991,10 +10897,6 @@ Alegeți o denumire diferită și încercați iar. Torrent Share Limits - - Torrent speed limits - Limite de viteză ale torenților - Download: @@ -11027,30 +10929,6 @@ Alegeți o denumire diferită și încercați iar. Upload: Încărcare: - - Torrent share limits - Limitele de partajare a torenților - - - Use global share limit - Utilizează limitarea globală a partajării - - - Set no share limit - Nu stabili nicio limită de partajare - - - Set share limit to - Stabilește limita de partajare la - - - ratio - raport - - - total minutes - minute totale - Disable DHT for this torrent @@ -11092,14 +10970,6 @@ Alegeți o denumire diferită și încercați iar. Not applicable to private torrents Nu se aplică la torente private - - No share limit method selected - Nu a fost selectată nicio metodă de limitare a partajării - - - Please select a limit method first - Selectați întâi o metodă de limitare - TorrentShareLimitsWidget @@ -11159,7 +11029,7 @@ Alegeți o denumire diferită și încercați iar. Remove torrent - Elimină torentul + Elimină torentul @@ -11169,7 +11039,7 @@ Alegeți o denumire diferită și încercați iar. Enable super seeding for torrent - Activați super contribuirea pentru torent + Activați super contribuirea pentru torent @@ -11184,10 +11054,6 @@ Alegeți o denumire diferită și încercați iar. Torrent Tags Etichete torent - - New Tag - Marcaj nou - Add tag @@ -11222,78 +11088,78 @@ Alegeți o denumire diferită și încercați iar. TorrentsController - + Error: '%1' is not a valid torrent file. Eroare: „%1” nu este un fișier torent valid. - + Priority must be an integer Prioritatea trebuie să fie un număr întreg - + Priority is not valid Prioritatea nu este validă - + Torrent's metadata has not yet downloaded Metadatele torentului nu au fost descărcate încă - + File IDs must be integers ID-urile fișierului trebuie să fie numere întregi - + File ID is not valid ID-urile fișierului nu sunt valide - - - - + + + + Torrent queueing must be enabled Punerea în coadă a torentelor trebuie să fie activată - - + + Save path cannot be empty Calea de salvare nu trebuie să fie goală - - + + Cannot create target directory Dosarul țintă nu poate fi creat - - + + Category cannot be empty Categoria nu trebuie să fie goală - + Unable to create category Nu s-a putut crea categoria - + Unable to edit category Nu s-a putut modifica categoria - + Unable to export torrent file. Error: %1 - + Cannot make save path Nu am putut crea calea de salvare @@ -11313,39 +11179,39 @@ Alegeți o denumire diferită și încercați iar. Parametrul 'sort' de sortare e invalid - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Nu pot scrie în director - + WebUI Set location: moving "%1", from "%2" to "%3" Interfață web - Stabilire locație: se mută „%1”, din „%2” în „%3” - + Incorrect torrent name Nume torent incorect - - + + Incorrect category name Nume categorie incorectă @@ -11450,19 +11316,11 @@ Alegeți o denumire diferită și încercați iar. Min Announce - - Invalid status! - Stare nevalidă! - Tier Nivel - - Protocol - Protocol - Status @@ -11502,73 +11360,73 @@ Alegeți o denumire diferită și încercați iar. Acest torent este privat - + Tracker editing Modificare urmăritor - + Tracker URL: URL urmăritor: - - + + Tracker editing failed Editarea urmăritorului a eșuat - + The tracker URL entered is invalid. URL-ul urmăritorului nu este valid. - + The tracker URL already exists. URL-ul urmăritorului există deja. - + Edit tracker URL... Editare URL urmăritor... - + Remove tracker Elimină urmăritorul - + Copy tracker URL Copiază URL-ul urmăritorului - + Force reannounce to selected trackers Forțează reanunțarea urmăritoarelor selectate - + Force reannounce to all trackers Forțează reanunțarea tuturor urmăritoarelor - + Resize columns Redimensionează coloanele - + Resize all non-hidden columns to the size of their contents Redimensionează toate coloanele neascunse la dimensiunea conținutului acestora - + Add trackers... Adaugă urmăritoare… - + Column visibility Vizibilitate coloană @@ -11658,14 +11516,6 @@ Alegeți o denumire diferită și încercați iar. Stop torrents - - Resume torrents - Reia torentele - - - Pause torrents - Pauzează torentele - Remove torrents @@ -11788,10 +11638,6 @@ Alegeți o denumire diferită și încercați iar. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Se verifică datele de reluare - - Paused - Suspendat - Completed @@ -11832,21 +11678,16 @@ Alegeți o denumire diferită și încercați iar. % Done Progres - - Status - Torrent status (e.g. downloading, seeding, paused) - Stare - Stopped - + Oprită Status Torrent status (e.g. downloading, seeding, stopped) - Stare + Stare @@ -11962,22 +11803,17 @@ Alegeți o denumire diferită și încercați iar. Time Active Time (duration) the torrent is active (not stopped) - Durată activă + Durată activă Yes - Da + Da No - Nu - - - Time Active - Time (duration) the torrent is active (not paused) - Durată activă + Nu @@ -12079,358 +11915,319 @@ Alegeți o denumire diferită și încercați iar. TransferListWidget - + Column visibility Vizibilitate coloană - + Recheck confirmation Confirmare reverificare - + Are you sure you want to recheck the selected torrent(s)? Sigur doriți să reverificați torentele selectate? - + Rename Redenumire - + New name: Denumire nouă: - + Choose save path Alegeți calea de salvare - Confirm pause - Connfirmare pauzare - - - Would you like to pause all torrents? - Doriți să puneți în pauză toate torentele? - - - Confirm resume - Confirmare reluare - - - Would you like to resume all torrents? - Doriți să reluați toate torentele? - - - + Unable to preview Nu pot previzualiza - + The selected torrent "%1" does not contain previewable files Torentul selectat "%1" nu conține fișiere previzualizabile - + Resize columns Redimensionează coloanele - + Resize all non-hidden columns to the size of their contents Redimensionează toate coloanele neascunse la dimensiunea conținutului acestora - + Enable automatic torrent management Activează gestionarea automată a torentelor - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Sigur doriți să activați Gestiunea Automată a Torentelor pentru torentele alese? Acestea pot fi relocate. - Add Tags - Adaugă marcaje - - - + Choose folder to save exported .torrent files Alegeți un dosar pentru a salva fișierele .torrent exportate - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists Există deja un fișier cu același nume - + Export .torrent file error - + Remove All Tags Elimină toate marcajele - + Remove all tags from selected torrents? Eliminați toate marcajele de la torentele alese? - + Comma-separated tags: Marcaje separate prin virgulă: - + Invalid tag Marcaj nevalid - + Tag name: '%1' is invalid Denumire marcaj: „%1” nu este valid - &Resume - Resume/start the torrent - &Reia - - - &Pause - Pause the torrent - &Pauzează - - - Force Resu&me - Force Resume/start the torrent - Forțează re&luarea - - - + Pre&view file... Pre&vizualizare fișier... - + Torrent &options... &Opțiuni torent... - + Open destination &folder Deschide &dosarul destinație - + Move &up i.e. move up in the queue Mută în s&us - + Move &down i.e. Move down in the queue Mută în &jos - + Move to &top i.e. Move to top of the queue Mu&tă în vârf - + Move to &bottom i.e. Move to bottom of the queue Mută la &bază - + Set loc&ation... Stabilire loc&ație... - + Force rec&heck Forțează re&verificarea - + Force r&eannounce Forțează r&eanunțarea - + &Magnet link Legătură &Magnet - + Torrent &ID &Identificator torentn - + &Comment &Comentariu - + &Name &Nume - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Rede&numește… - + Edit trac&kers... M&odifică urmăritoarele… - + E&xport .torrent... E&xportă .torrent… - + Categor&y Catego&rie - + &New... New category... &Nouă… - + &Reset Reset category &Reinițializează - + Ta&gs Mar&caje - + &Add... Add / assign multiple tags... &Adaugă… - + &Remove All Remove all tags &Elimină toate - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue &Coadă - + &Copy &Copiază - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Descarcă în ordine secvențială - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &Elimină - + Download first and last pieces first Descarcă întâi primele și ultimele bucăți - + Automatic Torrent Management Gestiune Automată a Torentelor - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Regimul automat înseamnă că diferite proprietăți ale torentului (cum ar fi calea de salvare) vor fi decise în baza categoriei asociate - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Nu se poate forța reanunțarea dacă torentul e întrerupt/în coadă/eronat/verificând - - - + Super seeding mode Mod super-contribuire @@ -12562,32 +12359,32 @@ Alegeți o denumire diferită și încercați iar. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12679,52 +12476,52 @@ Alegeți o denumire diferită și încercați iar. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Tip de fișier neacceptabil, numai fișierele obișnuite sunt permise - + Symlinks inside alternative UI folder are forbidden. Legăturile simbolice înăuntrul dosarului de interfață alternativ sunt interzise. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12782,7 +12579,7 @@ Alegeți o denumire diferită și încercați iar. Unknown error - Eroare necunoscută + Eroare necunoscută diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index d46733d28..8d02edc85 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -170,10 +170,6 @@ Never show again Больше не показывать - - Torrent settings - Настройки торрента - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Параметры торрента @@ -217,7 +213,7 @@ Click [...] button to add/remove tags. - Нажмите кнопку [...], чтобы добавить/убрать метки. + Нажмите кнопку […], чтобы добавить/убрать метки. @@ -235,25 +231,25 @@ Условие остановки: - - + + None Нет - - + + Metadata received Метаданные получены - + Torrents that have metadata initially will be added as stopped. Торренты, изначально содержащие метаданные, будут добавлены в остановленном состоянии. - + Files checked Файлы проверены @@ -368,112 +364,112 @@ Сохранить в .torrent-файл… - + I/O Error Ошибка ввода-вывода - + Not Available This comment is unavailable Недоступно - + Not Available This date is unavailable Недоступно - + Not available Недоступно - + Magnet link Магнит-ссылка - + Retrieving metadata... Поиск метаданных… - - + + Choose save path Выберите путь сохранения - + No stop condition is set. Без условия остановки. - + Torrent will stop after metadata is received. Торрент остановится по получении метаданных. - + Torrent will stop after files are initially checked. Торрент остановится после первичной проверки файлов. - + This will also download metadata if it wasn't there initially. Это также позволит загрузить метаданные, если их изначально там не было. - + N/A Н/Д - + %1 (Free space on disk: %2) %1 (свободно на диске: %2) - + Not available This size is unavailable. Недоступно - + Torrent file (*%1) Торрент-файл (*%1) - + Save as torrent file Сохранить в торрент-файл - + Couldn't export torrent metadata file '%1'. Reason: %2. Не удалось экспортировать файл метаданных торрента «%1». Причина: %2. - + Cannot create v2 torrent until its data is fully downloaded. Нельзя создать торрент v2, пока его данные не будут полностью загружены. - + Filter files... Фильтр файлов… - + Parsing metadata... Разбираются метаданные… - + Metadata retrieval complete Поиск метаданных завершён @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Загрузка торрента… Источник: «%1» - + Failed to add torrent. Source: "%1". Reason: "%2" Не удалось добавить торрент. Источник: «%1». Причина: «%2» - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Обнаружена попытка добавления повторяющегося торрента. Источник: %1. Существующий торрент: %2. Результат: %3 + Обнаружена попытка добавления повторяющегося торрента. Источник: %1. Существующий торрент: %2. Результат: %3 - + Merging of trackers is disabled Объединение трекеров отключено - + Trackers cannot be merged because it is a private torrent Трекеры нельзя объединить, так как торрент частный - + Trackers are merged from new source Трекеры объединены из нового источника + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -556,7 +556,7 @@ Click [...] button to add/remove tags. - Нажмите кнопку [...], чтобы добавить/убрать метки. + Нажмите кнопку […], чтобы добавить/убрать метки. @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB МБ - + Recheck torrents on completion Перепроверять торренты по завершении - - + + ms milliseconds мс - + Setting Параметр - + Value Value set for this setting Значение - + (disabled) (отключено) - + (auto) (автоматически) - - + + min minutes мин - + All addresses Все адреса - + qBittorrent Section Раздел qBittorrent - - + + Open documentation Открыть документацию - + All IPv4 addresses Все адреса IPv4 - + All IPv6 addresses Все адреса IPv6 - + libtorrent Section Раздел libtorrent - + Fastresume files Файлы быстрого возобновления - + SQLite database (experimental) База данных SQLite (экспериментально) - + Resume data storage type (requires restart) Хранилище данных возобновления (нужен перезапуск) - + Normal Обычный - + Below normal Ниже обычного - + Medium Средний - + Low Низкий - + Very low Очень низкий - + Physical memory (RAM) usage limit Предел виртуальной памяти - + Asynchronous I/O threads Потоки асинхронного ввода-вывода - + Hashing threads Потоки хеширования - + File pool size Размер пула файлов - + Outstanding memory when checking torrents Накладная память при проверке торрентов - + Disk cache Кэш диска в памяти - - - - + + + + + s seconds с - + Disk cache expiry interval Период очистки кэша диска - + Disk queue size Размер очереди диска - - + + Enable OS cache Включить кэш ОС - + Coalesce reads & writes Совмещать операции чтения и записи - + Use piece extent affinity Группировать смежные части - + Send upload piece suggestions Отправлять предложения частей отдачи - - - - - + + + + + 0 (disabled) 0 (отключено) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Период записи данных возобновления [0: откл.] - + Outgoing ports (Min) [0: disabled] Минимум исходящих портов [0: откл.] - + Outgoing ports (Max) [0: disabled] Максимум исходящих портов [0: откл.] - + 0 (permanent lease) 0 (постоянный) - + UPnP lease duration [0: permanent lease] Срок аренды UPnP [0: постоянный] - + Stop tracker timeout [0: disabled] Тайм-аут остановки трекера [0: откл.] - + Notification timeout [0: infinite, -1: system default] Срок уведомлений [0: бесконечно, -1: стандартно] - + Maximum outstanding requests to a single peer Максимум нерешённых запросов к одному пиру - - - - - + + + + + KiB КБ - + (infinite) (бесконечно) - + (system default) (стандарт системы) - + Delete files permanently - + Удалять файлы безвозвратно - + Move files to trash (if possible) - + Убирать файлы в корзину (если возможно) - + Torrent content removing mode - + Режим удаления содержимого торрентов - + This option is less effective on Linux Этот параметр менее эффективен в Linux - + Process memory priority Приоритет памяти процесса - + Bdecode depth limit Предел глубины разбора данных Bdecode - + Bdecode token limit Предел токенов разбора данных Bdecode - + Default Стандартно - + Memory mapped files Файлы, отображаемые в память - + POSIX-compliant Совместимый с POSIX - + Simple pread/pwrite - + Простой ввод-вывод - + Disk IO type (requires restart) Тип ввода-вывода диска (требует перезапуск) - - + + Disable OS cache Отключить кэш ОС - + Disk IO read mode Режим чтения ввода-вывода с диска - + Write-through Сквозная запись - + Disk IO write mode Режим записи ввода-вывода с диска - + Send buffer watermark Отметка буфера отправки - + Send buffer low watermark Нижняя отметка буфера отправки - + Send buffer watermark factor Фактор отметки буфера отправки - + Outgoing connections per second Исходящие соединения в секунду - - + + 0 (system default) 0 (стандарт системы) - + Socket send buffer size [0: system default] Размер буфера отправки сокета [0: системный] - + Socket receive buffer size [0: system default] Размер буфера получения сокета [0: системный] - + Socket backlog size Размер очереди сокета - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Период записи статистики [0: откл.] - + .torrent file size limit Предельный размер файла .torrent - + Type of service (ToS) for connections to peers Тип обслуживания (ToS) соединений к пирам - + Prefer TCP Предпочитать TCP - + Peer proportional (throttles TCP) Соразмерно пирам (регулирует TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Поддерживать нелатинские имена доменов (IDN) - + Allow multiple connections from the same IP address Разрешать несколько соединений с одного IP - + Validate HTTPS tracker certificates Проверять сертификаты трекеров HTTPS - + Server-side request forgery (SSRF) mitigation Упреждать серверную подделку запроса (SSRF) - + Disallow connection to peers on privileged ports Не соединять пиров по общеизвестным портам - + It appends the text to the window title to help distinguish qBittorent instances Добавляет текст к заголовку окна с целью различения экземпляров qBittorent. - + Customize application instance name Дополнить название экземпляра приложения - + It controls the internal state update interval which in turn will affect UI updates Управляет периодом обновления внутреннего состояния, влияющим на частоту обновления интерфейса - + Refresh interval Период обновления - + Resolve peer host names Определять имя хоста пира - + IP address reported to trackers (requires restart) IP для сообщения трекерам (требует перезапуск) - + Port reported to trackers (requires restart) [0: listening port] - + Порт для сообщения трекерам (требует перезапуск) [0: порт прослушивания] - + Reannounce to all trackers when IP or port changed Повторять анонс на все трекеры при смене IP/порта - + Enable icons in menus Включить значки в меню - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Включить проброс портов для встроенного трекера - + Enable quarantine for downloaded files Включить карантин для загруженных файлов - + Enable Mark-of-the-Web (MOTW) for downloaded files - Ставить веб-метку (MOTW) на загруженные файлы + Ставить веб-метку (MOTW) на файлы загрузок - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Затрагивает проверку сертификатов и деятельность, не связанную с протоколом торрент (например, RSS-ленты, обновления программы, торрент-файлы, БД GeoIP и т. д.). - + Ignore SSL errors - + Игнорировать ошибки SSL - + (Auto detect if empty) (Автообнаружение, если пусто) - + Python executable path (may require restart) Путь к файлу Python (может требовать перезапуск) - + Start BitTorrent session in paused state - + Запускать qBittorrent в остановленном состоянии - + sec seconds - с + с - + -1 (unlimited) - + -1 (без ограничений) - + BitTorrent session shutdown timeout [-1: unlimited] - + Тайм-аут остановки сеанса БитТоррента [-1: бесконечно] - + Confirm removal of tracker from all torrents Подтверждать удаление трекера из всех торрентов - + Peer turnover disconnect percentage Процент отключения текучести пиров - + Peer turnover threshold percentage Процент предела текучести пиров - + Peer turnover disconnect interval Период отключения текучести пиров - + Resets to default if empty - Сброс на стандарт, если пусто + Сбрасывается на стандартное, если пусто - + DHT bootstrap nodes Резервные узлы самозагрузки DHT - + I2P inbound quantity Число входящих I2P - + I2P outbound quantity Число исходящих I2P - + I2P inbound length Длина входящих I2P - + I2P outbound length Длина исходящих I2P - + Display notifications Показывать уведомления - + Display notifications for added torrents Показывать уведомление при добавлении торрента - + Download tracker's favicon Загружать значки сайтов трекеров - + Save path history length - Длина истории путей сохранения + Размер истории путей сохранения - + Enable speed graphs Включить графики скорости - + Fixed slots Постоянные слоты - + Upload rate based На основе скорости отдачи - + Upload slots behavior Поведение слотов отдачи - + Round-robin Каждому по кругу - + Fastest upload Быстрейшая отдача - + Anti-leech Анти-лич - + Upload choking algorithm Алгоритм заглушения отдачи - + Confirm torrent recheck Подтверждать перепроверку торрентов - + Confirm removal of all tags Подтверждать удаление всех меток - + Always announce to all trackers in a tier Всегда анонсировать на все трекеры в уровне - + Always announce to all tiers Всегда анонсировать на все уровни - + Any interface i.e. Any network interface Любой интерфейс - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Алгоритм смешанного режима %1-TCP - + Resolve peer countries Определять страны пиров - + Network interface Сетевой интерфейс - + Optional IP address to bind to Необязательный IP-адрес для привязки - + Max concurrent HTTP announces Максимум одновременных анонсов HTTP - + Enable embedded tracker Включить встроенный трекер - + Embedded tracker port Порт встроенного трекера @@ -1382,142 +1393,142 @@ Invalid directory path - + Недопустимый путь каталога Directory does not exist - + Каталог не существует Invalid mode, allowed values: %1 - + Недопустимый режим, допустимые значения: %1 cookies must be array - + куки должны быть массивом Application - + Running in portable mode. Auto detected profile folder at: %1 Работает в переносном режиме. Автоматически обнаружена папка профиля в: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Обнаружен избыточный флаг командной строки: «%1». Портативный режим подразумевает относительное быстрое возобновление. - + Using config directory: %1 Используется каталог настроек: %1 - + Torrent name: %1 Имя торрента: %1 - + Torrent size: %1 Размер торрента: %1 - + Save path: %1 Путь сохранения: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Торрент был загружен за %1. - - + + Thank you for using qBittorrent. Спасибо, что используете qBittorrent. - + Torrent: %1, sending mail notification Торрент: %1, отправка оповещения на эл. почту - + Add torrent failed Добавление торрента не удалось - + Couldn't add torrent '%1', reason: %2. Не удалось добавить торрент «%1». Причина: %2. - + The WebUI administrator username is: %1 Имя администратора веб-интерфейса: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Пароль администратора веб-интерфейса не был установлен. Для этого сеанса представлен временный пароль: %1 - + You should set your own password in program preferences. Необходимо задать собственный пароль в настройках программы. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Веб-интерфейс отключён! Для включения веб-интерфейса измените файл настроек вручную. - + Running external program. Torrent: "%1". Command: `%2` Запускается внешняя программа. Торрент: «%1». Команда: «%2» - + Failed to run external program. Torrent: "%1". Command: `%2` Не удалось запустить внешнюю программу. Торрент: «%1». Команда: «%2» - + Torrent "%1" has finished downloading Торрент «%1» завершил загрузку - + WebUI will be started shortly after internal preparations. Please wait... Веб-интерфейс скоро запустится после внутренней подготовки. Пожалуйста, подождите… - - + + Loading torrents... Прогрузка торрентов… - + E&xit &Выход - + I/O Error i.e: Input/Output Error Ошибка ввода-вывода - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Причина: %2 - + Torrent added Торрент добавлен - + '%1' was added. e.g: xxx.avi was added. «%1» добавлен. - + Download completed Загрузка завершена - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 запущен. Идентификатор процесса: %2 - + This is a test email. - + Это проверочное электронное письмо. - + Test email - + Проверить эл. почту - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Завершена загрузка торрента «%1». - + Information Информация - + To fix the error, you may need to edit the config file manually. Для устранения ошибки может потребоваться ручная правка файла настроек. - + To control qBittorrent, access the WebUI at: %1 Войдите в веб-интерфейс для управления qBittorrent: %1 - + Exit Выход - + Recursive download confirmation Подтверждение рекурсивной загрузки - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Торрент «%1» содержит файлы .torrent, хотите приступить к их загрузке? - + Never Никогда - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Рекурсивная загрузка .torrent-файла из торрента. Исходный торрент: «%1». Файл: «%2» - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Не удалось ограничить виртуальную память. Код ошибки: %1. Сообщение ошибки: «%2» - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Не удалось жёстко ограничить использование физической памяти (ОЗУ). Запрошенный размер: %1. Системное жёсткое ограничение: %2. Код ошибки: %3. Сообщение ошибки: «%4» - + qBittorrent termination initiated Завершение qBittorrent начато - + qBittorrent is shutting down... qBittorrent завершает работу… - + Saving torrent progress... Сохраняется состояние торрента… - + qBittorrent is now ready to exit qBittorrent теперь готов к выходу @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Экспорт… - + Matches articles based on episode filter. Указывает на статьи, основанные на фильтре эпизодов. - + Example: Пример: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match указывает на 2, 5, с 8 по 15, 30 и следующие эпизоды первого сезона - + Episode filter rules: Правила фильтрации эпизодов: - + Season number is a mandatory non-zero value Номер сезона должен иметь ненулевое значение - + Filter must end with semicolon Фильтр должен заканчиваться точкой с запятой - + Three range types for episodes are supported: Поддерживаются три типа диапазонов для эпизодов: - + Single number: <b>1x25;</b> matches episode 25 of season one Одиночный номер: <b>1x25;</b> означает 25-й эпизод первого сезона - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Обычный диапазон: <b>1x25-40;</b> указывает на эпизоды с 25-го по 40-й первого сезона - + Episode number is a mandatory positive value Номер эпизода должен быть ненулевым - + Rules Правила - + Rules (legacy) Правила (устаревшие) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Бесконечный диапазон: <b>1x25-;</b> указывает на эпизоды с 25-го и выше первого сезона, и все эпизоды более поздних сезонов - + Last Match: %1 days ago Последнее совпадение: %1 дн. назад - + Last Match: Unknown Последнее совпадение: Неизвестно - + New rule name Новое правило - + Please type the name of the new download rule. Пожалуйста, введите имя нового правила загрузки. - - + + Rule name conflict Конфликт имени правила - - + + A rule with this name already exists, please choose another name. Правило с таким именем уже существует. Пожалуйста, выберите другое. - + Are you sure you want to remove the download rule named '%1'? Уверены, что хотите удалить правило загрузки «%1»? - + Are you sure you want to remove the selected download rules? Уверены, что хотите удалить выбранные правила загрузки? - + Rule deletion confirmation Подтверждение удаления правила - + Invalid action Недопустимое действие - + The list is empty, there is nothing to export. Список пуст, нечего экспортировать. - + Export RSS rules Экспортировать правила RSS - + I/O Error Ошибка ввода-вывода - + Failed to create the destination file. Reason: %1 Не удалось создать целевой файл. Причина: %1 - + Import RSS rules Импортировать правила RSS - + Failed to import the selected rules file. Reason: %1 Не удалось импортировать выбранный файл правил. Причина: %1 - + Add new rule... Добавить новое правило… - + Delete rule Удалить правило - + Rename rule... Переименовать правило… - + Delete selected rules Удалить выбранные правила - + Clear downloaded episodes... Очистить загруженные эпизоды… - + Rule renaming Переименование правила - + Please type the new rule name Пожалуйста, введите имя нового правила - + Clear downloaded episodes Очистить загруженные эпизоды - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Уверены, что хотите очистить список загруженных эпизодов для выбранного правила? - + Regex mode: use Perl-compatible regular expressions Режим Regex: используйте регулярные выражения в стиле Perl - - + + Position %1: %2 Позиция %1: %2 - + Wildcard mode: you can use Режим поиска по шаблону: можно использовать - - + + Import error Ошибка импорта - + Failed to read the file. %1 Не удалось прочесть файл. %1 - + ? to match any single character «?» соответствует любому одиночному символу - + * to match zero or more of any characters «*» соответствует нулю или нескольким любым символам - + Whitespaces count as AND operators (all words, any order) Пробелы читаются как операторы И (все слова, любой порядок) - + | is used as OR operator «|» используется как оператор ИЛИ - + If word order is important use * instead of whitespace. Если порядок слов важен, то используйте «*» вместо пробелов. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Выражение с пустым пунктом %1 (пример, %2) - + will match all articles. подойдёт всем статьям. - + will exclude all articles. исключит все статьи. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Не удаётся разобрать данные возобновления: неверный формат - - + + Cannot parse torrent info: %1 Не удаётся разобрать информацию о торренте: %1 - + Cannot parse torrent info: invalid format Не удаётся разобрать информацию о торренте: неверный формат - + Mismatching info-hash detected in resume data Обнаружено несоответствие инфо-хеша в данных возобновления - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Не удалось сохранить метаданные торрента в «%1». Ошибка: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Не удалось сохранить данные возобновления торрента в «%1». Ошибка: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Не удаётся разобрать данные возобновления: %1 - + Resume data is invalid: neither metadata nor info-hash was found Данные возобновления недействительны: метаданные или инфо-хэш не найдены - + Couldn't save data to '%1'. Error: %2 Не удалось сохранить данные в «%1». Ошибка: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Не найдено. - + Couldn't load resume data of torrent '%1'. Error: %2 Не удалось подгрузить данные возобновления торрента «%1». Ошибка: %2 - - + + Database is corrupted. База данных повреждена. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Не удалось включить режим упреждающей журнализации (WAL). Ошибка: %1. - + Couldn't obtain query result. Не удалось получить результат запроса. - + WAL mode is probably unsupported due to filesystem limitations. Режим упреждающей журнализации, вероятно, не поддерживается из-за ограничений файловой системы. - + + + Cannot parse resume data: %1 + Не удаётся разобрать данные возобновления: %1 + + + + + Cannot parse torrent info: %1 + Не удаётся разобрать информацию о торренте: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Не удалось начать транзакцию. Ошибка: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Не удалось сохранить метаданные торрента. Ошибка: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Не удалось сохранить данные возобновления торрента «%1». Ошибка: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Не удалось удалить данные возобновления торрента «%1». Ошибка: %2 - + Couldn't store torrents queue positions. Error: %1 Не удалось сохранить очерёдность торрентов. Ошибка: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Поддержка распределённой хеш-таблицы (DHT): %1 - - - - - - - - - + + + + + + + + + ON ВКЛ - - - - - - - - - + + + + + + + + + OFF ОТКЛ - - + + Local Peer Discovery support: %1 Поддержка обнаружения локальных пиров: %1 - + Restart is required to toggle Peer Exchange (PeX) support Необходим перезапуск для включения поддержки обмена пирами (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Ошибка возобновления торрента. Торрент: «%1». Причина: «%2» - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Не удалось возобновить торрент: обнаружен несогласованный ИД торрента. Торрент: «%1» - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Обнаружены несогласованные данные: категория отсутствует в файле настроек. Категория будет восстановлена, но её настройки будут сброшены до стандартных. Торрент: «%1». Категория: «%2» - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Обнаружены несогласованные данные: недопустимая категория. Торрент: «%1». Категория: «%2» - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Обнаружено несоответствие между путями сохранения восстановленной категории и текущим путём сохранения торрента. Торрент теперь переключён в ручной режим. Торрент: «%1». Категория: «%2» - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Обнаружены несогласованные данные: метка отсутствует в файле настроек. Метка будет восстановлена. Торрент: «%1». Метка: «%2» - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Обнаружены несогласованные данные: недопустимая метка. Торрент: «%1». Метка: «%2» - + System wake-up event detected. Re-announcing to all the trackers... Обнаружено событие пробуждения системы. Повторяется анонс всех трекеров… - + Peer ID: "%1" ИД пира: «%1» - + HTTP User-Agent: "%1" HTTP User-Agent: «%1» - + Peer Exchange (PeX) support: %1 Поддержка обмена пирами (PeX): %1 - - + + Anonymous mode: %1 Анонимный режим: %1 - - + + Encryption support: %1 Поддержка шифрования: %1 - - + + FORCED ПРИНУДИТЕЛЬНО - + Could not find GUID of network interface. Interface: "%1" Не удалось получить GUID сетевого интерфейса. Интерфейс: «%1» - + Trying to listen on the following list of IP addresses: "%1" Попытка прослушивания следующего списка IP-адресов: «%1» - + Torrent reached the share ratio limit. Торрент достиг ограничения рейтинга раздачи. - + Torrent: "%1". Торрент: «%1». - Removed torrent. - Торрент удалён. - - - Removed torrent and deleted its content. - Торрент удалён вместе с его содержимым. - - - Torrent paused. - Торрент остановлен. - - - + Super seeding enabled. Суперсид включён. - + Torrent reached the seeding time limit. Торрент достиг ограничения времени раздачи. - + Torrent reached the inactive seeding time limit. Торрент достиг ограничения времени бездействия раздачи. - + Failed to load torrent. Reason: "%1" Не удалось загрузить торрент. Причина: «%1» - + I2P error. Message: "%1". Ошибка I2P. Сообщение: «%1». - + UPnP/NAT-PMP support: ON Поддержка UPnP/NAT-PMP: ВКЛ - + Saving resume data completed. - + Запись данных возобновления завершена. - + BitTorrent session successfully finished. - + Сеанс БитТоррента успешно завершён. - + Session shutdown timed out. - + Завершение сеанса вышло по времени. - + Removing torrent. - + Удаляется торрент. - + Removing torrent and deleting its content. - + Удаление торрента вместе с его содержимым. - + Torrent stopped. - + Торрент остановлен. - + Torrent content removed. Torrent: "%1" - + Содержимое торрента удалено. Торрент: «%1» - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Не удалось удалить содержимое торрента. Торрент: «%1». Ошибка: «%2» - + Torrent removed. Torrent: "%1" - + Торрент удалён. Торрент: «%1» - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Обнаружена попытка добавления повторяющегося торрента. Существующий торрент: %1. Результат: %2 - + Merging of trackers is disabled - Объединение трекеров отключено + Объединение трекеров отключено - + Trackers cannot be merged because it is a private torrent - Трекеры нельзя объединить, так как торрент частный + Трекеры нельзя объединить, так как торрент частный - + Trackers are merged from new source - Трекеры объединены из нового источника + Трекеры объединены из нового источника - + UPnP/NAT-PMP support: OFF Поддержка UPnP/NAT-PMP: ОТКЛ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Не удалось экспортировать торрент. Торрент: «%1». Назначение: «%2». Причина: «%3» - + Aborted saving resume data. Number of outstanding torrents: %1 Прервано сохранение данных возобновления. Число невыполненных торрентов: %1 - + The configured network address is invalid. Address: "%1" Настроенный сетевой адрес неверен. Адрес: «%1» - - + + Failed to find the configured network address to listen on. Address: "%1" Не удалось обнаружить настроенный сетевой адрес для прослушивания. Адрес: «%1» - + The configured network interface is invalid. Interface: "%1" Настроенный сетевой интерфейс неверен. Интерфейс: «%1» - + Tracker list updated - + Список трекеров обновлён - + Failed to update tracker list. Reason: "%1" - + Не удалось обновить список трекеров. Причина: «%1» - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Отклонён недопустимый адрес IP при применении списка запрещённых IP-адресов. IP: «%1» - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Трекер добавлен в торрент. Торрент: «%1». Трекер: «%2» - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Трекер удалён из торрента. Торрент: «%1». Трекер: «%2» - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Добавлен адрес сида в торрент. Торрент: «%1». Адрес: «%2» - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Удалён адрес сида из торрента. Торрент: «%1». Адрес: «%2» - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Ошибка удаления файла частей. Торрент: «%1». Причина: «%2». - Torrent paused. Torrent: "%1" - Торрент остановлен. Торрент: «%1» - - - + Torrent resumed. Torrent: "%1" Торрент возобновлён. Торрент: «%1» - + Torrent download finished. Torrent: "%1" Загрузка торрента завершена. Торрент: «%1» - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Перемещение торрента отменено. Торрент: «%1». Источник: «%2». Назначение: «%3» - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Торрент остановлен. Торрент: «%1» + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Не удалось поставить в очередь перемещение торрента. Торрент: «%1». Источник: «%2». Назначение: «%3». Причина: торрент в настоящее время перемещается в путь назначения - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Не удалось поставить в очередь перемещение торрента. Торрент: «%1». Источник: «%2». Назначение: «%3». Причина: оба пути указывают на одно и то же местоположение - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Перемещение торрента поставлено в очередь. Торрент: «%1». Источник: «%2». Назначение: «%3» - + Start moving torrent. Torrent: "%1". Destination: "%2" Началось перемещение торрента. Торрент: «%1». Назначение: «%2» - + Failed to save Categories configuration. File: "%1". Error: "%2" Не удалось сохранить настройки категорий. Файл: «%1». Ошибка: «%2» - + Failed to parse Categories configuration. File: "%1". Error: "%2" Не удалось разобрать настройки категорий. Файл: «%1». Ошибка: «%2» - + Successfully parsed the IP filter file. Number of rules applied: %1 Успешно разобран файл IP-фильтра. Всего применённых правил: %1 - + Failed to parse the IP filter file Не удалось разобрать файл IP-фильтра - + Restored torrent. Torrent: "%1" Торрент восстановлен. Торрент: «%1» - + Added new torrent. Torrent: "%1" Добавлен новый торрент. Торрент: «%1» - + Torrent errored. Torrent: "%1". Error: "%2" Сбой торрента. Торрент: «%1». Ошибка: «%2» - Removed torrent. Torrent: "%1" - Торрент удалён. Торрент: «%1» - - - Removed torrent and deleted its content. Torrent: "%1" - Торрент удалён вместе с его содержимым. Торрент: «%1» - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" В торренте отсутствуют параметры SSL. Торрент: «%1». Сообщение: «%2» - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Предупреждение об ошибке файла. Торрент: «%1». Файл: «%2». Причина: «%3» - + UPnP/NAT-PMP port mapping failed. Message: "%1" Проброс портов UPnP/NAT-PMP не удался. Сообщение: «%1» - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Проброс портов UPnP/NAT-PMP удался. Сообщение: «%1» - + IP filter this peer was blocked. Reason: IP filter. IP-фильтр - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). порт отфильтрован (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - привилегированный порт (%1) + общеизвестный порт (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Соединение с адресом сида не удалось. Торрент: «%1». Адрес: «%2». Ошибка: «%3» - + BitTorrent session encountered a serious error. Reason: "%1" Сеанс БитТоррента столкнулся с серьёзной ошибкой. Причина: «%1» - + SOCKS5 proxy error. Address: %1. Message: "%2". Ошибка прокси SOCKS5. Адрес: %1. Сообщение: «%2». - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. ограничения смешанного режима %1 - + Failed to load Categories. %1 Не удалось загрузить категории. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Не удалось загрузить настройки категорий: Файл: «%1». Причина: «неверный формат данных» - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Торрент удалён, но его содержимое и/или кусочный файл не удалось стереть. Торрент: «%1». Ошибка: «%2» - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 отключён - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 отключён - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Поиск адреса сида в DNS не удался. Торрент: «%1». Адрес: «%2». Ошибка: «%3» - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Получено сообщение об ошибке от адреса сида. Торрент: «%1». Адрес: «%2». Сообщение: «%3» - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Успешное прослушивание IP. IP: «%1». Порт: «%2/%3» - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Не удалось прослушать IP. IP: «%1». Порт: «%2/%3». Причина: «%4» - + Detected external IP. IP: "%1" Обнаружен внешний IP. IP: «%1» - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Ошибка: Внутренняя очередь оповещений заполнена, и оповещения были отброшены, вы можете заметить ухудшение быстродействия. Тип отброшенных оповещений: «%1». Сообщение: «%2» - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Перемещение торрента удалось. Торрент: «%1». Назначение: «%2» - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Не удалось переместить торрент. Торрент: «%1». Источник: «%2». Назначение: «%3». Причина: «%4» @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Не удалось записать в файл. Причина: «%1». Торрент теперь в режиме «только отдача». - + Download first and last piece first: %1, torrent: '%2' Загрузка крайних частей первыми: %1, торрент: «%2» - + On Вкл. - + Off Откл. - + Failed to reload torrent. Torrent: %1. Reason: %2 Ошибка перезагрузки торрента. Торрент: %1. Причина: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Создание данных возобновления не удалось. Торрент: «%1», ошибка: «%2» - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Не удалось восстановить торрент. Возможно, файлы перемещены, или хранилище недоступно. Торрент: «%1». Причина: «%2» - + Missing metadata Отсутствуют метаданные - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Переименование файла не удалось. Торрент: «%1», файл: «%2», причина: «%3» - + Performance alert: %1. More info: %2 Оповещение быстродействия: %1. Подробности: %2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Ожидаемое целое число в переменных окружения — «%1», но получено «%2» - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Параметр «%1» должен соответствовать синтаксису «%1=%2» - Expected %1 in environment variable '%2', but got '%3' @@ -2859,7 +2875,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also [options] [(<filename> | <url>)...] - [параметры] [(<filename> | <url>)...] + [параметры] [(<filename> | <url>)…] @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Параметр «%1» должен соответствовать синтаксису «%1=%2» + Параметр «%1» должен соответствовать синтаксису «%1=%2» @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - Добавлять торренты запущенными или остановленными + Добавлять торренты запущенными или остановленными @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Запустить торренты Stop torrents - - - - Resume torrents - Возобновить торренты - - - Pause torrents - Остановить торренты + Остановить торренты @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + Система @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - Также безвозвратно удалить файлы + Также удалить файлы содержимого @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + Формат шаблона Plain text - + Обычный текст Wildcards - + Групповые символы Regular expression - + Регулярные выражения GUIAddTorrentManager - + Downloading torrent... Source: "%1" Загрузка торрента… Источник: «%1» - Trackers cannot be merged because it is a private torrent - Трекеры нельзя объединить, так как торрент частный - - - + Torrent is already present Торрент уже существует - + Trackers cannot be merged because it is a private torrent. - + Трекеры нельзя объединить, так как торрент частный. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Торрент «%1» уже есть в списке. Хотите объединить трекеры из нового источника? @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Поддерживаемые файлы изображений + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Управление питанием нашло подходящий интерфейс D-Bus. Интерфейс: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Ошибка управления питанием. Действие: %1. Ошибка: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Непредвиденная ошибка управления питанием. Состояние: %1. Ошибка: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3639,7 +3669,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Another qBittorrent instance is already running. - Другой экземпляр qBittorrent уже запущена. + Другой экземпляр qBittorrent уже запущен. @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Настройки… - - &Resume - &Возобновить - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + Вы&ключить компьютер @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Закрыть окно - - R&esume All - Во&зобновить все - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + Зап&устить Sto&p - + &Остановить R&esume Session - + &Продолжить сеанс Pau&se Session - + Приостано&вить сеанс @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System Перейти в &спящий режим - - S&hutdown System - Вы&ключить компьютер - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &О программе - - &Pause - &Остановить - - - P&ause All - О&становить все - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Показать - + Check for program updates Проверять наличие обновлений программы @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Если вам нравится qBittorrent, пожалуйста, поддержите пожертвованием! - + Execution Log Журнал работы - + Clear the password Очищение пароля - + &Set Password З&адать пароль - + Preferences Настройки - + &Clear Password Очи&стить пароль - + Transfers Торренты - - + + qBittorrent is minimized to tray qBittorrent свёрнут в трей - - - + + + This behavior can be changed in the settings. You won't be reminded again. Данное поведение меняется в настройках. Больше это уведомление вы не увидите. - + Icons Only Только значки - + Text Only Только текст - + Text Alongside Icons Текст сбоку от значков - + Text Under Icons Текст под значками - + Follow System Style Использовать стиль системы - - + + UI lock password Пароль блокировки интерфейса - - + + Please type the UI lock password: Пожалуйста, введите пароль блокировки интерфейса: - + Are you sure you want to clear the password? Уверены, что хотите очистить пароль? - + Use regular expressions Использовать регулярные выражения - - + + Search Engine - Поисковик + Поисковик - + Search has failed - Поиск не удался + Поиск не удался - + Search has finished - Поиск завершён + Поиск завершён - + Search Поиск - + Transfers (%1) Торренты (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent был обновлён и нуждается в перезапуске для применения изменений. - + qBittorrent is closed to tray qBittorrent закрыт в трей - + Some files are currently transferring. Некоторые файлы сейчас раздаются. - + Are you sure you want to quit qBittorrent? Уверены, что хотите выйти из qBittorrent? - + &No &Нет - + &Yes &Да - + &Always Yes &Всегда да - + Options saved. Настройки сохранены. - + [PAUSED] %1 %1 is the rest of the window title - + [ПРИОСТАНОВЛЕН] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [З: %1, О: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Не удалось загрузить установщик Python. Ошибка: %1. +Пожалуйста, установите его вручную. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Переименование установщика Python не удалось. Источник: «%1». Назначение: «%2». - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python успешно установлен. + Exit code: %1. + Код выхода: %1. + + + + Reason: installer crashed. + Причина: сбой установщика. + + + Python installation failed. - + Установка Python не удалась. - + Launching Python installer. File: "%1". - + Запускается установщик Python. Файл: «%1». - - + + Missing Python Runtime Отсутствует среда выполнения Python - + qBittorrent Update Available Обновление qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Для использования поисковика требуется Python, но он, видимо, не установлен. Хотите установить его сейчас? - + Python is required to use the search engine but it does not seem to be installed. Для использования поисковика требуется Python, но он, видимо, не установлен. - - + + Old Python Runtime Старая среда выполнения Python - + A new version is available. Доступна новая версия. - + Do you want to download %1? Хотите скачать %1? - + Open changelog... Открыть список изменений… - + No updates available. You are already using the latest version. Обновлений нет. Вы используете последнюю версию программы. - + &Check for Updates &Проверить обновления - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Ваша версия Python (%1) устарела. Минимальное требование: %2. Хотите установить более новую версию сейчас? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Ваша версия Python (%1) устарела. Пожалуйста, обновитесь до последней версии для работы поисковых плагинов. Минимальное требование: %2. - + Paused - Остановлен + Остановлен - + Checking for Updates... Проверка обновлений… - + Already checking for program updates in the background Проверка обновлений уже выполняется - + Python installation in progress... - + Выполняется установка Python… - + Failed to open Python installer. File: "%1". - + Не удалось открыть установщик Python. Файл: «%1». - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Проверка хеша MD5 установщика Python не удалась. Файл: «%1». Полученный хеш: «%2». Ожидаемый хеш: «%3». - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Проверка хеша SHA3-512 установщика Python не удалась. Файл: «%1». Полученный хеш: «%2». Ожидаемый хеш: «%3». - + Download error Ошибка при загрузке - Python setup could not be downloaded, reason: %1. -Please install it manually. - Не удалось загрузить установщик Python, причина: %1. -Пожалуйста, установите его вручную. - - - - + + Invalid password Недопустимый пароль - + Filter torrents... Фильтр торрентов… - + Filter by: Фильтровать: - + The password must be at least 3 characters long Пароль должен быть не менее 3 символов. - - - + + + RSS (%1) RSS (%1) - + The password is invalid Недопустимый пароль - + DL speed: %1 e.g: Download speed: 10 KiB/s Загрузка: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Отдача: %1 - + Hide Скрыть - + Exiting qBittorrent Завершается qBittorrent - + Open Torrent Files Открыть торрент-файлы - + Torrent Files Торрент-файлы @@ -4556,7 +4561,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + Ошибка SSL, адрес: «%1», ошибки: «%2» @@ -5853,47 +5858,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 Сбой соединения, неопознанный ответ: %1 - + Authentication failed, msg: %1 Ошибка аутентификации, сообщение: %1 - + <mail from> was rejected by server, msg: %1 <mail from> был отклонён сервером, сообщение: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> был отклонён сервером, сообщение: %1 - + <data> was rejected by server, msg: %1 <data> был отклонён сервером, сообщение: %1 - + Message was rejected by the server, error: %1 Сообщение было отклонено сервером, ошибка: %1 - + Both EHLO and HELO failed, msg: %1 - Обе команды EHLO и HELO не удались, сообщение %1 + Обе команды EHLO и HELO не удались, сообщение: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Похоже, SMTP-сервер не поддерживает ни один из поддерживаемых нами режимов аутентификации [CRAM-MD5|PLAIN|LOGIN], аутентификации пропускается с предположением, что она, скорее всего, завершится неудачей… Режимы авторизации сервера: %1 - + Email Notification Error: %1 Ошибка оповещения по эл. почте: %1 @@ -5935,10 +5940,6 @@ Please install it manually. RSS RSS-ленты - - Web UI - Веб-интерфейс - Advanced @@ -5959,14 +5960,6 @@ Please install it manually. Confirm when deleting torrents Подтверждать удаление торрентов - - Shows a confirmation dialog upon pausing/resuming all the torrents - Показывает окно подтверждения при остановке/возобновлении всех торрентов - - - Confirm "Pause/Resume all" actions - Подтверждать действия «остановить/возобновить все» - Use alternating row colors @@ -5983,10 +5976,6 @@ Please install it manually. Always Всегда - - Paused torrents only - Только для остановленных - Action on double-click @@ -5997,10 +5986,6 @@ Please install it manually. Downloading torrents: Загружаемые торренты: - - Start / Stop Torrent - Запустить или остановить торрент - @@ -6059,179 +6044,179 @@ Please install it manually. КБ - + + Show free disk space in status bar + + + + Torrent content layout: Состав содержимого торрента: - + Original Исходный - + Create subfolder Создавать подпапку - + Don't create subfolder Не создавать подпапку - + The torrent will be added to the top of the download queue Торрент будет добавлен в начало очереди загрузок - + Add to top of queue The torrent will be added to the top of the download queue Добавлять в начало очереди - + When duplicate torrent is being added При добавлении повторяющегося торрента - + Merge trackers to existing torrent Объединить трекеры в существующий торрент - + Keep unselected files in ".unwanted" folder Помещать невыбранные файлы в папку «.unwanted» - + Add... Добавить… - + Options.. Настройки… - + Remove Убрать - + Email notification &upon download completion Оповещать об окончании за&грузки по электронной почте - + Send test email - + Отправить проверочное письмо - + Run on torrent added: - + Запускать при добавлении торрента: - + Run on torrent finished: - + Запускать по завершении торрента: - + Peer connection protocol: Протокол подключения пиров: - + Any Любой - + I2P (experimental) Сеть I2P (экспериментально) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Если включён «смешанный режим», торрентам I2P также разрешено получать пиров из других источников помимо трекера и подключаться к обычным IP-адресам без обеспечения анонимизации. Это может быть полезно, если пользователь не заинтересован в анонимизации I2P, но хочет подключаться к пирам I2P.</p></body></html> - - - + Mixed mode Смешанный режим - Some options are incompatible with the chosen proxy type! - Некоторые параметры несовместимы с выбранным типом прокси-сервера! + Некоторые параметры несовместимы с выбранным типом прокси-сервера! - + If checked, hostname lookups are done via the proxy Если отмечено, поиск имени хоста выполняется через прокси-сервер - + Perform hostname lookup via proxy Выполнять поиск имени хоста через прокси - + Use proxy for BitTorrent purposes Использовать прокси для работы БитТоррента - + RSS feeds will use proxy RSS-ленты будут использовать прокси - + Use proxy for RSS purposes Использовать прокси для работы RSS-лент - + Search engine, software updates or anything else will use proxy Поисковики, обновления программного обеспечения или прочее будут использовать прокси - + Use proxy for general purposes Использовать прокси для общей работы - + IP Fi&ltering &Фильтрация по IP - + Schedule &the use of alternative rate limits Запланировать работу особых огранич&ений скорости - + From: From start time С: - + To: To end time До: - + Find peers on the DHT network Искать пиров в сети DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Disable encryption: Only connect to peers without protocol encryption Отключить шифрование: подключаться только к пирам без шифрования протокола - + Allow encryption Разрешать шифрование - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Подробнее</a>) - + Maximum active checking torrents: Предел активных проверок торрентов: - + &Torrent Queueing Оч&ерёдность торрентов - + When total seeding time reaches По достижении общего времени раздачи - + When inactive seeding time reaches По достижении времени бездействия раздачи - A&utomatically add these trackers to new downloads: - Авто&матически добавлять эти трекеры к новым загрузкам: - - - + RSS Reader Менеджер RSS - + Enable fetching RSS feeds Включить получение RSS-лент - + Feeds refresh interval: Период обновления лент: - + Same host request delay: Задержка повторного запроса хоста: - + Maximum number of articles per feed: Максимум статей для ленты: - - - + + + min minutes мин - + Seeding Limits Ограничения раздачи - Pause torrent - Остановить торрент - - - + Remove torrent Удалить торрент - + Remove torrent and its files Удалить торрент и его файлы - + Enable super seeding for torrent Включить режим суперсида для торрента - + When ratio reaches По достижении рейтинга раздачи - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Остановить торрент - + A&utomatically append these trackers to new downloads: - + Авто&матически добавлять эти трекеры к новым загрузкам: - + Automatically append trackers from URL to new downloads: - + Автоматически добавлять трекеры из URL-адреса к новым загрузкам: - + URL: - Адрес: + Адрес: - + Fetched trackers - + Полученные трекеры - + Search UI - + Интерфейс поиска - + Store opened tabs - + Сохранить открытые вкладки - + Also store search results - + Также сохранять результаты поиска - + History length - + Размер истории - + RSS Torrent Auto Downloader Автозагрузчик торрентов из RSS - + Enable auto downloading of RSS torrents Включить автозагрузку торрентов из RSS - + Edit auto downloading rules... Изменить правила автозагрузки… - + RSS Smart Episode Filter Умный фильтр эпизодов RSS - + Download REPACK/PROPER episodes Загружать эпизоды REPACK/PROPER - + Filters: Фильтры: - + Web User Interface (Remote control) Веб-интерфейс (удалённое управление) - + IP address: IP-адрес: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv «::» для любого IPv6-адреса, или «*» для обоих IPv4 и IPv6. - + Ban client after consecutive failures: Запрет клиента при серии сбоёв равной: - + Never Никогда - + ban for: запрещать на: - + Session timeout: Тайм-аут сеанса: - + Disabled Отключено - Enable cookie Secure flag (requires HTTPS) - Включить защиту куки (требует HTTPS) - - - + Server domains: Домены сервера: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Использовать HTTPS вместо HTTP - + Bypass authentication for clients on localhost Пропускать аутентификацию клиентов с localhost - + Bypass authentication for clients in whitelisted IP subnets Пропускать аутентификацию клиентов из разрешённых подсетей - + IP subnet whitelist... Разрешённые подсети… - + Use alternative WebUI - + Использовать альтернативный веб-интерфейс - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Укажите IP-адреса (или подсети, напр., 0.0.0.0/24) обратных прокси-серверов, чтобы использовать перенаправленный адрес клиента (заголовок X-Forwarded-For). Используйте «;» для разделения нескольких записей. - + Upda&te my dynamic domain name О&бновлять динамическое доменное имя @@ -6519,12 +6502,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Поиск + Поиск WebUI - + Веб-интерфейс @@ -6539,29 +6522,29 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + Стиль: Color scheme: - + Цветовая схема: Stopped torrents only - + Только остановленные торренты Start / stop torrent - + Запустить или остановить торрент Open torrent options dialog - + Открыть диалог параметров торрента @@ -6602,7 +6585,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - + &Файлы журнала @@ -6620,99 +6603,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Удалять резервные копии старше: - + Show external IP in status bar - + Показать внешний IP в строке состояния - + When adding a torrent При добавлении торрента - + Bring torrent dialog to the front Выводить окно добавления торрента поверх остальных окон - + The torrent will be added to download list in a stopped state - + Торрент будет добавлен в список загрузок в остановленном состоянии - + Also delete .torrent files whose addition was cancelled Удалять торрент-файл, добавление которого было отменено - + Also when addition is cancelled Удалять торрент-файл при отмене добавления - + Warning! Data loss possible! Внимание! Возможна потеря данных! - + Saving Management Управление сохранением - + Default Torrent Management Mode: Режим управления торрентом по умолчанию: - + Manual Ручной - + Automatic Автоматический - + When Torrent Category changed: По смене категории торрента: - + Relocate torrent Переместить торрент - + Switch torrent to Manual Mode Перевести торрент в ручной режим - - + + Relocate affected torrents Переместить затронутые торренты - - + + Switch affected torrents to Manual Mode Перевести затронутые торренты в ручной режим - + Use Subcategories Использовать подкатегории - + Default Save Path: Путь сохранения по умолчанию: - + Copy .torrent files to: Копировать торрент-файлы в: @@ -6722,26 +6705,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Показывать &qBittorrent в области уведомлений - &Log file - &Файл журнала - - - + Display &torrent content and some options Показывать сод&ержимое и параметры торрента - + De&lete .torrent files afterwards У&далять торрент-файл по добавлении - + Copy .torrent files for finished downloads to: По завершении копировать торрент-файлы в: - + Pre-allocate disk space for all files Предвыделять место на диске для всех файлов @@ -6771,10 +6750,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Просмотр файла или открыть папку назначения - - Show torrent options - Показать параметры торрента - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.г./лет - + Log performance warnings Журналировать предупреждения быстродействия - The torrent will be added to download list in a paused state - Торрент будет добавлен в список загрузок в остановленном состоянии - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Не начинать загрузку автоматически - + Whether the .torrent file should be deleted after adding it Удалять торрент-файл после успешного добавления в очередь - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Выделять место на диске перед загрузкой для снижения фрагментации. Полезно только для жёстких дисков. - + Append .!qB extension to incomplete files Добавлять расширение «.!qB» к неполным файлам - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Предлагать загрузку по любым файлам .torrent, найденным внутри уже загруженного торрента - + Enable recursive download dialog Включить окно рекурсивной загрузки - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Автоматический: настройки торрента подбираются (напр., путь сохранения) на основе его категории Ручной: настройки торрента (напр., путь сохранения) необходимо указать вручную - + When Default Save/Incomplete Path changed: По смене стандартного пути сохранения/неполных: - + When Category Save Path changed: По смене пути сохранения категории: - + Use Category paths in Manual Mode Использовать пути категорий в ручном режиме - + Resolve relative Save Path against appropriate Category path instead of Default one Разрешить относительный путь сохранения для соответствующего пути категории вместо пути по умолчанию @@ -6922,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyСостояние окна qBittorrent при запуске - + Torrent stop condition: Условие остановки торрента: - - + + None Нет - - + + Metadata received Метаданные получены - - + + Files checked Файлы проверены - + Ask for merging trackers when torrent is being added manually Запрашивать объединение трекеров при ручном добавлении торрента - + Use another path for incomplete torrents: Отдельный путь для неполных торрентов: - + Automatically add torrents from: Автоматически добавлять торренты из: - + Excluded file names Исключать имена файлов - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6985,7 +6956,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Используйте новые строки для разделения нескольких записей. Можно использовать подстановочные знаки, как описано ниже. *: соответствует нулю и более любых символов. ?: соответствует любому отдельному символу. -[...]: наборы символов можно перечислить в квадратных скобках. +[…]: наборы символов можно перечислить в квадратных скобках. Примеры *.exe: фильтровать расширение файла «.exe». @@ -6994,523 +6965,510 @@ readme.txt: фильтровать точное имя файла. readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но не «readme10.txt». - + Receiver Получатель - + To: To receiver Кому: - + SMTP server: Сервер SMTP: - + Sender Отправитель - + From: From sender От кого: - + This server requires a secure connection (SSL) Этот сервер требует защищённого соединения (SSL) - - + + Authentication Аутентификация - - - - + + + + Username: Имя пользователя: - - - - + + + + Password: Пароль: - + Run external program Запуск внешней программы - Run on torrent added - Запускать при добавлении торрента - - - Run on torrent finished - Запускать по завершении торрента - - - + Show console window Показать окно консоли - + TCP and μTP TCP и μTP - + Listening Port Порт прослушивания - + Port used for incoming connections: Порт для входящих соединений: - + Set to 0 to let your system pick an unused port Укажите «0» для подбора системой неиспользуемого порта - + Random Случайный - + Use UPnP / NAT-PMP port forwarding from my router Пробрасывать порты с помощью UPnP/NAT-PMP в вашем роутере - + Connections Limits Ограничения соединений - + Maximum number of connections per torrent: Максимум соединений на торрент: - + Global maximum number of connections: Общее ограничение числа соединений: - + Maximum number of upload slots per torrent: Максимум слотов отдачи на торрент: - + Global maximum number of upload slots: Общее ограничение слотов отдачи: - + Proxy Server Прокси-сервер - + Type: Тип: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Хост: - - - + + + Port: Порт: - + Otherwise, the proxy server is only used for tracker connections Иначе прокси-сервер используется только для соединения с трекерами - + Use proxy for peer connections Использовать прокси для соединения с пирами - + A&uthentication &Аутентификация - Info: The password is saved unencrypted - Примечание: пароль хранится в нешифрованном виде + Примечание: пароль хранится в нешифрованном виде - + Filter path (.dat, .p2p, .p2b): Путь фильтров (.dat, .p2p, .p2b): - + Reload the filter Перезагрузить фильтр - + Manually banned IP addresses... Вручную запрещённые IP-адреса… - + Apply to trackers Применять к трекерам - + Global Rate Limits Общие ограничения скорости - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s КБ/с - - + + Upload: Отдача: - - + + Download: Загрузка: - + Alternative Rate Limits Особые ограничения скорости - + Start time Время начала - + End time Время завершения - + When: Когда: - + Every day Ежедневно - + Weekdays Будни - + Weekends Выходные - + Rate Limits Settings Настройки ограничений скорости - + Apply rate limit to peers on LAN Применять ограничения скорости к локальным пирам - + Apply rate limit to transport overhead Применять ограничения скорости к служебному трафику - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Если включён «смешанный режим», торрентам I2P также разрешено получать пиров из других источников помимо трекера и подключаться к обычным IP-адресам без обеспечения анонимизации. Это может быть полезно, если пользователь не заинтересован в анонимизации I2P, но хочет подключаться к пирам I2P.</p></body></html> - + Apply rate limit to µTP protocol Применять ограничения скорости к протоколу µTP - + Privacy Конфиденциальность - + Enable DHT (decentralized network) to find more peers Включить DHT (децентрализованную сеть) для поиска пиров - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - Обмен пирами с совместимыми клиентами БитТоррент (µTorrent, Vuze, …) + Обмен пирами с совместимыми клиентами БитТоррент (µTorrent, Vuze…) - + Enable Peer Exchange (PeX) to find more peers Включить обмен пирами (PeX) - + Look for peers on your local network Искать пиров в вашей локальной сети - + Enable Local Peer Discovery to find more peers Включить обнаружение локальных пиров - + Encryption mode: Режим шифрования: - + Require encryption Требовать шифрование - + Disable encryption Отключить шифрование - + Enable when using a proxy or a VPN connection Рекомендуется использовать при подключении через прокси или VPN - + Enable anonymous mode Включить анонимный режим - + Maximum active downloads: Максимум активных загрузок: - + Maximum active uploads: Максимум активных отдач: - + Maximum active torrents: Максимум активных торрентов: - + Do not count slow torrents in these limits Не учитывать медленные торренты в этих ограничениях - + Upload rate threshold: Порог скорости отдачи: - + Download rate threshold: Порог скорости загрузки: - - - - + + + + sec seconds с - + Torrent inactivity timer: Время бездействия торрента: - + then затем - + Use UPnP / NAT-PMP to forward the port from my router Использовать UPnP/NAT-PMP для проброса порта через ваш роутер - + Certificate: Сертификат: - + Key: Ключ: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Сведения о сертификатах</a> - + Change current password Сменить текущий пароль - Use alternative Web UI - Использовать альтернативный веб-интерфейс - - - + Files location: Расположение файлов: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Список альтернативных веб-интерфейсов</a> - + Security Безопасность - + Enable clickjacking protection Включить защиту от кликджекинга - + Enable Cross-Site Request Forgery (CSRF) protection Включить защиту от межсайтовой подделки запроса (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Включить защиту куки (требует HTTPS или соединения с локальным хостом) - + Enable Host header validation Включить проверку заголовка хоста - + Add custom HTTP headers Добавить пользовательские заголовки HTTP - + Header: value pairs, one per line Заголовок: одна пара значений на строку - + Enable reverse proxy support Включить поддержку обратного прокси-сервера - + Trusted proxies list: Список доверенных прокси-серверов: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Примеры настройки обратного прокси</a> - + Service: Служба: - + Register Регистрация - + Domain name: Доменное имя: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! После включения этих настроек вы можете <strong>безвозвратно потерять</strong> свои торрент-файлы! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog По включении второго параметра («Удалять торрент-файл при отмене добавления») торрент-файл <strong>будет удалён,</strong> даже если вы нажмёте «<strong>Отмена</strong>» в окне «Добавить торрент» @@ -7520,12 +7478,12 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но Выбор файла оболочки qBittorrent - + Choose Alternative UI files location Использовать расположение файлов альтернативного интерфейса - + Supported parameters (case sensitive): Поддерживаемые параметры (с учётом регистра): @@ -7545,183 +7503,183 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но Отключено из-за сбоя при обнаружении наличия трея - + No stop condition is set. Без условия остановки. - + Torrent will stop after metadata is received. Торрент остановится по получении метаданных. - + Torrent will stop after files are initially checked. Торрент остановится после первичной проверки файлов. - + This will also download metadata if it wasn't there initially. Это также позволит загрузить метаданные, если их изначально там не было. - + %N: Torrent name %N: Имя торрента - + %L: Category %L: Категория - + %F: Content path (same as root path for multifile torrent) %F: Папка содержимого (или корневая папка для торрентов с множеством файлов) - + %R: Root path (first torrent subdirectory path) %R: Корневая папка (главный путь для подкаталога торрента) - + %D: Save path %D: Путь сохранения - + %C: Number of files %C: Количество файлов - + %Z: Torrent size (bytes) %Z: Размер торрента (в байтах) - + %T: Current tracker %T: Текущий трекер - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Подсказка: включите параметр в кавычки для защиты от обрезки на пробелах (пример, "%N") - + Test email - + Проверить эл. почту - + Attempted to send email. Check your inbox to confirm success - + Попытка отправить электронное письмо. Проверьте свой почтовый ящик для подтверждения успешности - + (None) (Нет) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Торрент будет считаться медленным, если его скорость загрузки или отдачи будет меньше указанных значений на «Время бездействия торрента» - + Certificate Сертификат - + Select certificate Выбрать сертификат - + Private key Закрытый ключ - + Select private key Выбрать закрытый ключ - + WebUI configuration failed. Reason: %1 Конфигурация веб-интерфейса не удалась. Причина: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 лучше совместим с тёмным режимом Windows - + System System default Qt style - + Система - + Let Qt decide the style for this system - + Разрешить Qt подбирать стиль для этой системы - + Dark Dark color scheme - + Тёмная - + Light Light color scheme - + Светлая - + System System color scheme - + Система - + Select folder to monitor Выберите папку для наблюдения - + Adding entry failed Добавление записи не удалось - + The WebUI username must be at least 3 characters long. Имя пользователя веб-интерфейса должно быть не менее 3 символов. - + The WebUI password must be at least 6 characters long. Пароль веб-интерфейса должен быть не менее 6 символов. - + Location Error Ошибка расположения - - + + Choose export directory Выберите папку для экспорта - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Если эти параметры включены, qBittorrent будет <strong>удалять</strong> торрент-файлы после их успешного (первый параметр) или неуспешного (второй параметр) добавления в очередь загрузок. Это применяется <strong>не только для</strong> файлов, добавленных через меню «Добавить торрент», но и для открытых через <strong>файловую ассоциацию</strong> @@ -7731,69 +7689,69 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но Файл темы оболочки qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Метки (разделяются запятыми) - + %I: Info hash v1 (or '-' if unavailable) %I: Инфо-хеш v1 (или «-» если недоступно) - + %J: Info hash v2 (or '-' if unavailable) %J: Инфо-хеш v2 (или «-» если недоступно) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ИД торрента (инфо-хеш sha-1 для торрента v1 или усечённый инфо-хеш sha-256 для торрента v2/гибрида) - - + + Choose a save directory Выберите папку сохранения - + Torrents that have metadata initially will be added as stopped. Торренты, изначально содержащие метаданные, будут добавлены в остановленном состоянии. - + Choose an IP filter file Укажите файл IP-фильтра - + All supported filters Все поддерживаемые фильтры - + The alternative WebUI files location cannot be blank. Расположение файлов альтернативного веб-интерфейса не может быть пустым. - + Parsing error Ошибка разбора - + Failed to parse the provided IP filter Не удалось разобрать предоставленный IP-фильтр - + Successfully refreshed Успешное обновление - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Предоставленный IP-фильтр успешно разобран: применено %1 правил. @@ -7804,18 +7762,18 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но Настройки - + Time Error Ошибка времени - + The start time and the end time can't be the same. Время начала и завершения не может быть одинаковым. - - + + Length Error Ошибка размера @@ -7900,169 +7858,169 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но Peer is using NAT hole punching - + Пир использует пробивку отверстий NAT PeerListWidget - + Country/Region Страна/регион - + IP/Address IP/адрес - + Port Порт - + Flags Флаги - + Connection Соединение - + Client i.e.: Client application Клиент - + Peer ID Client i.e.: Client resolved from Peer ID ИД клиента - + Progress i.e: % downloaded Прогресс - + Down Speed i.e: Download speed Загрузка - + Up Speed i.e: Upload speed Отдача - + Downloaded i.e: total data downloaded Загружено - + Uploaded i.e: total data uploaded Отдано - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Годность - + Files i.e. files that are being downloaded right now Файлы - + Column visibility Отображение столбцов - + Resize columns Подогнать столбцы - + Resize all non-hidden columns to the size of their contents Подогнать все нескрытые столбцы к размеру их содержимого - + Add peers... Добавить пиров… - - + + Adding peers Добавление пиров - + Some peers cannot be added. Check the Log for details. Некоторых пиров нельзя добавить. Смотрите журнал для подробностей. - + Peers are added to this torrent. Пиры добавлены к этому торренту. - - + + Ban peer permanently Запретить пира навсегда - + Cannot add peers to a private torrent Нельзя добавить пиров в частный торрент - + Cannot add peers when the torrent is checking Невозможно добавить пиров, пока торрент проверяется - + Cannot add peers when the torrent is queued Невозможно добавить пиров, пока торрент в очереди - + No peer was selected Нет выбранных пиров - + Are you sure you want to permanently ban the selected peers? Уверены, что хотите навсегда заблокировать выбранных пиров? - + Peer "%1" is manually banned Пир «%1» заблокирован вручную - + N/A Н/Д - + Copy IP:port Копировать IP:порт @@ -8344,34 +8302,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent активен + qBittorrent активен PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Управление питанием нашло подходящий интерфейс D-Bus. Интерфейс: %1 + Управление питанием нашло подходящий интерфейс D-Bus. Интерфейс: %1 - Power management error. Did not found suitable D-Bus interface. - Ошибка управления питанием. Не найден подходящий интерфейс D-Bus. + Ошибка управления питанием. Не найден подходящий интерфейс D-Bus. - - - Power management error. Action: %1. Error: %2 - Ошибка управления питанием. Действие: %1. Ошибка: %2 + Ошибка управления питанием. Действие: %1. Ошибка: %2 - Power management unexpected error. State: %1. Error: %2 - Непредвиденная ошибка управления питанием. Состояние: %1. Ошибка: %2 + Непредвиденная ошибка управления питанием. Состояние: %1. Ошибка: %2 @@ -8615,12 +8566,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Рейтинг / время работы (в месяцах), показывает востребованность торрента Popularity: - + Спрос: @@ -8655,7 +8606,7 @@ Those plugins were disabled. Private: - + Частный: @@ -8663,153 +8614,124 @@ Those plugins were disabled. Путь сохранения: - + Never Никогда - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 × %2 (есть %3) - - + + %1 (%2 this session) %1 (%2 за сеанс) - - + + N/A Н/Д - + Yes - Да + Да - + No - Нет + Нет - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (раздаётся %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 макс.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (всего %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (сред. %2) - + Add web seed Add HTTP source - + Добавить веб-сида - + Add web seed: - + Добавить веб-сида: - - + + This web seed is already in the list. - + Этот веб-сид уже есть в списке. - New Web seed - Новый веб-сид - - - Remove Web seed - Удалить веб-сида - - - Copy Web seed URL - Копировать адрес веб-сида - - - Edit Web seed URL - Править адрес веб-сида - - - + Filter files... Фильтр файлов… - + Add web seed... - + Добавить веб-сида… - + Remove web seed - + Удалить веб-сида - + Copy web seed URL - + Копировать адрес веб-сида - + Edit web seed URL... - + Изменить адрес веб-сида - + Speed graphs are disabled Графики скорости отключены - + You can enable it in Advanced Options Вы можете включить их в расширенных параметрах - New URL seed - New HTTP source - Новый адрес сида - - - New URL seed: - Новый адрес сида: - - - This URL seed is already in the list. - Этот адрес сида уже есть в списке. - - - + Web seed editing Правка веб-сида - + Web seed URL: Адрес веб-сида: @@ -8817,33 +8739,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Неверный формат данных. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Не удалось сохранить данные Автозагрузчика RSS из %1. Ошибка: %2 - + Invalid data format Неверный формат данных - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS-статья «%1» принята правилом «%2». Попытка добавить торрент… - + Failed to read RSS AutoDownloader rules. %1 Не удалось прочесть правила Автозагрузчика RSS. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Не удалось загрузить правила Автозагрузчика RSS. Причина: %1 @@ -8851,22 +8773,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Не удалось загрузить RSS-ленту с «%1». Причина: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-лента с «%1» обновлена. Добавлено %2 новых статей. - + Failed to parse RSS feed at '%1'. Reason: %2 Не удалось разобрать RSS-ленту с «%1». Причина: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-лента с «%1» успешно загружена. Запущен её разбор. @@ -8915,12 +8837,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Не удалось сохранить настройки сеанса RSS. Файл: «%1». Ошибка: «%2» - + Couldn't save RSS session data. File: "%1". Error: "%2" Не удалось сохранить данные сеанса RSS. Файл: «%1». Ошибка: «%2» @@ -8942,76 +8864,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. Элемент не существует: %1. - Couldn't move folder into itself. - Не удалось переместить папку в саму себя. + Не удалось переместить папку в саму себя. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Невозможно удалить корневую папку. - + Failed to read RSS session data. %1 Не удалось прочесть данные сеанса RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Не удалось разобрать данные сеанса RSS. Файл: «%1». Ошибка: «%2» - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Не удалось загрузить данные сеанса RSS. Файл: «%1». Ошибка: «неверный формат данных». - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Не удалось загрузить RSS-ленту. Лента: «%1». Причина: Требуется адрес. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Не удалось загрузить RSS-ленту. Лента: «%1». Причина: Неверный UID. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Обнаружен повтор RSS-ленты. UID: «%1». Ошибка: Похоже, что конфигурация повреждена. - + Couldn't load RSS item. Item: "%1". Invalid data format. Не удалось загрузить элемент RSS. Элемент: «%1». Неверный формат данных. - + Corrupted RSS list, not loading it. Повреждён список RSS, он не будет загружен. - + Incorrect RSS Item path: %1. Неверный путь элемента RSS: %1. - + RSS item with given path already exists: %1. RSS-лента с указанным путём уже существует: %1. - + Parent folder doesn't exist: %1. Родительская папка не существует: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Лента не существует: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Адрес: + + + + Refresh interval: + + + + + sec + с + + + + Default + Стандартно + + RSSWidget @@ -9111,78 +9078,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Править адрес ленты… + Править адрес ленты… - Edit feed URL - Править адрес ленты + Править адрес ленты - + Please choose a folder name Пожалуйста, выберите имя папки - + Folder name: Имя папки: - + New folder Новая папка - - Please type a RSS feed URL - Пожалуйста, введите адрес RSS-ленты + Пожалуйста, введите адрес RSS-ленты - - Feed URL: - Адрес ленты: + Адрес ленты: - + Deletion confirmation Подтверждение удаления - + Are you sure you want to delete the selected RSS feeds? Уверены, что хотите удалить выбранные RSS-ленты? - + Please choose a new name for this RSS feed Пожалуйста, укажите новое имя для этой RSS-ленты - + New feed name: Новое имя ленты: - + Rename failed Переименование не удалось - + Date: Дата: - + Feed: Лента: - + Author: Автор: @@ -9319,10 +9285,6 @@ Those plugins were disabled. i.e: Number of partial sources Личи - - Search engine - Поисковик - Filter search results... @@ -9412,17 +9374,17 @@ Those plugins were disabled. Engine - + Движок Engine URL - + Адрес движка Published On - + Дата публикации @@ -9443,104 +9405,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Неизвестный формат файла поискового плагина. - + Plugin already at version %1, which is greater than %2 Плагин уже версии %1, которая выше, чем %2 - + A more recent version of this plugin is already installed. Уже установлена самая последняя версия этого плагина. - + Plugin %1 is not supported. Плагин %1 не поддерживается. - - + + Plugin is not supported. Плагин не поддерживается. - + Plugin %1 has been successfully updated. Плагин %1 был успешно обновлён. - + All categories Все категории - + Movies Фильмы - + TV shows Телепередачи - + Music Музыка - + Games Игры - + Anime Аниме - + Software Программы - + Pictures Изображения - + Books Книги - + Update server is temporarily unavailable. %1 Сервер обновлений временно недоступен. %1 - - + + Failed to download the plugin file. %1 Не удалось загрузить файл плагина. %1 - + Plugin "%1" is outdated, updating to version %2 Плагин «%1» устарел, обновление до версии %2 - + Incorrect update info received for %1 out of %2 plugins. Получена неверная информация об обновлении для %1 из %2 плагинов. - + Search plugin '%1' contains invalid version string ('%2') Поисковый плагин «%1» содержит недопустимую строку версии («%2») @@ -9566,137 +9528,129 @@ Click the "Search plugins..." button at the bottom right of the window Поисковые плагины… - + A phrase to search for. Фраза для поиска. - + Spaces in a search term may be protected by double quotes. Пробелы в поисковом запросе можно защитить двойными кавычками. - + Example: Search phrase example Пример: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b> для поиска <b>foo bar</b> - + All plugins Все плагины - + Only enabled Только включённые - - + + Invalid data format. - Неверный формат данных. + Неверный формат данных. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b> для поиска <b>foo</b> и <b>bar</b> - + Refresh - + Обновить - + Close tab Закрыть вкладку - + Close all tabs Закрыть все вкладки - + Select... Выбрать… - - + + Search Engine Поисковик - - + + Please install Python to use the Search Engine. Пожалуйста, установите Python для использования поисковика. - + Empty search pattern Пустой шаблон поиска - + Please type a search pattern first Пожалуйста, задайте сначала шаблон поиска - + Stop Стоп - - Search has finished - Поиск завершён - - - Search has failed - Поиск не удался - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Не удалось загрузить сохранённое состояние интерфейса поиска. Файл: «%1». Ошибка: «%2» - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Не удалось загрузить сохранённые результаты поиска. Вкладка: «%1». Файл: «%2». Ошибка: «%3» - + Failed to save Search UI state. File: "%1". Error: "%2" - + Не удалось сохранить состояние интерфейса поиска. Файл: «%1». Ошибка: «%2» - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Не удалось сохранить результаты поиска. Вкладка: «%1». Файл: «%2». Ошибка: «%3» - + Failed to load Search UI history. File: "%1". Error: "%2" - + Не удалось загрузить историю интерфейса поиска. Файл: «%1». Ошибка: «%2» - + Failed to save search history. File: "%1". Error: "%2" - + Не удалось сохранить историю поиска. Файл: «%1». Ошибка: «%2» @@ -10092,67 +10046,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Состояние связи: - - + + No direct connections. This may indicate network configuration problems. Нет прямых соединений. Причиной этому могут быть проблемы в настройках сети. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Внешний IP: Н/Д + + + + DHT: %1 nodes Узлы DHT: %1 - + qBittorrent needs to be restarted! qBittorrent надо перезапустить! - - + + Connection Status: Состояние связи: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Отключён. Обычно это означает, что qBittorrent не смог прослушать выбранный порт для входящих соединений. - + Online В сети - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Внешние IP: %1, %2 + + + + External IP: %1%2 + Внешний IP: %1%2 + + + Click to switch to alternative speed limits Щелчок для переключения на особые ограничения скорости - + Click to switch to regular speed limits Щелчок для переключения на общие ограничения скорости @@ -10180,23 +10144,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Завершены (0) - - Resumed (0) - Возобновлены (0) - - - Paused (0) - Остановлены (0) - Running (0) - + Запущены (0) Stopped (0) - + Остановлены (0) @@ -10261,49 +10217,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + Запущены (%1) Stopped (%1) - + Остановлены (%1) Start torrents - + Запустить торренты Stop torrents - - - - Paused (%1) - Остановлены (%1) + Остановить торренты Moving (%1) Перемещаются (%1) - - Resume torrents - Возобновить торренты - - - Pause torrents - Остановить торренты - Remove torrents Удалить торренты - - Resumed (%1) - Возобновлены (%1) - Active (%1) @@ -10375,32 +10315,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Удалить пустые метки - - Resume torrents - Возобновить торренты - - - Pause torrents - Остановить торренты - Remove torrents Удалить торренты - - New Tag - Новая метка - Start torrents - + Запустить торренты Stop torrents - + Остановить торренты @@ -10410,7 +10338,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + Добавить метку @@ -10727,17 +10655,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Слишком много активных задач - + Torrent creation is still unfinished. Создание торрента ещё не завершено. - + Torrent creation failed. Не удалось создать торрент. @@ -10989,17 +10917,6 @@ Please choose a different name and try again. Наблюдение папки: «%1» - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Не удалось выделить память при чтении файла. Файл: «%1». Ошибка: «%2» - - - Invalid metadata - Недопустимые метаданные - - TorrentOptionsDialog @@ -11035,11 +10952,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Ограничения скорости торрента + Ограничения обмена торрентами @@ -11055,7 +10968,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Ограничения скорости торрентов @@ -11073,34 +10986,6 @@ Please choose a different name and try again. Upload: Отдача: - - Torrent share limits - Ограничения раздачи торрента - - - Use global share limit - Следовать общему ограничению раздачи - - - Set no share limit - Снять ограничение раздачи - - - Set share limit to - Задать ограничение раздачи - - - ratio - рейтинг - - - total minutes - всего минут - - - inactive minutes - минут бездействия - Disable DHT for this torrent @@ -11142,14 +11027,6 @@ Please choose a different name and try again. Not applicable to private torrents Не применяется к частным торрентам - - No share limit method selected - Не выбран метод ограничения раздачи - - - Please select a limit method first - Пожалуйста, выберите сначала метод ограничения - TorrentShareLimitsWidget @@ -11199,27 +11076,27 @@ Please choose a different name and try again. Action when the limit is reached: - + Действие по достижении ограничения: Stop torrent - + Остановить торрент Remove torrent - Удалить торрент + Удалить торрент Remove torrent and its content - + Удалить торрент и его содержимое Enable super seeding for torrent - Включить режим суперсида для торрента + Включить режим суперсида для торрента @@ -11234,14 +11111,10 @@ Please choose a different name and try again. Torrent Tags Метки торрентов - - New Tag - Новая метка - Add tag - + Добавить метку @@ -11272,90 +11145,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Ошибка: «%1» не является допустимым торрент-файлом. - + Priority must be an integer Приоритет должен быть целым числом - + Priority is not valid Приоритет недействителен - + Torrent's metadata has not yet downloaded Метаданные торрента ещё не загружены - + File IDs must be integers Идентификаторы файлов должны быть целыми числами - + File ID is not valid Неверный идентификатор файла - - - - + + + + Torrent queueing must be enabled Очерёдность торрентов должна быть включена - - + + Save path cannot be empty Путь сохранения не может быть пуст - - + + Cannot create target directory Не удаётся создать целевой каталог - - + + Category cannot be empty Категория не может быть пуста - + Unable to create category Не удалось создать категорию - + Unable to edit category Не удалось изменить категорию - + Unable to export torrent file. Error: %1 Не удалось экспортировать торрент-файл. Ошибка: «%1» - + Cannot make save path Невозможно создать путь сохранения "%1" is not a valid URL - + «%1» — недопустимый URL-адрес URL scheme must be one of [%1] - + Допустимы только следующие схемы URL-адресов: [%1] @@ -11363,39 +11236,39 @@ Please choose a different name and try again. параметр «sort» неверен - + "%1" is not an existing URL - + «%1» — несуществующий URL-адрес - + "%1" is not a valid file index. «%1» — недопустимый индекс файла. - + Index %1 is out of bounds. Индекс %1 вне допустимых границ. - - + + Cannot write to directory Запись в папку невозможна - + WebUI Set location: moving "%1", from "%2" to "%3" Веб-интерфейс, перемещение: «%1» перемещается из «%2» в «%3» - + Incorrect torrent name Неправильное имя торрента - - + + Incorrect category name Неправильное имя категории @@ -11478,45 +11351,33 @@ Please choose a different name and try again. Invalid state! - + Недопустимое состояние! URL/Announce Endpoint - + Получатель ссылки/анонса BT Protocol - + Протокол БТ Next Announce - + След. анонс Min Announce - - - - Invalid status! - Неверное состояние! - - - URL/Announce endpoint - Получатель ссылки/анонса + Минимум анонса Tier Уровень - - Protocol - Протокол - Status @@ -11547,18 +11408,6 @@ Please choose a different name and try again. Message Сообщение - - Next announce - След. анонс - - - Min announce - Минимум анонса - - - v%1 - v%1 - TrackerListWidget @@ -11568,73 +11417,73 @@ Please choose a different name and try again. Это частный торрент - + Tracker editing Изменение трекера - + Tracker URL: Адрес трекера: - - + + Tracker editing failed Не удалось изменить трекер - + The tracker URL entered is invalid. Введён недопустимый адрес трекера. - + The tracker URL already exists. Трекер с таким адресом уже существует. - + Edit tracker URL... Править адрес трекера… - + Remove tracker Удалить трекер - + Copy tracker URL Копировать адрес трекера - + Force reannounce to selected trackers Повторить анонс на выбранные трекеры - + Force reannounce to all trackers Повторить анонс на все трекеры - + Resize columns Подогнать столбцы - + Resize all non-hidden columns to the size of their contents Подогнать все нескрытые столбцы к размеру их содержимого - + Add trackers... Добавить трекеры… - + Column visibility Отображение столбцов @@ -11717,20 +11566,12 @@ Please choose a different name and try again. Start torrents - + Запустить торренты Stop torrents - - - - Resume torrents - Возобновить - - - Pause torrents - Остановить торренты + Остановить торренты @@ -11854,10 +11695,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Сверка данных возобновления - - Paused - Остановлен - Completed @@ -11898,21 +11735,16 @@ Please choose a different name and try again. % Done Прогресс - - Status - Torrent status (e.g. downloading, seeding, paused) - Состояние - Stopped - + Остановлено Status Torrent status (e.g. downloading, seeding, stopped) - Состояние + Состояние @@ -11947,7 +11779,7 @@ Please choose a different name and try again. Popularity - + Спрос @@ -12028,22 +11860,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Время работы + Время работы Yes - Да + Да No - Нет - - - Time Active - Time (duration) the torrent is active (not paused) - Время работы + Нет @@ -12115,12 +11942,12 @@ Please choose a different name and try again. Private Flags private torrents - + Частный Ratio / Time Active (in months), indicates how popular the torrent is - + Рейтинг / время работы (в месяцах), показывает востребованность торрента @@ -12145,358 +11972,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Отображение столбцов - + Recheck confirmation Подтверждение проверки - + Are you sure you want to recheck the selected torrent(s)? Уверены, что хотите перепроверить выбранные торренты? - + Rename Переименовать - + New name: Новое имя: - + Choose save path Выберите путь сохранения - Confirm pause - Подтвердить приостановку - - - Would you like to pause all torrents? - Хотите приостановить все торренты? - - - Confirm resume - Подтвердить возобновление - - - Would you like to resume all torrents? - Хотите возобновить все торренты? - - - + Unable to preview Просмотр не удался - + The selected torrent "%1" does not contain previewable files Выбранный торрент «%1» не содержит файлов, подходящих для просмотра - + Resize columns Подогнать столбцы - + Resize all non-hidden columns to the size of their contents Подогнать все нескрытые столбцы к размеру их содержимого - + Enable automatic torrent management Включить автоматическое управление торрентами - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Уверены, что хотите включить автоматическое управление для выбранных торрентов? Они могут переместиться. - Add Tags - Добавить метки - - - + Choose folder to save exported .torrent files Выберите папку для экспорта файлов .torrent - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Экспорт файла .torrent не удался. Торрент: «%1». Путь сохранения: «%2». Причина: «%3» - + A file with the same name already exists Файл с таким именем уже существует - + Export .torrent file error Ошибка экспорта файла .torrent - + Remove All Tags Удалить все метки - + Remove all tags from selected torrents? Удалить все метки для выбранных торрентов? - + Comma-separated tags: Метки разделяются запятыми: - + Invalid tag Недопустимая метка - + Tag name: '%1' is invalid Имя метки «%1» недопустимо - &Resume - Resume/start the torrent - &Возобновить - - - &Pause - Pause the torrent - &Остановить - - - Force Resu&me - Force Resume/start the torrent - Возобновит&ь принудительно - - - + Pre&view file... Прос&мотр файла… - + Torrent &options... Параметры т&оррента… - + 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 loc&ation... Пере&местить… - + Force rec&heck Прове&рить принудительно - + Force r&eannounce Анонсировать прин&удительно - + &Magnet link Магнит-сс&ылку - + Torrent &ID ИД то&ррента - + &Comment Ко&мментарий - + &Name &Имя - + Info &hash v1 Ин&фо-хеш v1 - + Info h&ash v2 Инфо-&хеш v2 - + Re&name... Переименова&ть… - + Edit trac&kers... Пра&вить трекеры… - + E&xport .torrent... &Экспорт в файл .torrent… - + Categor&y Кате&гория - + &New... New category... &Новая… - + &Reset Reset category &Сброс - + Ta&gs Ме&тки - + &Add... Add / assign multiple tags... &Добавить… - + &Remove All Remove all tags &Удалить все - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Нельзя принудительно повторить анонс, если торрент остановлен, в очереди, с ошибкой или проверяется - + &Queue &Очередь - + &Copy Ко&пировать - + Exported torrent is not necessarily the same as the imported Экспортируемый торрент не обязательно будет таким же, как импортированный - + Download in sequential order Загружать последовательно - + Add tags - + Добавить метки - + Errors occurred when exporting .torrent files. Check execution log for details. Возникли ошибки при экспорте файлов .torrent. Смотрите подробности в журнале работы. - + &Start Resume/start the torrent - + Зап&устить - + Sto&p Stop the torrent - + &Стоп - + Force Star&t Force Resume/start the torrent - + Запустить принудит&ельно - + &Remove Remove the torrent &Удалить - + Download first and last pieces first Загружать сперва крайние части - + Automatic Torrent Management Автоматическое управление - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Автоматический режим подбирает настройки торрента (напр., путь сохранения) на основе его категории - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Нельзя принудительно повторить анонс, если торрент остановлен, в очереди, с ошибкой или проверяется - - - + Super seeding mode Режим суперсида @@ -12572,7 +12360,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + Не удалось установить стиль приложения. Неизвестный стиль: «%1» @@ -12628,32 +12416,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Найден исполняемый файл Python. Имя: «%1». Версия: «%2» - + Failed to find Python executable. Path: "%1". Не удалось найти исполняемый файл Python. Путь: «%1». - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Не удалось найти исполняемый файл «python3» в переменной среды PATH. PATH: «%1» - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Не удалось найти исполняемый файл «python» в переменной среды PATH. PATH: «%1» - + Failed to find `python` executable in Windows Registry. Не удалось найти исполняемый файл «python» в реестре Windows. - + Failed to find Python executable Не удалось найти исполняемый файл Python @@ -12745,52 +12533,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Указано недопустимое имя файла куки сеанса: «%1». Использовано стандартное. - + Unacceptable file type, only regular file is allowed. Недопустимый тип файла, разрешены только стандартные файлы. - + Symlinks inside alternative UI folder are forbidden. Символические ссылки внутри папки альтернативного интерфейса запрещены. - + Using built-in WebUI. Используется встроенный веб-интерфейс. - + Using custom WebUI. Location: "%1". Используется пользовательский веб-интерфейс. Расположение: «%1». - + WebUI translation for selected locale (%1) has been successfully loaded. Перевод веб-интерфейса для выбранного языка (%1) успешно подгружен. - + Couldn't load WebUI translation for selected locale (%1). Не удалось подгрузить перевод веб-интерфейса для выбранного языка (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Пропущен разделитель «:» в пользовательском заголовке HTTP веб-интерфейса: «%1» - + Web server error. %1 Ошибка веб-сервера. %1 - + Web server error. Unknown error. Ошибка веб-сервера. Неизвестная ошибка. @@ -12848,7 +12636,7 @@ Please choose a different name and try again. Unknown error - Неизвестная ошибка + Неизвестная ошибка diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index 6f7555165..a28d6d340 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -170,10 +170,6 @@ Never show again Už nikdy nezobrazovať - - Torrent settings - Nastavenia torrentu - Set as default category @@ -235,26 +231,26 @@ Podmienka pre zastavenie: - - + + None Žiadna - - + + Metadata received Metadáta obdržané - + Torrents that have metadata initially will be added as stopped. 71%match Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. - + Files checked Súbory skontrolované @@ -369,112 +365,112 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené.Uložiť ako .torrent súbor... - + I/O Error Chyba I/O - + Not Available This comment is unavailable Nie je k dispozícii - + Not Available This date is unavailable Nie je k dispozícii - + Not available Nie je k dispozícii - + Magnet link Magnet link - + Retrieving metadata... Získavajú sa metadáta... - - + + Choose save path Vyberte cestu pre uloženie - + No stop condition is set. Žiadna podmienka pre zastavenie nie je nastavená. - + Torrent will stop after metadata is received. Torrent sa zastaví po obdržaní metadát. - + Torrent will stop after files are initially checked. Torrent sa zastaví po iniciálnej kontrole súborov. - + This will also download metadata if it wasn't there initially. Toto nastavenie taktiež stiahne metadáta, ak nie sú iniciálne prítomné. - + N/A nie je k dispozícií - + %1 (Free space on disk: %2) %1 (Volné miesto na disku: %2) - + Not available This size is unavailable. Nie je k dispozícii - + Torrent file (*%1) Torrent súbor (*%1) - + Save as torrent file Uložiť ako .torrent súbor - + Couldn't export torrent metadata file '%1'. Reason: %2. Nebolo možné exportovať súbor '%1' metadáta torrentu. Dôvod: %2. - + Cannot create v2 torrent until its data is fully downloaded. Nie je možné vytvoriť v2 torrent, kým nie sú jeho dáta úplne stiahnuté. - + Filter files... Filtruj súbory... - + Parsing metadata... Spracovávajú sa metadáta... - + Metadata retrieval complete Získavanie metadát dokončené @@ -482,35 +478,39 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. AddTorrentManager - + Downloading torrent... Source: "%1" Torrent sa sťahuje... Zdroj: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Nepodarilo sa pridať torrent. Zdroj: "%1". Dôvod: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Bol zistený pokus o pridanie duplicitného torrentu. Zdroj: %1. Exitujúci torrent: %2. Výsledok: %3 + Bol zistený pokus o pridanie duplicitného torrentu. Zdroj: %1. Exitujúci torrent: %2. Výsledok: %3 - + Merging of trackers is disabled Zlúčenie trackerov nie je povolené - + Trackers cannot be merged because it is a private torrent Trackery nemožno zlúčiť, pretože je to súkromný torrent - + Trackers are merged from new source Trackery sú zlúčené z nového zdroja + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -673,706 +673,717 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Znovu skontrolovať torrenty po dokončení - - + + ms milliseconds ms - + Setting Nastavenie - + Value Value set for this setting Hodnota - + (disabled) (vypnuté) - + (auto) (auto) - - + + min minutes min - + All addresses Všetky adresy - + qBittorrent Section Sekcia qBittorent - - + + Open documentation Otvoriť dokumentáciu - + All IPv4 addresses Všetky adresy IPv4 - + All IPv6 addresses Všetky adresy IPv6 - + libtorrent Section Sekcia libtorrent - + Fastresume files Súbory rýchleho obnovenia - + SQLite database (experimental) SQLite databáza (experimentálne) - + Resume data storage type (requires restart) Obnoviť typ úložiska dát (vyžadovaný reštart) - + Normal Normálne - + Below normal Pod normálom - + Medium Stredná - + Low Malá - + Very low Veľmi malé - + Physical memory (RAM) usage limit Limit využitia fyzickej pamäti (RAM) - + Asynchronous I/O threads Asynchrónne I/O vlákna - + Hashing threads Hašovacie vlákna - + File pool size Veľkosť súborového zásobníku - + Outstanding memory when checking torrents Mimoriadna pamäť pri kontrole torrentov - + Disk cache Disková vyrovnávacia pamäť - - - - + + + + + s seconds s - + Disk cache expiry interval Interval vypršania platnosti diskovej vyrovnávacej pamäte - + Disk queue size Veľkosť diskovej fronty - - + + Enable OS cache Zapnúť vyrovnávaciu pamäť systému - + Coalesce reads & writes Zlúčenie zapisovacích & čítacích operácií - + Use piece extent affinity Použite afinitu k dielikovému rozsahu - + Send upload piece suggestions Doporučenie pre odosielanie častí uploadu - - - - - + + + + + 0 (disabled) 0 (vypnuté) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Interval ukladania dát obnovenia [0: vypnuté] - + Outgoing ports (Min) [0: disabled] Odchádzajúce porty (Min) [0: vypnuté] - + Outgoing ports (Max) [0: disabled] Odchádzajúce porty (Max) [0: vypnuté] - + 0 (permanent lease) 0 (trvalé prepožičanie) - + UPnP lease duration [0: permanent lease] Doba UPnP prepožičania [0: trvalé prepožičanie] - + Stop tracker timeout [0: disabled] Časový limit pre zastavenie trackera [0: vypnutý] - + Notification timeout [0: infinite, -1: system default] Časový limit oznámenia [0: nekonečno, -1: predvolený systémom] - + Maximum outstanding requests to a single peer Maximum nespracovaných požiadaviek na jedeného peera - - - - - + + + + + KiB KiB - + (infinite) (nekonečno) - + (system default) (predvolený systémom) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux Táto voľba je na Linuxe menej efektívna - + Process memory priority Priorita pamäti procesu - + Bdecode depth limit Bdecode obmedzenie hĺbky - + Bdecode token limit Bdecode obmedzenie tokenu - + Default Predvolený - + Memory mapped files Súbory namapované v pamäti - + POSIX-compliant POSIX-vyhovujúci - + Simple pread/pwrite - + Disk IO type (requires restart) Disk IO typ (vyžaduje reštart) - - + + Disable OS cache Vypnúť vyrovnávaciu pamäť operačného systému - + Disk IO read mode Režim IO čítania disku - + Write-through Prepisovanie - + Disk IO write mode Režim IO zapisovania disku - + Send buffer watermark Odoslať watermark bufferu - + Send buffer low watermark Odoslať buffer-low watermark - + Send buffer watermark factor Odoslať buffer watermark faktor - + Outgoing connections per second Odchádzajúce pripojenia za sekundu - - + + 0 (system default) 0 (predvolený systémom) - + Socket send buffer size [0: system default] Veľkosť send bufferu pre socket [0: predvolený systémom] - + Socket receive buffer size [0: system default] Veľkosť receive bufferu pre socket [0: predvolený systémom] - + Socket backlog size Velikost nevykonaného soketu - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit Limit veľkosti .torrent súboru - + Type of service (ToS) for connections to peers Typ služby (ToS) pre pripojenie k rovesníkom - + Prefer TCP Uprednostniť TCP - + Peer proportional (throttles TCP) Peer proportional (obmedziť TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Podporovať domény obsahujúce špeciálne znaky (IDN) - + Allow multiple connections from the same IP address Povoliť viacej spojení z rovnakej IP adresy - + Validate HTTPS tracker certificates Overovať HTTPS cerifikáty trackerov - + Server-side request forgery (SSRF) mitigation Zamedzenie falšovania požiadaviek na strane servera (SSRF) - + Disallow connection to peers on privileged ports Nepovoliť pripojenie k peerom na privilegovaných portoch - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates Riadi interval aktualizácie vnútorného stavu, ktorý zase ovplyvní aktualizácie používateľského rozhrania - + Refresh interval Interval obnovenia - + Resolve peer host names Zisťovať sieťové názvy peerov - + IP address reported to trackers (requires restart) IP adresa nahlásená trackerom (vyžaduje reštart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Znovu oznámiť všetkým trackerom pri zmene IP alebo portu - + Enable icons in menus Povoliť ikony v menu - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Zapnúť presmerovanie portu na vstavaný tracker - + Enable quarantine for downloaded files Zapnúť karanténu pre stiahnuté súbory - + Enable Mark-of-the-Web (MOTW) for downloaded files Zapnúť Mark-of-the-Web (MOTW) pre stiahnuté súbory - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) (Automaticky zistiť, ak je prázdne) - + Python executable path (may require restart) Cesta k binárke Pythonu (môže vyžadovať reštart): - + Start BitTorrent session in paused state - + sec seconds - sec + sec - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents Potvrdiť odstránenie trackeru zo všetkých torrentov - + Peer turnover disconnect percentage Percento odpojenia pri peer turnover - + Peer turnover threshold percentage Percento limitu pre peer turnover - + Peer turnover disconnect interval Interval odpojenia pri peer turnover - + Resets to default if empty Vráti pôvodné, ak je prázdne - + DHT bootstrap nodes DHT bootstrap uzly - + I2P inbound quantity I2P prichádzajúce množstvo - + I2P outbound quantity I2P odchádzajúce množstvo - + I2P inbound length I2P prichádzajúca dĺžka - + I2P outbound length I2P odchádzajúca dĺžka - + Display notifications Zobrazovať hlásenia - + Display notifications for added torrents Zobrazovať hlásenia pre pridané torrenty - + Download tracker's favicon Stiahnuť logo trackera - + Save path history length Uložiť dĺžku histórie cesty - + Enable speed graphs Zapnúť graf rýchlosti - + Fixed slots Pevné sloty - + Upload rate based Podľa rýchlosti uploadu - + Upload slots behavior Chovanie upload slotov - + Round-robin Pomerné rozdelenie - + Fastest upload Najrýchlejší upload - + Anti-leech Priorita pre začínajúcich a končiacich leecherov - + Upload choking algorithm Škrtiaci algoritmus pre upload - + Confirm torrent recheck Potvrdenie opätovnej kontroly torrentu - + Confirm removal of all tags Potvrdiť odobranie všetkých značiek - + Always announce to all trackers in a tier Vždy oznamovať všetkým trackerom v triede - + Always announce to all tiers Vždy oznamovať všetkým triedam - + Any interface i.e. Any network interface Akékoľvek rozhranie - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP mixed mode algoritmus - + Resolve peer countries Zisťovať krajinu pôvodu peerov - + Network interface Sieťové rozhranie - + Optional IP address to bind to Voliteľná pridružená IP adresa - + Max concurrent HTTP announces Maximum súbežných HTTP oznámení - + Enable embedded tracker Zapnúť zabudovaný tracker - + Embedded tracker port Port zabudovaného trackera @@ -1404,121 +1415,121 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. Application - + Running in portable mode. Auto detected profile folder at: %1 Spustené v portable režime. Automaticky detekovaný priečinok s profilom: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Detekovaný nadbytočný parameter príkazového riadku: "%1". Portable režim už zahŕna relatívny fastresume. - + Using config directory: %1 Používa sa adresár s konfiguráciou: %1 - + Torrent name: %1 Názov torrentu: %1 - + Torrent size: %1 Veľkosť torrentu: %1 - + Save path: %1 Uložiť do: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent bol stiahnutý za %1. - - + + Thank you for using qBittorrent. Ďakujeme, že používate qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, posielanie oznámenia emailom - + Add torrent failed Nepodarilo sa pridať torrent - + Couldn't add torrent '%1', reason: %2. Nepodarilo sa pridať torrent '%1', dôvod: %2. - + The WebUI administrator username is: %1 Používateľské meno administrátora WebUI rozhrania: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Heslo administrátora WebUI rozhrania nebolo nastavené. Dočasné heslo pre túto reláciu je: %1 - + You should set your own password in program preferences. Mali by ste si nastaviť vlastné heslo vo voľbách programu. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI je vypnuté. Pre zapnutie WebUI upravte konfiguračný súbor ručne. - + Running external program. Torrent: "%1". Command: `%2` Spúšťanie externého programu. Torrent: "%1". Príkaz: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Nepodarilo sa spustiť externý program. Torrent: "%1". Príkaz: `%2` - + Torrent "%1" has finished downloading Sťahovanie torrentu "%1" bolo dokončené - + WebUI will be started shortly after internal preparations. Please wait... WebUI bude zapnuté chvíľu po vnútorných prípravách. Počkajte prosím... - - + + Loading torrents... Načítavanie torrentov... - + E&xit Ukončiť - + I/O Error i.e: Input/Output Error I/O chyba - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1527,110 +1538,110 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. - + Torrent added Torrent pridaný - + '%1' was added. e.g: xxx.avi was added. '%1' bol pridaný. - + Download completed Sťahovanie dokončené - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 sa sputil. ID procesu: %2 - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' bol stiahnutý. - + Information Informácia - + To fix the error, you may need to edit the config file manually. Pre opravenie chyby budete pravdepodobne musieť upraviť konfiguračný súbor ručne. - + To control qBittorrent, access the WebUI at: %1 Pre ovládanie qBittorrentu prejdite na WebUI: %1 - + Exit Ukončiť - + Recursive download confirmation Potvrdenie rekurzívneho sťahovania - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' obsahuje .torrent súbory, chcete ich tiež stiahnúť? - + Never Nikdy - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekurzívne stiahnutie .torrent súboru vrámci torrentu. Zdrojový torrent: "%1". Súbor: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Nepodarilo sa nastaviť limit využitia fyzickej pamäte (RAM). Kód chyby: %1. Správa chyby: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Nepodarilo sa nastaviť pevný limit využitia fyzickej pamäte (RAM). Požadovaná veľkosť: %1. Pevný limit systému: %2. Kód chyby: %3. Správa chyby: "%4" - + qBittorrent termination initiated Ukončenie qBittorrentu bolo zahájené - + qBittorrent is shutting down... qBittorrent sa vypína... - + Saving torrent progress... Ukladá sa priebeh torrentu... - + qBittorrent is now ready to exit qBittorrent je pripravený na ukončenie @@ -1767,263 +1778,263 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty &Exportovať... - + Matches articles based on episode filter. Nájde články podľa filtra epizód. - + Example: Príklad: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match nájde epizódy 2, 5, 8 až 15, 30 a všetky nasledujúce z prvej sezóny - + Episode filter rules: Pravidlá pre filtrovanie epizód: - + Season number is a mandatory non-zero value Číslo sezóny je povinná, nenulová hodnota - + Filter must end with semicolon Filter musí končiť bodkočiarkou - + Three range types for episodes are supported: Tri druhy rozsahov pre epizódy sú podporované: - + Single number: <b>1x25;</b> matches episode 25 of season one Jedno číslo: <b>1x25;</b> zodpovedá epizóde 25 prvej sezóny - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normálny rozsah: <b>1x25-40;</b> zodpovedá epizódam 25 až 40 prvej sezóny - + Episode number is a mandatory positive value Číslo epizódy je povinná pozitívna hodnota - + Rules Pravidlá - + Rules (legacy) Pravidlá (pôvodné) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Neohraničený rozsah: <b>1x25-;</b> zodpovedá epizóde 25 a všetkým nasledujúcim z prvej sezóny a všetkým nasledujúcim - + Last Match: %1 days ago Naposledy nájdené: pred %1 dňami - + Last Match: Unknown Naposledy nájdené: neznáme - + New rule name Nový názov pravidla - + Please type the name of the new download rule. Prosím, napíšte nový názov pre tonto pravidlo sťahovania. - - + + Rule name conflict Konflikt v názvoch pravidel - - + + A rule with this name already exists, please choose another name. Pravidlo s týmto názvom už existuje. Prosím, zvoľte iný názov. - + Are you sure you want to remove the download rule named '%1'? Ste si istý, že chcete odstrániť pravidlo sťahovania s názvom '%1'? - + Are you sure you want to remove the selected download rules? Ste si istý, že chcete odstrániť vybrané pravidlá sťahovania? - + Rule deletion confirmation Potvrdenie zmazania pravidla - + Invalid action Neplatná operácia - + The list is empty, there is nothing to export. Zoznam je prázdny, niet čo exportovať. - + Export RSS rules Export RSS pravidiel - + I/O Error I/O chyba - + Failed to create the destination file. Reason: %1 Nepodarilo sa vytvoriť cieľový súbor. Dôvod: %1 - + Import RSS rules Import RSS pravidiel - + Failed to import the selected rules file. Reason: %1 Nepodarilo sa importovať vybraný súbor pravidiel. Dôvod: %1 - + Add new rule... Pridať nové pravidlo... - + Delete rule Zmazať pravidlo - + Rename rule... Premenovať pravidlo... - + Delete selected rules Zmazať vybrané pravidlá - + Clear downloaded episodes... Odstrániť stiahnuté epizódy... - + Rule renaming Premenovanie pravidiel - + Please type the new rule name Prosím, napíšte názov nového pravidla - + Clear downloaded episodes Odstrániť stiahnuté epizódy - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Naozaj chcete vymazať zoznam stiahnutých epizód pre vybrané pravidlo? - + Regex mode: use Perl-compatible regular expressions Regex mód: použite regulárny výraz komatibilní s Perlom - - + + Position %1: %2 Pozícia %1: %2 - + Wildcard mode: you can use Mód zástupných znakov: môžete použiť - - + + Import error Chyba importu - + Failed to read the file. %1 Nepodarilo sa čítať zo súboru. %1 - + ? to match any single character ? pre zhodu s ľubovoľným jediným znakom - + * to match zero or more of any characters * pre zhodu so žiadnym alebo viac s akýmikoľvek znakmi - + Whitespaces count as AND operators (all words, any order) Medzera slúži ako operátor AND (všetky slová v akomkoľvek poradí) - + | is used as OR operator | slúži ako operátor OR - + If word order is important use * instead of whitespace. Ak je dôležité poradie slov, použite * namiesto medzery. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Výraz s prázdnym %1 obsahom (napr. %2) - + will match all articles. zahrnie všetky položky. - + will exclude all articles. vylúči všetky položky @@ -2075,28 +2086,38 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Nedajú sa spracovať dáta pre obnovenie: neplatný formát - - + + Cannot parse torrent info: %1 Nedajú sa spracovať informácie torrentu: %1 - + Cannot parse torrent info: invalid format Nedajú sa spracovať informácie torrentu: neplatný formát - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Metadáta torrentu sa nepodarilo uložiť do '%1'. Chyba: %2 - + Couldn't save torrent resume data to '%1'. Error: %2. Nepodarilo sa uložiť dáta obnovenia torrentu do '%1'. Chyba: %2. @@ -2107,16 +2128,17 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty + Cannot parse resume data: %1 Nepodarilo sa spracovať dáta pre obnovenie: %1 - + Resume data is invalid: neither metadata nor info-hash was found Dáta pre pokračovanie sú neplatné: neboli nájdené ani metadáta ani info-hash - + Couldn't save data to '%1'. Error: %2 Nebolo možné uložiť dáta do '%1'. Chyba: %2 @@ -2124,38 +2146,60 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty BitTorrent::DBResumeDataStorage - + Not found. Nenájdené. - + Couldn't load resume data of torrent '%1'. Error: %2 Nepodarilo sa načítať dáta pre pokračovanie torrentu '%1'. Chyba: %2 - - + + Database is corrupted. Databáza je poškodená. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Nepodarilo sa zapnúť žurnálovací režim Write-Ahead Logging (WAL). Chyba: %1. - + Couldn't obtain query result. Nebolo možné získať výsledok dopytu. - + WAL mode is probably unsupported due to filesystem limitations. WAL režim nie je pravdepodobne podporovaný pre obmedzenia súborového systému - + + + Cannot parse resume data: %1 + Nepodarilo sa spracovať dáta pre obnovenie: %1 + + + + + Cannot parse torrent info: %1 + Nedajú sa spracovať informácie torrentu: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Nebolo možné začať transakciu. Chyba: %1 @@ -2163,22 +2207,22 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Nepodarilo sa uložiť metadáta torrentu. Chyba: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Nepodarilo sa uložiť dáta obnovenia torrentu: '%1'. Chyba: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Nepodarilo sa zmazať dáta obnovenia torrentu '%1'. Chyba: %2 - + Couldn't store torrents queue positions. Error: %1 Nepodarilo sa uložiť umiestnenie torrentov v poradovníku. Chyby: %1 @@ -2186,530 +2230,503 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Podpora pre Distributed Hash Table (DHT): %1 - - - - - - - - - + + + + + + + + + ON Zapnuté - - - - - - - - - + + + + + + + + + OFF Vypnuté - - + + Local Peer Discovery support: %1 podpora Local Peer Discovery: %1 - + Restart is required to toggle Peer Exchange (PeX) support Pre zmenu podpory Peer Exchange (PeX) je potrebný reštart - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Nepodarilo sa obnoviť torrent: Torrent "%1". Dôvod: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Nepodarilo sa obnoviť torrent: zistené nekonzistentné ID torrentu. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Zistené nekonzistentné dáta: v konfiguračnom súbore chýba kategória. Kategória sa obnoví, ale jej nastavenia budú zresetované na pôvodné. Torrent: "%1". Kategória: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Zistené nekonzistentné dáta: neplatná kategória. Torrent: "%1". Kategória: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Zistený nesúlad medzi cestou uloženia pre obnovenú kategóriu a súčasnou cestou uloženia torrentu. Torrent je teraz prepnutý do Manuálneho režimu. Torrent: "%1". Kategória: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Zistené nekonzistentné dáta: v konfiguračnom súbore chýba značka. Značka sa obnoví. Torrent: "%1". Značka: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Zistené nekonzistentné dáta: neplatná značka. Torrent: "%1". Značka: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Zistená udalosť systémového prebudenia. Oznámenie všetkým trackerom... - + Peer ID: "%1" Peer ID: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Podpora Peer Exchange (PeX): %1 - - + + Anonymous mode: %1 Anonymný režim: %1 - - + + Encryption support: %1 Podpora šifrovania: %1 - - + + FORCED Vynútené - + Could not find GUID of network interface. Interface: "%1" Nepodarilo sa nájsť GUID sieťového rozhrania. Rozhranie: "%1" - + Trying to listen on the following list of IP addresses: "%1" Pokúšam sa počúvať na následujúcom zozname IP adries: "%1" - + Torrent reached the share ratio limit. Torrent dosiahol limit pomeru zdieľania. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent odstránený. - - - Removed torrent and deleted its content. - Torrent odstránený spolu s jeho obsahom. - - - Torrent paused. - Torrent pozastavený. - - - + Super seeding enabled. Režim super seedovania je zapnutý. - + Torrent reached the seeding time limit. Torrent dosiahol limit času zdieľania. - + Torrent reached the inactive seeding time limit. Torrent dosiahol časový limit neaktívneho seedovania - + Failed to load torrent. Reason: "%1" Nepodarilo sa načítať torrent. Dôvod: "%1" - + I2P error. Message: "%1". I2P chyba. Správa: "%1". - + UPnP/NAT-PMP support: ON podpora UPnP/NAT-PMP: ZAPNUTÁ - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - Zlúčenie trackerov nie je povolené + Zlúčenie trackerov nie je povolené - + Trackers cannot be merged because it is a private torrent - Trackery nemožno zlúčiť, pretože je to súkromný torrent + Trackery nemožno zlúčiť, pretože je to súkromný torrent - + Trackers are merged from new source - Trackery sú zlúčené z nového zdroja + Trackery sú zlúčené z nového zdroja - + UPnP/NAT-PMP support: OFF podpora UPnP/NAT-PMP: VYPNUTÁ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Nepodarilo sa exportovať torrent. Torrent: "%1". Cieľ: "%2". Dôvod: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Ukladanie dát obnovenia bolo zrušené. Počet zostávajúcich torrentov: %1 - + The configured network address is invalid. Address: "%1" Nastavená sieťová adresa je neplatná. Adresa: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Nepodarilo sa nájsť nastavenú sieťovú adresu pre počúvanie. Adresa: "%1" - + The configured network interface is invalid. Interface: "%1" Nastavené sieťové rozhranie je neplatné. Rozhranie: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Odmietnutá neplatná IP adresa pri použití zoznamu blokovaných IP adries. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Tracker pridaný do torrentu. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Tracker odstránený z torrentu. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL seed pridaný do torrentu. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL seed odstránený z torrentu. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent pozastavený. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent bol obnovený: Torrent: "%1" - + Torrent download finished. Torrent: "%1" Sťahovanie torrentu dokončené. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Presunutie torrentu zrušené. Torrent: "%1". Zdroj: "%2". Cieľ: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Nepodarilo sa zaradiť presunutie torrentu. Torrent: "%1". Zdroj: "%2". Cieľ: "%3". Dôvod: torrent sa práve presúva do cieľa - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Nepodarilo sa zaradiť presunutie torrentu. Torrent: "%1". Zdroj: "%2". Cieľ: "%3". Dôvod: obe cesty ukazujú na rovnaké umiestnenie - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Presunutie torrentu zaradené do frontu. Torrent: "%1". Zdroj: "%2". Cieľ: "%3". - + Start moving torrent. Torrent: "%1". Destination: "%2" Začiatok presunu torrentu. Torrent: "%1". Cieľ: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Nepodarilo sa uložiť konfiguráciu kategórií. Súbor: "%1". Chyba: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Nepodarilo sa spracovať konfiguráciu kategórií. Súbor: "%1". Chyba: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Úspešne spracovaný súbor IP filtra. Počet použitých pravidiel: %1 - + Failed to parse the IP filter file Nepodarilo sa spracovať súbor IP filtra - + Restored torrent. Torrent: "%1" Torrent obnovený. Torrent: "%1" - + Added new torrent. Torrent: "%1" Nový torrent pridaný. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent skončil s chybou. Torrent: "%1". Chyba: "%2" - Removed torrent. Torrent: "%1" - Torrent odstránený. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent odstránený spolu s jeho obsahom. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Varovanie o chybe súboru. Torrent: "%1". Súbor: "%2". Dôvod: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP mapovanie portu zlyhalo. Správa: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP mapovanie portu bolo úspešné. Správa: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrovaný port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). privilegovaný port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent relácia narazila na vážnu chybu. Dôvod: "%1 - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxy chyba. Adresa: %1. Správa: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 obmedzení zmiešaného režimu - + Failed to load Categories. %1 Nepodarilo sa načítať Kategórie. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Nepodarilo sa načítať konfiguráciu kategórií: Súbor: "%1". Chyba: "Neplatný formát dát" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent odstránený, ale nepodarilo sa odstrániť jeho obsah a/alebo jeho part súbor. Torrent: "%1". Chyba: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 je vypnuté - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 je vypnuté - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL seed DNS hľadanie zlyhalo. Torrent: "%1". URL: "%2". Chyba: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Obdržaná chybová správa od URL seedu. Torrent: "%1". URL: "%2". Správa: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Úspešne sa počúva na IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Zlyhalo počúvanie na IP. IP: "%1". Port: "%2/%3". Dôvod: "%4" - + Detected external IP. IP: "%1" Zistená externá IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Chyba: Vnútorný front varovaní je plný a varovania sú vynechávané, môžete spozorovať znížený výkon. Typ vynechaného varovania: "%1". Správa: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent bol úspešne presuný. Torrent: "%1". Cieľ: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Nepodarilo sa presunúť torrent. Torrent: "%1". Zdroj: "%2". Cieľ: "%3". Dôvod: "%4" @@ -2759,47 +2776,47 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Nepodarilo sa zapisovať do súboru: Dôvod "%1". Torrent je teraz v režime "iba upload". - + Download first and last piece first: %1, torrent: '%2' Stiahnuť najprv prvú a poslednú časť: %1, torrentu: '%2' - + On Zapnuté - + Off Vypnuté - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Generovanie dát pre obnovenie zlyhalo. Torrent: %1. Dôvod: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Nepodarilo sa obnoviť torrent. Súbory boli pravdepodobne presunuté alebo úložisko nie je dostupné. Torrent: "%1". Dôvod: "%2" - + Missing metadata Chýbajúce metadáta - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Premenovanie súboru zlyhalo. Torrent: "%1", súbor: "%2", dôvod: "%3" - + Performance alert: %1. More info: %2 Varovanie výkonu: %1. Viac informácií: %2 @@ -2836,11 +2853,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Expected integer number in environment variable '%1', but got '%2' V premennej je predpokladané celé číslo '%1', ale doručených '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' musia dodržiavať syntax '%1 =%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2881,7 +2893,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' musia dodržiavať syntax '%1 =%2' + Parameter '%1' musia dodržiavať syntax '%1 =%2' @@ -2971,10 +2983,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Add torrents as running or stopped - - Add torrents as started or paused - Pridať torrenty ako spustené alebo pozastavené - Skip hash check @@ -3071,14 +3079,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Stop torrents - - Resume torrents - Obnoviť torrenty - - - Pause torrents - Pozastaviť torrenty - Remove torrents @@ -3177,10 +3177,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Also remove the content files - - Also permanently delete the files - Odstrániť aj súbory natrvalo - Are you sure you want to remove '%1' from the transfer list? @@ -3412,26 +3408,22 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent sa sťahuje... Zdroj: "%1" - Trackers cannot be merged because it is a private torrent - Trackery nemožno zlúčiť, pretože je to súkromný torrent - - - + Torrent is already present Torrent už je pridaný - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' už existuje v zozname pre stiahnutie. Prajete si zlúčiť trackery z nového zdroja? @@ -3549,6 +3541,40 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Podporované súbory obrázkov + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Správa napájania našla vhodné D-Bus rozhranie. Rozhranie: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Chyba správy napájania. Akcia: %1. Chyba: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Neočakávaná chyba správy napájania. Stav: %1. Chyba: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3690,10 +3716,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty &Options... Mo&žnosti... - - &Resume - Pok&račovať - &Remove @@ -3775,10 +3797,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Close Window Zatvoriť okno - - R&esume All - Pokračovať vš&etky - Manage Cookies... @@ -3894,10 +3912,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty &Hibernate System Uspať systém na &disk - - S&hutdown System - &Vypnúť systém - &Statistics @@ -3918,14 +3932,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty &About O &aplikácii - - &Pause - &Pozastaviť - - - P&ause All - Poz&astaviť všetky - &Add Torrent File... @@ -3959,12 +3965,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty - + Show Zobraziť - + Check for program updates Skontrolovať aktualizácie programu @@ -3979,388 +3985,382 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Ak sa vám qBittorrent páči, prosím, prispejte! - + Execution Log Záznam spustení - + Clear the password Vyčistiť heslo - + &Set Password &Nastaviť heslo - + Preferences Voľby - + &Clear Password &Vymazať heslo - + Transfers Prenosy - - + + qBittorrent is minimized to tray qBittorrent bol minimalizovaný do lišty - - - + + + This behavior can be changed in the settings. You won't be reminded again. Toto správanie môže byť zmenené v nastavení. Nebudete znovu upozornení. - + Icons Only Iba ikony - + Text Only Iba text - + Text Alongside Icons Text vedľa ikôn - + Text Under Icons Text pod ikonami - + Follow System Style Používať systémové štýly - - + + UI lock password Heslo na zamknutie používateľského rozhrania - - + + Please type the UI lock password: Prosím, napíšte heslo na zamknutie používateľského rozhrania: - + Are you sure you want to clear the password? Ste si istý, že chcete vyčistiť heslo? - + Use regular expressions Používať regulárne výrazy - - + + Search Engine - Vyhľadávač + Vyhľadávač - + Search has failed - Hľadanie zlyhalo + Hľadanie zlyhalo - + Search has finished - + Hľadanie skončené - + Search Vyhľadávanie - + Transfers (%1) Prenosy (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent bol práve aktualizovaný a je potrebné ho reštartovať, aby sa zmeny prejavili. - + qBittorrent is closed to tray qBittorrent bol zavretý do lišty - + Some files are currently transferring. Niektoré súbory sa práve prenášajú. - + Are you sure you want to quit qBittorrent? Ste si istý, že chcete ukončiť qBittorrent? - + &No &Nie - + &Yes &Áno - + &Always Yes &Vždy áno - + Options saved. Možnosti boli uložené. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Chýbajúci Python Runtime - + qBittorrent Update Available Aktualizácia qBittorentu je dostupná - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Na použitie vyhľadávačov je potrebný Python, ten však nie je nainštalovaný. Chcete ho inštalovať teraz? - + Python is required to use the search engine but it does not seem to be installed. Na použitie vyhľadávačov je potrebný Python, zdá sa však, že nie je nainštalovaný. - - + + Old Python Runtime Zastaraný Python Runtime - + A new version is available. Nová verzia je dostupná - + Do you want to download %1? Prajete si stiahnuť %1? - + Open changelog... Otvoriť zoznam zmien... - + No updates available. You are already using the latest version. Žiadne aktualizácie nie sú dostupné. Používate najnovšiu verziu. - + &Check for Updates &Skontrolovať aktualizácie - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Vaša verzia Pythonu (%1) je zastaraná. Minimálna verzia: %2. Chcete teraz nainštalovať novšiu verziu? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Vaša verzia Pythonu (%1) je zastaraná. Pre sprevádzkovanie vyhľadávačov aktualizujte na najnovšiu verziu. Minimálna verzia: %2. - + Paused - Pozastavený + Pozastavené - + Checking for Updates... Overujem aktualizácie... - + Already checking for program updates in the background Kontrola aktualizácií programu už prebieha na pozadí - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Chyba pri sťahovaní - Python setup could not be downloaded, reason: %1. -Please install it manually. - Nebolo možné stiahnuť inštalačný program Pythonu. Dôvod: %1 -Prosím, nainštalujte ho ručne. - - - - + + Invalid password Neplatné heslo - + Filter torrents... Filtrovať torrenty... - + Filter by: Filtrovať podľa: - + The password must be at least 3 characters long Heslo musí mať aspoň 3 znaky - - - + + + RSS (%1) RSS (%1) - + The password is invalid Heslo nie je platné - + DL speed: %1 e.g: Download speed: 10 KiB/s Rýchlosť sťahovania: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Rýchlosť nahrávania: %1 - + Hide Skryť - + Exiting qBittorrent Ukončuje sa qBittorrent - + Open Torrent Files Otvoriť torrent súbory - + Torrent Files Torrent súbory @@ -5854,47 +5854,47 @@ Prosím, nainštalujte ho ručne. Net::Smtp - + Connection failed, unrecognized reply: %1 Spojenie zlyhalo, neznáma odpoveď: %1 - + Authentication failed, msg: %1 Autentifikácia zlyhala, správa: %1 - + <mail from> was rejected by server, msg: %1 <mail from> bolo odmietnuté serverom, správa: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> bolo odmietnuté serverom, správa: %1 - + <data> was rejected by server, msg: %1 <data>bolo odmietnuté serverom, správa: %1 - + Message was rejected by the server, error: %1 Správa bola odmietnutá serverom, chyba: %1 - + Both EHLO and HELO failed, msg: %1 EHLO aj HELO zlyhali, správa: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Zdá sa, že SMTP server nepodporuje režimy autentifikácie, ktoré podporujeme [CRAM-MD5|PLAIN|LOGIN]. Autentifikácia sa preskočí, keďže by pravdepodobne aj tak zlyhala... Režimy autentifikácie servera: %1 - + Email Notification Error: %1 Chyba oznámenia e-mailom: %1 @@ -5936,10 +5936,6 @@ Prosím, nainštalujte ho ručne. RSS RSS - - Web UI - Webové rozhranie - Advanced @@ -5960,14 +5956,6 @@ Prosím, nainštalujte ho ručne. Confirm when deleting torrents Potvrdiť zmazanie torrentu - - Shows a confirmation dialog upon pausing/resuming all the torrents - Zobrazí dialógové okno s potvrdením pri pozastavení/pokračovaní všetkých torrentov. - - - Confirm "Pause/Resume all" actions - Potvrdzovať akcie "Pozastaviť/Obnoviť všetky" - Use alternating row colors @@ -5984,10 +5972,6 @@ Prosím, nainštalujte ho ručne. Always Vždy - - Paused torrents only - Len pozastavené torrenty - Action on double-click @@ -5998,10 +5982,6 @@ Prosím, nainštalujte ho ručne. Downloading torrents: Sťahované torrenty: - - Start / Stop Torrent - Spusti / zastavi torrent - @@ -6060,179 +6040,179 @@ Prosím, nainštalujte ho ručne. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Rozloženie obsahu torrentu: - + Original Pôvodné - + Create subfolder Vytvoriť podpriečinok - + Don't create subfolder Nevytvárať podpriečinok - + The torrent will be added to the top of the download queue Torrent bude pridaný navrch frontu pre sťahovanie - + Add to top of queue The torrent will be added to the top of the download queue Pridať navrch poradovníka - + When duplicate torrent is being added Keď sa pridáva duplicitný torrent - + Merge trackers to existing torrent Zlúčiť trackery do existujúceho torrentu - + Keep unselected files in ".unwanted" folder Ponechať neoznačené súbory v adresári ".unwanted" - + Add... Pridať... - + Options.. Možnosti.. - + Remove Odstrániť - + Email notification &upon download completion Upozornenie o dokončení sťahovania emailom - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Protokol peer pripojenia: - + Any Akýkoľvek - + I2P (experimental) I2P (experimentálne) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Ak je zapnutý &quot;zmiešaný režim&quot; I2P torrenty majú povolené získavať peerov tiež z iných zdrojov ako z trackera a pripájať sa na bežné IP adresy bez poskytovania akejkoľvek anonymizácie. To môže byť užitočné, ak používateľ nemá záujem o anonymizáciu I2P, no napriek tomu chce byť schopný pripájať sa na I2P peerov.</p></body></html> - - - + Mixed mode Zmiešaný režim - Some options are incompatible with the chosen proxy type! - Niektoré voľby nie sú kompatibilné s vybraným typom proxy! + Niektoré voľby nie sú kompatibilné s vybraným typom proxy! - + If checked, hostname lookups are done via the proxy Ak je zaškrnuté, vyhľadávanie názvu hostiteľa prebieha cez proxy - + Perform hostname lookup via proxy Zisťovať názov hostiteľa cez proxy - + Use proxy for BitTorrent purposes Použiť proxy pre účely BitTorrent - + RSS feeds will use proxy RSS kanály budú používať proxy - + Use proxy for RSS purposes Použiť proxy pre účely RSS - + Search engine, software updates or anything else will use proxy Vyhľadávač, softvérové aktualizácie alebo čokoľvek iné bude používať proxy - + Use proxy for general purposes Použiť proxy pre všeobecné účely - + IP Fi&ltering IP fi&ltrovanie - + Schedule &the use of alternative rate limits Naplánovať použitie alternatívnych rýchlostných obmedzení - + From: From start time Od: - + To: To end time Do: - + Find peers on the DHT network Hľadať peery v sieti DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6241,188 +6221,190 @@ Vyžadovať šifrovanie: Pripojí sa iba k peerom pomocou šifrovania protokolu Zakázať šifrovanie: Pripojí sa iba k peerom bez šifrovania protokolu - + Allow encryption Povoliť šifrovanie - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Ďalšie informácie</a>) - + Maximum active checking torrents: Maximum súbežne kontrolovaných torrentov: - + &Torrent Queueing Zaraďovanie &torrentov do frontu - + When total seeding time reaches Keď celkový čas seedovania dosiahne - + When inactive seeding time reaches Keď čas neaktívneho seedovania dosiahne - A&utomatically add these trackers to new downloads: - Automaticky pridať tieto trackery k novým sťahovaniam: - - - + RSS Reader RSS čítačka - + Enable fetching RSS feeds Zapnúť načítanie RSS kanálov - + Feeds refresh interval: Interval obnovovania kanálov: - + Same host request delay: - + Maximum number of articles per feed: Maximálny počet článkov na kanál: - - - + + + min minutes min - + Seeding Limits Limity seedovania - Pause torrent - Pozastaviť torrent - - - + Remove torrent Odstrániť torrent - + Remove torrent and its files Zmazať torrent a jeho súbory - + Enable super seeding for torrent Povoliť super seeding pre torrent - + When ratio reaches Keď je dosiahnuté ratio - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader Automatické RSS sťahovanie torrentov - + Enable auto downloading of RSS torrents Zapnúť automatické RSS sťahovanie torrentov - + Edit auto downloading rules... Upraviť pravidlá automatického sťahovania... - + RSS Smart Episode Filter RSS inteligentný filter epizód - + Download REPACK/PROPER episodes Stiahnuť REPACK/PROPER epizódy - + Filters: Filtre: - + Web User Interface (Remote control) Webové rozhranie (vzdialené ovládanie) - + IP address: IP adresa: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6431,41 +6413,37 @@ Zvolte IPv4 alebo IPv6 adresu. Môžete zadať "0.0.0.0" pre akúkoľv "::" pre akúkoľvek IPv6 adresu, alebo "*" pre akékoľvek IPv4 alebo IPv6 adresy. - + Ban client after consecutive failures: Zakázať klienta po následných zlyhaniach: - + Never Nikdy - + ban for: ban pre: - + Session timeout: Časový limit relácie: - + Disabled Vypnuté - Enable cookie Secure flag (requires HTTPS) - Povoliť príznak zabezpečenie súborov cookie (vyžaduje HTTPS) - - - + Server domains: Serverové domény: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6478,37 +6456,37 @@ mali vložiť doménové názvy použité pre WebUI server. Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. - + &Use HTTPS instead of HTTP &Používať HTTPS namiesto HTTP - + Bypass authentication for clients on localhost Obísť autentifikáciu pri prihlasovaní z lokálneho počítača - + Bypass authentication for clients in whitelisted IP subnets Preskočiť overenie klientov na zozname povolených IP podsietí - + IP subnet whitelist... Zoznam povolených IP podsietí... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Uveďte IP adresy (alebo podsiete, napr. 0.0.0.0/24) reverzného proxy pre preposlanie adresy klienta (hlavička X-Forwarded-For). Použite ';' pre rozdelenie viacerých položiek. - + Upda&te my dynamic domain name Aktualizovať môj dynamický doménový názov @@ -6520,7 +6498,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Search - Vyhľadávanie + Vyhľadávanie @@ -6621,99 +6599,99 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Vymazať zálohy log súborov staršie ako: - + Show external IP in status bar - + When adding a torrent Pri pridávaní torrentu - + Bring torrent dialog to the front Preniesť dialóg torrentu do popredia - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled Vymazať tiež .torrent súbory, ktorých pridanie zlyhalo - + Also when addition is cancelled Vymazať tiež ak bolo pridanie zrušené - + Warning! Data loss possible! Upozornenie! Vyskytla sa možná strata dát! - + Saving Management Správa ukladania - + Default Torrent Management Mode: Prednastavený režim správy torrentov: - + Manual Manuálny - + Automatic Automatický - + When Torrent Category changed: Ak sa zmení kategória torrentu: - + Relocate torrent Premiestni torrent - + Switch torrent to Manual Mode Prepni torrent do manuálneho režimu - - + + Relocate affected torrents Premiestni torrenty, ktorých sa zmena týka - - + + Switch affected torrents to Manual Mode Prepni torrenty, ktorých sa zmena týka, do manuálneho režimu - + Use Subcategories Použi podkategórie - + Default Save Path: Predvolená cesta pre ukladanie: - + Copy .torrent files to: Kopírovať .torrent súbory do: @@ -6723,26 +6701,22 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Zobraziť qBittorrent v oznamovacej oblasti - &Log file - Log súbor - - - + Display &torrent content and some options Zobraziť obsah torrentu a ďalšie voľby - + De&lete .torrent files afterwards Neskôr zm&azať .torrent súbory - + Copy .torrent files for finished downloads to: Kopírovať .torrent súbory po dokončení sťahovania do: - + Pre-allocate disk space for all files Dopredu alokovať miesto pre všetky súbory @@ -6772,10 +6746,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas Preview file, otherwise open destination folder Náhľad súboru, inak otvoriť cieľový priečinok - - Show torrent options - Zobraziť možnosti torrentu - Shows a confirmation dialog when exiting with active torrents @@ -6841,69 +6811,65 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť mas rokov - + Log performance warnings Logovať upozornenia ohľadom výkonu - The torrent will be added to download list in a paused state - Torrent bude pridaný do zoznamu sťahovania v pozastavenom stave - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Nespúšťať sťahovanie automaticky - + Whether the .torrent file should be deleted after adding it Či sa má súbor .torrent po pridaní odstrániť - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Pred začatím sťahovania vyhradí všetko potrebné miesto na disku, aby sa minimalizovala fragmentácia. Užitočné iba pre HDD. - + Append .!qB extension to incomplete files Pridať príponu .!qB k nedokončeným súborom - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Po stiahnutí torrentu ponúknite pridanie torrentov zo všetkých .torrent súborov, ktoré sa v ňom nachádzajú - + Enable recursive download dialog Zapnúť dialóg rekurzívneho sťahovania - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automaticky: O rôznych vlastnostiach torrentu (napr. cesta uloženie) rozhodne príslušná kategória Ručne: Rôzne vlastnosti torrentu (napr. cesta uloženia) musia byť priradené ručne - + When Default Save/Incomplete Path changed: Keď sa zmení východzia cesta uloženia/nekompletných: - + When Category Save Path changed: Ak sa zmení cesta pre ukladanie kategórie: - + Use Category paths in Manual Mode Použiť cesty kategórií v manuálnom režime - + Resolve relative Save Path against appropriate Category path instead of Default one Použiť relatívnu cestu pre uloženie podľa kategórie namiesto východzej cesty @@ -6923,50 +6889,50 @@ Ručne: Rôzne vlastnosti torrentu (napr. cesta uloženia) musia byť priradené Stav okna qBittorrentu po spustení - + Torrent stop condition: Podmienka pre zastavenie torrentu: - - + + None Žiadna - - + + Metadata received Metadáta obdržané - - + + Files checked Súbory skontrolované - + Ask for merging trackers when torrent is being added manually Pýtať sa na zlúčenie trackerov pri manuálnom pridávaní torrentu - + Use another path for incomplete torrents: Pre nedokončené torrenty použiť inú cestu: - + Automatically add torrents from: Automaticky pridať torrenty z: - + Excluded file names Vynechané názvy súborov - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6995,523 +6961,510 @@ readme.txt: filtruje presný názov súboru. readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale nie 'readme10.txt'. - + Receiver Príjemca - + To: To receiver Do: - + SMTP server: SMTP server: - + Sender Odosielateľ - + From: From sender Od: - + This server requires a secure connection (SSL) Tento server vyžaduje zabezpečené pripojenie (SSL) - - + + Authentication Autentifikácia - - - - + + + + Username: Meno používateľa: - - - - + + + + Password: Heslo: - + Run external program Spustiť externý program - Run on torrent added - Spustiť pri pridaní torrentu - - - Run on torrent finished - Spustiť pri dokončení torrentu - - - + Show console window Zobraziť okno konzoli - + TCP and μTP TCP a μTP - + Listening Port Načúvací port - + Port used for incoming connections: Port pre prichádzajúce spojenia: - + Set to 0 to let your system pick an unused port Nastavte na 0, aby váš systém vybral nepoužívaný port - + Random Náhodný - + Use UPnP / NAT-PMP port forwarding from my router Použiť presmerovanie portov UPnP/NAT-PMP z môjho smerovača - + Connections Limits Obmedzenia spojení - + Maximum number of connections per torrent: Maximálny počet spojení na torrent: - + Global maximum number of connections: Maximálny celkový počet spojení: - + Maximum number of upload slots per torrent: Maximálny počet slotov pre nahrávanie na torrent: - + Global maximum number of upload slots: Maximálny celkový počet slotov na nahrávanie: - + Proxy Server Proxy server - + Type: Typ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Inak sa proxy server použije iba na pripojenia k trackeru - + Use proxy for peer connections Používať proxy na spojenia s rovesníkmi - + A&uthentication Overenie - Info: The password is saved unencrypted - Info: Heslo sa ukladá nezašifrované + Info: Heslo sa ukladá nezašifrované - + Filter path (.dat, .p2p, .p2b): Cesta k filtrom (.dat, .p2p, .p2b): - + Reload the filter Znovu načítať filter - + Manually banned IP addresses... Manuálne zablokované IP adresy... - + Apply to trackers Použiť na trackery - + Global Rate Limits Globálne rýchlostné obmedzenia - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Nahrávanie: - - + + Download: Sťahovanie: - + Alternative Rate Limits Alternatívne rýchlostné obmedzenia - + Start time Doba spustenia - + End time Doba ukončenia - + When: Kedy: - + Every day Každý deň - + Weekdays Dni v týždni - + Weekends Víkendy - + Rate Limits Settings Nastavenia rýchlostných obmedzení - + Apply rate limit to peers on LAN Použiť rýchlostné obmedzenie na rovesníkov v LAN - + Apply rate limit to transport overhead Použiť rýchlostné obmedzenie na réžiu prenosu - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Použiť obmedzenie rýchlosti na protokol µTP - + Privacy Súkromie - + Enable DHT (decentralized network) to find more peers Zapnúť DHT (decentralizovaná sieť) - umožní nájsť viac rovesníkov - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Vymieňať si zoznam rovesníkov s kompatibilnými klientmi siete Bittorrent (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Zapnúť Peer eXchange (PeX) - umožní nájsť viac rovesníkov - + Look for peers on your local network Hľadať rovesníkov na vašej lokálnej sieti - + Enable Local Peer Discovery to find more peers Zapnúť Local Peer Discovery - umožní nájsť viac rovesníkov - + Encryption mode: Režim šifrovania: - + Require encryption Vyžadovať šifrovanie - + Disable encryption Vypnúť šifrovanie - + Enable when using a proxy or a VPN connection Zapnúť počas používania proxy alebo spojenia VPN - + Enable anonymous mode Zapnúť anonymný režim - + Maximum active downloads: Maximálny počet aktívnych sťahovaní: - + Maximum active uploads: Maximálny počet aktívnych nahrávaní: - + Maximum active torrents: Maximálny počet aktívnych torrentov: - + Do not count slow torrents in these limits Nepočítať pomalé torrenty do týchto obmedzení - + Upload rate threshold: Limit rýchlosti odosielania: - + Download rate threshold: Limit rýchlosti sťahovania: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Časovač nečinnosti torrentu: - + then potom - + Use UPnP / NAT-PMP to forward the port from my router Použiť presmerovanie portov UPnP/NAT-PMP z môjho smerovača - + Certificate: Certifikát: - + Key: Kľúč: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Informácie o certifikátoch</a> - + Change current password Zmena aktuálneho hesla - Use alternative Web UI - Použiť alternatívne Web UI - - - + Files location: Umiestnenie súborov: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Zabezpečenie - + Enable clickjacking protection Zapnúť ochranu clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Zapnúť ochranu Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation Zapnúť overovanie hlavičky hostiteľa - + Add custom HTTP headers Pridať vlastné HTTP hlavičky - + Header: value pairs, one per line Hlavička: páry hodnôt, jedna na riadok - + Enable reverse proxy support Povoliť podporu reverzného servera proxy - + Trusted proxies list: Zoznam dôveryhodných serverov proxy: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Služba: - + Register Zaregistrovať sa - + Domain name: Názov domény: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Nastavením týchto volieb môžete <strong>nenávratne stratiť</strong> vaše .torrent súbory! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Ak zapnete druhú voľbu (&ldquo;Tiež, keď je pridanie zrušené&rdquo;) .torrent súbor <strong>bude zmazaný</strong> aj keď stlačíte &ldquo;<strong>Zrušiť</strong>&rdquo; v dialógu &ldquo;Pridať torrent &rdquo; @@ -7521,12 +7474,12 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Vyberte súbor motívu používateľského rozhrania qBittorrent - + Choose Alternative UI files location Vybrať umiestnenie súborov Alternatívneho UI - + Supported parameters (case sensitive): Podporované parametre (rozlišujú sa veľké a malé písmená): @@ -7546,183 +7499,183 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Vypnuté, pretože sa nepodarilo zistiť prítomnosť systémovej lišty - + No stop condition is set. Žiadna podmienka pre zastavenie nie je nastavená. - + Torrent will stop after metadata is received. Torrent sa zastaví po obdržaní metadát. - + Torrent will stop after files are initially checked. Torrent sa zastaví po iniciálnej kontrole súborov. - + This will also download metadata if it wasn't there initially. Toto nastavenie taktiež stiahne metadáta, ak nie sú iniciálne prítomné. - + %N: Torrent name %N: Názov torrentu - + %L: Category %L: Kategória - + %F: Content path (same as root path for multifile torrent) %F: Cesta k obsahu (rovnaká ako koreňová cesta k torrentu s viacerými súbormi) - + %R: Root path (first torrent subdirectory path) %R: Koreňová cesta (cesta prvého podadresára torrentu) - + %D: Save path %D: Uložiť do - + %C: Number of files %C: Počet súborov - + %Z: Torrent size (bytes) %Z: Veľkosť torrentu (v bajtoch) - + %T: Current tracker %T: Aktuálny tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tip: Ohraničiť parameter úvodzovkami, aby nedošlo k odstrihnutiu textu za medzerou (napr. "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (žiadny) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent bude uznaný pomalým ak rýchlosti sťahovania a odosielania zostanú pod týmito hodnotami "Časovače nečinnosti torrentu" v sekundách - + Certificate Certifikát - + Select certificate Vybrať certifikát - + Private key Privátny kľúč - + Select private key Vybrať privátny kľúč - + WebUI configuration failed. Reason: %1 WebUI konfigurácia zlyhala. Dôvod: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Vyberte sledovaný adresár - + Adding entry failed Pridanie položky zlyhalo - + The WebUI username must be at least 3 characters long. Používateľské meno pre WebUI musí mať aspoň 3 znaky - + The WebUI password must be at least 6 characters long. Heslo pre WebUI musí mať aspoň 6 znakov. - + Location Error Chyba umiestnenia - - + + Choose export directory Vyberte adresár pre export - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Nastavením týchto volieb qBittorrent <strong>vymaže</strong> .torrent súbory po ich úspešnom (prvá voľba) alebo neúspešnom (druhá voľba) pridaní do zoznamu na sťahovanie. Toto nastavenie sa použije <strong>nielen</strong> na súbory otvorené cez položku menu &ldquo;Pridať torrent&rdquo; ale aj na súbory otvorené cez <strong>asociáciu typu súborov</strong> @@ -7732,70 +7685,70 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale Súbor motívu používateľského rozhrania qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Značky (oddelené čiarkou) - + %I: Info hash v1 (or '-' if unavailable) %I: Info hash v1 (alebo '-' ak nie je k dispozícii) - + %J: Info hash v2 (or '-' if unavailable) %J: Info hash v2 (alebo '-' ak nie je k dispozícii) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (buď sha-1 info hash pre v1 torrent alebo neúplný sha-256 info hash pre v2/hybrid torrent) - - + + Choose a save directory Vyberte adresár pre ukladanie - + Torrents that have metadata initially will be added as stopped. 71%match Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. - + Choose an IP filter file Zvoliť súbor filtra IP - + All supported filters Všetky podporované filtre - + The alternative WebUI files location cannot be blank. Alternatívne umiestnenie WebUI súborov nemôže byť prázdne. - + Parsing error Chyba pri spracovaní - + Failed to parse the provided IP filter Nepodarilo sa spracovať poskytnutý filter IP - + Successfully refreshed Úspešne obnovené - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Zadaný filter IP bol úspešne spracovaný: %1 pravidiel bolo použitých. @@ -7806,18 +7759,18 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené.Voľby - + Time Error Chyba času - + The start time and the end time can't be the same. Čas začiatku a čas ukončenia nemôžu byť rovnaké. - - + + Length Error Chyba dĺžky @@ -7908,163 +7861,163 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. PeerListWidget - + Country/Region Krajina/Oblasť - + IP/Address IP/Adresa - + Port Port - + Flags Príznaky - + Connection Spojenie - + Client i.e.: Client application Klient - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID klient - + Progress i.e: % downloaded Priebeh - + Down Speed i.e: Download speed Rýchlosť sťahovania - + Up Speed i.e: Upload speed Rýchlosť nahrávania - + Downloaded i.e: total data downloaded Stiahnuté - + Uploaded i.e: total data uploaded Nahrané - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Dôležitosť: - + Files i.e. files that are being downloaded right now Súbory - + Column visibility Viditeľnosť stĺpcov - + Resize columns Zmeniť rozmery stĺpcov - + Resize all non-hidden columns to the size of their contents Zmeniť rozmery viditeľných stĺpcov podľa veľkosti ich obsahu - + Add peers... Pridať rovesníkov... - - + + Adding peers Pridanie rovesníkov - + Some peers cannot be added. Check the Log for details. Niektorých rovesníkov nebolo možné pridať. Pozrite prosím Log pre detaily. - + Peers are added to this torrent. Peeri sú pridaný do tohto torrentu. - - + + Ban peer permanently Zablokovať rovesníka na stálo - + Cannot add peers to a private torrent Nemožno pridať peerov do súkromného torrentu - + Cannot add peers when the torrent is checking Nemožno pridať peerov počas kontroly torrentu - + Cannot add peers when the torrent is queued Nemožno pridať peerov, keď je torrent zaradený vo fronte - + No peer was selected Nebol vybraný žiadny peer - + Are you sure you want to permanently ban the selected peers? Naozaj chcete natrvalo zablokovať vybraných peerov? - + Peer "%1" is manually banned Rovesník "%1" je ručne zablokovaný - + N/A nie je k dispozícií - + Copy IP:port Kopírovať IP:port @@ -8346,34 +8299,27 @@ Tieto moduly však boli vypnuté. PowerManagement - qBittorrent is active - qBittorent je aktívný + qBittorent je aktívný PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Správa napájania našla vhodné D-Bus rozhranie. Rozhranie: %1 + Správa napájania našla vhodné D-Bus rozhranie. Rozhranie: %1 - Power management error. Did not found suitable D-Bus interface. - Chyba správy napájania. Nebolo nájdené vhodné D-Bus rozhranie. + Chyba správy napájania. Nebolo nájdené vhodné D-Bus rozhranie. - - - Power management error. Action: %1. Error: %2 - Chyba správy napájania. Akcia: %1. Chyba: %2 + Chyba správy napájania. Akcia: %1. Chyba: %2 - Power management unexpected error. State: %1. Error: %2 - Neočakávaná chyba správy napájania. Stav: %1. Chyba: %2 + Neočakávaná chyba správy napájania. Stav: %1. Chyba: %2 @@ -8665,153 +8611,124 @@ Tieto moduly však boli vypnuté. Uložené do: - + Never Nikdy - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (máte %3) - - + + %1 (%2 this session) %1 (%2 toto sedenie) - - + + N/A nie je k dispozícií - + Yes - Áno + Áno - + No - Nie + Nie - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (seedovaný už %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 celkom) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 priem.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Nový webový seed - - - Remove Web seed - Odstrániť webový seed - - - Copy Web seed URL - Kopírovať URL webového seedu - - - Edit Web seed URL - Upraviť URL webového seedu - - - + Filter files... Filtruj súbory... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Grafy rýchlostí sú vypnuté - + You can enable it in Advanced Options Môžete ich zapnúť v Rozšírených voľbách. - New URL seed - New HTTP source - Nový URL seed - - - New URL seed: - Nový URL seed: - - - This URL seed is already in the list. - Tento URL seed je už v zozname. - - - + Web seed editing Úprava webového seedu - + Web seed URL: URL webového seedu: @@ -8819,33 +8736,33 @@ Tieto moduly však boli vypnuté. RSS::AutoDownloader - - + + Invalid data format. Neplatný formát dát. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Nie je možné uložiť dáta AutoDownloaderu RSS v %1. Chyba: %2 - + Invalid data format Neplatný formát dát - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS článok '%1' vyhovuje pravidlu '%2'. Pokus o pridanie torrentu... - + Failed to read RSS AutoDownloader rules. %1 Nepodarilo sa načítať pravidlá RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Nie je možné načítať pravidlá RSS AutoDownloader. Príčina: %1 @@ -8853,22 +8770,22 @@ Tieto moduly však boli vypnuté. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Zlyhalo stiahnutie RSS kanálu u '%1'. Príčina '%2' - + RSS feed at '%1' updated. Added %2 new articles. RSS kanál u '%1' úspešne aktualizovaný. Pridané %2 nové články. - + Failed to parse RSS feed at '%1'. Reason: %2 Spracovanie RSS kanálu "%1" Príčina: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS feedu '%1' bol úspešne stiahnutý. Začínam ho spracovávať. @@ -8917,12 +8834,12 @@ Tieto moduly však boli vypnuté. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Nebolo možné uložiť konfiguráciu RSS relácie. Súbor: "%1". Chyba: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Nebolo možné uložiť dáta RSS relácie. Súbor: "%1". Chyba: "%2" @@ -8944,76 +8861,121 @@ Tieto moduly však boli vypnuté. - + Item doesn't exist: %1. Položka neexistuje: %1. - Couldn't move folder into itself. - Nebolo možné presunúť adresár do seba. + Nebolo možné presunúť adresár do seba. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Nemožno zmazať koreňový adresár. - + Failed to read RSS session data. %1 Nepodarilo sa získať dáta RSS relácie. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Nepodarilo sa spracovať dáta RSS relácie. Súbor: "%1". Chyba: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Nepodarilo sa získať dáta RSS relácie. Súbor: "%1". Chyba: "Neplatný formát dát." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Nepodarilo sa získať RSS kanál. Kanál: "%1". Dôvod: Vyžaduje sa URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Nepodarilo sa získať RSS kanál. Kanál: "%1". Dôvod: UID je neplatné. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Duplicitný RSS kanál už existuje. UID: "%1". Chyba: Zdá sa, že konfigurácia je poškodená. - + Couldn't load RSS item. Item: "%1". Invalid data format. Nepodarilo sa získať RSS položku. Položka: "%1". Neplatný formát dát. - + Corrupted RSS list, not loading it. Poškodený RSS zoznam, nezíska sa. - + Incorrect RSS Item path: %1. Nesprávna cesta položky RSS: %1. - + RSS item with given path already exists: %1. Položka RSS s danou cestou už existuje: %1. - + Parent folder doesn't exist: %1. Nadradený adresár neexistuje: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + RSS kanál neexistuje: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Predvolený + + RSSWidget @@ -9113,78 +9075,77 @@ Tieto moduly však boli vypnuté. + Feed options... + + + Edit feed URL... - Upraviť URL kanálu... + Upraviť URL kanálu... - Edit feed URL - Upraviť URL kanálu + Upraviť URL kanálu - + Please choose a folder name Prosím, vyberte názov priečinka - + Folder name: Názov priečinka: - + New folder Nový priečinok - - Please type a RSS feed URL - Prosím, zadajte URL RSS kanálu + Prosím, zadajte URL RSS kanálu - - Feed URL: - URL kanálu: + URL kanálu: - + Deletion confirmation Potvrdenie zmazania - + Are you sure you want to delete the selected RSS feeds? Ste si istý, že chcete vymazať označené RSS kanály? - + Please choose a new name for this RSS feed Prosím, vyberte nový názov pre tento RSS kanál - + New feed name: Nový názov kanála: - + Rename failed Premenovanie zlyhalo - + Date: Dátum: - + Feed: Kanál: - + Author: Autor: @@ -9321,10 +9282,6 @@ Tieto moduly však boli vypnuté. i.e: Number of partial sources Leecheri - - Search engine - Vyhľadávač - Filter search results... @@ -9445,104 +9402,104 @@ Tieto moduly však boli vypnuté. SearchPluginManager - + Unknown search engine plugin file format. Neznámy formát súboru pluginu vyhľadávača. - + Plugin already at version %1, which is greater than %2 Verzia nainštalovaného pluginu %1 je vyššia ako %2 - + A more recent version of this plugin is already installed. Novšia verzia tohto pluginu je už nainštalovaná. - + Plugin %1 is not supported. Plugin %1 nie je podporovaný. - - + + Plugin is not supported. Plugin nie je podporovaný. - + Plugin %1 has been successfully updated. Plugin %1 bol úspešne aktualizovaný. - + All categories Všetky kategórie - + Movies Filmy - + TV shows TV relácie - + Music Hudba - + Games Hry - + Anime Anime - + Software Softvér - + Pictures Obrázky - + Books Knihy - + Update server is temporarily unavailable. %1 Aktualizačný server je dočasne nedostupný. %1 - - + + Failed to download the plugin file. %1 Stiahnutie pluginu zlyhalo. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" je zastaralý, aktualizuje na verziu %2 - + Incorrect update info received for %1 out of %2 plugins. Obdržané nesprávne informácie o aktualizácii pre %1 z %2 pluginov. - + Search plugin '%1' contains invalid version string ('%2') Vyhľadávací plugin '%1' obsahuje neplatný reťazec verzia ('%2') @@ -9568,135 +9525,127 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Pluginy pre vyhľadávanie - + A phrase to search for. Hľadaný výraz. - + Spaces in a search term may be protected by double quotes. Medzery vo vyhľadávanom výraze môžu byť chránené dvojitými úvodzovkami. - + Example: Search phrase example Príklad: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: vyhľadať <b>foo bar</b> - + All plugins Všetky zásuvné moduly - + Only enabled Iba zapnuté - - + + Invalid data format. - Neplatný formát dát. + Neplatný formát dát. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: vyhľadať <b>foo</b> a <b>bar</b> - + Refresh - + Close tab Zatvoriť kartu - + Close all tabs Zatvoriť všetky karty - + Select... Vybrať... - - + + Search Engine Vyhľadávač - - + + Please install Python to use the Search Engine. Pre použitie vyhľadávača nainštalujte Python. - + Empty search pattern Prázdny hľadaný reťazec - + Please type a search pattern first Najprv napíšte hľadaný reťazec - + Stop Zastaviť - - Search has finished - Hľadanie ukončené - - - Search has failed - Hľadanie zlyhalo - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10094,67 +10043,77 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, StatusBar - + Connection status: Stav spojenia: - - + + No direct connections. This may indicate network configuration problems. Žiadne priame spojenia. To môže znamenať problém s nastavením siete. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 uzlov - + qBittorrent needs to be restarted! Je potrebné reštartovať qBittorrent! - - + + Connection Status: Stav spojenia: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Odpojený. To zvyčajne znamená, že qBittorrent nedokázal počúvať prichádzajúce spojenia na zvolenom porte. - + Online Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Kliknutím prepnete na alternatívne rýchlostné obmedzenia - + Click to switch to regular speed limits Kliknutím prepnete na bežné rýchlostné obmedzenia @@ -10182,14 +10141,6 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Completed (0) Dokončené (0) - - Resumed (0) - Obnovené (0) - - - Paused (0) - Pozastavené (0) - Running (0) @@ -10280,32 +10231,16 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Stop torrents - - Paused (%1) - Pozastavené (%1) - Moving (%1) Premiestňovaných (%1) - - Resume torrents - Obnoviť torrenty - - - Pause torrents - Pozastaviť torrenty - Remove torrents Odstrániť torrenty - - Resumed (%1) - Obnovené (%1) - Active (%1) @@ -10377,23 +10312,11 @@ Kliknite na tlačidlo "Vyhľadávacie pluginy ..." dole vpravo v okne, Remove unused tags Odstrániť nepoužívané značky - - Resume torrents - Obnoviť torrenty - - - Pause torrents - Pozastaviť torrenty - Remove torrents Odstrániť torrenty - - New Tag - Nová značka - Start torrents @@ -10728,17 +10651,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10990,17 +10913,6 @@ Please choose a different name and try again. Sledovanie adresára: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Nepodarilo sa vyhradiť pamäť pri čítaní súboru. Súbor: "%1". Chyba: "%2" - - - Invalid metadata - Neplatné metadáta - - TorrentOptionsDialog @@ -11038,10 +10950,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - Rýchlostné obmedzenia torrentu - Download: @@ -11074,34 +10982,6 @@ Please choose a different name and try again. Upload: Nahrávanie: - - Torrent share limits - Limity zdieľania torrentu - - - Use global share limit - Použiť globálny limit zdieľania - - - Set no share limit - Žiadny limit - - - Set share limit to - Nastaviť limit zdieľania na - - - ratio - ratio - - - total minutes - minút celkom - - - inactive minutes - minút neaktivity - Disable DHT for this torrent @@ -11143,14 +11023,6 @@ Please choose a different name and try again. Not applicable to private torrents Nemožno použiť na súkromné torrenty - - No share limit method selected - Nie je vybraná žiadna metóda obmedzenia zdieľania - - - Please select a limit method first - Prosím, najprv vyberte spôsob obmedzenia - TorrentShareLimitsWidget @@ -11210,7 +11082,7 @@ Please choose a different name and try again. Remove torrent - Odstrániť torrent + Odstrániť torrent @@ -11220,7 +11092,7 @@ Please choose a different name and try again. Enable super seeding for torrent - Povoliť super seeding pre torrent + Povoliť super seeding pre torrent @@ -11235,10 +11107,6 @@ Please choose a different name and try again. Torrent Tags Štítky torrentu - - New Tag - Nová značka - Add tag @@ -11273,78 +11141,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Chyba: '%1' nie je platný torrent súbor. - + Priority must be an integer Priorita musí byť celé číslo - + Priority is not valid Priorita je neplatná. - + Torrent's metadata has not yet downloaded Metadáta torrentu ešte neboli stiahnuté - + File IDs must be integers ID súboru musia byť celé čísla - + File ID is not valid ID súboru nie je platné - - - - + + + + Torrent queueing must be enabled Radenie torrentov musí byť zapnuté - - + + Save path cannot be empty Cesta pre uloženie nemôže byť prázdna - - + + Cannot create target directory Nedá sa vytvoriť cieľový priečinok - - + + Category cannot be empty Kategória nemôže byť prázdna - + Unable to create category Nemožno vytvoriť kategóriu - + Unable to edit category Nemožno upraviť kategóriu - + Unable to export torrent file. Error: %1 Nemožno exportovať torrent súbor. Chyba: %1 - + Cannot make save path Nemožno vytvoriť cestu pre uloženie @@ -11364,39 +11232,39 @@ Please choose a different name and try again. Parameter 'sort' je chybný - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" nie je platný index súboru. - + Index %1 is out of bounds. Index %1 je mimo rozsah - - + + Cannot write to directory Nedá sa zapisovať do adresára - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI nastaviť umiestnenie: presunúť "%1", z "%2" do "%3" - + Incorrect torrent name Nesprávny názov torrentu - - + + Incorrect category name Nesprávny názov kategórie @@ -11501,23 +11369,11 @@ Please choose a different name and try again. Min Announce - - Invalid status! - Neplatný stav - - - URL/Announce endpoint - Koncový bod ohlásenia/URL - Tier Tier - - Protocol - Protokol - Status @@ -11548,18 +11404,6 @@ Please choose a different name and try again. Message Správa - - Next announce - Ďalšie ohlásenie - - - Min announce - Min. ohlásenie - - - v%1 - v%1 - TrackerListWidget @@ -11569,73 +11413,73 @@ Please choose a different name and try again. Torrent je súkromný - + Tracker editing Úprava trackera - + Tracker URL: URL trackera: - - + + Tracker editing failed Úprava trackera zlyhala - + The tracker URL entered is invalid. Zadaná URL trackera je neplatné. - + The tracker URL already exists. URL trackera už existuje. - + Edit tracker URL... Upraviť URL trackera... - + Remove tracker Odstrániť tracker - + Copy tracker URL Skopírovať URL trackera - + Force reannounce to selected trackers Vynútiť znovuohlásenie vybraným trackerom - + Force reannounce to all trackers Vynútiť znovuohlásenie všetkým trackerom - + Resize columns Zmeniť rozmery stĺpcov - + Resize all non-hidden columns to the size of their contents Zmeniť rozmery viditeľných stĺpcov podľa veľkosti ich obsahu - + Add trackers... Pridať trackery... - + Column visibility Viditeľnosť stĺpcov @@ -11725,14 +11569,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - Obnoviť torrenty - - - Pause torrents - Pozastaviť torrenty - Remove torrents @@ -11855,10 +11691,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Kontrolujú sa dáta na obnovenie sťahovania - - Paused - Pozastavený - Completed @@ -11899,21 +11731,16 @@ Please choose a different name and try again. % Done Priebeh - - Status - Torrent status (e.g. downloading, seeding, paused) - Stav - Stopped - + Zastavené Status Torrent status (e.g. downloading, seeding, stopped) - Stav + Stav @@ -12029,22 +11856,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Čas aktivity + Čas aktivity Yes - Áno + Áno No - Nie - - - Time Active - Time (duration) the torrent is active (not paused) - Čas aktivity + Nie @@ -12146,358 +11968,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Viditeľnosť stĺpca - + Recheck confirmation Znovu skontrolovať potvrdenie - + Are you sure you want to recheck the selected torrent(s)? Ste si istý, že chcete znovu skontrolovať vybrané torrenty? - + Rename Premenovať - + New name: Nový názov: - + Choose save path Zvoľte cieľový adresár - Confirm pause - Potvrdiť pozastavenie - - - Would you like to pause all torrents? - Chcete pozastaviť všetky torrenty? - - - Confirm resume - Potvrdiť obnovenie - - - Would you like to resume all torrents? - Chcete obnoviť všetky torrenty? - - - + Unable to preview Nie je možné vykonať náhľad súboru - + The selected torrent "%1" does not contain previewable files Vybraný torrent "%1" neobsahuje súbory, u ktorých sa dá zobraziť náhľad. - + Resize columns Zmeniť rozmery stĺpcov - + Resize all non-hidden columns to the size of their contents Zmeniť veľkosť všetkých viditeľných stĺpcov na dĺžku ich obsahu - + Enable automatic torrent management Povoliť automatickú správu torrentu - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Naozaj chcete aktivovať automatickú správu pre vybrané torrenty? Môžu byť presunuté. - Add Tags - Pridať značky - - - + Choose folder to save exported .torrent files Vyberte adresár pre ukladanie exportovaných .torrent súborov - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Export .torrent súboru zlyhal. Torrent: "%1". Umiestnenie: "%2". Dôvod: "%3" - + A file with the same name already exists Súbor s rovnakým názvom už existuje - + Export .torrent file error Chyba exportu .torrent súboru - + Remove All Tags Odstrániť všetky štítky - + Remove all tags from selected torrents? Odstrániť všetky štítky z vybratých torrentov? - + Comma-separated tags: Čiarkou oddelené značky: - + Invalid tag Zlá značka - + Tag name: '%1' is invalid Názov značky: '%1' je neplatný - &Resume - Resume/start the torrent - Pok&račovať - - - &Pause - Pause the torrent - &Pozastaviť - - - Force Resu&me - Force Resume/start the torrent - Vynútiť pokračovanie - - - + Pre&view file... Náhľad súboru... - + Torrent &options... Nastavenia torrentu... - + Open destination &folder Otvoriť cieľový adresár - + Move &up i.e. move up in the queue Pos&unúť hore - + Move &down i.e. Move down in the queue Posunúť &dole - + Move to &top i.e. Move to top of the queue Posunúť navrch - + Move to &bottom i.e. Move to bottom of the queue Posunúť nadol - + Set loc&ation... Nastaviť umiestnenie... - + Force rec&heck Vynútiť opätovnú kontrolu - + Force r&eannounce Vynútiť znovuohlás&enie - + &Magnet link &Magnet odkaz - + Torrent &ID &ID torrentu - + &Comment &Komentár - + &Name &Názov - + Info &hash v1 Info &hash v1 - + Info h&ash v2 Info h&ash v2 - + Re&name... Preme&novať... - + Edit trac&kers... Upraviť trac&kery... - + E&xport .torrent... E&xportovať .torrent... - + Categor&y Kategória - + &New... New category... &Nová... - + &Reset Reset category &Resetovať - + Ta&gs Značky - + &Add... Add / assign multiple tags... Prid&ať... - + &Remove All Remove all tags Odst&rániť všetko - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue Poradovník - + &Copy Kopírovať - + Exported torrent is not necessarily the same as the imported Exportovaný torrent nie je nutne rovnaký ako ten importovaný - + Download in sequential order Sťahovať v poradí - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Pri exportovaní .torrent súborov nastali chyby. Pre detaily skontrolujte log vykonávania. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent Odst&rániť - + Download first and last pieces first Sťahovať najprv prvú a poslednú časť - + Automatic Torrent Management Automatické spravovanie torrentu - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatický režim znamená, že niektoré vlastnosti torrentu (napr. cesta na ukladanie) budú určené na základe priradenej kategórie - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Vynútenie znovuohlásenia nie je možné ak je torrent pozastavený / v poradovníku / v chybovom stave / kontrolovaný - - - + Super seeding mode Režim super seedovania @@ -12629,32 +12412,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Binárka Pythonu sa našla. Názov: "%1". Verzia: "%2" - + Failed to find Python executable. Path: "%1". Nepodarilo sa nájsť binárku Pythonu. Cesta: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Nepodarilo sa nájsť `python3` binárku v systémovej premennej PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Nepodarilo sa nájsť `python` binárku v systémovej premennej PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Nepodarilo sa nájsť `python` binárku vo Windows Registry. - + Failed to find Python executable Nepodarilo sa nájsť Python binárku @@ -12746,52 +12529,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Bol uvedený neprijateľný názov cookie relácie: "%1". Použije sa východzí. - + Unacceptable file type, only regular file is allowed. Neprijateľný typ súboru, iba správne súbory sú povolené. - + Symlinks inside alternative UI folder are forbidden. Symbolické linky sú v alternatívnom UI zakázané. - + Using built-in WebUI. Používa sa vstavané WebUI. - + Using custom WebUI. Location: "%1". Používa sa vlastné WebUI. Umiestnenie: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. WebUI preklad pre vybrané locale (%1) bol úspešne načítaný. - + Couldn't load WebUI translation for selected locale (%1). Nepodarilo sa načítať WebUI preklad pre vybrané locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Chýbajúce ':' oddeľovač vo vlastnej HTTP hlavičke WebUI: "%1" - + Web server error. %1 Chyba web servera: %1 - + Web server error. Unknown error. Chyba web servera. Neznáma chyba. @@ -12849,7 +12632,7 @@ Please choose a different name and try again. Unknown error - Neznáma chyba + Neznáma chyba diff --git a/src/lang/qbittorrent_sl.ts b/src/lang/qbittorrent_sl.ts index d523d6642..47896f6ec 100644 --- a/src/lang/qbittorrent_sl.ts +++ b/src/lang/qbittorrent_sl.ts @@ -170,10 +170,6 @@ Never show again Ne prikaži več - - Torrent settings - Torrent nastavitve - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Možnosti torrenta @@ -235,25 +231,25 @@ Pogoj za ustavitev: - - + + None Brez - - + + Metadata received Prejeti metapodatki - + Torrents that have metadata initially will be added as stopped. Torrenti, ki imajo metapodatke, bodo sprva dodani v premoru. - + Files checked Preverjene datoteke @@ -368,112 +364,112 @@ Shrani kot datoteko .torrent ... - + I/O Error I/O Napaka - + Not Available This comment is unavailable Ni na voljo. - + Not Available This date is unavailable Ni na voljo - + Not available Ni na voljo - + Magnet link Magnetna povezava - + Retrieving metadata... Pridobivam podatke... - - + + Choose save path Izberi mapo za shranjevanje - + No stop condition is set. Nastavljen ni noben pogoj za ustavitev. - + Torrent will stop after metadata is received. Torrent se bo zaustavil, ko se bodo prejeli metapodatki. - + Torrent will stop after files are initially checked. Torrent se bo zaustavil po začetnem preverjanju datotek. - + This will also download metadata if it wasn't there initially. S tem se bodo prejeli tudi metapodatki, če še niso znani. - + N/A / - + %1 (Free space on disk: %2) %1 (Neporabljen prostor na disku: %2) - + Not available This size is unavailable. Ni na voljo - + Torrent file (*%1) Datoteka torrent (*%1) - + Save as torrent file Shrani kot datoteko .torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Datoteke '%1' z metapodatki torrenta ni bilo mogoče izvoziti: %2. - + Cannot create v2 torrent until its data is fully downloaded. Ni mogoče ustvariti torrenta v2, dokler se njegovi podatki v celoti ne prejmejo. - + Filter files... Filtriraj datoteke ... - + Parsing metadata... Razpoznavanje podatkov... - + Metadata retrieval complete Pridobivanje podatkov končano @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Prenašanje torrenta... Vir: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Dodajanje torrenta ni uspelo. Vir: "%1". Razlog: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Zaznan je bil poskus dodajanja podvojenega torrenta. Vir: %1. Obstoječi torrent: %2. Rezultat: %3 + Zaznan je bil poskus dodajanja podvojenega torrenta. Vir: %1. Obstoječi torrent: %2. Rezultat: %3 - + Merging of trackers is disabled Združevanje sledilnikov je onemogočeno - + Trackers cannot be merged because it is a private torrent Sledilnikov ni mogoče združiti, ker gre za zasebni torrent - + Trackers are merged from new source Sledilniki so združeni iz novega vira + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Preveri torrent po prenosu - - + + ms milliseconds ms - + Setting Nastavitve - + Value Value set for this setting Vrednost - + (disabled) (onemogočeno) - + (auto) (samodejno) - - + + min minutes min - + All addresses Vsi naslovi - + qBittorrent Section qBittorrent profil - - + + Open documentation Odpri dokumentacijo - + All IPv4 addresses Vsi naslovi IPv4 - + All IPv6 addresses Vsi naslovi IPv6 - + libtorrent Section libtorrent profil - + Fastresume files Hitro nadaljevanje datotek - + SQLite database (experimental) Podatkovna baza SQLite (preizkusna različica) - + Resume data storage type (requires restart) Nadaljuj vrsto hrambe podatkov (potreben je ponovni zagon) - + Normal Navadna - + Below normal Pod navadno - + Medium Srednja - + Low Nizka - + Very low Zelo nizka - + Physical memory (RAM) usage limit Omejitev porabe pomnilnika (RAM) - + Asynchronous I/O threads Asinhrone V/i niti - + Hashing threads Hash niti - + File pool size Velikost področja dototek - + Outstanding memory when checking torrents Izjemen pomnilnik pri preverjanju torrentov - + Disk cache Predpomnilnik diska - - - - + + + + + s seconds s - + Disk cache expiry interval Predpomnilnik poteče v - + Disk queue size Velikost čakalne vrste na disku - - + + Enable OS cache Omogoči predpomnilnik OS - + Coalesce reads & writes Poveži branje in pisanje - + Use piece extent affinity Uporabi podobno velikost kosov - + Send upload piece suggestions Pošlji primere za kose za pošiljanje - - - - - + + + + + 0 (disabled) 0 (onemogočeno) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Interval shranjevanja podatkov o prenosu [0: onemogočeno] - + Outgoing ports (Min) [0: disabled] Vrata za odhodne povezave (najmanj) [0: onemogočeno] - + Outgoing ports (Max) [0: disabled] Vrata za odhodne povezave (največ) [0: onemogočeno] - + 0 (permanent lease) 0 (trajno oddajanje) - + UPnP lease duration [0: permanent lease] Trajanje oddajanja UPnP [0: trajno oddajanje] - + Stop tracker timeout [0: disabled] Ustavi časovno omejitev sledilnika [0: onemogočeno] - + Notification timeout [0: infinite, -1: system default] Časovna omejitev obvestila [0: neomejeno, -1: sistemsko privzeto] - + Maximum outstanding requests to a single peer Največje število čakajočih zahtev posameznemu soležniku - - - - - + + + + + KiB KiB - + (infinite) (neomejeno) - + (system default) (sistemsko privzeto) - + Delete files permanently - + Trajno izbriši datoteke - + Move files to trash (if possible) - + Premakni datoteke v koš (če je mogoče) - + Torrent content removing mode - + Način odstranjevanja vsebine torrentov - + This option is less effective on Linux V sistemu Linux je ta možnost manj učinkovita - + Process memory priority Prioriteta procesa v pomnilniku - + Bdecode depth limit Omejitev globine Bdecode - + Bdecode token limit Omejitev žetona Bdecode - + Default Privzeto - + Memory mapped files Datoteke, preslikane v pomnilnik - + POSIX-compliant Skladno s POSIX - + Simple pread/pwrite - + Disk IO type (requires restart) Tip IO diska (zahtevan je ponovni zagon) - - + + Disable OS cache Onemogoči predpomnilnik OS - + Disk IO read mode Način branja IO diska - + Write-through Prepiši - + Disk IO write mode Način pisanja IO diska - + Send buffer watermark Pošlji oznako medpomnilnika - + Send buffer low watermark Pošlji oznako zapolnjenega medpomnilnika - + Send buffer watermark factor Pošlji faktor oznake medpomnilnika - + Outgoing connections per second Odhodnih povezav na sekundo - - + + 0 (system default) 0 (sistemsko privzeto) - + Socket send buffer size [0: system default] Velikost vtičnika za medpomnilnik pošiljanja [0: sistemsko privzeto] - + Socket receive buffer size [0: system default] Velikost vtičnika za medpomnilnik prejemanja [0: sistemsko privzeto] - + Socket backlog size Velikost vtičnika za kontrolni seznam - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit Velikostna omejitev datoteke .torrent - + Type of service (ToS) for connections to peers Vrsta storitve (ToS) za povezovanje s soležniki - + Prefer TCP Raje uporabi TCP - + Peer proportional (throttles TCP) Soležniki sorazmerno (duši TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Podpora internacionaliziranim domenam (IDN) - + Allow multiple connections from the same IP address Dovoli več povezav z istega IP naslova - + Validate HTTPS tracker certificates Validiraj HTTPS certifikate trackerja - + Server-side request forgery (SSRF) mitigation Ublažitev ponarejanja zahtev na strani strežnika (SSRF) - + Disallow connection to peers on privileged ports Prepovej povezavo do soležnikov na priviligiranih vratih - + It appends the text to the window title to help distinguish qBittorent instances Naslovu okna doda besedilo, ki pomaga razlikovati primerke qBittorent - + Customize application instance name Prilagoditev imena instance aplikacije - + It controls the internal state update interval which in turn will affect UI updates Nadzira interni interval posodobitve stanja, kar bo vplivalo na posodobitve uporabniškega vmesnika - + Refresh interval Interval osveževanja - + Resolve peer host names Razreši host imena soležnikov - + IP address reported to trackers (requires restart) IP-naslov, sporočen sledilnikom (zahteva ponovni zagon) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed Znova sporoči vsem sledilnikom, ko se spremeni IP ali vrata - + Enable icons in menus Omogoči ikone v menijih - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Omogoči posredovanje vrat za vgrajeni sledilnik - + Enable quarantine for downloaded files Omogoči karanteno za prenesene datoteke - + Enable Mark-of-the-Web (MOTW) for downloaded files Omogoči oznako Mark-of-the-Web (MOTW) za prenesene datoteke - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + Prezri napake SSL - + (Auto detect if empty) (Samodejno zazna, če je prazno) - + Python executable path (may require restart) Pot izvršljive datoteke Python (morda bo potreben ponovni zagon) - + Start BitTorrent session in paused state - + sec seconds - sec + sec - + -1 (unlimited) - + -1 (neomejeno) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents Potrdi odstranitev sledilnika iz vseh torrentov - + Peer turnover disconnect percentage Delež soležnikov s prekinjeno izmenjavo - + Peer turnover threshold percentage Delež soležnikov s prekinjeno izmenjavo - + Peer turnover disconnect interval Interval med prekinitvami izmenjave soležnikov - + Resets to default if empty Ponastavi na privzeto, če je prazno - + DHT bootstrap nodes DHT zagonsko vozlišče - + I2P inbound quantity I2P vhodna količina - + I2P outbound quantity I2P izhodna količina - + I2P inbound length Dolžina vhodnega I2P - + I2P outbound length Dolžina izhodnega I2P - + Display notifications Prikaži obvestila - + Display notifications for added torrents Prikaži obvestila za dodane torrente - + Download tracker's favicon Prenesi ikono zaznamka sledilnika - + Save path history length Dolžina zgodovine mest shranjevanja - + Enable speed graphs Omogoči grafe hitrosti - + Fixed slots Fiksne reže - + Upload rate based Temelji na stopnji nalaganja - + Upload slots behavior Vedenje povezav za pošiljanje - + Round-robin Krožen - + Fastest upload Najhitrejše pošiljanje - + Anti-leech Proti odjemalcem - + Upload choking algorithm Pošlji algoritem blokiranja - + Confirm torrent recheck Potrdi ponovno preverjanje torrenta - + Confirm removal of all tags Potrdi odstranitev vseh oznak - + Always announce to all trackers in a tier Vedno sporoči vsem sledilcem na stopnji - + Always announce to all tiers Vedno sporoči vsem stopnjam - + Any interface i.e. Any network interface Katerikoli vmesnik - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP algoritem mešanega načina - + Resolve peer countries Razreši države soležnikov - + Network interface Omrežni vmesnik - + Optional IP address to bind to Izbiren IP naslov za povezavo - + Max concurrent HTTP announces Največje število HTTP naznanitev - + Enable embedded tracker Omogoči vdelane sledilnike - + Embedded tracker port Vrata vdelanih sledilnikov @@ -1382,17 +1393,17 @@ Invalid directory path - + Neveljavna pot do mape Directory does not exist - + Mapa ne obstaja Invalid mode, allowed values: %1 - + Neveljaven način, dovoljene vrednosti: %1 @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Izvajane v prenosnem načinu. Mapa profila je bila najdena samodejno na: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Zaznana zastavica odvečne ukazne vrstice: "%1". Prenosni način pomeni relativno hitro nadaljevanje. - + Using config directory: %1 Uporabljen imenik za nastavitve: %1 - + Torrent name: %1 Ime torrenta: %1 - + Torrent size: %1 Velikost torrenta: %1 - + Save path: %1 Mesto shranjevanja: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent je bil prejet v %1. - - + + Thank you for using qBittorrent. Hvala, ker uporabljate qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, pošilja E-poštno obvestilo - + Add torrent failed Dodajanje torrenta spodletelo - + Couldn't add torrent '%1', reason: %2. Torrenta %1 ni bilo mogoče dodati, razlog: %2. - + The WebUI administrator username is: %1 Uporabniško ime skrbnika WebUI je: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Skrbniško geslo WebUI ni bilo nastavljeno. Za to sejo je na voljo začasno geslo: %1 - + You should set your own password in program preferences. Nastaviti si morate lastno geslo v nastavitvah programa. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI je onemogočen! Če želite omogočiti spletni uporabniški vmesnik, ročno uredite konfiguracijsko datoteko. - + Running external program. Torrent: "%1". Command: `%2` Izvajanje zunanjega programa. Torrent: "%1". Ukaz: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Zagon zunanjega programa ni uspel. Torrent: "%1". Ukaz: `%2` - + Torrent "%1" has finished downloading Prejemanje torrenta "%1" dokončano - + WebUI will be started shortly after internal preparations. Please wait... WebUI se bo zagnal po notranjih pripravah. Počakajte ... - - + + Loading torrents... Nalaganje torrentov ... - + E&xit I&zhod - + I/O Error i.e: Input/Output Error Napaka I/O - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Razlog: %2 - + Torrent added Torrent dodan - + '%1' was added. e.g: xxx.avi was added. '%1' je dodan. - + Download completed Prejem dokončan - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 se je zagnal. ID procesa: %2 - + This is a test email. - + To je preizkusno e-poštno sporočilo. - + Test email - + Preizkusno sporočilo - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. Prejemanje '%1' je dokončano. - + Information Podatki - + To fix the error, you may need to edit the config file manually. Če želite odpraviti napako, boste morda morali konfiguracijsko datoteko urediti ročno. - + To control qBittorrent, access the WebUI at: %1 Za upravljanje qBittorrenta odprite spletni vmesnik na: %1 - + Exit Izhod - + Recursive download confirmation Rekurzivna potrditev prejema - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' vsebuje datoteke .torrent. Ali želite nadaljevati z njihovim prejemom? - + Never Nikoli - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekurzivni prenos datoteke .torrent znotraj torrenta. Izvorni torrent: "%1". Datoteka: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Omejitve porabe pomnilnika (RAM) ni bilo mogoče nastaviti. Koda napake: %1. Sporočilo napake: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Nastavitev trde omejitve uporabe fizičnega pomnilnika (RAM) ni uspela. Zahtevana velikost: %1. Sistemska trda omejitev: %2. Koda napake: %3. Sporočilo o napaki: "%4" - + qBittorrent termination initiated Začeta zaustavitev programa qBittorrent - + qBittorrent is shutting down... qBittorrent se zaustavlja ... - + Saving torrent progress... Shranjujem napredek torrenta ... - + qBittorrent is now ready to exit qBittorrent je zdaj pripravljen na izhod @@ -1767,263 +1778,263 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 &Izvozi... - + Matches articles based on episode filter. Prilagodi članke na podlagi filtra epizod. - + Example: Primer: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match bo uejlo epizode ene sezone 2, 5, 8 do 15, 30 in naprej - + Episode filter rules: Filter pravila epizod: - + Season number is a mandatory non-zero value Številka sezone je obvezno vrednost večja od 0 - + Filter must end with semicolon Filter se mora končati z pomišljajem - + Three range types for episodes are supported: Tri vrste epizod so podprte: - + Single number: <b>1x25;</b> matches episode 25 of season one Sama številka: <b>1x25;</b> ustreza epizodi 25 sezone 1 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normalen razpon: <b>1x25-40;</b> ustreza epizodam 25 do 40 sezone 1 - + Episode number is a mandatory positive value Številka sezone je obvezno vrednost večja od 0 - + Rules Pravila - + Rules (legacy) Pravila (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Neskončen razpon: <b>1x25-;</b> ustreza epizodam 25 in naprej sezone 1 in vsem epizodam kasnejših sezon - + Last Match: %1 days ago Zadnje ujemanje: pred %1 dnevi - + Last Match: Unknown Zadnje ujemanje: Neznano - + New rule name Ime novega pravila - + Please type the name of the new download rule. Prosim vpiši ime novega pravila prenosov. - - + + Rule name conflict Konflikt imen pravil. - - + + A rule with this name already exists, please choose another name. Pravilo z tem imenom že obstaja, prosim izberi drugo ime. - + Are you sure you want to remove the download rule named '%1'? Ali zares želiš odstraniti pravilo prenosov z imenom %1? - + Are you sure you want to remove the selected download rules? Ali ste prepričani, da želite odstraniti izbrana pravila za prejem? - + Rule deletion confirmation Potrditev odstranitev pravila - + Invalid action Neveljavno dejanje - + The list is empty, there is nothing to export. Seznam je prazen. Ničesar ni za izvoz. - + Export RSS rules Izvozi RSS pravila - + I/O Error I/O Napaka - + Failed to create the destination file. Reason: %1 Spodletelo ustvarjanje ciljne datoteke. Razlog: %1 - + Import RSS rules Uvozi RSS pravila - + Failed to import the selected rules file. Reason: %1 Spodletelo uvažanje izbrane datoteke s pravili. Razlog: %1 - + Add new rule... Dodaj novo pravilo ... - + Delete rule Odstrani pravilo - + Rename rule... Preimenuj pravilo ... - + Delete selected rules Odstrani izbrana pravila - + Clear downloaded episodes... Počisti prenesene epizode... - + Rule renaming Preimenovanje pravila - + Please type the new rule name Vpišite novo ime pravila - + Clear downloaded episodes Počisti prenesene epizode - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Ali ste prepričani da želite počistiti seznam prenesenih epizod za izbrano pravilo? - + Regex mode: use Perl-compatible regular expressions Način regularnega izraza: uporabite Perlu kompatibilne regularne izraze - - + + Position %1: %2 Položaj %1: %2 - + Wildcard mode: you can use Način nadomestnega znaka: lahko uporabite - - + + Import error Napaka pri uvozu - + Failed to read the file. %1 Branje datoteke ni uspelo. %1 - + ? to match any single character ? za ujemanje enega znaka - + * to match zero or more of any characters * za ujemanje nič ali več znakov - + Whitespaces count as AND operators (all words, any order) Presledki delujejo kot IN funkcije (vse besede, kakršen koli red) - + | is used as OR operator | deluje kot ALI funkcija - + If word order is important use * instead of whitespace. Če je vrstni red besed pomemben uporabi * namesto presledka. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Izraz s praznim %1 delom (npr. %2) - + will match all articles. se bo ujemal z vsemi članki. - + will exclude all articles. bo izločil vse članke. @@ -2075,28 +2086,38 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Podatkov o nadaljevanju ni mogoče razčleniti: neveljavna oblika - - + + Cannot parse torrent info: %1 Podatkov o torrentu ni mogoče razčleniti: %1 - + Cannot parse torrent info: invalid format Podatkov o torrentu ni mogoče razčleniti: neveljavna oblika - + Mismatching info-hash detected in resume data V podatkih o nadaljevanju je bila zaznana neujemajoča se zgoščena informacija - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Metapodatkov torrentov ni bilo mogoče shraniti v datoteko '%1'. Napaka: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Podatkov o nadaljevanju torrenta ni bilo mogoče shraniti v '%1'. Napaka: %2. @@ -2107,16 +2128,17 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 + Cannot parse resume data: %1 Podatkov o nadaljevanju ni mogoče razčleniti: %1 - + Resume data is invalid: neither metadata nor info-hash was found Podatki o nadaljevanju so neveljavni: zaznani niso bili niti metapodatki niti informativna zgoščena vrednost - + Couldn't save data to '%1'. Error: %2 Podatkov ni bilo mogoče shraniti v '%1'. Napaka: %2 @@ -2124,38 +2146,60 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 BitTorrent::DBResumeDataStorage - + Not found. Ni najdeno. - + Couldn't load resume data of torrent '%1'. Error: %2 Podatkov o nadaljevanju torrenta '%1' ni bilo mogoče naložiti. Napaka: %2 - - + + Database is corrupted. Zbirka podatkov je poškodovana. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Načina beleženja Write-Ahead Logging (WAL) ni bilo možno omogočiti. Napaka: %1. - + Couldn't obtain query result. Rezultata poizvedbe ni bilo mogoče pridobiti. - + WAL mode is probably unsupported due to filesystem limitations. Način WAL verjetno ni podprt zaradi omejitev datotečnega sistema. - + + + Cannot parse resume data: %1 + Podatkov o nadaljevanju ni mogoče razčleniti: %1 + + + + + Cannot parse torrent info: %1 + Podatkov o torrentu ni mogoče razčleniti: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Transakcije ni bilo mogoče začeti. Napaka: %1 @@ -2163,22 +2207,22 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Metapodatkov torrentov ni bilo mogoče shraniti. Napaka: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Podatkov o nadaljevanju za torrent '%1' ni bilo mogoče shraniti. Napaka: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Podatkov o nadaljevanju torrenta '%1' ni bilo mogoče izbrisati. Napaka: %2 - + Couldn't store torrents queue positions. Error: %1 Položajev torrentov v čakalni vrsti ni bilo mogoče shraniti. Napaka: %1 @@ -2186,530 +2230,507 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Podpora za porazdeljeno zgoščeno tabelo (DHT): %1 - - - - - - - - - + + + + + + + + + ON VKLJUČENO - - - - - - - - - + + + + + + + + + OFF IZKLJUČENO - - + + Local Peer Discovery support: %1 Podpora za lokalno odkrivanje soležnikov: %1 - + Restart is required to toggle Peer Exchange (PeX) support Za vklop ali izklop izmenjave soležnikov (PeX) je potreben ponovni zagon - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrenta ni bilo mogoče nadaljevati. Torrent: "%1". Razlog: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrenta ni bilo mogoče nadaljevati: zaznan je neskladen ID torrenta. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Zaznani so neskladni podatki: v datoteki z nastavitvami manjka kategorija. Kategorija bo obnovljena, vendar bodo njene nastavitve ponastavljene. Torrent: "%1". Kategorija: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Zaznani so neskladni podatki: neveljavna kategorija. Torrent: "%1". Kategorija: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Zaznano je neujemanje med potmi shranjevanja obnovljene kategorije in trenutno potjo shranjevanja torrenta. Torrent se je preklopil na ročni način. Torrent: "%1". Kategorija: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Zaznani so neskladni podatki: v datoteki z nastavitvami manjka oznaka. Oznaka bo obnovljena. Torrent: "%1". Oznaka: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Zaznani so neskladni podatki: neveljavna oznaka. Torrent: "%1". Oznaka: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Zaznan je dogodek bujenja sistema. Ponovno obveščanje vseh sledilnikov... - + Peer ID: "%1" ID soležnika: "%1" - + HTTP User-Agent: "%1" Uporabniški agent HTTP: "%1" - + Peer Exchange (PeX) support: %1 Podpora za izmenjavo soležnikov (PeX): %1 - - + + Anonymous mode: %1 Anonimni način: %1 - - + + Encryption support: %1 Podpora za šifriranje: %1 - - + + FORCED PRISILJENO - + Could not find GUID of network interface. Interface: "%1" GUID-ja omrežnega vmesnika ni bilo mogoče najti. Razlog: "%1" - + Trying to listen on the following list of IP addresses: "%1" Poskus poslušanja na tem seznamu naslovov IP: "%1" - + Torrent reached the share ratio limit. Torrent je dosegel omejitev razmerja deljenja. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent odstranjen. - - - Removed torrent and deleted its content. - Torrent odstranjen in njegova vsebina izbrisana. - - - Torrent paused. - Torrent začasno ustavljen. - - - + Super seeding enabled. Super sejanje omogočeno. - + Torrent reached the seeding time limit. Torrent je dosegel omejitev časa sejanja. - + Torrent reached the inactive seeding time limit. Torrent je dosegel časovno omejitev neaktivnega sejanja. - + Failed to load torrent. Reason: "%1" Torrenta ni bilo mogoče naložiti. Razlog: "%1" - + I2P error. Message: "%1". Napaka I2P. Sporočilo: "%1". - + UPnP/NAT-PMP support: ON Podpora za UPnP/NAT-PMP: VKLJUČENA - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Odstranjevanje torrenta. - + Removing torrent and deleting its content. - + Odstranjevanje torrenta in brisanje njegove vsebine. - + Torrent stopped. - + Torrent zaustavljen. - + Torrent content removed. Torrent: "%1" - + Vsebina torrenta odstranjena. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Vsebine torrenta ni bilo mogoče odstraniti. Torrent: "%1". Napaka: "%2" - + Torrent removed. Torrent: "%1" - + Torrent odstranjen. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Zaznan poskus dodajanja dvojnika torrenta. Obstoječi torrent: %1. Rezultat: %2 - + Merging of trackers is disabled - Združevanje sledilnikov je onemogočeno + Združevanje sledilnikov je onemogočeno - + Trackers cannot be merged because it is a private torrent - Sledilnikov ni mogoče združiti, ker gre za zasebni torrent + Sledilnikov ni mogoče združiti, ker gre za zasebni torrent - + Trackers are merged from new source - Sledilniki so združeni iz novega vira + Sledilniki so združeni iz novega vira - + UPnP/NAT-PMP support: OFF Podpora za UPnP/NAT-PMP: IZKLJUČENA - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Torrenta ni bilo mogoče izvoziti. Torrent: "%1". Cilj: "%2". Razlog: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Shranjevanje podatkov o nadaljevanju je prekinjeno. Število torrentov v prejemanju: %1 - + The configured network address is invalid. Address: "%1" Nastavljeni omrežni naslov je neveljaven. Naslov: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Konfiguriranega omrežnega naslova za poslušanje ni bilo mogoče najti. Naslov: "%1" - + The configured network interface is invalid. Interface: "%1" Nastavljeni omrežni vmesnik je neveljaven. Vmesnik: "%1" - + Tracker list updated - + Seznam sledilnikov posodobljen - + Failed to update tracker list. Reason: "%1" - + Seznama sledilnikov ni bilo mogoče posodobiti. Razlog: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Zavrnjen neveljaven naslov IP med uporabo seznama prepovedanih naslovov IP. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Sledilnik dodan torrentu. Torrent: "%1". Sledilnik: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Sledilnik odstranjen iz torrenta. Torrent: "%1". Sledilnik: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" URL sejalca dodan torrentu. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Odstranjen URL semena iz torrenta. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent začasno ustavljen. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent se nadaljuje. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Prejemanje torrenta dokončano. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Premik torrenta preklican. Torrent: "%1". Vir: "%2". Cilj: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent zaustavljen. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Premika torrenta ni bilo mogoče dodati v čakalno vrsto. Torrent: "%1". Vir: "%2". Cilj: "%3". Razlog: torrent se trenutno premika na cilj - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Premika torrenta ni bilo mogoče dodati v čakalno vrsto. Torrent: "%1". Vir: "%2". Cilj: "%3". Razlog: obe poti kažeta na isto lokacijo - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Premik torrenta je dodan v čakalno vrsto. Torrent: "%1". Vir: "%2". Cilj: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Začetek premikanja torrenta. Torrent: "%1". Cilj: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Nastavitev kategorij ni bilo mogoče shraniti. Datoteka: "%1". Napaka: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Nastavitev kategorij ni bilo mogoče razčleniti. Datoteka: "%1". Napaka: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Datoteka s filtri IP uspešno razčlenjena. Število uveljavljenih pravil: %1 - + Failed to parse the IP filter file Datoteke s filtri IP ni bilo mogoče razčleniti - + Restored torrent. Torrent: "%1" Torrent obnovljen. Torrent: "%1" - + Added new torrent. Torrent: "%1" Nov torrent dodan. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Napaka torrenta. Torrent: "%1". Napaka: "%2" - Removed torrent. Torrent: "%1" - Torrent odstranjen. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent odstranjen in njegova vsebina izbrisana. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentu manjkajo parametri SSL. Torrent: "%1". Sporočilo: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Opozorilo o napaki datoteke. Torrent: "%1". Datoteka: "%2". Vzrok: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Preslikava vrat UPnP/NAT-PMP ni uspela. Sporočilo: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Preslikava vrat UPnP/NAT-PMP je uspela. Sporočilo: "%1" - + IP filter this peer was blocked. Reason: IP filter. Filter IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrirana vrata (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). vrata s prednostmi (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" qBittorrent seja je naletela na resno napako. Razlog: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Napaka posrednika SOCKS5. Naslov: %1. Sporočilo: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 omejiitve mešanega načina - + Failed to load Categories. %1 Kategorij ni bilo mogoče naložiti. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Nastavitev kategorij ni bilo mogoče naložiti. Datoteka: "%1". Napaka: "Neveljavna oblika podatkov" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent je bil odstranjen, vendar njegove vsebine in/ali delne datoteke ni bilo možno izbrisati. Torrent: "%1". Napaka: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 je onemogočen - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 je onemogočen - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - DNS iskanje URL semena ni uspelo. Torrent: "%1". URL: "%2". Napaka: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Prejeto sporočilo o napaki iz naslova URL. Torrent: "%1". URL: "%2". Sporočilo: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Uspešno poslušanje na IP. IP: "%1". Vrata: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Neuspešno poslušanje na IP. IP: "%1". Vrata: "%2/%3". Razlog: "%4" - + Detected external IP. IP: "%1" Zaznan zunanji IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Napaka: notranja čakalna vrsta opozoril je polna in opozorila so izpuščena, morda boste opazili poslabšano delovanje. Izpuščena vrsta opozorila: "%1". Sporočilo: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent uspešno prestavljen. Torrent: "%1". Cilj: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrenta ni bilo mogoče premakniti. Torrent: "%1". Vir: "%2". Cilj: "%3". Razlog: "%4" @@ -2759,47 +2780,47 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Ni bilo mogoče pisati v datoteko. Razlog: "%1". Torrent je sedaj v načinu samo za pošiljanje. - + Download first and last piece first: %1, torrent: '%2' Najprej prejmi prvi in zadnji kos: %1, torrent: "%2" - + On vklopljeno - + Off izklopljeno - + Failed to reload torrent. Torrent: %1. Reason: %2 Torrenta ni bilo mogoče znova naložiti. Torrent: %1. Razlog: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrenta ni bilo mogoče obnoviti. Datoteke so bile verjetno premaknjene ali pa shramba ni na voljo. Torrent: "%1". Razlog: "%2" - + Missing metadata Manjkajoči metapodatki - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Preimenovanje datoteke ni uspelo. Torrent: "%1", datoteka: "%2", razlog: "%3" - + Performance alert: %1. More info: %2 Opozorilo o učinkovitosti delovanja: %1. Več informacij: %2 @@ -2836,11 +2857,6 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Expected integer number in environment variable '%1', but got '%2' Pričakovano število v okoljski spremenljivki '%1', ampak dobljeno '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parameter '%1' mora slediti sintaksi '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2881,7 +2897,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parameter '%1' mora slediti sintaksi '%1=%2' + Parameter '%1' mora slediti sintaksi '%1=%2' @@ -2969,11 +2985,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Add torrents as running or stopped - - - - Add torrents as started or paused - Dodaj torrente kot začete ali ustavljene + Dodaj torrente kot zagnane ali kot ustavljene @@ -3064,20 +3076,12 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Start torrents - + Začni torrente Stop torrents - - - - Resume torrents - Nadaljuj torrente - - - Pause torrents - Ustavi torrente + Ustavi torrente @@ -3100,7 +3104,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 System - + Sistem @@ -3175,11 +3179,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Also remove the content files - - - - Also permanently delete the files - Trajno izbriši tudi datoteke + Odstrani tudi datoteke z vsebino @@ -3391,47 +3391,43 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Pattern Format - + Vzorčna oblika Plain text - + Golo besedilo Wildcards - + Nadomestni znaki Regular expression - + Regularni izraz GUIAddTorrentManager - + Downloading torrent... Source: "%1" Prenašanje torrenta... Vir: "%1# - Trackers cannot be merged because it is a private torrent - Sledilnikov ni mogoče združiti, ker gre za zasebni torrent - - - + Torrent is already present Torrent je že prisoten - + Trackers cannot be merged because it is a private torrent. - + Sledilnikov ni mogoče združiti, ker je torrent zaseben. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' je že na seznamu prenosov. Ali mu želite pridružiti sledilnike iz novega vira? @@ -3549,6 +3545,40 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Podprte slikovne datoteke + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3690,10 +3720,6 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 &Options... &Možnosti ... - - &Resume - &Nadaljuj - &Remove @@ -3775,10 +3801,6 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Close Window Zapri okno - - R&esume All - &Nadaljuj vse - Manage Cookies... @@ -3822,7 +3844,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Sto&p - + &Ustavi @@ -3894,10 +3916,6 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 &Hibernate System Stanje &mirovanje - - S&hutdown System - Zau&stavi sistem - &Statistics @@ -3918,14 +3936,6 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 &About &O programu - - &Pause - &Premor - - - P&ause All - P&remor vseh - &Add Torrent File... @@ -3959,12 +3969,12 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 - + Show Pokaži - + Check for program updates Preveri posodobitve programa @@ -3979,388 +3989,383 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Če vam je qBittorrent všeč, potem prosim donirajte! - + Execution Log Dnevnik izvedb - + Clear the password Pobriši geslo - + &Set Password &Nastavi geslo - + Preferences Možnosti - + &Clear Password &Pobriši geslo - + Transfers Prenosi - - + + qBittorrent is minimized to tray qBittorrent je pomanjšan v opravilno vrstico - - - + + + This behavior can be changed in the settings. You won't be reminded again. To obnašanje se lahko spremeni v nastavitvah. O tem ne boste več obveščeni. - + Icons Only Samo ikone - + Text Only Samo besedilo - + Text Alongside Icons Besedilo zraven ikon - + Text Under Icons Besedilo pod ikonami - + Follow System Style Upoštevaj slog sistema - - + + UI lock password Geslo za zaklep uporabniškega vmesnika - - + + Please type the UI lock password: Vpišite geslo za zaklep uporabniškega vmesnika: - + Are you sure you want to clear the password? Ali ste prepričani, da želite pobrisati geslo? - + Use regular expressions Uporabi splošne izraze - - + + Search Engine - Iskalnik + Iskalnik - + Search has failed - Iskanje je spodletelo + Iskanje je spodletelo - + Search has finished - + Iskanje je končano - + Search Iskanje - + Transfers (%1) Prenosi (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent se je pravkar posodobil in potrebuje ponovni zagon za uveljavitev sprememb. - + qBittorrent is closed to tray qBittorrent je zaprt v opravilno vrstico - + Some files are currently transferring. Nekatere datoteke se trenutno prenašajo. - + Are you sure you want to quit qBittorrent? Ali ste prepričani, da želite zapreti qBittorrent? - + &No &Ne - + &Yes &Da - + &Always Yes &Vedno da - + Options saved. Možnosti shranjene. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Namestitvenega programa za Python ni bilo mogoče prenesti. Napaka: %1. +Namestite ga ročno. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Preimenovanje namestitvenega programa za Python ni uspelo. Vir: "%1". Cilj: "%2". - + Python installation success. - + Python je bil uspešno nameščen. - + Exit code: %1. - + Reason: installer crashed. - + Razlog: namestitveni program se je sesul. - + Python installation failed. - + Namestitev Pythona ni uspela. - + Launching Python installer. File: "%1". - + Zaganjanje namestitvenega programa za Python. Datoteka: "%1". - - + + Missing Python Runtime Manjka Python Runtime - + qBittorrent Update Available Na voljo je posodobitev - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Za uporabo iskalnika potrebujete Python. Ta pa ni nameščen. Ali ga želite namestiti sedaj? - + Python is required to use the search engine but it does not seem to be installed. Python je potreben za uporabo iskalnika, vendar ta ni nameščen. - - + + Old Python Runtime Zastarel Python Runtime - + A new version is available. Na voljo je nova različica. - + Do you want to download %1? Ali želite prenesti %1? - + Open changelog... Odpri dnevnik sprememb ... - + No updates available. You are already using the latest version. Ni posodobitev. Že uporabljate zadnjo različico. - + &Check for Updates &Preveri za posodobitve - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Vaš Python (%1) je zastarel. Najnižja podprta različica je %2. Želite namestiti novejšo različico zdaj? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Vaša različica Pythona (%1) je zastarela. Za delovanje iskalnikov morate Python nadgraditi na najnovejšo različico. Najnižja podprta različica: %2. - + Paused - Premor + V premoru - + Checking for Updates... Preverjam za posodobitve ... - + Already checking for program updates in the background Že v ozadju preverjam posodobitve programa - + Python installation in progress... - + Python se namešča ... - + Failed to open Python installer. File: "%1". - + Namestitvenega programa za Python ni bilo mogoče odpreti. Datoteka: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Napaka prejema - Python setup could not be downloaded, reason: %1. -Please install it manually. - Namestitev za Python ni bilo mogoče prejeti. Razlog: %1 -Namestite Python ročno. - - - - + + Invalid password Neveljavno geslo - + Filter torrents... Filtriraj torrente ... - + Filter by: Filtriraj po: - + The password must be at least 3 characters long Geslo mora vsebovati vsaj 3 znake. - - - + + + RSS (%1) RSS (%1) - + The password is invalid Geslo je neveljavno - + DL speed: %1 e.g: Download speed: 10 KiB/s Hitrost prejema: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Hitrost pošiljanja: %1 - + Hide Skrij - + Exiting qBittorrent Izhod qBittorrenta - + Open Torrent Files Odpri datoteke torrent - + Torrent Files Torrent datoteke @@ -4557,7 +4562,7 @@ Namestite Python ročno. SSL error, URL: "%1", errors: "%2" - + Napaka SSL, URL: "%1", napake: "%2" @@ -5854,47 +5859,47 @@ Namestite Python ročno. Net::Smtp - + Connection failed, unrecognized reply: %1 Povezava ni uspela, neprepoznan odgovor: %1 - + Authentication failed, msg: %1 Preverjanje pristnosti ni uspelo, sporočilo: %1 - + <mail from> was rejected by server, msg: %1 <mail from> je strežnik zavrnil, sporočilo: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> je strežnik zavrnil, sporočilo: %1 - + <data> was rejected by server, msg: %1 <data> je strežnik zavrnil, sporočilo: %1 - + Message was rejected by the server, error: %1 Strežnik je zavrnil sporočilo, napaka: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 Napaka pri e-poštnem obvestilu: %1 @@ -5936,10 +5941,6 @@ Namestite Python ročno. RSS RSS - - Web UI - Spletni vmesnik - Advanced @@ -5976,10 +5977,6 @@ Namestite Python ročno. Always Vedno - - Paused torrents only - Samo ustavljeni torrenti - Action on double-click @@ -5990,10 +5987,6 @@ Namestite Python ročno. Downloading torrents: Med prejemanjem torrentov: - - Start / Stop Torrent - Začni / Ustavi torrent - @@ -6052,175 +6045,179 @@ Namestite Python ročno. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Postavitev vsebine torrenta: - + Original Izvirno - + Create subfolder Ustvari podmapo - + Don't create subfolder Ne ustvari podmape - + The torrent will be added to the top of the download queue Torrent bo dodan na vrh čakalne vrste prejemov - + Add to top of queue The torrent will be added to the top of the download queue Dodaj na vrh čakalne vrste - + When duplicate torrent is being added Ob dodajanju podvojene vsebine - + Merge trackers to existing torrent Pripoji sledilnike obstoječemu torrentu - + Keep unselected files in ".unwanted" folder Neizbrane datoteke hrani v mapi ".unwanted" - + Add... Dodaj ... - + Options.. Možnosti ... - + Remove Odstrani - + Email notification &upon download completion Pošlji e-poštno obvestilo ob &zaključku prejema - + Send test email - + Pošlji preizkusno sporočilo - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Protokol za povezavo s soležniki: - + Any Katerikoli - + I2P (experimental) I2P (poskusno) - + Mixed mode - Some options are incompatible with the chosen proxy type! - Nekatere možnosti so nezdružljive z izbrano vrsto posredniškega strežnika! + Nekatere možnosti so nezdružljive z izbrano vrsto posredniškega strežnika! - + If checked, hostname lookups are done via the proxy Če je možnost izbrana, se imena gostiteljev pridobivajo prek posredniškega strežnika - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes Uporabljaj posredniški strežnik za delovanje BitTorrenta - + RSS feeds will use proxy Viri RSS bodo uporabljali posredniški strežnik - + Use proxy for RSS purposes Uporabljaj posredniški strežnik za delovanje RSS - + Search engine, software updates or anything else will use proxy Za iskanje z iskalnikom, preverjanje posodobitev in vse ostalo bo uporabljen posredniški strežnik - + Use proxy for general purposes Uporabljaj posredniški strežnik za splošne namene - + IP Fi&ltering Fi&ltriranje IP - + Schedule &the use of alternative rate limits Načrtujte uporabo nadomestnih omejitev hi&trosti - + From: From start time Od: - + To: To end time Do: - + Find peers on the DHT network Najdi soležnike na DHT omrežju - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6229,188 +6226,190 @@ Zahtevaj šifriranje: poveži se samo s soležniki s šifriranjem protokola Onemogoči šifriranje: poveži se samo s soležniki brez šifriranja protokola - + Allow encryption Dovoli šifriranje - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Več informacij</a>) - + Maximum active checking torrents: - + &Torrent Queueing Čakalna vrsta &torrentov - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - S&amodejno dodaj te sledilnike novim prenosom: - - - + RSS Reader Bralnik RSS - + Enable fetching RSS feeds Omogoči pridobivanje RSS virov - + Feeds refresh interval: Interval osveževanja virov: - + Same host request delay: - + Maximum number of articles per feed: Največje število člankov na vir: - - - + + + min minutes min - + Seeding Limits Omejitve sejanja - Pause torrent - Začasno ustavi torrent - - - + Remove torrent Odstrani torrent - + Remove torrent and its files Odstrani torrent in njegove datoteke - + Enable super seeding for torrent Omogoči super sejanje za torrent - + When ratio reaches Ko razmerje doseže - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Ustavi torrent - + A&utomatically append these trackers to new downloads: - + Novim prenosom s&amodejno dodaj te sledilnike: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader Samodejni prejemnik RSS torrentov - + Enable auto downloading of RSS torrents Omogoči samodejni prejem RSS torrentov - + Edit auto downloading rules... Uredi pravila samodejnega prejema... - + RSS Smart Episode Filter RSS Pametni filter epizod - + Download REPACK/PROPER episodes Prenesi REPACK/PROPER epizode - + Filters: Filtri: - + Web User Interface (Remote control) Spletni uporabniški vmesnik (Oddaljen nadzor) - + IP address: IP naslov: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6419,37 +6418,37 @@ Določi IPv4 ali IPv6 naslov. Lahko doličiš "0.0.0.0" za katerikol "::" za katerikoli IPv6 naslov, ali "*" za oba IPv4 in IPv6. - + Ban client after consecutive failures: Izobčitev klienta po zaporednih neuspelih poskusih: - + Never Nikoli - + ban for: Izobčitev zaradi: - + Session timeout: Opustitev seje - + Disabled Onemogočeno - + Server domains: Domene strežnika: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6462,37 +6461,37 @@ vstavi imena domen, ki jih uporablja WebUI strežnik. Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. - + &Use HTTPS instead of HTTP &Uporabi HTTPS namesto HTTP - + Bypass authentication for clients on localhost Obidi overitev za odjemalce na lokalnem gostitelju - + Bypass authentication for clients in whitelisted IP subnets Obidi overitev za odjemalce na seznamu dovoljenih IP podmrež - + IP subnet whitelist... Seznam dovoljenih IP podmrež... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name &Posodobi moje dinamično ime domene @@ -6504,7 +6503,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos Search - Iskanje + Iskanje @@ -6524,29 +6523,29 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos Style: - + Slog: Color scheme: - + Barvna shema: Stopped torrents only - + Samo pri ustavljenih torrentih Start / stop torrent - + Zaženi/ustavi torrent Open torrent options dialog - + Odpri pogovorno okno z možnostmi torrenta @@ -6605,99 +6604,99 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos Izbriši varnostne kopije dnevnikov starejše od: - + Show external IP in status bar - + When adding a torrent Ob dodajanju torrenta - + Bring torrent dialog to the front Prikaži torrent pogovorno okno v ospredju - + The torrent will be added to download list in a stopped state - + Torrent bo dodan na seznam prejemov v ustavljenem stanju - + Also delete .torrent files whose addition was cancelled Izbriši tudi .torrent datoteke katerih dodajanje je bilo preklicano - + Also when addition is cancelled Tudi ko je dodajanje preklicano - + Warning! Data loss possible! Pozor! Možna je izguba podatkov! - + Saving Management Upravljanje shranjevanja - + Default Torrent Management Mode: Privzet Način Upravljanja Torrentov: - + Manual Ročni - + Automatic Samodejni - + When Torrent Category changed: Ko je kategorija torrenta spremenjena: - + Relocate torrent Premakni torrent - + Switch torrent to Manual Mode Preklopi torrent na Ročni Način - - + + Relocate affected torrents Premakni dotične torrente - - + + Switch affected torrents to Manual Mode Preklopi dotične torrente na Ročni Način - + Use Subcategories Uporabi Podkategorije - + Default Save Path: Privzeta pot za shranjevanje: - + Copy .torrent files to: Kopiraj datoteke .torrent v: @@ -6707,26 +6706,22 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos Pokaži &qBittorrent v obvestilnem področju - &Log file - &Dnevnik - - - + Display &torrent content and some options Pokaži vsebino &torrenta in nekaj možnosti - + De&lete .torrent files afterwards Po tem izbriši .torrent &datoteke - + Copy .torrent files for finished downloads to: Za zaključene prejeme kopiraj datoteke .torrent v: - + Pre-allocate disk space for all files Predhodno dodeli prostor na disku za vse datoteke @@ -6756,10 +6751,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos Preview file, otherwise open destination folder Predogled datoteke, sicer odpri ciljno mapo - - Show torrent options - Prikaži možnosti torrenta - Shows a confirmation dialog when exiting with active torrents @@ -6825,68 +6816,64 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak &apos let - + Log performance warnings Beleži opozorila o učinkovitosti delovanja - The torrent will be added to download list in a paused state - Torrent bo na seznam prejemov dodan ustavljen - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Ne začni prejema samodejno - + Whether the .torrent file should be deleted after adding it Ali naj bo datoteka .torrent po dodajanju izbrisana - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Dodeli celotno velikost datotek pred začetkom prenosa za zmanjšanje fragmentacije. Uporabno samo pri trdih diskih (HDD). - + Append .!qB extension to incomplete files Dodaj pripono .!qB nedokončanim datotekam - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Ko je torrent prenesen, ponudi dodajanje torrentov od katere koli .torrent datoteke najdene znotraj tega prenosa. - + Enable recursive download dialog Omogoči okno za rekurzivni prenos - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: Ko se pot za shranjevanje kategorije spremeni: - + Use Category paths in Manual Mode Uporabi poti kategorij v ročnem načinu - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6906,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyStanje okna qBittorrent ob zagonu: - + Torrent stop condition: Pogoj za ustavitev torrenta: - - + + None Brez - - + + Metadata received Prejeti metapodatki - - + + Files checked Preverjene datoteke - + Ask for merging trackers when torrent is being added manually Ob ročnem dodajanju torrentov vprašaj glede združevanja sledilnikov - + Use another path for incomplete torrents: Za nedokončane torrente uporabi drugačno pot: - + Automatically add torrents from: Samodejno dodaj torrente iz: - + Excluded file names Izvzeta imena datotek - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6966,523 +6953,510 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Prejemnik - + To: To receiver Za: - + SMTP server: Strežnik SMTP: - + Sender Pošiljatelj - + From: From sender Od: - + This server requires a secure connection (SSL) Ta strežnik zahteva varno povezavo (SSL) - - + + Authentication Overitev - - - - + + + + Username: Uporabniško ime: - - - - + + + + Password: Geslo: - + Run external program Zaženi zunanji program - Run on torrent added - Zaženi ob dodajanju torrenta - - - Run on torrent finished - Zaženi ob dokončanju torrenta - - - + Show console window Prikaži okno konzole - + TCP and μTP TCP in μTP - + Listening Port Vrata za poslušanje - + Port used for incoming connections: Uporabljena vrata za dohodne povezave: - + Set to 0 to let your system pick an unused port Nastavite na 0, da prepustite sistemu izbiro neuporabljenih vrat - + Random Naključna - + Use UPnP / NAT-PMP port forwarding from my router Uporabi UPnP / NAT-PMP posredovanje vrat od mojega usmerjevalnika - + Connections Limits Omejitve povezav - + Maximum number of connections per torrent: Najvišje število povezav na torrent: - + Global maximum number of connections: Najvišje splošno število povezav: - + Maximum number of upload slots per torrent: Najvišje število povezav za pošiljanje na torrent: - + Global maximum number of upload slots: Najvišje splošno število povezav za pošiljanje na torrent: - + Proxy Server Posredniški strežnik - + Type: Tip: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Gostitelj: - - - + + + Port: Vrata: - + Otherwise, the proxy server is only used for tracker connections Drugače je posredniški strežnik uporabljen samo za povezave s sledilnikom - + Use proxy for peer connections Uporabi posredniški strežnik za povezave s soležniki - + A&uthentication Overitev - Info: The password is saved unencrypted - Obvestilo: Geslo je shranjeno nešifrirano + Obvestilo: Geslo je shranjeno nešifrirano - + Filter path (.dat, .p2p, .p2b): Pot filtra (.dat, .p2p, .p2b): - + Reload the filter Ponovno naloži filter - + Manually banned IP addresses... Ročno izločeni IP naslovi... - + Apply to trackers Uveljavi pri sledilcih - + Global Rate Limits Splošne omejitve hitrosti - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Pošiljanje: - - + + Download: Prejem: - + Alternative Rate Limits Nadomestne omejitve hitrosti - + Start time Začetni čas - + End time Končni čas - + When: Kdaj: - + Every day Vsak dan - + Weekdays Med tednom - + Weekends Vikendi - + Rate Limits Settings Nastavitve omejitev hitrosti - + Apply rate limit to peers on LAN Uveljavi omejitve hitrosti za soležnike na krajevnem omrežju - + Apply rate limit to transport overhead Uveljavi omejitev razmerja v slepi prenos - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Uveljavi omejitve hitrosti za µTP protokol - + Privacy Zasebnost - + Enable DHT (decentralized network) to find more peers Omogočite DHT (decentralizirano omrežje) da najdete več soležnikov - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Izmenjaj soležnike z združljivimi odjemalci Bittorrent (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Omogočite Izmenjavo soležnikov (PeX) da najdete več soležnikov - + Look for peers on your local network Poišči soležnike na krajevnem omrežju - + Enable Local Peer Discovery to find more peers Omogočite odkrivanje krajevnih soležnikov za iskanje več soležnikov - + Encryption mode: Način šifriranja: - + Require encryption Zahtevaj šifriranje - + Disable encryption Onemogoči šifriranje - + Enable when using a proxy or a VPN connection Omogoči, ko se uporablja posredniški strežnik ali povezava VPN - + Enable anonymous mode Omogoči anonimni način - + Maximum active downloads: Največ dejavnih prejemov: - + Maximum active uploads: Največ dejavnih pošiljanj: - + Maximum active torrents: Največ dejavnih torrentov: - + Do not count slow torrents in these limits V teh omejitvah ne štej počasnih torrentov - + Upload rate threshold: Omejitev hitrosti pošiljanja: - + Download rate threshold: Omejitev hitrosti prejemanja: - - - - + + + + sec seconds sec - + Torrent inactivity timer: Časovnik nedejavnosti torrenta: - + then nato - + Use UPnP / NAT-PMP to forward the port from my router Uporabi UPnP / NAT-PMP za posredovanje vrat od mojega usmerjevalnika - + Certificate: Potrdilo: - + Key: Ključ: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Podrobnosti o potrdilih</a> - + Change current password Spremeni trenutno geslo - Use alternative Web UI - Uporabi alternativni spletni vmesnik - - - + Files location: Mesto datotek: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Varnost - + Enable clickjacking protection Omogoči zaščito proti ugrabitvi klikov (clickjacking). - + Enable Cross-Site Request Forgery (CSRF) protection Omogoči zaščito pred ponarejanjem spletnih zahtev (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers Dodaj glave HTTP po meri - + Header: value pairs, one per line Glava: pari vrednosti, en na vrstico - + Enable reverse proxy support - + Trusted proxies list: Seznam zaupanja vrednih posrednikov: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Storitev: - + Register Vpis - + Domain name: Ime domene: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Z omogočanjem teh možnosti lahko <strong>nepreklicno izgubite</strong> vaše .torrent datoteke! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Če omogočite drugo možnost (&ldquo;Tudi ko je dodajanje preklicano&rdquo;) bodo .torrent datoteke <strong>izbrisane</strong>, tudi če pritisnete &ldquo;<strong>Prekliči</strong>&rdquo;, v &ldquo;Dodaj torrent&rdquo; meniju @@ -7492,12 +7466,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Izberi datoteko za izgled vmesnika qBittorrent (*.qbtheme) - + Choose Alternative UI files location Izberi mesto datotek alternativnega vmesnika - + Supported parameters (case sensitive): Podprti parametri (razlikovanje velikosti črk): @@ -7517,183 +7491,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Onemogočeno zaradi neuspešnega zaznavanja prisotnosti sistemskega pladnja - + No stop condition is set. Nastavljen ni noben pogoj za ustavitev. - + Torrent will stop after metadata is received. Torrent se bo zaustavil, ko se bodo prejeli metapodatki. - + Torrent will stop after files are initially checked. Torrent se bo zaustavil po začetnem preverjanju datotek. - + This will also download metadata if it wasn't there initially. S tem se bodo prejeli tudi metapodatki, če še niso znani. - + %N: Torrent name %N: Ime torrenta - + %L: Category %L: Kategorija - + %F: Content path (same as root path for multifile torrent) %F: Pot vsebine (enaka kot korenska pot za večdatotečni torrent) - + %R: Root path (first torrent subdirectory path) %R: Korenska pot (pot podmape prvega torrenta) - + %D: Save path %D: Mesto za shranjevanje - + %C: Number of files %C: Število datotek - + %Z: Torrent size (bytes) %Z: Velikost torrenta (bajti) - + %T: Current tracker %T: Trenutni sledilnik - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Namig: Postavi parameter med narekovaje da se izogneš prelomu teksta na presledku (npr., "%N") - + Test email - + Preizkusno sporočilo - + Attempted to send email. Check your inbox to confirm success - + (None) (Brez) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent bo obravnavan kot počasen, če hitrosti pošiljanja in prejemanja ostaneta pod temi vrednostmi za "Časovnik nedejavnosti torrenta" sekund - + Certificate Digitalno potrdilo - + Select certificate Izberite potrdilo - + Private key Zasebni ključ - + Select private key Izberite zasebni ključ - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + Za najboljšo združljivost s temnim načinom sistema Windows se priporoča %1 - + System System default Qt style - + Sistem - + Let Qt decide the style for this system - + Naj v tem sistemu Qt izbere slog - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Sistem - + Select folder to monitor Izberite mapo za nadzorovanje - + Adding entry failed Dodajanje vnosa je spodletelo - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Napaka lokacije - - + + Choose export directory Izberite mapo za izvoz - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7703,69 +7677,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Datoteka s temo za vmesnik qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Oznake (ločene z vejico) - + %I: Info hash v1 (or '-' if unavailable) %I: Informativna zgoščena vrednost v1 (ali '-', če ni na voljo) - + %J: Info hash v2 (or '-' if unavailable) %I: Informativna zgoščena vrednost v2 (ali '-', če ni na voljo) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Izberite mapo za shranjevanje - + Torrents that have metadata initially will be added as stopped. Torrenti, ki imajo metapodatke, bodo sprva dodani v premoru. - + Choose an IP filter file Izberite datoteko s filtri IP - + All supported filters Vsi podprti filtri - + The alternative WebUI files location cannot be blank. - + Parsing error Napaka razčlenjevanja - + Failed to parse the provided IP filter Spodletelo razčlenjevanje filtra IP - + Successfully refreshed Uspešno osveženo - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Uspešno razčlenjen filter IP: %1 pravil je bilo uveljavljenih. @@ -7776,18 +7750,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Možnosti - + Time Error Napaka v času - + The start time and the end time can't be the same. Čas začetka in konca ne smeta biti enaka. - - + + Length Error Napaka v dolžini @@ -7878,163 +7852,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Država/Regija - + IP/Address IP/Naslov - + Port Vrata - + Flags Zastavice - + Connection Povezava - + Client i.e.: Client application Odjemalec - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Napredek - + Down Speed i.e: Download speed Hitrost prejema - + Up Speed i.e: Upload speed Hitrost pošiljanja - + Downloaded i.e: total data downloaded Prejeto - + Uploaded i.e: total data uploaded Poslano - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Pomembnost - + Files i.e. files that are being downloaded right now Datoteke - + Column visibility Vidnost stolpca - + Resize columns Spremeni velikost stolpcev - + Resize all non-hidden columns to the size of their contents Prilagodi velikost vseh prikazanih stolpcev na širino njihove vsebine - + Add peers... Dodaj soležnike ... - - + + Adding peers Dodajanje soležnikov - + Some peers cannot be added. Check the Log for details. Nekaterih soležnikov ni bilo mogoče dodati. Za podrobnosti si oglejte dnevnik. - + Peers are added to this torrent. Soležniki so dodani torrentu. - - + + Ban peer permanently Trajno izobči soležnika - + Cannot add peers to a private torrent Soležnikov ni mogoče dodati zasebnemu torrentu - + Cannot add peers when the torrent is checking Soležnikov ni mogoče dodajati med preverjanjem torrenta - + Cannot add peers when the torrent is queued Soležnikov ni mogoče dodajati, ko je torrent v čakalni vrsti - + No peer was selected Izbran ni noben soležnik - + Are you sure you want to permanently ban the selected peers? Ali ste prepričani, da želite trajno izobčiti izbrane soležnike? - + Peer "%1" is manually banned Soležnik "%1" je ročno izključen - + N/A N/A - + Copy IP:port Kopiraj IP: vrata @@ -8315,34 +8289,8 @@ Tisti vtičniki so bili onemogočeni. PowerManagement - qBittorrent is active - qBittorrent je dejaven - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent je dejaven @@ -8586,12 +8534,12 @@ Tisti vtičniki so bili onemogočeni. Ratio / Time Active (in months), indicates how popular the torrent is - + Razmerje/časom dejavnosti (v mesecih) – pove, kako pogosto se torrent prejema Popularity: - + Priljubljenost: @@ -8626,7 +8574,7 @@ Tisti vtičniki so bili onemogočeni. Private: - + Zaseben: @@ -8634,153 +8582,124 @@ Tisti vtičniki so bili onemogočeni. Mesto: - + Never Nikoli - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (ima %3) - - + + %1 (%2 this session) %1(%2 to sejo) - - + + N/A / - + Yes - Da + Da - + No - Ne + Ne - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (sejano %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1(%2 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1(%2 skupno) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1(%2 povpr.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Nov spletni sejalec - - - Remove Web seed - Odstrani spletnega sejalca - - - Copy Web seed URL - Kopiraj URL spletnega sejalca - - - Edit Web seed URL - Uredi URL spletnega sejalca - - - + Filter files... Filtriraj datoteke ... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Grafi hitrosti so onemogočeni - + You can enable it in Advanced Options Omogočite jih lahko v naprednih možnostih - New URL seed - New HTTP source - Nov URL sejalca - - - New URL seed: - Nov URL sejalca: - - - This URL seed is already in the list. - URL sejalca je že na seznamu. - - - + Web seed editing Urejanje spletnega sejalca - + Web seed URL: URL spletnega sejalca: @@ -8788,33 +8707,33 @@ Tisti vtičniki so bili onemogočeni. RSS::AutoDownloader - - + + Invalid data format. Neveljavna oblika podatkov. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Podatkov Samodejnega prejemnika RSS ni bilo mogoče shraniti na %1. Napaka: %2 - + Invalid data format Neveljavna oblika podatkov - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Pravil Samodejnega prejemnika RSS ni bilo mogoče naložiti. Razlog: %1 @@ -8822,22 +8741,22 @@ Tisti vtičniki so bili onemogočeni. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 RSS vira z '%1' ni mogoče prejeti. Razlog: %2. - + RSS feed at '%1' updated. Added %2 new articles. RSS vir z '%1' posodobljen. Dodanih %2 novih člankov. - + Failed to parse RSS feed at '%1'. Reason: %2 Razčlenjevanje RSS vira z '%1' ni uspelo. Razlog: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Vir RSS s '%1' uspešno prejet. Začetek razčlenjevanja. @@ -8886,12 +8805,12 @@ Tisti vtičniki so bili onemogočeni. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Nastavitev seje RSS ni bilo mogoče shraniti. Datoteka: "%1". Napaka: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Podatkov o seji RSS ni bilo mogoče shraniti. Datoteka: "%1". Napaka: "%2" @@ -8913,76 +8832,121 @@ Tisti vtičniki so bili onemogočeni. - + Item doesn't exist: %1. Predmet ne obsaja: %1. - Couldn't move folder into itself. - Mape ni mogoče premakniti v njo samo. + Mape ni mogoče premakniti v njo samo. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Korenske mape ni mogoče izbrisati. - + Failed to read RSS session data. %1 Podatkov o seji RSS ni bilo mogoče prebrati. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Vira RSS ni bilo mogoče naložiti. Vir: "%1". Razlog: Zahtevan je naslov URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Vira RSS ni bilo mogoče naložiti. Vir: "%1". Razlog: UID ni veljaven. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Najden je podvojen vir RSS. UID: "%1". Napaka: Nastavitve so videti okvarjene. - + Couldn't load RSS item. Item: "%1". Invalid data format. Predmeta RSS ni bilo mogoče naložiti. Predmet: "%1". Neveljaven zapis podatkov. - + Corrupted RSS list, not loading it. Pokvarjen seznam RSS, nalaganje prekinjeno. - + Incorrect RSS Item path: %1. Nepravilna pot RSS predmeta: %1. - + RSS item with given path already exists: %1. RSS predmet z dano potjo že obstaja: %1. - + Parent folder doesn't exist: %1. Starševska mapa ne obstaja: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Vir ne obstaja: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sec + + + + Default + Privzeto + + RSSWidget @@ -9082,78 +9046,77 @@ Tisti vtičniki so bili onemogočeni. + Feed options... + + + Edit feed URL... - Uredi URL vira ... + Uredi URL vira ... - Edit feed URL - Uredi URL vira + Uredi URL vira - + Please choose a folder name Izberite ime mape - + Folder name: Ime mape: - + New folder Nova mapa - - Please type a RSS feed URL - Vpišite URL vira RSS + Vpišite URL vira RSS - - Feed URL: - Vir URL: + Vir URL: - + Deletion confirmation Potrditev odstranjevanja - + Are you sure you want to delete the selected RSS feeds? Ali ste prepričani, da želite izbrisati izbrane vire RSS? - + Please choose a new name for this RSS feed Izberite novo ime za ta vir RSS - + New feed name: Novo ime vira: - + Rename failed Preimenovanje neuspešno - + Date: Datum: - + Feed: Vir: - + Author: Avtor: @@ -9290,10 +9253,6 @@ Tisti vtičniki so bili onemogočeni. i.e: Number of partial sources Pijavke - - Search engine - Iskalnik - Filter search results... @@ -9414,104 +9373,104 @@ Tisti vtičniki so bili onemogočeni. SearchPluginManager - + Unknown search engine plugin file format. Neznana datotečna oblika vstavka iskalnika. - + Plugin already at version %1, which is greater than %2 Različica vtičnika je trenutno %1, kar je več od %2 - + A more recent version of this plugin is already installed. Novejša različica tega vstavka je že nameščena. - + Plugin %1 is not supported. Vtičnik %1 ni podprt. - - + + Plugin is not supported. Vstavek ni podprt. - + Plugin %1 has been successfully updated. Vtičnik %1 je bil uspešno posodobljen. - + All categories Vse kategorije - + Movies Filmi - + TV shows TV-oddaje - + Music Glasba - + Games Igre - + Anime Anime - + Software Programska oprema - + Pictures Slike - + Books Knjige - + Update server is temporarily unavailable. %1 Strežnik za posodobitve trenutno ni na voljo. %1 - - + + Failed to download the plugin file. %1 Prenos vstavka je spodletel. %1 - + Plugin "%1" is outdated, updating to version %2 Vtičnik "%1" je zastarel, posodabljanje na različico %2 - + Incorrect update info received for %1 out of %2 plugins. Za %1 od %2 vtičnikov so bili prejeti napačni podatki o posodobitvi. - + Search plugin '%1' contains invalid version string ('%2') Vstavek iskanja '%1' vsebuje neveljaven niz različice ('%2') @@ -9537,135 +9496,127 @@ Klikni na gumb "Vstavki iskanja ..." spodaj desno da jih namestite.Vstavki iskanja ... - + A phrase to search for. Iskalna fraza: - + Spaces in a search term may be protected by double quotes. Presledke pri iskalni frazi lahko zaščitite z dvojnimi narekovaji. - + Example: Search phrase example Primer: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: išči <b>foo bar</b> - + All plugins Vsi vstavki - + Only enabled Samo omogočeni - - + + Invalid data format. - Neveljavna oblika podatkov. + Neveljavna oblika podatkov. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: išči <b>foo</b> in <b>bar</b> - + Refresh - + Osveži - + Close tab Zapri zavihek - + Close all tabs Zapri vse zavihke - + Select... Izberi ... - - + + Search Engine Iskalnik - - + + Please install Python to use the Search Engine. Za uporabo iskalnika namestite Python. - + Empty search pattern Prazen iskani parameter - + Please type a search pattern first Najprej vpišite iskani parameter - + Stop Ustavi - - Search has finished - Iskanje je zaključeno - - - Search has failed - Iskanje je spodletelo - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10063,67 +10014,77 @@ Klikni na gumb "Vstavki iskanja ..." spodaj desno da jih namestite. StatusBar - + Connection status: Stanje povezave: - - + + No direct connections. This may indicate network configuration problems. Ni neposrednih povezav. To lahko pomeni, da so težave z nastavitvijo omrežja. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Zunanji IP: N/A + + + + DHT: %1 nodes DHT: %1 vozlišč - + qBittorrent needs to be restarted! qBittorrent se mora ponovno zagnati! - - + + Connection Status: Stanje povezave: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Nepovezani. To ponavadi pomeni, da je qBittorrentu spodletelo poslušanje dohodnih povezav na izbranih vratih. - + Online Povezani - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Zunanji IP-ji: %1, %2 + + + + External IP: %1%2 + Zunanji IP: %1%2 + + + Click to switch to alternative speed limits Kliknite za uporabo nadomestnih omejitev hitrosti - + Click to switch to regular speed limits Kliknite za uporabo splošnih omejitev hitrosti @@ -10151,23 +10112,15 @@ Klikni na gumb "Vstavki iskanja ..." spodaj desno da jih namestite.Completed (0) Dokončani (0) - - Resumed (0) - V nadaljevanju (0) - - - Paused (0) - V premoru (0) - Running (0) - + Zagnani (0) Stopped (0) - + Ustavljeni (0) @@ -10232,49 +10185,33 @@ Klikni na gumb "Vstavki iskanja ..." spodaj desno da jih namestite. Running (%1) - + Zagnani (%1) Stopped (%1) - + Ustavljeni (%1) Start torrents - + Začni torrente Stop torrents - - - - Paused (%1) - V premoru (%1) + Ustavi torrente Moving (%1) Premikanje (%1) - - Resume torrents - Nadaljuj torrente - - - Pause torrents - Premor torrentov - Remove torrents Odstrani torrente - - Resumed (%1) - V nadaljevanju (%1) - Active (%1) @@ -10346,32 +10283,20 @@ Klikni na gumb "Vstavki iskanja ..." spodaj desno da jih namestite.Remove unused tags Odstrani neuporabljene oznake - - Resume torrents - Nadaljuj torrente - - - Pause torrents - Ustavi torrente - Remove torrents Odstrani torrente - - New Tag - Nova oznaka - Start torrents - + Začni torrente Stop torrents - + Ustavi torrente @@ -10381,7 +10306,7 @@ Klikni na gumb "Vstavki iskanja ..." spodaj desno da jih namestite. Add tag - + Dodaj oznako @@ -10698,17 +10623,17 @@ Prosimo da izberete drugo ime in poizkusite znova. TorrentCreatorController - + Too many active tasks Preveč dejavnih opravil - + Torrent creation is still unfinished. Ustvarjanje torrenta še ni dokončano. - + Torrent creation failed. Ustvarjanje torrenta ni uspelo. @@ -10960,13 +10885,6 @@ Prosimo da izberete drugo ime in poizkusite znova. - - TorrentInfo - - Invalid metadata - Neveljavni metapodatki - - TorrentOptionsDialog @@ -11004,10 +10922,6 @@ Prosimo da izberete drugo ime in poizkusite znova. Torrent Share Limits - - Torrent speed limits - Omejitve hitrosti torrenta - Download: @@ -11040,34 +10954,6 @@ Prosimo da izberete drugo ime in poizkusite znova. Upload: Pošiljanje: - - Torrent share limits - Omejitve izmenjave torrenta - - - Use global share limit - Uporabi splošno omejitev izmenjave - - - Set no share limit - Ne nastavi omejitve izmenjave - - - Set share limit to - Nastavi omejitev izmenjave na - - - ratio - razmerje - - - total minutes - skupno minut - - - inactive minutes - nedejavnih minut - Disable DHT for this torrent @@ -11109,14 +10995,6 @@ Prosimo da izberete drugo ime in poizkusite znova. Not applicable to private torrents Za zasebne torrente ta možnost ni primerna - - No share limit method selected - Ni izbranega načina omejitve izmenjave - - - Please select a limit method first - Najprej izberite način omejitve - TorrentShareLimitsWidget @@ -11166,27 +11044,27 @@ Prosimo da izberete drugo ime in poizkusite znova. Action when the limit is reached: - + Dejanje, ko se doseže omejitev: Stop torrent - + Ustavi torrent Remove torrent - Odstrani torrent + Odstrani torrent Remove torrent and its content - + Odstrani torrent in njegovo vsebino Enable super seeding for torrent - Omogoči super sejanje za torrent + Omogoči super sejanje za torrent @@ -11201,14 +11079,10 @@ Prosimo da izberete drugo ime in poizkusite znova. Torrent Tags Oznake torrenta - - New Tag - Nova oznaka - Add tag - + Dodaj oznako @@ -11239,78 +11113,78 @@ Prosimo da izberete drugo ime in poizkusite znova. TorrentsController - + Error: '%1' is not a valid torrent file. Napaka: '%1' je neveljavna datoteka torrent. - + Priority must be an integer Prioriteta mora biti celo število - + Priority is not valid Prioriteta ni veljavna - + Torrent's metadata has not yet downloaded Metapodatki torrenta še niso bili prejeti - + File IDs must be integers ID-ji datotek morajo biti cela števila - + File ID is not valid ID datoteke ni veljaven - - - - + + + + Torrent queueing must be enabled Čakalna vrsta Torrentov mora biti omogočena - - + + Save path cannot be empty Pot shranjevanja ne more biti prazna - - + + Cannot create target directory Ciljne mape ni mogoče ustvariti - - + + Category cannot be empty Kategorija ne more biti prazna - + Unable to create category Kategorije ni mogoče ustvariti - + Unable to edit category Kategorije ni mogoče urediti - + Unable to export torrent file. Error: %1 Datoteke s torrentom ni bilo mogoče izvoziti. Napaka: %1 - + Cannot make save path Mape za shranjevanje ni mogoče ustvariti @@ -11330,39 +11204,39 @@ Prosimo da izberete drugo ime in poizkusite znova. Parameter 'sort' je neveljaven - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" ni veljaven indeks datoteke. - + Index %1 is out of bounds. - - + + Cannot write to directory Ni mogoče pisati v mapo - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI Nastavi mesto: premikam "&1" z "%2" na "%3" - + Incorrect torrent name Napačno ime torrenta - - + + Incorrect category name Napačno ime kategorije @@ -11455,31 +11329,23 @@ Prosimo da izberete drugo ime in poizkusite znova. BT Protocol - + Protokol BT Next Announce - + Naslednje sporočanje Min Announce - - Invalid status! - Neveljavno stanje! - Tier Stopnja - - Protocol - Protokol - Status @@ -11510,14 +11376,6 @@ Prosimo da izberete drugo ime in poizkusite znova. Message Sporočilo - - Next announce - Naslednje sporočanje - - - v%1 - v%1 - TrackerListWidget @@ -11527,73 +11385,73 @@ Prosimo da izberete drugo ime in poizkusite znova. Ta torrent je zaseben - + Tracker editing Urejanje sledilnika - + Tracker URL: URL sledilnika: - - + + Tracker editing failed Urejanje sledilnika ni uspelo - + The tracker URL entered is invalid. Vneseni URL sledilnika je neveljaven. - + The tracker URL already exists. URL sledilnika že obstaja. - + Edit tracker URL... Uredi URL sledilnika ... - + Remove tracker Odstrani sledilnik - + Copy tracker URL Kopiraj URL sledilnika - + Force reannounce to selected trackers Prisilno znova sporoči izbranim sledilnikom - + Force reannounce to all trackers Prisilno znova sporoči vsem sledilnikom - + Resize columns Spremeni velikost stolpcev - + Resize all non-hidden columns to the size of their contents Prilagodi velikost vseh prikazanih stolpcev na širino njihove vsebine - + Add trackers... Dodaj sledilnike ... - + Column visibility Vidnost stolpca @@ -11676,20 +11534,12 @@ Prosimo da izberete drugo ime in poizkusite znova. Start torrents - + Začni torrente Stop torrents - - - - Resume torrents - Nadaljuj torrente - - - Pause torrents - Ustavi torrente + Ustavi torrente @@ -11813,10 +11663,6 @@ Prosimo da izberete drugo ime in poizkusite znova. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Preverjanje podatkov za nadaljevanje - - Paused - Premor - Completed @@ -11857,21 +11703,16 @@ Prosimo da izberete drugo ime in poizkusite znova. % Done Napredek - - Status - Torrent status (e.g. downloading, seeding, paused) - Stanje - Stopped - + Ustavljeno Status Torrent status (e.g. downloading, seeding, stopped) - Stanje + Stanje @@ -11906,7 +11747,7 @@ Prosimo da izberete drugo ime in poizkusite znova. Popularity - + Priljubljenost @@ -11987,22 +11828,17 @@ Prosimo da izberete drugo ime in poizkusite znova. Time Active Time (duration) the torrent is active (not stopped) - Čas aktivnosti + Čas delovanja Yes - Da + Da No - Ne - - - Time Active - Time (duration) the torrent is active (not paused) - Čas aktivnosti + Ne @@ -12074,12 +11910,12 @@ Prosimo da izberete drugo ime in poizkusite znova. Private Flags private torrents - + Zaseben Ratio / Time Active (in months), indicates how popular the torrent is - + Razmerje/časom dejavnosti (v mesecih) – pove, kako pogosto se torrent prejema @@ -12104,358 +11940,319 @@ Prosimo da izberete drugo ime in poizkusite znova. TransferListWidget - + Column visibility Vidnost stolpca - + Recheck confirmation Ponovno potrdite preverjanje - + Are you sure you want to recheck the selected torrent(s)? Ali ste prepričani, da želite ponovno preveriti želene torrente? - + Rename Preimenuj - + New name: Novo ime: - + Choose save path Izberite mesto za shranjevanje - Confirm pause - Potrditev premora - - - Would you like to pause all torrents? - Ali ste prepričani, da želite začasno ustaviti vse torrente? - - - Confirm resume - Potrditev nadaljevanja - - - Would you like to resume all torrents? - Ali ste prepričani, da želite nadaljevati vse torrente? - - - + Unable to preview Predogled ni mogoč - + The selected torrent "%1" does not contain previewable files Izbran torrent "%1" ne vsebuje datoteke, za katere je možen predogled - + Resize columns Spremeni velikost stolpcev - + Resize all non-hidden columns to the size of their contents Prilagodi velikost vseh prikazanih stolpcev na širino njihove vsebine - + Enable automatic torrent management Omogoči samodejno upravljanje torrenta - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Ali ste prepričani, da želite omogočiti samodejno upravljanje izbranih torrentov? Morda bodo premaknjeni na drugo mesto. - Add Tags - Dodaj oznake - - - + Choose folder to save exported .torrent files Izberite mapo, kamor želite shraniti izvožene datoteke .torrent - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Izvoz datoteke .torrent ni uspel. Torrent: "%1". Pot shranjevanja: "%2". Razlog: "%3" - + A file with the same name already exists Datoteka s tem imenom že obstaja - + Export .torrent file error Napaka pri izvozu datoteke .torrent - + Remove All Tags Odstrani vse oznake - + Remove all tags from selected torrents? Odstrani vse oznake z izbranega torrenta? - + Comma-separated tags: Z vejico ločene oznake: - + Invalid tag Neveljavna oznaka - + Tag name: '%1' is invalid Ime oznake: '%1' je neveljavno - &Resume - Resume/start the torrent - &Nadaljuj - - - &Pause - Pause the torrent - &Premor - - - Force Resu&me - Force Resume/start the torrent - Prisi&lno nadaljuj - - - + Pre&view file... Pr&edogled datoteke ... - + Torrent &options... Mo&žnosti torrenta ... - + Open destination &folder Odpri &ciljno mapo - + Move &up i.e. move up in the queue Premakni &gor - + Move &down i.e. Move down in the queue Premakni &dol - + Move to &top i.e. Move to top of the queue Premakni na &vrh - + Move to &bottom i.e. Move to bottom of the queue Premakni na dn&o - + Set loc&ation... Nastavi &mesto ... - + Force rec&heck Prisilno znova pre&veri - + Force r&eannounce Prisilno znova sporo&či - + &Magnet link &Magnetno povezavo - + Torrent &ID &ID torrenta - + &Comment &Komentar - + &Name &Ime - + Info &hash v1 Informativno &zgoščeno vrednost, v1 - + Info h&ash v2 Informativno z&goščeno vrednost, v2 - + Re&name... P&reimenuj ... - + Edit trac&kers... &Uredi sledilnike ... - + E&xport .torrent... I&zvozi torrent ... - + Categor&y Kategori&ja - + &New... New category... &Nova ... - + &Reset Reset category Pon&astavi - + Ta&gs O&znake - + &Add... Add / assign multiple tags... &Dodaj ... - + &Remove All Remove all tags Od&strani vse - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue V &čakalno vrsto - + &Copy &Kopiraj - + Exported torrent is not necessarily the same as the imported Izvoženi torrent ni nujno enak kot uvoženi - + Download in sequential order Prejemanje v zaporednem vrstnem redu - + Add tags - + Dodaj oznake - + Errors occurred when exporting .torrent files. Check execution log for details. Pri izvažanju datotek .torrent je prišlo do napak. Za podrobnosti glejte dnevnik izvajanja. - + &Start Resume/start the torrent - + &Zaženi - + Sto&p Stop the torrent - + &Ustavi - + Force Star&t Force Resume/start the torrent - + P&risilno zaženi - + &Remove Remove the torrent Od&strani - + Download first and last pieces first Prejemanje najprej prvih in zadnjih kosov - + Automatic Torrent Management Samodejno upravljanje torrenta - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Samodejni način pomeni, da so različne lastnosti torrenta (npr. pot za shranjevanje) določene na podlagi dodeljene kategorije - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Prisilno vnovično sporočanje ni mogoče, če je torrent začasno ustavljen, v čakalni vrsti, ima napako ali se preverja - - - + Super seeding mode Način super sejanja @@ -12531,7 +12328,7 @@ Prosimo da izberete drugo ime in poizkusite znova. Set app style failed. Unknown style: "%1" - + Nastavitev sloga aplikacije ni uspela. Neznan slog: "%1" @@ -12587,32 +12384,32 @@ Prosimo da izberete drugo ime in poizkusite znova. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12704,52 +12501,52 @@ Prosimo da izberete drugo ime in poizkusite znova. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Določeno je nesprejemljivo ime sejnega piškotka: "%1". Uporabljeno je privzeto. - + Unacceptable file type, only regular file is allowed. Nesprejemljiva oblika datoteke, dovoljene so le splošne datoteke. - + Symlinks inside alternative UI folder are forbidden. Symlinki znotraj mape alternativnega vmesnika so prepovedani. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Manjkajoč ločilnik ';' v HTTP glavi po meri znotraj spletnega vmesnika: "%1" - + Web server error. %1 Napaka spletnega strežnika. %1 - + Web server error. Unknown error. Napaka spletnega strežnika. Neznana napaka. @@ -12807,7 +12604,7 @@ Prosimo da izberete drugo ime in poizkusite znova. Unknown error - Neznana napaka + Neznana napaka diff --git a/src/lang/qbittorrent_sr.ts b/src/lang/qbittorrent_sr.ts index ecc26db3e..631a1e4de 100644 --- a/src/lang/qbittorrent_sr.ts +++ b/src/lang/qbittorrent_sr.ts @@ -170,10 +170,6 @@ Never show again Не приказуј поново - - Torrent settings - Подешавања торента - Set as default category @@ -235,25 +231,25 @@ Услов престанка - - + + None Никакав - - + + Metadata received Примљени метаподаци - + Torrents that have metadata initially will be added as stopped. Торенти који иницијално имају метаподатке биће додати као стопирани. - + Files checked Проверени фајлови @@ -368,112 +364,112 @@ Сними као .torrent фајл... - + I/O Error I/O грешка - + Not Available This comment is unavailable Није доступно - + Not Available This date is unavailable Није доступно - + Not available Није доступно - + Magnet link Магнет линк - + Retrieving metadata... Дохватам метаподатке... - - + + Choose save path Изаберите путању за чување - + No stop condition is set. Услови престанка нису подешени. - + Torrent will stop after metadata is received. Торент ће престати након што метаподаци буду били примљени. - + Torrent will stop after files are initially checked. Торент ће престати након почетне провере фајлова. - + This will also download metadata if it wasn't there initially. Метаподаци ће такође бити преузети ако већ нису били ту. - + N/A Недоступно - + %1 (Free space on disk: %2) %1 (Слободан простор на диску: %2) - + Not available This size is unavailable. Није доступна - + Torrent file (*%1) Торент датотека (*%1) - + Save as torrent file Сними као торент фајл - + Couldn't export torrent metadata file '%1'. Reason: %2. Извоз фајла метаподатака торента "%1" није успео. Разлог: %2. - + Cannot create v2 torrent until its data is fully downloaded. Није могуће креирати v2 торент док се његови подаци у потпуности не преузму. - + Filter files... Филтрирај датотеке... - + Parsing metadata... Обрађујем метаподатке... - + Metadata retrieval complete Преузимање метаподатака завршено @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Преузимање торента... Извор: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Додавање торента није успело. Извор: "%1". Разлог: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Откривен је покушај додавања дупликата торента. Извор: %1. Постојећи торент: %2. Резултат: %3. + Откривен је покушај додавања дупликата торента. Извор: %1. Постојећи торент: %2. Резултат: %3. - + Merging of trackers is disabled Спајање тракера је онемогућено - + Trackers cannot be merged because it is a private torrent Тракери не могу бити спојени јер је у питању приватни торент. - + Trackers are merged from new source Тракери су спојени из новог извора + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Провери торенте по завршетку - - + + ms milliseconds ms - + Setting Подешавање - + Value Value set for this setting Вредност - + (disabled) (онемогућено) - + (auto) (аутоматски) - - + + min minutes мин - + All addresses Све адресе - + qBittorrent Section qBittorrent Одељак - - + + Open documentation Отвори документацију - + All IPv4 addresses Све IPv4 адресе - + All IPv6 addresses Све IPv6 адресе - + libtorrent Section libtorrent секција - + Fastresume files - + SQLite database (experimental) База података SQLite (експериментално) - + Resume data storage type (requires restart) Тип чувања података за наставак (потребно је поновно покретање) - + Normal Нормално - + Below normal Испод нормале - + Medium Средње - + Low Ниско - + Very low Веома ниско - + Physical memory (RAM) usage limit Лимит коришћења радне меморије (RAM) - + Asynchronous I/O threads Асинхроне I/O нити - + Hashing threads Нити хеширања - + File pool size Величина пула фајлова - + Outstanding memory when checking torrents Број неискоришћене меморије при провери торената - + Disk cache Кеш на диску - - - - + + + + + s seconds с - + Disk cache expiry interval Интервал истека кеша диска - + Disk queue size - - + + Enable OS cache Омогући кеш система - + Coalesce reads & writes Укомбинуј читање и писање - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) 0 (онемогућено) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] Излазни портови (Min) [0: Искључено] - + Outgoing ports (Max) [0: disabled] Излазни портови (Max) [0: Искључено] - + 0 (permanent lease) 0 (трајни закуп) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) (бесконачно) - + (system default) (системски подразумевано) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux Ова опција није толико ефективна на Linux-у - + Process memory priority Приоритет процесорске меморије - + Bdecode depth limit - + Bdecode token limit - + Default Подразумевано - + Memory mapped files Фајлови мапирани у меморији - + POSIX-compliant POSIX-усаглашен - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache Онемогући кеш ОС-а - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark Марка воденог жига бафера за слање - + Send buffer low watermark Ниска марка воденог жига бафера за слање - + Send buffer watermark factor - + Outgoing connections per second Одлазне конекције по секунди - - + + 0 (system default) 0 (системски подразумевано) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit Лимит величине .torrent фајла - + Type of service (ToS) for connections to peers - + Prefer TCP Преферирај TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Подршка интернационализованих имена домена (IDN) - + Allow multiple connections from the same IP address Дозволи више конекција са исте IP адресе - + Validate HTTPS tracker certificates Валидирај HTTPS сертификате трекера - + Server-side request forgery (SSRF) mitigation Ублаживање лажирања захтева са серверске стране (SSRF) - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval Период освежавања - + Resolve peer host names Одреди име хоста peer-а (учесника) - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus Омогући иконице у менијима - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - сек + сек - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Приказуј нотификације - + Display notifications for added torrents Приказуј нотификације за додате торенте - + Download tracker's favicon Преузми фавикон трекера - + Save path history length Дужина историје путања за чување - + Enable speed graphs Приказуј графике брзине - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin Бергеров систем (свако са сваким) - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck Potvrdi proveru torrenta - + Confirm removal of all tags Потврди уклањање свих ознака - + Always announce to all trackers in a tier Увек огласи свим трекерима у рангу - + Always announce to all tiers Увек огласи свим ранговима - + Any interface i.e. Any network interface Било који мрежни интерфејс - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries Одреди државе учесника - + Network interface Мрежни интерфејс - + Optional IP address to bind to Опциона IP адреса за качење - + Max concurrent HTTP announces Максимум истовремених HTTP објављивања - + Enable embedded tracker Омогући уграђени пратилац - + Embedded tracker port Уграђени пратилац порта @@ -1403,121 +1414,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Извршавање у портабилном режиму. Аутодетектована фасцикла профила на: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Сувишна заставица командне линије детектована: "%1". Портабилни режим подразумева релативно брзо-настављање. - + Using config directory: %1 Користи се конфигурациона фасцикла: %1 - + Torrent name: %1 Име торента: %1 - + Torrent size: %1 Величина торента: %1 - + Save path: %1 Путања чувања: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Торент ће бити преузет за %1. - - + + Thank you for using qBittorrent. Хвала што користите qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, slanje mail obaveštenja - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` Покретање екстерног програма. Торент: "%1". Команда: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Није успело покретање екстерног програма. Торент: "%1". Команда: `%2` - + Torrent "%1" has finished downloading Преузимање торента "%1" је завршено - + WebUI will be started shortly after internal preparations. Please wait... Веб интерфејс ће бити покренут убрзо, након интерних припрема. Молимо сачекајте... - - + + Loading torrents... Учитавање торената... - + E&xit Иза&ђи - + I/O Error i.e: Input/Output Error I/O грешка - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Разлог: %2 - + Torrent added Торент додат - + '%1' was added. e.g: xxx.avi was added. '%1' је додат. - + Download completed Преузимање завршено - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' је преузет. - + Information Информације - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 Можете да контролишете qBittorrent тако што приступите веб интерфејсу на: %1 - + Exit Излаз - + Recursive download confirmation Потврда поновног преузимања - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Торент "%1" садржи .torrent фајлове, желите ли да наставите са њиховим преузимањем? - + Never Никад - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Подешавање лимита коришћења радне меморије (RAM) није успело. Код грешке: %1. Порука грешке: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated Обустављање qBittorrent-a започето - + qBittorrent is shutting down... qBittorrent се искључује... - + Saving torrent progress... Снимање напретка торента... - + qBittorrent is now ready to exit qBittorrent је сада спреман за излазак @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Извези... - + Matches articles based on episode filter. Усклађује чланке на основу филтера епизода. - + Example: Пример: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match - + Episode filter rules: Правила филтера епизода: - + Season number is a mandatory non-zero value Број сезоне је обавезан број који није нула - + Filter must end with semicolon Филтер се мора завршавати са ; - + Three range types for episodes are supported: Три типа опсега су подржана за епизоде: - + Single number: <b>1x25;</b> matches episode 25 of season one Један број: <b>1x25;</b> одговара епизоди 25 прве сезоне - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Нормалан опсег: <b>1x25-40;</b> одговара епизодама 25-40 прве сезоне - + Episode number is a mandatory positive value Број епизоде је обавезна позитивна вредност - + Rules Правила - + Rules (legacy) Правила (стара) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Бесконачан опсег: <b>1x25-;</b> одговара епизодама 25 и више прве сезоне, и свим епизодама каснијих сезона - + Last Match: %1 days ago Последње подударање: пре %1 дана - + Last Match: Unknown Последње подударање: непознато - + New rule name Назив новог правила - + Please type the name of the new download rule. Молимо унесите име новог правила за преузимање. - - + + Rule name conflict Конфликт у називу правила - - + + A rule with this name already exists, please choose another name. Правило са овим називом већ постоји, молим изаберите неки други назив. - + Are you sure you want to remove the download rule named '%1'? Da li ste sigurni da želite da uklonite pravilo preuzimanja '%1'? - + Are you sure you want to remove the selected download rules? Да ли сте сигурни да желите да уклоните изабрана правила преузимања? - + Rule deletion confirmation Потврда брисања - правила - + Invalid action Неважећа акција - + The list is empty, there is nothing to export. Листа је празна, не постоји ништа за извоз. - + Export RSS rules Извези RSS правила - + I/O Error I/O грешка - + Failed to create the destination file. Reason: %1 Креирање одредишног фајла није успело. Разлог: %1 - + Import RSS rules Увези RSS правила - + Failed to import the selected rules file. Reason: %1 Увоз одабраног фајла са правилима није успео. Разлог: %1 - + Add new rule... Додај ново правило... - + Delete rule Обриши правило - + Rename rule... Преименуј правило... - + Delete selected rules Обриши изабрана правила - + Clear downloaded episodes... Очисти преузете епизоде... - + Rule renaming Преименовање правила - + Please type the new rule name Молим упишите назив за ново правило - + Clear downloaded episodes Очисти преузете епизоде - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Да ли сигурно желите да очистите списак преузетих епизода за изабрано правило? - + Regex mode: use Perl-compatible regular expressions Regex режим: користи Perl-компатибилне регуларне изразе - - + + Position %1: %2 Позиција %1: %2 - + Wildcard mode: you can use Режим џокера: можете користити - - + + Import error - + Failed to read the file. %1 - + ? to match any single character ? уместо било ког једног карактера - + * to match zero or more of any characters * уместо нула или више било којих карактера - + Whitespaces count as AND operators (all words, any order) Размаци се рачунају као И/AND оператори (све речи, било који редослед) - + | is used as OR operator | се користи као ИЛИ оператор - + If word order is important use * instead of whitespace. Ако је редослед речи битан, користите * уместо размака. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Израз са празним %1 чланом (нпр. %2) - + will match all articles. ће заменити све артикле. - + will exclude all articles. ће изузети све артикле. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 Парсирање информација о торенту није успело: %1 - + Cannot parse torrent info: invalid format Парсирање информација о торенту није успело: неважећи формат - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Чување метаподатака о торенту у "%1" није успело. Грешка: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 Чување података у "%1" није успело. Грешка: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Није нађено. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. База података је повређена. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. Добијање резултата упита није успело. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + Парсирање информација о торенту није успело: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Започињање трансакције није успело. Грешка: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Чување метаподатака торента није успело. Грешка: %1 - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 Чување редоследа торената није успело. Грешка: %1 @@ -2185,514 +2229,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Подршка Distributed Hash Table (DHT): %1 - - - - - - - - - + + + + + + + + + ON УКЉУЧЕН - - - - - - - - - + + + + + + + + + OFF ИСКЉУЧЕН - - + + Local Peer Discovery support: %1 Подршка Local Peer Discovery: %1 - + Restart is required to toggle Peer Exchange (PeX) support Поновно покретање је неопходно за укључивање/искључивање подршке Peer Exchange (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Настављање торента није успело. Торент: "%1". Разлог: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Настављање торента није успело: недоследан ID торента детектован. Торент: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Недоследни подаци детектовани: категорија недостаје из конфигурационог фајла. Категорија ће бити обновљена али њена подешавања ће бити ресетована на подразумевана. Торент: "%1". Категорија: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Недоследни подаци детектовани: неважећа категорија. Торент: "%1". Категорија: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Недоследни подаци детектовани: ознака недостаје из конфигурационог фајла. Ознака ће бити обновљена. Торент: "%1". Ознака: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Недоследни подаци детектовани: неважећа ознака. Торент: "%1". Ознака: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Догађај буђења система детектован. Поновно најављивање свим трекерима... - + Peer ID: "%1" ID учесника: "%1" - + HTTP User-Agent: "%1" HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 Подршка за Peer Exchange (PeX): %1 - - + + Anonymous mode: %1 Анонимни режим: %1 - - + + Encryption support: %1 Подршка енкрипције: %1 - - + + FORCED ПРИСИЛНО - + Could not find GUID of network interface. Interface: "%1" Налажење GUID-а интерфејса мреже није успело. Интерфејс: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. Торент је достигао лимит односа дељења. - + Torrent: "%1". Торент: "%1" - Removed torrent. - Торент уклоњен. - - - Removed torrent and deleted its content. - Торент уклоњен, његов садржај обрисан. - - - Torrent paused. - Торент паузиран. - - - + Super seeding enabled. - + Torrent reached the seeding time limit. Торент је достигао ограничење времена дељења. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" Учитавање торента није успело. Разлог: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON Подршка UPnP/NAT-PMP: УКЉ - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - Спајање тракера је онемогућено + Спајање тракера је онемогућено - + Trackers cannot be merged because it is a private torrent - Тракери не могу бити спојени јер је у питању приватни торент. + Тракери не могу бити спојени јер је у питању приватни торент. - + Trackers are merged from new source - Тракери су спојени из новог извора + Тракери су спојени из новог извора - + UPnP/NAT-PMP support: OFF Подршка за UPnP/NAT-PMP: ИСКЉ - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Торент паузиран. Торент: "%1" - - - + Torrent resumed. Torrent: "%1" Торент настављен. Торент: "%1" - + Torrent download finished. Torrent: "%1" Преузимање торента завршено. Торент: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP филтер - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). филтрирани порт (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). привилеговани порт (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Грешка у проксију SOCKS5. Адреса: %1. Порука: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 је онемогућено - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 је онемогућено - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2742,47 +2775,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On Укључено - + Off Искљученo - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Обнављање торента није успело. Фајлови су вероватно били премештени, или складиште није доступно. Торент: "%1". Разлог: "%2" - + Missing metadata Недостају метаподаци - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Преименовање фајла није успело. Торент: "%1", фајл: "%2", разлог: "%3" - + Performance alert: %1. More info: %2 Упозорење око перформанси: %1. Више информација: %2 @@ -2819,11 +2852,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Очекивао се цео број у променљивој окружења "%1", али нађено је "%2" - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Параметар "%1" мора поштовати синтаксу "%1=%2" - Expected %1 in environment variable '%2', but got '%3' @@ -2864,7 +2892,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Параметар "%1" мора поштовати синтаксу "%1=%2" + Параметар "%1" мора поштовати синтаксу "%1=%2" @@ -2954,10 +2982,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - Додај торенте у започетом или паузираном стању - Skip hash check @@ -3054,14 +3078,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - Настави торенте - - - Pause torrents - Паузирај торенте - Remove torrents @@ -3160,10 +3176,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - Also permanently delete the files - Такође перманентно обриши фајлове - Are you sure you want to remove '%1' from the transfer list? @@ -3395,26 +3407,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" Преузимање торента... Извор: "%1" - Trackers cannot be merged because it is a private torrent - Тракери не могу бити спојени јер је у питању приватни торент. - - - + Torrent is already present Торент је већ присутан - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Торент "%1" је већ на списку преноса. Желите ли да спојите трекере из новог извора? @@ -3532,6 +3540,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Подржани фајлови слика + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3673,10 +3715,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Подешавања... - - &Resume - &Настави - &Remove @@ -3758,10 +3796,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Затвори прозор - - R&esume All - Н&астави Све - Manage Cookies... @@ -3877,10 +3911,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Хибернирај систем - - S&hutdown System - Иск&ључи систем - &Statistics @@ -3901,14 +3931,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &О програму - - &Pause - &Пауза - - - P&ause All - П&аузирај све - &Add Torrent File... @@ -3942,12 +3964,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Прикажи - + Check for program updates Провери ажурирања програма @@ -3962,388 +3984,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Ако волите qBittorrent, молимо Вас да донирате! - + Execution Log Дневник догађаја - + Clear the password Очисти лозинку - + &Set Password &Подеси шифру - + Preferences Опције - + &Clear Password О&чисти шифру - + Transfers Трансфери - - + + qBittorrent is minimized to tray qBittorrent је умањен на палету - - - + + + This behavior can be changed in the settings. You won't be reminded again. Ово понашање се може променити у подешавањима. Нећемо вас више подсећати. - + Icons Only Само иконе - + Text Only Само текст - + Text Alongside Icons Текст поред икона - + Text Under Icons Текст испод икона - + Follow System Style Прати стил система - - + + UI lock password Закључавање КИ-а лозинком - - + + Please type the UI lock password: Молим упишите лозинку закључавања КИ-а: - + Are you sure you want to clear the password? Да ли сигурно желите да очистите шифру? - + Use regular expressions Користи регуларне изразе - - + + Search Engine - Претраживач + Претраживач - + Search has failed - Претрага није успела + Претрага није успела - + Search has finished - Претраживање је завршено + Претраживање је завршено - + Search Претраживање - + Transfers (%1) Трансфери (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent је управо ажуриран и треба бити рестартован, да би' промене имале ефекта. - + qBittorrent is closed to tray qBittorrent је затворен на палету - + Some files are currently transferring. У току је пренос фајлова. - + Are you sure you want to quit qBittorrent? Да ли сте сигурни да желите да напустите qBittorrent? - + &No &Не - + &Yes &Да - + &Always Yes &Увек да - + Options saved. Опције сачуване. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime Недостаје Python Runtime - + qBittorrent Update Available Ажурирање qBittorrent-а доступно - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python је потребан за коришћење претраживачког модула, али изгледа да није инсталиран. Да ли желите да га инсталирате? - + Python is required to use the search engine but it does not seem to be installed. Python је потребан за коришћење претраживачког модула, али изгледа да није инсталиран. - - + + Old Python Runtime Застарео Python Runtime - + A new version is available. Нова верзија је доступна. - + Do you want to download %1? Да ли желите да преузмете %1? - + Open changelog... Отвори списак измена... - + No updates available. You are already using the latest version. Нема нових ажурирања. Одвећ користите најновију верзију. - + &Check for Updates &Потражи ажурирања - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Ваша верзија Python-а (%1) је застарела, неопходна је барем %2. Желите ли да инсталирате новију верзију? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Ваша верзија Python-а (%1) је застарела. Молимо инсталирајте најновију верзију да би претраживање радило. Минимални захтев: %2. - + Paused - Паузиран + Паузиран - + Checking for Updates... Тражим ажурирања... - + Already checking for program updates in the background Одвећ у позадини проверавам има ли ажурирања - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Грешка при преузимању - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python setup не може бити преузет,разлог: %1. -Молим Вас инсталирајте га ручно. - - - - + + Invalid password Погрешна лозинка - + Filter torrents... Филтрирај торенте... - + Filter by: Филтрирај према: - + The password must be at least 3 characters long Шифра мора садржати барем 3 карактера - - - + + + RSS (%1) RSS (%1) - + The password is invalid Лозинка је погрешна - + DL speed: %1 e.g: Download speed: 10 KiB/s Брзина преузимања: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Брзина слања: %1 - + Hide Сакриј - + Exiting qBittorrent Излазак из qBittorrent-а - + Open Torrent Files Отвори Торент фајлове - + Torrent Files Торент Фајлови @@ -5837,47 +5853,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 Повезивање није успело, непрепознат одговор: %1 - + Authentication failed, msg: %1 Аутентификација није успела, порука: %1 - + <mail from> was rejected by server, msg: %1 <mail from> одбијено од стране сервера, порука: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> одбијено од стране сервера, порука: %1 - + <data> was rejected by server, msg: %1 <data> одбијено од стране сервера, порука: %1 - + Message was rejected by the server, error: %1 Порука одбијена од стране сервера, грешка: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 Грешка при обавештење е-поштом: %1 @@ -5919,10 +5935,6 @@ Please install it manually. RSS RSS - - Web UI - Веб интерфејс - Advanced @@ -5959,10 +5971,6 @@ Please install it manually. Always Увек - - Paused torrents only - Само паузирани торенти - Action on double-click @@ -5973,10 +5981,6 @@ Please install it manually. Downloading torrents: Преузимање торента: - - Start / Stop Torrent - Старт / Стоп Торент - @@ -6035,359 +6039,365 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Приказ садржаја торента: - + Original Оригинал - + Create subfolder Креирај потфасциклу - + Don't create subfolder Не креирај потфасциклу - + The torrent will be added to the top of the download queue Торент ће бити додат на врх редоследа преузимања - + Add to top of queue The torrent will be added to the top of the download queue Додај на врх редоследа - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Додај... - + Options.. Подешавања... - + Remove Уклони - + Email notification &upon download completion Обавештење путем е-поште када се преузимања заврше - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Протокол конекције учесника: - + Any Било који - + I2P (experimental) I2P (експериментално) - + Mixed mode Мешовити режим - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering &Филтрирање IP адреса - + Schedule &the use of alternative rate limits Направи &распоред коришћења алтернативних ограничења брзине - + From: From start time Од: - + To: To end time До: - + Find peers on the DHT network Тражи партнере на DHT мрежи - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption Дозволи енкрипцију - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Више информација</a>) - + Maximum active checking torrents: - + &Torrent Queueing &Ређање торената - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader RSS читач - + Enable fetching RSS feeds - + Feeds refresh interval: Период освежавања фидова: - + Same host request delay: - + Maximum number of articles per feed: Максимални број чланака по допису: - - - + + + min minutes мин - + Seeding Limits Ограничења донирања - Pause torrent - Паузирај торент - - - + Remove torrent Уклони торент - + Remove torrent and its files Уклони торент и његове фајлове - + Enable super seeding for torrent - + When ratio reaches Када однос достигне - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: Филтери: - + Web User Interface (Remote control) Веб Кориснички Интерфејс (Даљински приступ) - + IP address: IP адреса: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6395,41 +6405,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv Унесите IPv4 или IPv6 адресу. Можете да наведете "0.0.0.0" за било коју IPv4 адресу, " :: " за било коју IPv6 адресу, или " * " за и IPv4 и IPv6. - + Ban client after consecutive failures: Бануј клијента након узастопних неуспеха: - + Never Никад - + ban for: бан за: - + Session timeout: Тајмаут сесије: - + Disabled Онемогућено - Enable cookie Secure flag (requires HTTPS) - Омогући Secure заставицу колачића (захтева HTTPS) - - - + Server domains: Домени сервера - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6438,37 +6444,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Користи HTTPS уместо HTTP - + Bypass authentication for clients on localhost Заобиђи аутентификацију за клијенте на localhost-у - + Bypass authentication for clients in whitelisted IP subnets Заобиђи аутентификацију за клијенте на IP подмрежама које су на белој листи - + IP subnet whitelist... Листа дозвољених IP подмрежа... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name А&журирај моје име динамичног домена @@ -6480,7 +6486,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - + Претрага @@ -6581,99 +6587,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent При додавању торента - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! Пажња! Могућ је губитак података! - + Saving Management Управљање чувањем - + Default Torrent Management Mode: Режим управљања торентима: - + Manual Ручно - + Automatic Аутоматски - + When Torrent Category changed: - + Relocate torrent Релоцирај торент - + Switch torrent to Manual Mode Пребаци торент у мануелни режим - - + + Relocate affected torrents Релоцирај обухваћене торенте - - + + Switch affected torrents to Manual Mode Пребаци обухваћене торенте у мануелни режим - + Use Subcategories Користи поткатегорије - + Default Save Path: Подразумевана путања чувања: - + Copy .torrent files to: Копирај .torrent фајлове у: @@ -6683,26 +6689,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Прикажи qBittorrent на &системској палети - &Log file - Фајл &записа - - - + Display &torrent content and some options Приказуј садржај &торената и неке опције - + De&lete .torrent files afterwards Об&риши .torrent фајлове на крају - + Copy .torrent files for finished downloads to: Копирај .torrent фајлове за завршена преузимања у: - + Pre-allocate disk space for all files Унапред додели простор на диску за све фајлове @@ -6732,10 +6734,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Прикажи фајл, у супротном отвори одредишну фасциклу - - Show torrent options - Прикажи опције торената - Shows a confirmation dialog when exiting with active torrents @@ -6801,69 +6799,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.година - + Log performance warnings - The torrent will be added to download list in a paused state - Торент ће бити додат у списак преузимања у паузираном стању - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Не започињи преузимање аутоматски - + Whether the .torrent file should be deleted after adding it Да ли да се обрише .torrent фајл након његовог додавања - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Заузми пуне величине датотека на диску пре започињања преузимања да би се смањила фрагментација. Корисно само за механичке хард дискове. - + Append .!qB extension to incomplete files Додај .!qB екстензију некомплетним фајловима - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Када се торент преузме, понуди да се додају торенти из евентуалних .torrent фајлова које садржи - + Enable recursive download dialog Омогући рекурзивни дијалог за преузимање - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Аутоматски: разна својства торента (нпр. путања чувања) ће се одлучивати на основу асоциране категорије Мануелно: разна својства торента (нпр. путања чувања) се морају навести ручно - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6883,50 +6877,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyСтање прозора qBittorrent-а при покретању - + Torrent stop condition: Услов престанка торента: - - + + None Никакав - - + + Metadata received Примљени метаподаци - - + + Files checked Проверени фајлови - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: Користи другу путању за непотпуне торенте - + Automatically add torrents from: Аутоматски додај торенте из: - + Excluded file names Изузета имена фајлова - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6955,523 +6949,510 @@ readme.txt: филтрирај тачно име фајла. readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt", али не "readme10.txt" - + Receiver Примаоц - + To: To receiver Коме: - + SMTP server: SMTP сервер: - + Sender Пошиљалац - + From: From sender Пошиљалац: - + This server requires a secure connection (SSL) Овај сервер захтева безбедну конекцију (SSL) - - + + Authentication Аутентикација - - - - + + + + Username: Корисничко име: - - - - + + + + Password: Лозинка: - + Run external program Покрени екстерни програм - Run on torrent added - Покрени при додавању торента - - - Run on torrent finished - Покрени прои завршетку торента - - - + Show console window Прикажи прозор конзоле - + TCP and μTP TCP и μTP - + Listening Port Пријемни порт - + Port used for incoming connections: Порт коришћен за долазне конекције: - + Set to 0 to let your system pick an unused port Подесите на 0 да би систем сам изабрао слободан порт - + Random Насумично - + Use UPnP / NAT-PMP port forwarding from my router Користи UPnP / NAT-PMP преусмерење порта са мог рутера - + Connections Limits Ограничења конекције - + Maximum number of connections per torrent: Максимални број конекција по торенту: - + Global maximum number of connections: Општи максимални број конекција: - + Maximum number of upload slots per torrent: Максимални број слотова за слање по торенту: - + Global maximum number of upload slots: Општи максимални број слотова за слање: - + Proxy Server Прокси сервер - + Type: Тип: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Хост: - - - + + + Port: Порт: - + Otherwise, the proxy server is only used for tracker connections У супротном, прокси сервер се једино користи за конекције tracker-а(пратилаца) - + Use proxy for peer connections Користи прокси за учесничке (peer) конекције - + A&uthentication А&утентификација - Info: The password is saved unencrypted - Инфо: шифра се чува у неенкриптованом стању + Инфо: шифра се чува у неенкриптованом стању - + Filter path (.dat, .p2p, .p2b): Путање фајла са филтерима (.dat, .p2p, .p2b): - + Reload the filter Поново учитај филтер - + Manually banned IP addresses... Ручно забрањене IP адресе... - + Apply to trackers Примени на трекере - + Global Rate Limits Општа вредност ограничења - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Слање: - - + + Download: Преузимање: - + Alternative Rate Limits Алтернативна ограничења - + Start time Почетно време - + End time Време завршетка - + When: Када: - + Every day Сваки дан - + Weekdays Радни дани - + Weekends Викенди - + Rate Limits Settings Подешавања ограничења односа - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead Примени ведносна ограничења код прекорачење преноса - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol Примени ограничење на µTP протокол - + Privacy Приватност - + Enable DHT (decentralized network) to find more peers Омогући DHT (децентализовану мрежу) за налажење додатних учесника - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Размењуј peer-ове са компатибилним Bittorrent клијентима (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Омогући Peer Exchange (PeX) за налажење додатних учесника - + Look for peers on your local network Потражите peer-ове на вашој локалној мрежи - + Enable Local Peer Discovery to find more peers Омогући откривање локалних веза за налажење додатних учесника - + Encryption mode: Режим шифровања: - + Require encryption Захтевај енкрипцију - + Disable encryption Искључи енкрипцију - + Enable when using a proxy or a VPN connection - + Enable anonymous mode Омогући анонимни режим - + Maximum active downloads: Максимум активних преузимања: - + Maximum active uploads: Максимум активних слања: - + Maximum active torrents: Максимално активних торената: - + Do not count slow torrents in these limits Не убрајај споре торенте у ова ограничења - + Upload rate threshold: Граница брзине слања: - + Download rate threshold: Граница брзине преузимања: - - - - + + + + sec seconds сек - + Torrent inactivity timer: Тајмер неактивности торената - + then затим - + Use UPnP / NAT-PMP to forward the port from my router Користи UPnP / NAT-PMP преусмерење порта са мог рутера - + Certificate: Сертификат: - + Key: Кључ: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Информација о сертификатима</a> - + Change current password Промени тренутно шифру - Use alternative Web UI - Користи алтернативни веб интерфејс - - - + Files location: Локација датотека: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Сигурност - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers Додај прилагођена HTTP заглавља - + Header: value pairs, one per line Заглавље: парови вредности, један по реду - + Enable reverse proxy support - + Trusted proxies list: Списак поузданих проксија: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Сервис: - + Register Регистар - + Domain name: Име домена: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Омогућавањем ових опција можете да <strong>бесповратно изгубите</strong> ваше .torrent фајлове! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7481,12 +7462,12 @@ readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt&q Одабери фајл qBittorrent UI теме - + Choose Alternative UI files location Изаберите локацију фајлова алтернативног КИ - + Supported parameters (case sensitive): Подржани параметри (case sensitive) @@ -7506,183 +7487,183 @@ readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt&q Онемогућено јер присуство у системској палети није могло бити детектовано - + No stop condition is set. Услови престанка нису подешени. - + Torrent will stop after metadata is received. Торент ће престати након што метаподаци буду били примљени. - + Torrent will stop after files are initially checked. Торент ће престати након почетне провере фајлова. - + This will also download metadata if it wasn't there initially. Метаподаци ће такође бити преузети ако већ нису били ту. - + %N: Torrent name %N: Име Торента - + %L: Category %L: Категорија - + %F: Content path (same as root path for multifile torrent) %F: Путања ка садржају (иста као коренска путања за торенте од више фајлова) - + %R: Root path (first torrent subdirectory path) - + %D: Save path - + %C: Number of files %C: Количина фајлова - + %Z: Torrent size (bytes) %Z: Величина торента (у бајтовима) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Савет: окружите параметар знацима навода, да се текст не би одсецао због размака (нпр. "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Нема) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Торент ће се сматрати за "спор" ако његове брзине слања и преузимања остану испод ових вредности током периода наведеног опцијом "Тајмер неактивности торената" - + Certificate Сертификат - + Select certificate Одабери сертификат - + Private key Приватни кључ - + Select private key Одабери приватни кључ - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor Изаберите фасциклу за присмотру - + Adding entry failed Додавање уноса није успело - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Грешка локације - - + + Choose export directory Изаберите директоријум за извоз - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7692,69 +7673,69 @@ readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt&q Фајл теме КИ qBittorrent-а (*qbtheme config.json) - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Изаберите директоријум за чување - + Torrents that have metadata initially will be added as stopped. Торенти који иницијално имају метаподатке биће додати као стопирани. - + Choose an IP filter file Изаберите фајл са IP филтерима - + All supported filters Сви подржани филтери - + The alternative WebUI files location cannot be blank. - + Parsing error Анализа грешака - + Failed to parse the provided IP filter Неспешна анализа датог IP филтера - + Successfully refreshed Успешно обновљен - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7765,18 +7746,18 @@ readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt&q Опције - + Time Error Временска грешка - + The start time and the end time can't be the same. Време почетка и краја не може бити исто. - - + + Length Error Грешка у дужини @@ -7867,163 +7848,163 @@ readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt&q PeerListWidget - + Country/Region Држава/регион - + IP/Address - + Port Порт - + Flags Заставе - + Connection Конекције - + Client i.e.: Client application Клијент - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Напредак - + Down Speed i.e: Download speed Брзина преузимања - + Up Speed i.e: Upload speed Брзина цлања - + Downloaded i.e: total data downloaded Преузето - + Uploaded i.e: total data uploaded Послато - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Релевантност - + Files i.e. files that are being downloaded right now Фајлови - + Column visibility Видљивост колона - + Resize columns Промени величину колона - + Resize all non-hidden columns to the size of their contents Промени ширину свих видљивих колона на ширину њиховог садржаја - + Add peers... Додај учеснике... - - + + Adding peers Додавање учесника - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently Забрани (бануј) учесника трајно - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected Ниједан учесник није изабран - + Are you sure you want to permanently ban the selected peers? Да ли сте сигурни да желите да забраните изабране учеснике трајно? - + Peer "%1" is manually banned Учесник "%1" је ручно банован - + N/A Недоступно - + Copy IP:port Копирај IP:порт @@ -8304,34 +8285,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent је активан - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent је активан @@ -8623,132 +8578,124 @@ Those plugins were disabled. Путања за чување: - + Never Никад - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (имате %3) - - + + %1 (%2 this session) %1 (%2 ове сесије) - - + + N/A Недоступно - + Yes - Да + Да - + No - Не + Не - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (донирано за %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 макс) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 укупно) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 прос.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - Нови Web донор - - - Remove Web seed - Уклони Web донора - - - + Filter files... Филтрирај датотеке... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled Графикони брзине су онемогућени - + You can enable it in Advanced Options - + Web seed editing - + Web seed URL: @@ -8756,33 +8703,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Неважећи формат података. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format Неважећи формат података - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8790,22 +8737,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8854,12 +8801,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Чување конфигурације RSS сесије није успело. Фајл: "%1". Грешка: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Чување података о RSS сесији није успело. Фајл: "%1". Грешка: "%2" @@ -8881,76 +8828,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. Ставка не постоји: %1. - Couldn't move folder into itself. - Није могуће преместити фасциклу саму у себе. + Није могуће преместити фасциклу саму у себе. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Није могуће обрисати коренску фасциклу. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Учитавање RSS фида није успело. Фид: "%1". Разлог: неопходан је URL. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Учитавање RSS фида није успело. Фид: "%1". Разлог: UID није важећи. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Нађен је дуплирани RSS фид. UID: "%1". Грешка: конфигурација је изгледа повређена. - + Couldn't load RSS item. Item: "%1". Invalid data format. Учитавање RSS предмета није успело. Предмет: "%1". Неважећи формат фајла. - + Corrupted RSS list, not loading it. Повређена RSS листа, неће бити учитана. - + Incorrect RSS Item path: %1. Нетачна путања RSS предмета: %1. - + RSS item with given path already exists: %1. RSS предмет са датом путањом већ постоји: %1 - + Parent folder doesn't exist: %1. Родитељска фасцикла не постоји: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Фид не постоји: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + сек + + + + Default + Подразумевано + + RSSWidget @@ -9050,78 +9042,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Уреди URL фида... + Уреди URL фида... - Edit feed URL - Уреди URL фида + Уреди URL фида - + Please choose a folder name Молим изаберите име фасцикле - + Folder name: Име фасцикле: - + New folder Нова фасцикла - - Please type a RSS feed URL - Молимо унесите URL RSS фида + Молимо унесите URL RSS фида - - Feed URL: - URL фида: + URL фида: - + Deletion confirmation Потврда брисања - + Are you sure you want to delete the selected RSS feeds? Да ли сигурно желите да избришете изабране RSS фидове? - + Please choose a new name for this RSS feed Молим изаберит ново име за овај RSS допис - + New feed name: Ново feed име: - + Rename failed Преименовање није успело - + Date: Датум: - + Feed: - + Author: Аутор: @@ -9258,10 +9249,6 @@ Those plugins were disabled. i.e: Number of partial sources Трагачи - - Search engine - Претраживачки модул - Filter search results... @@ -9382,104 +9369,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Непознат формат фајла додатка за претрагу. - + Plugin already at version %1, which is greater than %2 Додатак је већ верзије %1, што је веће од %2 - + A more recent version of this plugin is already installed. Новија верзија додатка је већ инсталирана. - + Plugin %1 is not supported. Додатак %1 није подржан. - - + + Plugin is not supported. Додатак није подржан. - + Plugin %1 has been successfully updated. Додатак %1 успешно ажуриран. - + All categories Све категорије - + Movies Филмови - + TV shows ТВ емисије - + Music Музика - + Games Игрице - + Anime Аниме - + Software Софтвер - + Pictures Слике - + Books Књиге - + Update server is temporarily unavailable. %1 Сервер за ажурирања привремено није доступан. %1 - - + + Failed to download the plugin file. %1 Преузимање фајла додатка није успело. %1 - + Plugin "%1" is outdated, updating to version %2 Додатак "%1" је застарео, ажурирам на верзију %2 - + Incorrect update info received for %1 out of %2 plugins. Нетачне информације за ажурирање добијене за %1 од %2 додатака. - + Search plugin '%1' contains invalid version string ('%2') Додатак за претрагу "%1" садржи неважећу ниску верзије ("%2") @@ -9505,135 +9492,127 @@ Click the "Search plugins..." button at the bottom right of the window Додаци за претрагу... - + A phrase to search for. Фраза која ће се тражити. - + Spaces in a search term may be protected by double quotes. Размаци у термину за претрагу се могу заштитити помоћу наводника. - + Example: Search phrase example Пример: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: тражи <b>foo bar</b> - + All plugins Сви плагинови... - + Only enabled Само омогућено - - + + Invalid data format. - Неважећи формат података. + Неважећи формат података. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: тражи <b>foo</b> и <b>bar</b> - + Refresh - + Close tab Затвори картицу - + Close all tabs Затвори све картице - + Select... Изабери... - - + + Search Engine Претраживач - - + + Please install Python to use the Search Engine. Молимо инсталирајте Python да бисте могли да користите претраживач - + Empty search pattern Празано поље претраживања - + Please type a search pattern first Унесите прво назив за претраживање - + Stop Заустави - - Search has finished - Претраживање је завршено - - - Search has failed - Претрага није успела - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10031,67 +10010,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Статус конекције: - - + + No direct connections. This may indicate network configuration problems. Нема директних конекција. То може указивати на проблем мрежне конфигурације. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 чворова - + qBittorrent needs to be restarted! qBittorrent мора бити рестартован! - - + + Connection Status: Статус конекције: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Није на вези. То обично значи да qBittorrent не надгледа изабрани порт за долазне конекције. - + Online На вези - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits Кликните да укључите алтернативно ограничење брзине - + Click to switch to regular speed limits Кликните да укључите уобичајено ограничење брзине @@ -10119,14 +10108,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Завршено (0) - - Resumed (0) - Настављено (0) - - - Paused (0) - Паузирано (0) - Running (0) @@ -10217,32 +10198,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - Паузирано (%1) - Moving (%1) Премештање (%1) - - Resume torrents - Пусти торенте - - - Pause torrents - Паузирај торенте - Remove torrents Уклони торенте - - Resumed (%1) - Настављено (%1) - Active (%1) @@ -10314,23 +10279,11 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Уклони некоришћене тагове - - Resume torrents - Настави торенте - - - Pause torrents - Паузирај торенте - Remove torrents Уклони торенте - - New Tag - Нова ознака - Start torrents @@ -10664,17 +10617,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10926,13 +10879,6 @@ Please choose a different name and try again. Надгледа се фасцикла: "%1" - - TorrentInfo - - Invalid metadata - Неважећи метаподаци - - TorrentOptionsDialog @@ -10970,10 +10916,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - Ограничења брзине торената - Download: @@ -11006,26 +10948,6 @@ Please choose a different name and try again. Upload: Слање: - - Torrent share limits - Ограничења дељења торената - - - Use global share limit - Користи глобално ограничење дељења - - - Set no share limit - Не користи ограничење дељења - - - Set share limit to - Подеси ограничење дељења на - - - ratio - однос - Disable DHT for this torrent @@ -11067,14 +10989,6 @@ Please choose a different name and try again. Not applicable to private torrents Није примењиво за приватне торенте - - No share limit method selected - Ниједна метода ограничења дељења није изабрана - - - Please select a limit method first - Молимо прво изаберите методу ограничења - TorrentShareLimitsWidget @@ -11134,7 +11048,7 @@ Please choose a different name and try again. Remove torrent - Уклони торент + Уклони торент @@ -11159,10 +11073,6 @@ Please choose a different name and try again. Torrent Tags Ознаке торената - - New Tag - Нова ознака - Add tag @@ -11197,78 +11107,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Грешка: "%1" није валидан торент фајл. - + Priority must be an integer Приоритет мора бити цео број - + Priority is not valid Неважећи приоритет - + Torrent's metadata has not yet downloaded Метаподаци торента још нису преузети - + File IDs must be integers ID-ови фајла морају бити цели бројеви - + File ID is not valid ID фајла је неважећи - - - - + + + + Torrent queueing must be enabled Ређање торената мора бити омогућено - - + + Save path cannot be empty Путања чувања не сме бити празна - - + + Cannot create target directory Креирање циљне фасцикле није успело - - + + Category cannot be empty Категорија не може бити празна - + Unable to create category Креирање категорије није успело - + Unable to edit category Уређивање категорије није успело - + Unable to export torrent file. Error: %1 Извоз фајла торента није успео. Грешка: %1 - + Cannot make save path Креирање путање чувања није успело @@ -11288,39 +11198,39 @@ Please choose a different name and try again. Параметар "sort" није важећи - + "%1" is not an existing URL - + "%1" is not a valid file index. "%1" није важећи индекс фајла - + Index %1 is out of bounds. Индекс %1 је изван граница. - - + + Cannot write to directory Упис у фасциклу није могућ - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name Нетачно име торента - - + + Incorrect category name Нетачно име категорије @@ -11469,73 +11379,73 @@ Please choose a different name and try again. Овај торент је приватан - + Tracker editing Уређивање трекера - + Tracker URL: URL трекера: - - + + Tracker editing failed Уређивање трекера није успело - + The tracker URL entered is invalid. Задати URL трекера није важећи. - + The tracker URL already exists. URL трекера већ постоји - + Edit tracker URL... Уреди URL трекера... - + Remove tracker Уклони пратилац - + Copy tracker URL Копирај URL трекера - + Force reannounce to selected trackers Присилно поново објави следећим трекерима - + Force reannounce to all trackers Присилно поново објави свим трекерима - + Resize columns Промени величину колона - + Resize all non-hidden columns to the size of their contents Промени ширину свих видљивих колона на ширину њиховог садржаја - + Add trackers... Додај трекере... - + Column visibility Прегледност колона @@ -11625,14 +11535,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - Пусти торенте - - - Pause torrents - Паузирај торенте - Remove torrents @@ -11755,10 +11657,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Провера података за настављање - - Paused - Паузиран - Completed @@ -11799,21 +11697,16 @@ Please choose a different name and try again. % Done Напредак - - Status - Torrent status (e.g. downloading, seeding, paused) - Статус - Stopped - + Стопиран Status Torrent status (e.g. downloading, seeding, stopped) - Статус + Статус @@ -11929,22 +11822,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Протекло време + Протекло време Yes - Да + Да No - Не - - - Time Active - Time (duration) the torrent is active (not paused) - Протекло време + Не @@ -12046,358 +11934,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Прегледност колона - + Recheck confirmation Потврда поновне провере - + Are you sure you want to recheck the selected torrent(s)? Да ли сигурно желите да поново проверите изабране торенте? - + Rename Преименуј - + New name: Ново име: - + Choose save path Изаберите путању чувања - Confirm pause - Потврда паузирања - - - Would you like to pause all torrents? - Желите ли да паузирате све торенте? - - - Confirm resume - Потврда настављања - - - Would you like to resume all torrents? - Желите ли да наставите све торенте? - - - + Unable to preview Преглед није успео - + The selected torrent "%1" does not contain previewable files Изабрани торент "%1" не садржи фајлове које је могуће прегледати - + Resize columns Промени величину колона - + Resize all non-hidden columns to the size of their contents Промени ширину свих видљивих колона на ширину њиховог садржаја - + Enable automatic torrent management Омогући аутоматски менаџмент торената - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Да ли сигурно желите да омогућите аутоматски менаџмент торената за изабране торенте? Могуће је да буду премештени. - Add Tags - Додај ознаке - - - + Choose folder to save exported .torrent files Изаберите фасциклу у којој ће се чувати извезени .torrent фајлови - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Извоз .torrent фајла није успео. Торент: "%1". Путања: "%2". Разлог: "%3" - + A file with the same name already exists Фајл са таквим именом већ постоји - + Export .torrent file error Грешка током извоза .torrent датотеке - + Remove All Tags Уклони све ознаке - + Remove all tags from selected torrents? Уклонити све ознаке са изабраних торената? - + Comma-separated tags: Ознаке одвојене зарезима: - + Invalid tag Неважећа ознака - + Tag name: '%1' is invalid Име ознаке: "%1" није важеће - &Resume - Resume/start the torrent - &Настави - - - &Pause - Pause the torrent - &Пауза - - - Force Resu&me - Force Resume/start the torrent - Присилно на&стави - - - + Pre&view file... Пре&глед фајла... - + Torrent &options... &Опције торента... - + 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 loc&ation... Подеси лока&цију... - + Force rec&heck Присилна поновна провера - + Force r&eannounce Присилно поновно објављивање - + &Magnet link &Магнет веза - + Torrent &ID ID торента (&И) - + &Comment - + &Name &Име - + Info &hash v1 Инфо хеш v&1 - + Info h&ash v2 Инфо хеш v&2 - + Re&name... Пре&именуј... - + Edit trac&kers... Уреди тре&кере... - + E&xport .torrent... Из&вези .torrent фајл... - + Categor&y Категори&ја - + &New... New category... &Ново... - + &Reset Reset category &Ресет - + Ta&gs О&знаке - + &Add... Add / assign multiple tags... Д&одај... - + &Remove All Remove all tags &Уклони све - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue У &редослед - + &Copy &Копирај - + Exported torrent is not necessarily the same as the imported Извезени торент не мора нужно бити идентичан увезеном - + Download in sequential order Преузимање у серијском редоследу - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. Грешка током извоза .torrent фајлова. Погледајте дневник за детаље. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &Уклони - + Download first and last pieces first Прво преузми почетне и крајње делове - + Automatic Torrent Management Аутоматски менеџмент торената - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Аутоматски мод значи да ће се разна својства торента (нпр. путања чувања) одлучивати аутоматски на основу асоциране категорије - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Није могуће присилити поновно објављивање ако је торент паузиран/у редоследу/са грешком/проверава се - - - + Super seeding mode Супер seeding (донирајући) режим @@ -12529,32 +12378,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12646,52 +12495,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. Недозвољени тип фајла, само обични фајлови су дозвољени. - + Symlinks inside alternative UI folder are forbidden. Симболичке везе унутар фасцикле алтернативног КИ нису дозвољене. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12749,7 +12598,7 @@ Please choose a different name and try again. Unknown error - Непозната грешка + Непозната грешка diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index f98666ee3..bfb974267 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -170,10 +170,6 @@ Never show again Visa aldrig igen - - Torrent settings - Torrentinställningar - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrentalternativ @@ -235,25 +231,25 @@ Stoppvillkor: - - + + None Inget - - + + Metadata received Metadata mottagna - + Torrents that have metadata initially will be added as stopped. Torrenter som har metadata initialt kommer att läggas till som stoppade. - + Files checked Filer kontrollerade @@ -368,112 +364,112 @@ Spara som .torrent-fil... - + I/O Error In/ut-fel - + Not Available This comment is unavailable Inte tillgänglig - + Not Available This date is unavailable Inte tillgängligt - + Not available Inte tillgänglig - + Magnet link Magnetlänk - + Retrieving metadata... Hämtar metadata... - - + + Choose save path Välj sparsökväg - + No stop condition is set. Inga stoppvillkor angivna. - + Torrent will stop after metadata is received. Torrent stoppas efter att metadata har tagits emot. - + Torrent will stop after files are initially checked. Torrent stoppas efter att filer har kontrollerats initialt. - + This will also download metadata if it wasn't there initially. Detta laddar också ner metadata om inte där initialt. - + N/A Ingen - + %1 (Free space on disk: %2) %1 (Ledigt utrymme på disken: %2) - + Not available This size is unavailable. Inte tillgängligt - + Torrent file (*%1) Torrentfil (*%1) - + Save as torrent file Spara som torrentfil - + Couldn't export torrent metadata file '%1'. Reason: %2. Det gick inte att exportera torrentmetadatafilen "%1". Orsak: %2 - + Cannot create v2 torrent until its data is fully downloaded. Det går inte att skapa v2-torrent förrän dess data har hämtats helt. - + Filter files... Filtrera filer... - + Parsing metadata... Tolkar metadata... - + Metadata retrieval complete Hämtningen av metadata klar @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Hämtar torrent... Källa: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - Det gick inte att lägga till torrent. Källa: "%1". Orsak: "%2" + Misslyckades att lägga till torrent. Källa: "%1". Orsak: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Upptäckte ett försök att lägga till en dubblettorrent. Källa %1. Befintlig torrent: %2. Resultat: %3 + Upptäckte ett försök att lägga till en dubblettorrent. Källa %1. Befintlig torrent: %2. Resultat: %3 - + Merging of trackers is disabled Sammanslagning av spårare är inaktiverad - + Trackers cannot be merged because it is a private torrent Spårare kan inte slås samman eftersom det är en privat torrent - + Trackers are merged from new source Spårare slås samman från ny källa + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Återkontrollera torrenter vid slutförning - - + + ms milliseconds ms - + Setting Inställning - + Value Value set for this setting Värde - + (disabled) (inaktiverat) - + (auto) (automatisk) - - + + min minutes min - + All addresses Alla adresser - + qBittorrent Section qBittorrent-avsnitt - - + + Open documentation Öppna dokumentationen - + All IPv4 addresses Alla IPv4-adresser - + All IPv6 addresses Alla IPv6-adresser - + libtorrent Section libtorrent-avsnitt - + Fastresume files Snabbåteruppta filer - + SQLite database (experimental) SQLite-databas (experimentell) - + Resume data storage type (requires restart) Lagringstyp för återupptagningsdata (kräver omstart) - + Normal Normal - + Below normal Under normal - + Medium Medel - + Low Låg - + Very low Mycket låg - + Physical memory (RAM) usage limit Användningsgräns för fysiskt minne (RAM) - + Asynchronous I/O threads Asynkrona in/ut-trådar - + Hashing threads Hashing-trådar - + File pool size Filpoolstorlek - + Outstanding memory when checking torrents Enastående minne vid kontroll av torrenter - + Disk cache Diskcache - - - - + + + + + s seconds s - + Disk cache expiry interval Intervall för diskcache utgångsdatum - + Disk queue size Diskköstorlek - - + + Enable OS cache Aktivera OS-cache - + Coalesce reads & writes Koalitionsläsningar & -skrivningar - + Use piece extent affinity Använd delutsträckningsaffinitet - + Send upload piece suggestions Skicka förslag på sändningsdelar - - - - - + + + + + 0 (disabled) 0 (inaktiverat) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Intervall för att spara återupptagningsdata [0: inaktiverat] - + Outgoing ports (Min) [0: disabled] Utgående portar (min) [0: inaktiverat] - + Outgoing ports (Max) [0: disabled] Utgående portar (max) [0: inaktiverat] - + 0 (permanent lease) 0 (permanent anslutning) - + UPnP lease duration [0: permanent lease] UPnP-anslutningstid [0: permanent anslutning] - + Stop tracker timeout [0: disabled] Stopptidsgräns för spårare [0: inaktiverat] - + Notification timeout [0: infinite, -1: system default] Tidsgräns för avisering [0: oändlig, -1: systemstandard] - + Maximum outstanding requests to a single peer Högst antal utestående förfrågningar till en enskild jämlike - - - - - + + + + + KiB KiB - + (infinite) (oändlig) - + (system default) (systemstandard) - + Delete files permanently - + Ta bort filerna permanent - + Move files to trash (if possible) - + Flytta filer till papperskorgen (om möjligt) - + Torrent content removing mode - + Torrent-innehåll borttagningsläge - + This option is less effective on Linux Det här alternativet är mindre effektivt på Linux - + Process memory priority Processminnesprioritet - + Bdecode depth limit Bdecode djupgräns - + Bdecode token limit Bdecode tokengräns - + Default Standard - + Memory mapped files Minnesmappade filer - + POSIX-compliant POSIX-kompatibel - + Simple pread/pwrite - + Enkel pread/pwrite - + Disk IO type (requires restart) Disk IO-typ (kräver omstart) - - + + Disable OS cache Inaktivera OS-cache - + Disk IO read mode Disk IO-läsläge - + Write-through Genomskrivning - + Disk IO write mode Disk IO-skrivläge - + Send buffer watermark Skicka buffertvattenstämpel - + Send buffer low watermark Skicka låg buffertvattenstämpel - + Send buffer watermark factor Skicka buffertvattenstämplingsfaktor - + Outgoing connections per second Utgående anslutningar per sekund - - + + 0 (system default) 0 (systemstandard) - + Socket send buffer size [0: system default] Socketbuffertstorlek för sändning [0: systemstandard] - + Socket receive buffer size [0: system default] Socketbuffertstorlek för mottagning [0: systemstandard] - + Socket backlog size Uttagets bakloggsstorlek - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Spara statistikintervall [0: inaktiverad] - + .torrent file size limit .torrent filstorleksgräns - + Type of service (ToS) for connections to peers Typ av tjänst (ToS) för anslutningar till jämlikar - + Prefer TCP Föredra TCP - + Peer proportional (throttles TCP) Proportionell jämlike (stryper TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Stöd internationaliserat domännamn (IDN) - + Allow multiple connections from the same IP address Tillåt flera anslutningar från samma IP-adress - + Validate HTTPS tracker certificates Validera HTTPS-spårarcertifikat - + Server-side request forgery (SSRF) mitigation Begränsning av förfalskning av förfrågningar på serversidan (SSRF) - + Disallow connection to peers on privileged ports Tillåt inte anslutning till jämlikar på privilegierade portar - + It appends the text to the window title to help distinguish qBittorent instances Den lägger till texten till fönstertiteln för att hjälpa till att särskilja qBittorent-instanser - + Customize application instance name Anpassa applikationsinstansens namn - + It controls the internal state update interval which in turn will affect UI updates Den styr det interna tillståndsuppdateringsintervallet som i sin tur kommer att påverka användargränssnittsuppdateringar - + Refresh interval Uppdateringsintervall - + Resolve peer host names Slå upp jämlikarnas värdnamn - + IP address reported to trackers (requires restart) IP-adress rapporterad till spårare (kräver omstart) - + Port reported to trackers (requires restart) [0: listening port] - + Port rapporterad till spårare (kräver omstart) [0: lyssningsport] - + Reannounce to all trackers when IP or port changed Återannonsera alla spårare när IP eller port ändrats - + Enable icons in menus Aktivera ikoner i menyer - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Aktivera portvidarebefordran för inbäddad spårare - + Enable quarantine for downloaded files Aktivera karantän för hämtade filer - + Enable Mark-of-the-Web (MOTW) for downloaded files Aktivera Mark-of-the-Web (MOTW) för hämtade filer - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Påverkar certifikatvalidering och icke-torrentprotokollaktiviteter (t.ex. RSS-flöden, programuppdateringar, torrentfiler, geoip db, etc) - + Ignore SSL errors - + Ignorera SSL-fel - + (Auto detect if empty) (Detektera automatiskt om den är tom) - + Python executable path (may require restart) Körbar Python sökväg (kan kräva omstart) - + Start BitTorrent session in paused state - + Starta BitTorrent-sessionen i ett pausat tillstånd - + sec seconds - sek + sek - + -1 (unlimited) - + -1 (obegränsat) - + BitTorrent session shutdown timeout [-1: unlimited] - + Timeout för avstängning av BitTorrent-session [-1: obegränsat] - + Confirm removal of tracker from all torrents Bekräfta spårarborttagning från alla torrenter - + Peer turnover disconnect percentage Procentandel för bortkoppling av jämlikeomsättning - + Peer turnover threshold percentage Procenttröskelandel av jämlikeomsättning - + Peer turnover disconnect interval Intervall för bortkoppling av jämlikeomsättning - + Resets to default if empty Återställ till standard om den är tom - + DHT bootstrap nodes DHT bootstrap noder - + I2P inbound quantity I2P inkommande kvantitet - + I2P outbound quantity I2P inkommande kvantitet - + I2P inbound length I2P inkommande längd - + I2P outbound length I2P inkommande längd - + Display notifications Visa aviseringar - + Display notifications for added torrents Visa aviseringar för tillagda torrenter - + Download tracker's favicon Hämta spårarens favicon - + Save path history length Historiklängd för sparsökväg - + Enable speed graphs Aktivera hastighetsdiagram - + Fixed slots Fasta platser - + Upload rate based Baserat på sändningshastighet - + Upload slots behavior Beteende för sändningsplatser - + Round-robin Round Robin - + Fastest upload Snabbaste sändning - + Anti-leech Anti-reciprokör - + Upload choking algorithm Strypningsalgoritm för sändning - + Confirm torrent recheck Bekräfta återkontroll av torrent - + Confirm removal of all tags Bekräfta borttagning av alla taggar - + Always announce to all trackers in a tier Annonsera alla spårare i en nivå - + Always announce to all tiers Annonsera alltid alla nivåer - + Any interface i.e. Any network interface Alla gränssnitt - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP blandad lägesalgoritm - + Resolve peer countries Slå upp jämlikarnas länder - + Network interface Nätverksgränssnitt - + Optional IP address to bind to Valfri IP-adress att binda till - + Max concurrent HTTP announces Maximalt antal samtidiga HTTP-annonseringar - + Enable embedded tracker Aktivera inbäddad spårare - + Embedded tracker port Port för inbäddad spårare @@ -1382,142 +1393,142 @@ Invalid directory path - + Ogiltig katalogsökväg Directory does not exist - + Katalog finns inte Invalid mode, allowed values: %1 - + Ogiltigt läge, tillåtna värden: %1 cookies must be array - + kakor måste vara array Application - + Running in portable mode. Auto detected profile folder at: %1 Körs i bärbart läge. Automatisk upptäckt profilmapp i: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Redundant kommandoradsflagga upptäckt: "%1". Bärbartläge innebär relativ fastresume. - + Using config directory: %1 Använder konfigurationsmapp: %1 - + Torrent name: %1 Torrentnamn: %1 - + Torrent size: %1 Torrentstorlek: %1 - + Save path: %1 Sparsökväg: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent hämtades i %1. - - + + Thank you for using qBittorrent. Tack för att ni använde qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, skickar e-postavisering - + Add torrent failed Det gick inte att lägga till torrent - + Couldn't add torrent '%1', reason: %2. Det gick inte att lägga till torrent '%1', orsak: %2. - + The WebUI administrator username is: %1 Webbanvändargränssnittets administratörsanvändarnamn är: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Webbanvändargränssnittets administratörslösenord har inte angetts. Ett tillfälligt lösenord tillhandahålls för denna session: %1 - + You should set your own password in program preferences. Du bör ställa in ditt eget lösenord i programinställningarna. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Webbanvändargränssnittet är inaktiverat! För att aktivera webbanvändargränssnittet, redigera konfigurationsfilen manuellt. - + Running external program. Torrent: "%1". Command: `%2` Kör externt program. Torrent: "%1". Kommando: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Det gick inte att köra externt program. Torrent: "%1". Kommando: `%2` - + Torrent "%1" has finished downloading Torrenten "%1" har hämtats färdigt - + WebUI will be started shortly after internal preparations. Please wait... Webbanvändargränssnittet kommer att startas kort efter interna förberedelser. Vänta... - - + + Loading torrents... Läser in torrenter... - + E&xit A&vsluta - + I/O Error i.e: Input/Output Error I/O-fel - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Orsak: %2 - + Torrent added Torrent tillagd - + '%1' was added. e.g: xxx.avi was added. "%1" tillagd. - + Download completed Hämtningen slutförd - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 startad. Process-ID: %2 - + This is a test email. - + Detta är ett e-posttest - + Test email - + E-posttest - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. "%1" har hämtats. - + Information Information - + To fix the error, you may need to edit the config file manually. För att åtgärda felet kan du behöva redigera konfigurationsfilen manuellt. - + To control qBittorrent, access the WebUI at: %1 För att kontrollera qBittorrent, gå till webbgränssnittet på: %1 - + Exit Avsluta - + Recursive download confirmation Bekräftelse på rekursiv hämtning - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrenten "%1" innehåller .torrent-filer, vill du fortsätta med deras hämtning? - + Never Aldrig - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Rekursiv hämtning .torrent-fil i torrent. Källtorrent: "%1". Fil: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Det gick inte att ställa in användningsgräns för fysiskt minne (RAM). Felkod: %1. Felmeddelande: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Det gick inte att ange hård gräns för fysiskt minne (RAM). Begärd storlek: %1. Systemets hårda gräns: %2. Felkod: %3. Felmeddelande: "%4" - + qBittorrent termination initiated Avslutning av qBittorrent har initierats - + qBittorrent is shutting down... qBittorrent stängs... - + Saving torrent progress... Sparar torrent förlopp... - + qBittorrent is now ready to exit qBittorrent är nu redo att avsluta @@ -1766,263 +1777,263 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder &Exportera... - + Matches articles based on episode filter. Matchar artiklar baserat på avsnittsfilter. - + Example: Exempel: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match kommer att matcha avsnitten 2, 5, 8 till 15, 30 och framåt av säsong ett - + Episode filter rules: Regler för avsnittsfilter: - + Season number is a mandatory non-zero value Säsongsnummer är ett krav för värden över noll - + Filter must end with semicolon Filter måste sluta med semikolon - + Three range types for episodes are supported: Tre intervalltyper för avsnitt stöds: - + Single number: <b>1x25;</b> matches episode 25 of season one Ensamma siffror: <b>1x25;</b> matchar avsnitt 25 av säsong ett - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Vanligt intervall: <b>1x25-40;</b> matchar avsnitt 25 till 40 i säsong ett - + Episode number is a mandatory positive value Avsnittsnummer är ett obligatoriskt positivt värde - + Rules Regler - + Rules (legacy) Regler (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Oändligt intervall: <b>1x25-;</b> matchar avsnitt 25 och uppåt av säsong ett, och alla avsnitt av senare säsonger - + Last Match: %1 days ago Senaste matchning: %1 dagar sedan - + Last Match: Unknown Senaste matchning: Okänd - + New rule name Namn för ny regel - + Please type the name of the new download rule. Skriv namnet på den nya hämtningsregeln. - - + + Rule name conflict Namnkonflikt för regler - - + + A rule with this name already exists, please choose another name. En regel med det här namnet finns redan, välj ett annat namn. - + Are you sure you want to remove the download rule named '%1'? Är du säker på att du vill ta bort hämtningsregeln "%1"? - + Are you sure you want to remove the selected download rules? Är du säker på att du vill ta bort de markerade hämtningsreglerna? - + Rule deletion confirmation Bekräftelse på regelborttagning - + Invalid action Ogiltig åtgärd - + The list is empty, there is nothing to export. Listan är tom, det finns inget att exportera. - + Export RSS rules Exportera RSS-regler - + I/O Error In/ut-fel - + Failed to create the destination file. Reason: %1 Det gick inte att skapa målfilen. Orsak: %1 - + Import RSS rules Importera RSS-regler - + Failed to import the selected rules file. Reason: %1 Det gick inte att importera den valda regelfilen. Orsak: %1 - + Add new rule... Lägg till ny regel... - + Delete rule Ta bort regel - + Rename rule... Byt namn på regel... - + Delete selected rules Ta bort markerade regler - + Clear downloaded episodes... Rensa hämtade avsnitt... - + Rule renaming Regelnamnbyte - + Please type the new rule name Skriv det nya regelnamnet - + Clear downloaded episodes Rensa hämtade avsnitt - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Är du säker på att du vill rensa listan över hämtade avsnitt för den valda regeln? - + Regex mode: use Perl-compatible regular expressions Regex-läge: använd Perl-kompatibla reguljära uttryck - - + + Position %1: %2 Position %1: %2 - + Wildcard mode: you can use Jokertecken-läge: Du kan använda - - + + Import error Importfel - + Failed to read the file. %1 Det gick inte att läsa filen. %1 - + ? to match any single character ? för att matcha alla enskilda tecken - + * to match zero or more of any characters * för att matcha noll eller fler av några tecken - + Whitespaces count as AND operators (all words, any order) Blanksteg räknas som AND-operatörer (alla ord, valfri ordning) - + | is used as OR operator | används som OR-operatör - + If word order is important use * instead of whitespace. Om ordföljden är viktig, användning * i stället för blanksteg. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Ett uttryck med en tom %1-klausul (t.ex. %2) - + will match all articles. kommer att matcha alla artiklar. - + will exclude all articles. kommer att exkludera alla artiklar. @@ -2074,28 +2085,38 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Det går inte att analysera återupptagningsdata: ogiltigt format - - + + Cannot parse torrent info: %1 Det går inte att analysera torrentinformation: %1 - + Cannot parse torrent info: invalid format Det går inte att analysera torrentinformation: ogiltigt format - + Mismatching info-hash detected in resume data Felaktig info-hash upptäcktes i återupptagningsdata - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Det gick inte att spara torrentmetadata till "%1". Fel: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Det gick inte att spara återupptagningsdata för torrent till "%1". Fel: %2. @@ -2106,16 +2127,17 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder + Cannot parse resume data: %1 Det går inte att analysera återupptagningsdata: %1 - + Resume data is invalid: neither metadata nor info-hash was found Återupptagningsdata är ogiltiga: varken metadata eller info-hash hittades - + Couldn't save data to '%1'. Error: %2 Det gick inte att spara data till "%1". Fel: %2 @@ -2123,38 +2145,60 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder BitTorrent::DBResumeDataStorage - + Not found. Hittades inte. - + Couldn't load resume data of torrent '%1'. Error: %2 Det gick inte att läsa in återupptagningsdata för torrenten "%1". Fel: %2 - - + + Database is corrupted. Databasen är korrupt. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Det gick inte att aktivera Write-Ahead Logging (WAL) journaliseringsläge. Fel: %1. - + Couldn't obtain query result. Det gick inte att hämta frågeresultat. - + WAL mode is probably unsupported due to filesystem limitations. WAL-läge stöds förmodligen inte på grund av filsystembegränsningar. - + + + Cannot parse resume data: %1 + Det går inte att analysera återupptagningsdata: %1 + + + + + Cannot parse torrent info: %1 + Det går inte att analysera torrentinformation: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Det gick inte att påbörja överföring. Fel: %1 @@ -2162,22 +2206,22 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Det gick inte att spara torrentmetadata. Fel: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Det gick inte att lagra återupptagningsdata för torrenten "%1". Fel: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Det gick inte att ta bort återupptagningsdata för torrenten "%1". Fel: %2 - + Couldn't store torrents queue positions. Error: %1 Det gick inte att lagra köpositioner för torrenter. Fel: %1 @@ -2185,530 +2229,507 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Stöd för distribuerad hashtabell (DHT): %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF AV - - + + Local Peer Discovery support: %1 Stöd för upptäckt av lokala jämlikar: %1 - + Restart is required to toggle Peer Exchange (PeX) support Omstart krävs för att växla stöd för jämlikeutbyte (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Det gick inte att återuppta torrent. Torrent: "%1". Orsak: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Det gick inte att återuppta torrent: inkonsekvent torrent-ID har upptäckts. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Inkonsekvent data upptäckt: kategori saknas i konfigurationsfilen. Kategori kommer att återställas men dess inställningar kommer att återställas till standard. Torrent: "%1". Kategori: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Inkonsekvent data upptäckt: ogiltig kategori. Torrent: "%1". Kategori: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Upptäckt oöverensstämmelse mellan sparsökvägarna för den återställda kategorin och den aktuella sparsökvägen för torrenten. Torrent är nu växlat till manuellt läge. Torrent: "%1". Kategori: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Inkonsekvent data upptäckt: tagg saknas i konfigurationsfilen. Taggen kommer att återställas. Torrent: "%1". Tagg: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Inkonsekvent data upptäckt: ogiltig tagg. Torrent: "%1". Tagg: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Systemväckningshändelse upptäckt. Återannonserar för alla spårare... - + Peer ID: "%1" Jämlike-ID: "%1" - + HTTP User-Agent: "%1" HTTP-användaragent: "%1" - + Peer Exchange (PeX) support: %1 Jämlikeutbyte (PeX)-stöd: %1 - - + + Anonymous mode: %1 Anonymt läge: %1 - - + + Encryption support: %1 Krypteringsstöd: %1 - - + + FORCED TVINGAT - + Could not find GUID of network interface. Interface: "%1" Det gick inte att hitta GUID för nätverksgränssnitt. Gränssnitt: "%1" - + Trying to listen on the following list of IP addresses: "%1" Försöker lyssna på följande lista med IP-adresser: "%1" - + Torrent reached the share ratio limit. Torrent nådde kvotgränsen. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Tog bort torrent. - - - Removed torrent and deleted its content. - Tog bort torrent och dess innehåll. - - - Torrent paused. - Torrent pausad. - - - + Super seeding enabled. Superdistribution aktiverad. - + Torrent reached the seeding time limit. Torrent nådde distributionstidsgränsen. - + Torrent reached the inactive seeding time limit. Torrent nådde tidsgränsen för inaktiv distribution. - + Failed to load torrent. Reason: "%1" Det gick inte att läsa in torrent. Orsak: "%1" - + I2P error. Message: "%1". I2P-fel. Meddelande: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP-stöd: PÅ - + Saving resume data completed. - + Sparandet av återupptagen data slutfört. - + BitTorrent session successfully finished. - + BitTorrent-sessionen avslutades. - + Session shutdown timed out. - + Sessionsavstängningen gjorde timeout. - + Removing torrent. - + Tar bort torrent. - + Removing torrent and deleting its content. - + Tar bort torrent och dess innehåll. - + Torrent stopped. - + Torrent stoppad. - + Torrent content removed. Torrent: "%1" - + Torrent-innehåll borttaget. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Det gick inte att ta bort torrent-innehåll Torrent: "%1". Fel: "%2" - + Torrent removed. Torrent: "%1" - + Torrent borttagen. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Upptäckte ett försök att lägga till en dubblettorrent. Befintlig torrent: %1. Resultat: %2 - + Merging of trackers is disabled - Sammanslagning av spårare är inaktiverad + Sammanslagning av spårare är inaktiverad - + Trackers cannot be merged because it is a private torrent - Spårare kan inte slås samman eftersom det är en privat torrent + Spårare kan inte slås samman eftersom det är en privat torrent - + Trackers are merged from new source - Spårare slås samman från ny källa + Spårare slås samman från ny källa - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP-stöd: AV - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Det gick inte att exportera torrent. Torrent: "%1". Destination: "%2". Orsak: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Avbröt sparande av återupptagningsdata. Antal utestående torrenter: %1 - + The configured network address is invalid. Address: "%1" Den konfigurerade nätverksadressen är ogiltig. Adress: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Det gick inte att hitta den konfigurerade nätverksadressen att lyssna på. Adress: "%1" - + The configured network interface is invalid. Interface: "%1" Det konfigurerade nätverksgränssnittet är ogiltigt. Gränssnitt: "%1" - + Tracker list updated - + Spårarlistan uppdaterad - + Failed to update tracker list. Reason: "%1" - + Det gick inte att uppdatera spårarlistan. Orsak: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Avvisade ogiltig IP-adress när listan över förbjudna IP-adresser tillämpades. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Lade till spårare till torrent. Torrent: "%1". Spårare: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Tog bort spårare från torrent. Torrent: "%1". Spårare: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Lade till URL-distribution till torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Tog bort URL-distribution från torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Det gick inte att ta bort delfilen. Torrent: "%1". Orsak: "%2". - Torrent paused. Torrent: "%1" - Torrent pausad. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent återupptogs. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrenthämtningen är klar. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrentflytt avbröts. Torrent: "%1". Källa: "%2". Destination: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent stoppad. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Det gick inte att ställa torrentflyttning i kö. Torrent: "%1". Källa: "%2". Destination: "%3". Orsak: torrent flyttar för närvarande till destinationen - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Det gick inte att ställa torrentflyttning i kö. Torrent: "%1". Källa: "%2" Destination: "%3". Orsak: båda sökvägarna pekar på samma plats - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrentflytt i kö. Torrent: "%1". Källa: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Börja flytta torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Det gick inte att spara kategorikonfigurationen. Fil: "%1". Fel: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Det gick inte att analysera kategorikonfigurationen. Fil: "%1". Fel: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IP-filterfilen har analyserats. Antal tillämpade regler: %1 - + Failed to parse the IP filter file Det gick inte att analysera IP-filterfilen - + Restored torrent. Torrent: "%1" Återställd torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Lade till ny torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent har fel. Torrent: "%1". Fel: "%2" - Removed torrent. Torrent: "%1" - Tog bort torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Tog bort torrent och dess innehåll. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent saknar SSL-parametrar. Torrent: "%1". Meddelande: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Filfelvarning. Torrent: "%1". Fil: "%2". Orsak: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP-portmappning misslyckades. Meddelande: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP-portmappningen lyckades. Meddelande: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP-filter - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrerad port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). privilegierad port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Anslutning för URL-distribution misslyckades. Torrent: "%1". URL: "%2". Fel: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent-sessionen stötte på ett allvarligt fel. Orsak: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proxyfel. Adress 1. Meddelande: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 begränsningar för blandat läge - + Failed to load Categories. %1 Det gick inte att läsa in kategorier. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Det gick inte att läsa in kategorikonfigurationen. Fil: "%1". Fel: "Ogiltigt dataformat" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Tog bort torrent men kunde inte att ta bort innehåll och/eller delfil. Torrent: "%1". Fel: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 är inaktiverad - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 är inaktiverad - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - DNS-uppslagning av URL-distribution misslyckades. Torrent: "%1". URL: "%2". Fel: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Fick felmeddelande från URL-distribution. Torrent: "%1". URL: "%2". Meddelande: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Lyssnar på IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Det gick inte att lyssna på IP. IP: "%1". Port: "%2/%3". Orsak: "%4" - + Detected external IP. IP: "%1" Upptäckt extern IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Fel: Den interna varningskön är full och varningar tas bort, du kan se försämrad prestanda. Borttagen varningstyp: "%1". Meddelande: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Flyttade torrent. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Det gick inte att flytta torrent. Torrent: "%1". Källa: "%2". Destination: "%3". Orsak: "%4" @@ -2758,47 +2779,47 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Det gick inte att skriva till fil. Orsak: "%1". Torrent är nu i "endast sändningsläge". - + Download first and last piece first: %1, torrent: '%2' Hämta första och sista delarna först: %1, torrent: "%2" - + On - + Off Av - + Failed to reload torrent. Torrent: %1. Reason: %2 Det gick inte att ladda om torrent. Torrent: %1. Orsak: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Det gick inte att generera återupptagningsdata. Torrent: "%1". Orsak: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Det gick inte att återställa torrent. Filer har förmodligen flyttats eller så är lagringen inte tillgänglig. Torrent: "%1". Orsak: "%2" - + Missing metadata Saknar metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Det gick inte att byta namn på fil. Torrent: "%1", fil: "%2", orsak: "%3" - + Performance alert: %1. More info: %2 Prestandavarning: %1. Mer info: %2 @@ -2813,7 +2834,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Embedded Tracker: Unable to bind to IP: %1, port: %2. Reason: %3 - Inbäddad spårare: Det gick inte att binda till IP: %1, port: %2. Orsak: %3 + Inbäddad spårare: Det går inte att binda till IP: %1, port: %2. Orsak: %3 @@ -2835,11 +2856,6 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Expected integer number in environment variable '%1', but got '%2' Förväntat heltal i miljövariabeln "%1", men fick "%2" - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parametern "%1" måste följa syntaxen "%1=%2" - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parametern "%1" måste följa syntaxen "%1=%2" + Parametern "%1" måste följa syntaxen "%1=%2" @@ -2968,11 +2984,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Add torrents as running or stopped - - - - Add torrents as started or paused - Lägg till torrenter som startade eller pausade + Lägg till torrenter som igång eller stoppade @@ -3063,20 +3075,12 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Start torrents - + Starta torrenter Stop torrents - - - - Resume torrents - Återuppta torrenter - - - Pause torrents - Pausa torrenter + Stoppa torrenter @@ -3099,7 +3103,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder System - + System @@ -3174,11 +3178,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Also remove the content files - - - - Also permanently delete the files - Ta också bort filerna permanent + Ta även bort innehållsfilerna @@ -3390,47 +3390,43 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Pattern Format - + Mönsterformat Plain text - + Vanlig text Wildcards - + Jokertecken Regular expression - + Reguljärt uttryck GUIAddTorrentManager - + Downloading torrent... Source: "%1" Hämtar torrent... Källa: "%1" - Trackers cannot be merged because it is a private torrent - Spårare kan inte slås samman eftersom det är en privat torrent - - - + Torrent is already present Torrent är redan närvarande - + Trackers cannot be merged because it is a private torrent. - + Spårare kan inte slås samman eftersom det är en privat torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrenten "%1" finns redan i överföringslistan. Vill du slå samman spårare från ny källa? @@ -3548,6 +3544,40 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Bildfiler som stöds + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Strömhantering hittade lämpligt D-Bus-gränssnitt. Gränssnitt: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Strömhanteringsfel. Åtgärd: %1. Fel: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Oväntat strömhanteringsfel. Tillstånd: %1. Fel: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder &Options... A&lternativ... - - &Resume - &Återuppta - &Remove @@ -3762,7 +3788,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Sh&utdown System - + S&täng av systemet @@ -3774,10 +3800,6 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Close Window Stäng fönster - - R&esume All - Åt&eruppta alla - Manage Cookies... @@ -3816,22 +3838,22 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Sta&rt - + Sta&rta Sto&p - + Sto&ppa R&esume Session - + Åt&eruppta session Pau&se Session - + Pau&sa session @@ -3893,10 +3915,6 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder &Hibernate System &Försätt systemet i viloläge - - S&hutdown System - S&täng av systemet - &Statistics @@ -3917,14 +3935,6 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder &About &Om - - &Pause - &Pausa - - - P&ause All - P&ausa alla - &Add Torrent File... @@ -3958,12 +3968,12 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder - + Show Visa - + Check for program updates Sök efter programuppdateringar @@ -3978,388 +3988,383 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Donera om du tycker om qBittorrent! - + Execution Log Exekveringsloggen - + Clear the password Rensa lösenordet - + &Set Password &Ställ in lösenord - + Preferences Inställningar - + &Clear Password &Rensa lösenord - + Transfers Överföringar - - + + qBittorrent is minimized to tray qBittorrent minimerad till systemfältet - - - + + + This behavior can be changed in the settings. You won't be reminded again. Detta beteende kan ändras i inställningarna. Du kommer inte att bli påmind igen. - + Icons Only Endast ikoner - + Text Only Endast text - + Text Alongside Icons Text längs med ikoner - + Text Under Icons Text under ikoner - + Follow System Style Använd systemets utseende - - + + UI lock password Lösenord för gränssnittslås - - + + Please type the UI lock password: Skriv lösenordet för gränssnittslås: - + Are you sure you want to clear the password? Är du säker att du vill rensa lösenordet? - + Use regular expressions Använd reguljära uttryck - - + + Search Engine - Sökmotor + Sökmotor - + Search has failed - Det gick inte att söka + Det gick inte att söka - + Search has finished - Sökningen är klar + Sökningen är klar - + Search Sök - + Transfers (%1) Överföringar (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent uppdaterades precis och måste startas om för att ändringarna ska träda i kraft. - + qBittorrent is closed to tray qBittorrent stängd till systemfältet - + Some files are currently transferring. Några filer överförs för närvarande. - + Are you sure you want to quit qBittorrent? Är du säker på att du vill avsluta qBittorrent? - + &No &Nej - + &Yes &Ja - + &Always Yes &Alltid Ja - + Options saved. Alternativen sparade. - + [PAUSED] %1 %1 is the rest of the window title - + [PAUSAD] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [N: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Python-installationsprogrammet kunde inte hämtas. Fel: %1. +Installera det manuellt. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Det gick inte att byta namn på Python-installationsprogrammet. Källa: "%1". Destination: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python-installation lyckades. + Exit code: %1. + Avslutskod: %1. + + + + Reason: installer crashed. + Orsak: installationsprogrammet kraschade. + + + Python installation failed. - + Python-installationen misslyckades. - + Launching Python installer. File: "%1". - + Startar Python-installationsprogrammet. Fil: "%1". - - + + Missing Python Runtime Saknar Python Runtime - + qBittorrent Update Available qBittorrent uppdatering tillgänglig - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python krävs för att använda sökmotorn, men det verkar inte vara installerat. Vill du installera det nu? - + Python is required to use the search engine but it does not seem to be installed. Python krävs för att använda sökmotorn, men det verkar inte vara installerat. - - + + Old Python Runtime Gammal Python Runtime - + A new version is available. En ny version är tillgänglig. - + Do you want to download %1? Vill du hämta %1? - + Open changelog... Öppna ändringslogg... - + No updates available. You are already using the latest version. Inga uppdateringar tillgängliga. Du använder redan den senaste versionen. - + &Check for Updates &Sök efter uppdateringar - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Din Python-version (%1) är föråldrad. Minimikrav: %2. Vill du installera en nyare version nu? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Din Python-version (%1) är föråldrad. Uppgradera till den senaste versionen för att sökmotorerna ska fungera. Minimikrav: %2. - + Paused - Pausad + Pausade - + Checking for Updates... Söker efter uppdateringar... - + Already checking for program updates in the background Söker redan efter programuppdateringar i bakgrunden - + Python installation in progress... - + Python-installation pågår... - + Failed to open Python installer. File: "%1". - + Det gick inte att öppna Python-installationsprogrammet. Fil: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Misslyckades med MD5-hashkontroll för Python-installationsprogrammet. Fil: "%1". Resultat hash: "%2". Förväntad hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Misslyckades med SHA3-512-hashkontroll för Python-installeraren. Fil: "%1". Resultat hash: "%2". Förväntad hash: "%3". - + Download error Hämtningsfel - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python-installationen kunde inte hämtas. Orsak: %1. -Installera den manuellt. - - - - + + Invalid password Ogiltigt lösenord - + Filter torrents... Filtrera torrenter... - + Filter by: Filtrera efter: - + The password must be at least 3 characters long Lösenordet måste vara minst 3 tecken långt - - - + + + RSS (%1) RSS (%1) - + The password is invalid Lösenordet är ogiltigt - + DL speed: %1 e.g: Download speed: 10 KiB/s Hämtning: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Sändninghastighet: %1 - + Hide Dölj - + Exiting qBittorrent Avslutar qBittorrent - + Open Torrent Files Öppna torrentfiler - + Torrent Files Torrentfiler @@ -4556,7 +4561,7 @@ Installera den manuellt. SSL error, URL: "%1", errors: "%2" - + SSL-fel, URL: "%1", fel: "%2" @@ -5853,47 +5858,47 @@ Installera den manuellt. Net::Smtp - + Connection failed, unrecognized reply: %1 Anslutningen misslyckades, okänt svar: %1 - + Authentication failed, msg: %1 Autentisering misslyckades, meddelande: %1 - + <mail from> was rejected by server, msg: %1 <mail from> avvisades av servern, meddelande: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> avvisades av servern, meddelande: %1 - + <data> was rejected by server, msg: %1 <data> avvisades av servern, meddelande: %1 - + Message was rejected by the server, error: %1 Meddelandet avvisades av servern, fel: %1 - + Both EHLO and HELO failed, msg: %1 Både EHLO och HELO misslyckades, meddelande: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP-servern verkar inte stödja något av de autentiseringslägen vi stöder [CRAM-MD5|PLAIN|LOGIN], hoppar över autentisering, med vetskap om att det sannolikt kommer att misslyckas... Serverautentiseringslägen: %1 - + Email Notification Error: %1 E-postaviseringsfel: %1 @@ -5935,10 +5940,6 @@ Installera den manuellt. RSS RSS - - Web UI - Webbgränssnitt - Advanced @@ -5959,14 +5960,6 @@ Installera den manuellt. Confirm when deleting torrents Bekräfta borttagning av torrenter - - Shows a confirmation dialog upon pausing/resuming all the torrents - Visar en bekräftelsedialogruta när du pausar/återupptar alla torrenter - - - Confirm "Pause/Resume all" actions - Bekräfta "Pausa/Återuppta alla" åtgärder - Use alternating row colors @@ -5983,10 +5976,6 @@ Installera den manuellt. Always Alltid - - Paused torrents only - Endast pausade torrenter - Action on double-click @@ -5997,10 +5986,6 @@ Installera den manuellt. Downloading torrents: Hämtar torrenter: - - Start / Stop Torrent - Starta/stoppa torrent - @@ -6059,179 +6044,179 @@ Installera den manuellt. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Layout för torrentinnehåll: - + Original Original - + Create subfolder Skapa undermapp - + Don't create subfolder Skapa inte undermapp - + The torrent will be added to the top of the download queue Torrenten kommer att läggas till överst i hämtningsslistan - + Add to top of queue The torrent will be added to the top of the download queue Lägg till överst i kön - + When duplicate torrent is being added När duplicerad torrent läggs till - + Merge trackers to existing torrent Slå samman spårare till befintlig torrent - + Keep unselected files in ".unwanted" folder Behåll omarkerade filer i mappen ".unwanted" - + Add... Lägg till... - + Options.. Alternativ.. - + Remove Ta bort - + Email notification &upon download completion E-postmeddelande &efter slutförd hämtning - + Send test email - + Skicka detta e-postmeddelande - + Run on torrent added: - + Kör på tillagd torrent: - + Run on torrent finished: - + Kör på slutförd torrent - + Peer connection protocol: Jämlikeanslutningsprotokoll: - + Any Vilket som helst - + I2P (experimental) I2P (experimentell) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Om &quot;blandat läge&quot; är aktiverat kan I2P-torrenter också hämta jämlikar från andra källor än spåraren och ansluta till vanliga IP-adresser, utan att ge någon anonymisering. Detta kan vara användbart om användaren inte är intresserad av anonymisering av I2P, men ändå vill kunna ansluta till I2P-användare.</p></body></html> - - - + Mixed mode Blandat läge - Some options are incompatible with the chosen proxy type! - Vissa alternativ är inkompatibla med den valda proxytypen! + Vissa alternativ är inkompatibla med den valda proxytypen! - + If checked, hostname lookups are done via the proxy Vid aktivering, görs värdnamnsuppslag via proxy - + Perform hostname lookup via proxy Utför värdnamnsuppslagning via proxy - + Use proxy for BitTorrent purposes Använd proxy för BitTorrent-ändamål - + RSS feeds will use proxy RSS-flöden kommer att använda proxy - + Use proxy for RSS purposes Använd proxy för RSS-ändamål - + Search engine, software updates or anything else will use proxy Sökmotor, programuppdateringar eller något annat kommer att använda proxy - + Use proxy for general purposes Använd proxy för allmänna ändamål - + IP Fi&ltering IP-fi&ltrering - + Schedule &the use of alternative rate limits Schemalägg &användning av alternativa hastighetsgränser - + From: From start time Från: - + To: To end time Till: - + Find peers on the DHT network Hitta jämlikar på DHT-nätverket - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Kräv kryptering: Anslut endast till jämlikar med protokollkryptering Inaktivera kryptering: Anslut endast till jämlikar utan protokollkryptering - + Allow encryption Tillåt kryptering - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Mer information</a>) - + Maximum active checking torrents: Högst antal aktiva kontrollerande torrenter: - + &Torrent Queueing &Torrentkö - + When total seeding time reaches När totala distributionstiden når - + When inactive seeding time reaches När inaktiva distributionstiden når - A&utomatically add these trackers to new downloads: - Lägg a&utomatiskt till de här spårarna till nya hämtningar: - - - + RSS Reader RSS-läsare - + Enable fetching RSS feeds Aktivera hämtning av RSS-flöden - + Feeds refresh interval: Uppdateringsintervall för flöden: - + Same host request delay: Samma fördröjning av värdbegäran: - + Maximum number of articles per feed: Högst antal artiklar per flöde: - - - + + + min minutes min - + Seeding Limits Distributionsgränser - Pause torrent - Pausa torrent - - - + Remove torrent Ta bort torrent - + Remove torrent and its files Ta bort torrent och dess filer - + Enable super seeding for torrent Aktivera superdistribution för torrent - + When ratio reaches När kvoten når - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Stoppa torrent - + A&utomatically append these trackers to new downloads: - + Lägg &automatiskt till dessa spårare till nya hämtningar - + Automatically append trackers from URL to new downloads: - + Lägg automatiskt till spårare från URL till nya hämtningar: - + URL: - URL: + URL: - + Fetched trackers - + Hämtade spårare - + Search UI - + Sök i användargränssnittet - + Store opened tabs - + Lagra öppnade flikar - + Also store search results - + Lagra även sökresultat - + History length - + Historiklängd - + RSS Torrent Auto Downloader Automatisk RSS-torrenthämtare - + Enable auto downloading of RSS torrents Aktivera automatisk hämtning av RSS-torrenter - + Edit auto downloading rules... Redigera regler för automatisk hämtning... - + RSS Smart Episode Filter Smart RSS-avsnittsfilter - + Download REPACK/PROPER episodes Hämta REPACK-/PROPER-avsnitt - + Filters: Filter: - + Web User Interface (Remote control) Webbgränssnittet (fjärrstyrning) - + IP address: IP-adress: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Ange en IPv4- eller IPv6-adress. Du kan ange "0.0.0.0" för någon IPv "::" för alla IPv6-adresser, eller "*" för både IPv4 och IPv6. - + Ban client after consecutive failures: Förbud mot klient efter påföljande misslyckanden: - + Never Aldrig - + ban for: förbud för: - + Session timeout: Sessionen löpte ut: - + Disabled Inaktiverad - Enable cookie Secure flag (requires HTTPS) - Aktivera säker flagga för kakor (kräver HTTPS) - - - + Server domains: Serverdomäner: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ domännamn som används av servern för webbanvändargränssnittet. Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*". - + &Use HTTPS instead of HTTP &Använd HTTPS istället för HTTP - + Bypass authentication for clients on localhost Kringgå autentisering för klienter på localhost - + Bypass authentication for clients in whitelisted IP subnets Kringgå autentisering för klienter i vitlistade IP-undernät - + IP subnet whitelist... IP-delnätvitlista... - + Use alternative WebUI - + Använd alternativt webbgränssnitt - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Ange omvänd proxy-IP:er (eller undernät, t.ex. 0.0.0.0/24) för att använda vidarebefordrad klientadress (X-Forwarded-For header). Använd ';' för att dela upp flera poster. - + Upda&te my dynamic domain name Uppda&tera mitt dynamiska domännamn @@ -6519,12 +6502,12 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec Search - Sök + Sök WebUI - + Webbgränssnitt @@ -6539,29 +6522,29 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec Style: - + Stil: Color scheme: - + Färgschema: Stopped torrents only - + Endast stoppade torrenter Start / stop torrent - + Starta / stoppa torrent Open torrent options dialog - + Öppna dialogrutan för torrentalternativ @@ -6602,7 +6585,7 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec &Log Files - + &Loggfiler @@ -6620,99 +6603,99 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec Ta bort säkerhetskopieringsloggar äldre än: - + Show external IP in status bar - + Visa extern IP i statusfältet - + When adding a torrent När en torrent läggs till - + Bring torrent dialog to the front Flytta torrentdialogrutan längst fram - + The torrent will be added to download list in a stopped state - + Torrenten kommer att läggas till i hämtningslistan i ett stoppat tillstånd - + Also delete .torrent files whose addition was cancelled Ta också bort .torrentfiler vars tillägg avbröts - + Also when addition is cancelled Även när tilläggning avbryts - + Warning! Data loss possible! Varning! Dataförlust möjlig! - + Saving Management Spara hantering - + Default Torrent Management Mode: Standard torrenthanteringsläge: - + Manual Manuell - + Automatic Automatisk - + When Torrent Category changed: När torrentkategorin ändras: - + Relocate torrent Flytta torrent - + Switch torrent to Manual Mode Växla torrent till manuellt läge - - + + Relocate affected torrents Flytta påverkade torrenter - - + + Switch affected torrents to Manual Mode Växla påverkade torrenter till manuellt läge - + Use Subcategories Använd underkategorier - + Default Save Path: Standard sparsökväg: - + Copy .torrent files to: Kopiera .torrent-filer till: @@ -6722,26 +6705,22 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec Visa &qBittorrent i aviseringsområdet - &Log file - &Loggfil - - - + Display &torrent content and some options Visa &torrentinnehåll och några alternativ - + De&lete .torrent files afterwards T&a bort .torrent-filer efteråt - + Copy .torrent files for finished downloads to: Kopiera .torrent-filer för slutförda hämtningar till: - + Pre-allocate disk space for all files Förallokera diskutrymme för alla filer @@ -6771,10 +6750,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec Preview file, otherwise open destination folder Förhandsgranska fil, annars öppna destinationsmapp - - Show torrent options - Visa torrentalternativ - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertec år - + Log performance warnings Logga prestandavarningar - The torrent will be added to download list in a paused state - Torrenten kommer att läggas till i hämtningslistan i ett pausat tillstånd - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Starta inte hämtningen automatiskt - + Whether the .torrent file should be deleted after adding it Om .torrent-filen ska tas bort efter att den lagts till - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Allokera fullständiga filstorlekar på disken innan hämtningar startas för att minimera fragmentering. Endast användbart för hårddiskar. - + Append .!qB extension to incomplete files Lägg till ändelsen .!qB till ofullständiga filer - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it När en torrent hämtas, erbjud att lägga till torrenter från alla .torrent-filer som finns inuti den - + Enable recursive download dialog Aktivera rekursiv hämtningsdialogruta - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Automatisk: Olika torrentegenskaper (t.ex. sparsökväg) kommer att avgöras av den tillhörande kategorin Manuell: Olika torrentegenskaper (t.ex. sparsökväg) måste tilldelas manuellt - + When Default Save/Incomplete Path changed: När standard spara/ofullständig sökväg ändrades: - + When Category Save Path changed: När kategorisparsningssökvägen ändras: - + Use Category paths in Manual Mode Använd kategorisökvägar i manuellt läge - + Resolve relative Save Path against appropriate Category path instead of Default one Lös relativ sparsökväg mot lämplig kategorisökväg istället för standardsökväg @@ -6922,50 +6893,50 @@ Manuell: Olika torrentegenskaper (t.ex. sparsökväg) måste tilldelas manuellt< qBittorrent-fönsterstatus vid uppstart - + Torrent stop condition: Torrentstoppvillkor: - - + + None Inget - - + + Metadata received Metadata mottagna - - + + Files checked Filer kontrollerade - + Ask for merging trackers when torrent is being added manually Be om att slå samman spårare när torrent läggs till manuellt - + Use another path for incomplete torrents: Använd en annan sökväg för ofullständiga torrenter: - + Automatically add torrents from: Lägg automatiskt till torrenter från: - + Excluded file names Exkluderade filnamn - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: filtrera exakt filnamn. readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men inte 'readme10.txt'. - + Receiver Mottagare - + To: To receiver Till: - + SMTP server: SMTP-server: - + Sender Sändare - + From: From sender Från: - + This server requires a secure connection (SSL) Den här servern kräver en säker anslutning (SSL) - - + + Authentication Autentisering - - - - + + + + Username: Användarnamn: - - - - + + + + Password: Lösenord: - + Run external program Kör externt program - Run on torrent added - Kör när torrent läggs till - - - Run on torrent finished - Kör när torrent slutförs - - - + Show console window Visa konsolfönster - + TCP and μTP TCP och μTP - + Listening Port Lyssningsport - + Port used for incoming connections: Port som används för inkommande anslutningar: - + Set to 0 to let your system pick an unused port Ställ in på 0 för att låta ditt system välja en oanvänd port - + Random Slumpmässig - + Use UPnP / NAT-PMP port forwarding from my router Använd UPnP / NAT-PMP-portomdirigering från min router - + Connections Limits Anslutningsgränser - + Maximum number of connections per torrent: Högst antal anslutningar per torrent: - + Global maximum number of connections: Högst antal anslutningar globalt: - + Maximum number of upload slots per torrent: Högst antal sändningsplatser per torrent: - + Global maximum number of upload slots: Högst antal sändningsplatser globalt: - + Proxy Server Proxyserver - + Type: Typ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Värd: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Annars används proxyservern endast för spåraranslutningar - + Use proxy for peer connections Använd proxy för jämlikeanslutningar - + A&uthentication A&utentisering - Info: The password is saved unencrypted - Info: Lösenordet sparas okrypterat + Info: Lösenordet sparas okrypterat - + Filter path (.dat, .p2p, .p2b): Filtersökväg (.dat, .p2p, .p2b): - + Reload the filter Ladda om filtret - + Manually banned IP addresses... Manuellt förbjudna IP-adresser... - + Apply to trackers Tillämpa på spårare - + Global Rate Limits Globala hastighetsgränser - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Sändning: - - + + Download: Hämtning: - + Alternative Rate Limits Alternativa hastighetsgränser - + Start time Starttid - + End time Sluttid - + When: När: - + Every day Varje dag - + Weekdays Vardagar - + Weekends Helger - + Rate Limits Settings Inställningar för hastighetsgränser - + Apply rate limit to peers on LAN Tillämpa hastighetsgräns för LAN-jämlikar - + Apply rate limit to transport overhead Tillämpa hastighetsgräns för transportoverhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Om "blandat läge" är aktiverat tillåts I2P-torrenter att även få jämlikar från andra källor än spåraren och ansluta till vanliga IP-adresser, utan att ge någon anonymisering. Detta kan vara användbart om användaren inte är intresserad av anonymisering av I2P, men ändå vill kunna ansluta till I2P-jämlikar. </p></body></html> - + Apply rate limit to µTP protocol Tillämpa hastighetsgräns för µTP-protokoll - + Privacy Integritet - + Enable DHT (decentralized network) to find more peers Aktivera DHT (decentraliserat nätverk) för att hitta fler jämlikar - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Utbyta jämlikar med kompatibla BitTorrent-klienter (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Aktivera jämlikeutbyte (PeX) för att hitta fler jämlikar - + Look for peers on your local network Leta efter jämlikar på ditt lokala nätverk - + Enable Local Peer Discovery to find more peers Aktivera upptäckt av lokala jämlikar för att hitta fler jämlikar - + Encryption mode: Krypteringsläge: - + Require encryption Kräv kryptering - + Disable encryption Inaktivera kryptering - + Enable when using a proxy or a VPN connection Aktivera när en proxy eller VPN-anslutning används - + Enable anonymous mode Aktivera anonymt läge - + Maximum active downloads: Högst antal aktiva hämtningar: - + Maximum active uploads: Högst antal aktiva sändningar: - + Maximum active torrents: Högst antal aktiva torrenter: - + Do not count slow torrents in these limits Räkna inte långsamma torrenter med de här gränserna - + Upload rate threshold: Sändningshastighetsgräns: - + Download rate threshold: Hämtningshastighetsgräns: - - - - + + + + sec seconds sek - + Torrent inactivity timer: Torrentinaktivitetstidtagare: - + then därefter - + Use UPnP / NAT-PMP to forward the port from my router Använd UPnP / NAT-PMP för att vidarebefordra porten från min router - + Certificate: Certifikat: - + Key: Nyckel: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information om certifikat</a> - + Change current password Ändra nuvarande lösenord - Use alternative Web UI - Använd alternativt webbgränssnitt - - - + Files location: Filplats: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Lista över alternativa webbanvändargränssnitt</a> - + Security Säkerhet - + Enable clickjacking protection Aktivera skydd för clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Aktivera skydd mot förfalskning av förfrågningar mellan webbplatser (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Aktivera säkerhetsflagga för kaka (kräver HTTPS eller lokal värdanslutning) - + Enable Host header validation Aktivera validering av värdrubrik - + Add custom HTTP headers Lägg till anpassade HTTP-rubriker - + Header: value pairs, one per line Rubrik: värdepar, en per rad - + Enable reverse proxy support Aktivera support för omvänd proxy - + Trusted proxies list: Lista över betrodda proxyer: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Exempel på omvänd proxyinställning</a> - + Service: Tjänst: - + Register Registrera - + Domain name: Domännamn: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Genom att aktivera de här alternativen kan du <strong>oåterkalleligt förlora</strong> dina .torrent-filer! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Om du aktiverar det andra alternativet (&ldquo;även när tillägg avbryts&rdquo;) .torrentfilen <strong>tas bort</strong> även om du trycker på &ldquo;<strong>Avbryt</strong>&rdquo; i &ldquo;Lägg till torrent&rdquo;-dialogrutan @@ -7520,12 +7478,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int Välj qBittorrent-temafil för användargränssnitt - + Choose Alternative UI files location Välj alternativ plats för användargränssnitts filer - + Supported parameters (case sensitive): Parametrar som stöds (skiftlägeskänslig): @@ -7545,183 +7503,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int Inaktiverat på grund av att det inte gick att detektera närvaro i systemfältet - + No stop condition is set. Inga stoppvillkor angivna. - + Torrent will stop after metadata is received. Torrent stoppas efter att metadata har tagits emot. - + Torrent will stop after files are initially checked. Torrent stoppas efter att filer har kontrollerats initialt. - + This will also download metadata if it wasn't there initially. Detta kommer också att hämta metadata om det inte var där initialt. - + %N: Torrent name %N: Torrentnamn - + %L: Category %L: Kategori - + %F: Content path (same as root path for multifile torrent) %F: Innehållssökväg (samma som root-sökväg för flerfilig torrent) - + %R: Root path (first torrent subdirectory path) %R: Root-sökväg (första torrentundermappsökväg) - + %D: Save path %D: Sparsökväg - + %C: Number of files %C: Antal filer - + %Z: Torrent size (bytes) %Z: Torrentstorlek (byte) - + %T: Current tracker %T: Aktuell spårare - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Tips: Inkapsla parametern med citattecken för att undvika att text skärs av vid blanktecknet (t. ex. "%N") - + Test email - + E-posttest - + Attempted to send email. Check your inbox to confirm success - + Försökte skicka e-post. Kontrollera din inkorg för att bekräfta att det lyckades - + (None) (Ingen) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds En torrent kommer att anses långsam om dess hämtnings- och sändningshastigheter stannar under de här värdena för "torrentinaktivitetstidtagare" sekunder - + Certificate Certifikat - + Select certificate Välj certifikat - + Private key Privat nyckel - + Select private key Välj privat nyckel - + WebUI configuration failed. Reason: %1 Konfigurationen för webbanvändargränssnittet misslyckades. Orsak: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 rekommenderas för bästa kompatibilitet med Windows mörkt läge - + System System default Qt style - + System - + Let Qt decide the style for this system - + Låt Qt bestämma stilen för detta system - + Dark Dark color scheme - + Mörkt - + Light Light color scheme - + Ljust - + System System color scheme - + System - + Select folder to monitor Välj mapp för övervakning - + Adding entry failed Det gick inte att lägga till post - + The WebUI username must be at least 3 characters long. Användarnamnet för webbanvändargränssnittet måste vara minst 3 tecken långt. - + The WebUI password must be at least 6 characters long. Lösenordet för webbanvändargränssnittet måste vara minst 6 tecken långt. - + Location Error Platsfel - - + + Choose export directory Välj exportmapp - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well När de här alternativen är aktiverade kommer qBittorrent att <strong>ta bort</strong> .torrent-filer efter att de var (det första alternativet) eller inte (det andra alternativet) tillagda till sin hämtningskö. Detta kommer att tillämpas <strong>inte endast</strong> på de filer som öppnas via &ldquo;Lägg till torrent&rdquo;-menyåtgärden men på de som öppnas via <strong>filtypsassociering</strong> också @@ -7731,69 +7689,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int qBittorrent-temafil för användargränssnitt (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Taggar (separerade med kommatecken) - + %I: Info hash v1 (or '-' if unavailable) %I: Info-hash v1 (eller "-" om otillgänglig) - + %J: Info hash v2 (or '-' if unavailable) %J: Info-hash v2 (eller "-" om otillgänglig) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent-ID (antingen sha-1 info-hash för v1-torrent eller avkortad sha-256 info-hash för v2/hybridtorrent) - - + + Choose a save directory Välj en sparmapp - + Torrents that have metadata initially will be added as stopped. Torrenter som har metadata initialt kommer att läggas till som stoppade. - + Choose an IP filter file Välj en IP-filterfil - + All supported filters Alla stödda filter - + The alternative WebUI files location cannot be blank. Den alternativa platsen för webbanvändargränssnittsfiler får inte vara tom. - + Parsing error Tolkningsfel - + Failed to parse the provided IP filter Det gick inte att analysera det medföljande IP-filtret - + Successfully refreshed Uppdaterad - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Tolkade det angivna IP-filtret: %1-reglerna tillämpades. @@ -7804,18 +7762,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int Inställningar - + Time Error Tidsfel - + The start time and the end time can't be the same. Starttiden och sluttiden kan inte vara densamma. - - + + Length Error Längdfel @@ -7900,169 +7858,169 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int Peer is using NAT hole punching - + Jämlike använder NAT-hålslagning PeerListWidget - + Country/Region Land/region - + IP/Address IP/adress - + Port Port - + Flags Flaggor - + Connection Anslutning - + Client i.e.: Client application Klient - + Peer ID Client i.e.: Client resolved from Peer ID Jämlike ID-klient - + Progress i.e: % downloaded Förlopp - + Down Speed i.e: Download speed Hämtningshastighet - + Up Speed i.e: Upload speed Sändningshastighet - + Downloaded i.e: total data downloaded Hämtat - + Uploaded i.e: total data uploaded Skickat - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Relevans - + Files i.e. files that are being downloaded right now Filer - + Column visibility Kolumnsynlighet - + Resize columns Ändra storlek på kolumner - + Resize all non-hidden columns to the size of their contents Ändra storlek på alla icke-dolda kolumner till storleken på deras innehåll - + Add peers... Lägg till jämlikar... - - + + Adding peers Lägger till jämlikar - + Some peers cannot be added. Check the Log for details. Vissa kamrater kan inte läggas till. Kontrollera loggen för detaljer. - + Peers are added to this torrent. Jämlikar läggs till i denna torrent. - - + + Ban peer permanently Förbjud jämliken permanent - + Cannot add peers to a private torrent Det går inte att lägga till jämlikar i en privat torrent - + Cannot add peers when the torrent is checking Det går inte att lägga till jämlikar när torrenten kontrollerar - + Cannot add peers when the torrent is queued Det går inte att lägga till jämlikar när torrenten är i kö - + No peer was selected Ingen jämlike vald - + Are you sure you want to permanently ban the selected peers? Är du säker på att du vill permanent förbjuda de valda jämlikarna? - + Peer "%1" is manually banned Jämliken "%1 " är manuellt förbjuden - + N/A Ingen - + Copy IP:port Kopiera IP:port @@ -8343,34 +8301,27 @@ De här insticksmodulerna inaktiverades. PowerManagement - qBittorrent is active - qBittorrent är aktiv + qBittorrent är aktiv PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Strömhantering hittade lämpligt D-Bus-gränssnitt. Gränssnitt: %1 + Strömhantering hittade lämpligt D-Bus-gränssnitt. Gränssnitt: %1 - Power management error. Did not found suitable D-Bus interface. - Strömhanteringsfel. Hittade inte lämpligt D-Bus-gränssnitt. + Strömhanteringsfel. Hittade inte lämpligt D-Bus-gränssnitt. - - - Power management error. Action: %1. Error: %2 - Strömhanteringsfel. Åtgärd: %1. Fel: %2 + Strömhanteringsfel. Åtgärd: %1. Fel: %2 - Power management unexpected error. State: %1. Error: %2 - Oväntat strömhanteringsfel. Tillstånd: %1. Fel: %2 + Oväntat strömhanteringsfel. Tillstånd: %1. Fel: %2 @@ -8614,12 +8565,12 @@ De här insticksmodulerna inaktiverades. Ratio / Time Active (in months), indicates how popular the torrent is - + Förhållande / Aktiv tid (i månader), indikerar hur populär torrenten är Popularity: - + Popularitet: @@ -8654,7 +8605,7 @@ De här insticksmodulerna inaktiverades. Private: - + Privat: @@ -8662,153 +8613,124 @@ De här insticksmodulerna inaktiverades. Sparsökväg: - + Never Aldrig - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (har %3) - - + + %1 (%2 this session) %1 (%2 denna session) - - + + N/A Ingen - + Yes - Ja + Ja - + No - Nej + Nej - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (distribuerad i %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 totalt) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 genomsnitt) - + Add web seed Add HTTP source - + Lägg till webbdistribution - + Add web seed: - + Lägg till webbdistribution: - - + + This web seed is already in the list. - + Denna webbdistribution finns redan i listan. - New Web seed - Ny webbdistribution - - - Remove Web seed - Ta bort webbdistribution - - - Copy Web seed URL - Kopiera URL för webbdistribution - - - Edit Web seed URL - Ändra URL för webbdistribution - - - + Filter files... Filtrera filer... - + Add web seed... - + Lägg till webbdistribution... - + Remove web seed - + Ta bort webbdistribution - + Copy web seed URL - + Kopiera URL för webbdistribution - + Edit web seed URL... - + Redigera URL för webbdistribution... - + Speed graphs are disabled Hastighetsdiagram är inaktiverade - + You can enable it in Advanced Options Du kan aktivera det i Avancerade alternativ - New URL seed - New HTTP source - Ny URL-distribution - - - New URL seed: - Ny URL-distribution: - - - This URL seed is already in the list. - Den här URL-distributionen finns redan i listan. - - - + Web seed editing Redigering av webbdistribution - + Web seed URL: URL för webbdistribution: @@ -8816,33 +8738,33 @@ De här insticksmodulerna inaktiverades. RSS::AutoDownloader - - + + Invalid data format. Ogiltigt dataformat. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Det gick inte att spara RSS AutoDownloader-data i %1. Fel: %2 - + Invalid data format Ogiltigt dataformat - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS-artikeln '%1' accepteras av regeln '%2'. Försöker lägga till torrent... - + Failed to read RSS AutoDownloader rules. %1 Det gick inte att läsa in regler för RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Det gick inte att läsa in regler för RSS Auto Downloader. Orsak: %1 @@ -8850,22 +8772,22 @@ De här insticksmodulerna inaktiverades. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Det gick inte att hämta RSS-flöde i "%1". Orsak: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-flöde vid "%1" uppdaterad. Inkom %2 nya artiklar. - + Failed to parse RSS feed at '%1'. Reason: %2 Det gick inte att analysera RSS-flöde vid "%1". Orsak: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-flöde vid "%1" hämtades. Börjar analysera det. @@ -8914,12 +8836,12 @@ De här insticksmodulerna inaktiverades. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Det gick inte att spara RSS-sessionskonfigurationen. Fil: "%1". Fel: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Det gick inte att spara RSS-sessionsdata. Fil: "%1". Fel: "%2" @@ -8941,76 +8863,121 @@ De här insticksmodulerna inaktiverades. - + Item doesn't exist: %1. Artikeln existerar inte: %1. - Couldn't move folder into itself. - Kunde inte flytta mappen in i sig själv. + Kunde inte flytta mappen in i sig själv. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Kan inte ta bort root-mapp. - + Failed to read RSS session data. %1 Det gick inte att läsa RSS-sessionsdata. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Det gick inte att analysera RSS-sessionsdata. Fil: "%1". Fel: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Det gick inte att läsa in RSS-sessionsdata. Fil: "%1". Fel: "Ogiltigt dataformat." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Det gick inte att läsa in RSS-flödet. Flöde: "%1". Orsak: URL krävs. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Det gick inte att läsa in RSS-flödet. Flöde: "%1". Orsak: UID är ogiltigt. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Dubblett RSS-flöde hittades. UID: "%1". Fel: Konfigurationen verkar vara skadad. - + Couldn't load RSS item. Item: "%1". Invalid data format. Det gick inte att läsa in RSS-objektet. Objekt: "%1". Ogiltigt dataformat. - + Corrupted RSS list, not loading it. Korrupt RSS-lista, läser inte in den. - + Incorrect RSS Item path: %1. Felaktig sökväg för RSS-objekt: %1. - + RSS item with given path already exists: %1. RSS-objekt med given sökväg finns redan: %1. - + Parent folder doesn't exist: %1. Den överordnade mappen finns inte: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Flödet finns inte: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + sek + + + + Default + Standard + + RSSWidget @@ -9110,78 +9077,77 @@ De här insticksmodulerna inaktiverades. + Feed options... + + + Edit feed URL... - Redigera flödes-URL... + Redigera flödes-URL... - Edit feed URL - Redigera flödes-URL + Redigera flödes-URL - + Please choose a folder name Välj ett mappnamn - + Folder name: Mappnamn: - + New folder Ny mapp - - Please type a RSS feed URL - Skriv URL för ett RSS-flöde + Skriv URL för ett RSS-flöde - - Feed URL: - Flödets URL: + Flödets URL: - + Deletion confirmation Bekräftelse på borttagning - + Are you sure you want to delete the selected RSS feeds? Är du säker på att du vill ta bort de valda RSS-flödena? - + Please choose a new name for this RSS feed Välj ett nytt namn för detta RSS-flöde - + New feed name: Nytt namn på flöde: - + Rename failed Det gick inte att byta namn - + Date: Datum: - + Feed: Flöde: - + Author: Upphovsman: @@ -9196,7 +9162,7 @@ De här insticksmodulerna inaktiverades. Unable to create more than %1 concurrent searches. - Det gick inte att skapa fler än %1 samtidiga sökningar. + Det går inte att skapa fler än %1 samtidiga sökningar. @@ -9318,10 +9284,6 @@ De här insticksmodulerna inaktiverades. i.e: Number of partial sources Reciprokörer - - Search engine - Sökmotor - Filter search results... @@ -9411,17 +9373,17 @@ De här insticksmodulerna inaktiverades. Engine - + Motor Engine URL - + Motorns webbadress Published On - + Publicerad den @@ -9442,104 +9404,104 @@ De här insticksmodulerna inaktiverades. SearchPluginManager - + Unknown search engine plugin file format. Okänt filformat för sökmotorinsticksmodul. - + Plugin already at version %1, which is greater than %2 Insticksmodule har redan version %1, vilket är större än %2 - + A more recent version of this plugin is already installed. En senare version av den här insticksmodulen är redan installerad. - + Plugin %1 is not supported. Insticksmodulen %1 stöds inte. - - + + Plugin is not supported. Insticksmodul stöds inte. - + Plugin %1 has been successfully updated. Insticksmodulen %1 har uppdaterats. - + All categories Alla kategorier - + Movies Filmer - + TV shows Tv program - + Music Musik - + Games Spel - + Anime Animerat - + Software Mjukvara - + Pictures Bilder - + Books Böcker - + Update server is temporarily unavailable. %1 Uppdateringsserveren är tillfälligt otillgänglig. %1 - - + + Failed to download the plugin file. %1 Det gick inte att hämta insticksmodulsfilen. %1 - + Plugin "%1" is outdated, updating to version %2 Insticksmodulen "%1" är föråldrad, uppdateras till version %2 - + Incorrect update info received for %1 out of %2 plugins. Felaktig uppdateringsinformation mottagen för %1 av %2 insticksmoduler. - + Search plugin '%1' contains invalid version string ('%2') Sökinsticksmodulen "%1" innehåller ogiltig versionssträng ("%2") @@ -9565,137 +9527,129 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Sökinsticksmoduler... - + A phrase to search for. En fras att söka efter. - + Spaces in a search term may be protected by double quotes. Mellanslag i en sökterm kan skyddas av citattecken. - + Example: Search phrase example Exempel: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: sök efter <b>foo bar</b> - + All plugins Alla insticksmoduler - + Only enabled Endast aktiverade - - + + Invalid data format. - Ogiltigt dataformat. + Ogiltigt dataformat. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: sök efter <b>foo</b> och <b>bar</b> - + Refresh - + Uppdatera - + Close tab Stäng flik - + Close all tabs Stäng alla flikar - + Select... Välj... - - + + Search Engine Sökmotor - - + + Please install Python to use the Search Engine. Installera Python för att använda sökmotorn. - + Empty search pattern Tomt sökmönster - + Please type a search pattern first Skriv ett sökmönster först - + Stop Stoppa - - Search has finished - Sökningen är klar - - - Search has failed - Det gick inte att söka - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Det gick inte att läsa in sökanvändargränssnittets sparade tillståndsdata. Fil: "%1". Fel: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Det gick inte att läsa in sparade sökresultat. Flik: "%1". Fil: "%2". Fel: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Det gick inte att spara sökanvändargränssnittets status. Fil: "%1". Fel: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Misslyckades med att spara sökresultat. Flik: "%1". Fil: "%2". Fel: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Det gick inte att läsa in historiken för sökanvändargränssnittet. Fil: "%1". Fel: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Misslyckades med att spara sökhistoriken. Fil: "%1". Fel: "%2" @@ -10091,67 +10045,77 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av StatusBar - + Connection status: Anslutningsstatus: - - + + No direct connections. This may indicate network configuration problems. Inga direktanslutningar. Detta kan betyda problem med nätverkskonfigurationen. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Extern IP: N/A + + + + DHT: %1 nodes DHT: %1 noder - + qBittorrent needs to be restarted! qBittorrent behöver startas om! - - + + Connection Status: Anslutningsstatus: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Frånkopplad. Detta betyder oftast att qBittorrent inte kunde lyssna på den valda porten för inkommande anslutningar. - + Online Ansluten - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Externa IP: %1, %2 + + + + External IP: %1%2 + Extern IP: %1%2 + + + Click to switch to alternative speed limits Klicka för att växla till alternativa hastighetsgränser - + Click to switch to regular speed limits Klicka för att växla till vanliga hastighetsgränser @@ -10179,23 +10143,15 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Completed (0) Slutförda (0) - - Resumed (0) - Återupptagna (0) - - - Paused (0) - Pausade (0) - Running (0) - + Körs (0) Stopped (0) - + Stoppad (0) @@ -10260,49 +10216,33 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Running (%1) - + Körs (%1) Stopped (%1) - + Stoppad (%1) Start torrents - + Starta torrenter Stop torrents - - - - Paused (%1) - Pausade (%1) + Stoppa torrenter Moving (%1) Flyttar (%1) - - Resume torrents - Återuppta torrenter - - - Pause torrents - Pausa torrenter - Remove torrents Ta bort torrenter - - Resumed (%1) - Återupptagna (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Remove unused tags Ta bort oanvända taggar - - Resume torrents - Återuppta torrenter - - - Pause torrents - Pausa torrenter - Remove torrents Ta bort torrenter - - New Tag - Ny tagg - Start torrents - + Starta torrenter Stop torrents - + Stoppa torrenter @@ -10409,7 +10337,7 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Add tag - + Lägg till tagg @@ -10726,17 +10654,17 @@ Välj ett annat namn och försök igen. TorrentCreatorController - + Too many active tasks För många aktiva uppgifter - + Torrent creation is still unfinished. Torrentskapandet är fortfarande ofärdigställt. - + Torrent creation failed. Det gick inte att skapa en torrent. @@ -10988,17 +10916,6 @@ Välj ett annat namn och försök igen. Bevakar mapp: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Det gick inte att allokera minne vid läsning av filen. Fil: "%1". Fel: "%2" - - - Invalid metadata - Ogiltig metadata - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Välj ett annat namn och försök igen. Torrent Share Limits - - - - Torrent speed limits - Torrenthastighetsgränser + Torrentdelningsgränser @@ -11054,7 +10967,7 @@ Välj ett annat namn och försök igen. Torrent Speed Limits - + Torrenthastighetsgränser @@ -11072,34 +10985,6 @@ Välj ett annat namn och försök igen. Upload: Sändning: - - Torrent share limits - Torrentdelningsgränser - - - Use global share limit - Använd global delningsgräns - - - Set no share limit - Ställ inte in delningsgräns - - - Set share limit to - Ställ in delningsgräns till - - - ratio - kvot - - - total minutes - minuter totalt - - - inactive minutes - minuter inaktiv - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Välj ett annat namn och försök igen. Not applicable to private torrents Gäller inte privata torrenter - - No share limit method selected - Inge delningsgränsmetod vald - - - Please select a limit method first - Välj en gränsmetod först - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Välj ett annat namn och försök igen. Action when the limit is reached: - + Åtgärd när gränsen nås: Stop torrent - + Stoppa torrent Remove torrent - Ta bort torrent + Ta bort torrent Remove torrent and its content - + Ta bort torrenten och dess innehåll Enable super seeding for torrent - Aktivera superdistribution för torrent + Aktivera superdistribution för torrent @@ -11233,14 +11110,10 @@ Välj ett annat namn och försök igen. Torrent Tags Torrenttaggar - - New Tag - Ny tagg - Add tag - + Lägg till tagg @@ -11271,90 +11144,90 @@ Välj ett annat namn och försök igen. TorrentsController - + Error: '%1' is not a valid torrent file. Fel: "%1" är inte en giltig torrentfil. - + Priority must be an integer Prioritet måste vara ett heltal - + Priority is not valid Prioritet är inte giltigt - + Torrent's metadata has not yet downloaded Torrentens metadata har inte hämtats ännu - + File IDs must be integers Fil-ID:n måste vara heltal - + File ID is not valid Fil-ID är inte giltigt - - - - + + + + Torrent queueing must be enabled Torrentkö måste aktiveras - - + + Save path cannot be empty Sparsökvägen kan inte vara tom - - + + Cannot create target directory Det går inte att skapa målmapp - - + + Category cannot be empty Kategorin kan inte vara tom - + Unable to create category Det går inte att skapa kategori - + Unable to edit category Det går inte att redigera kategori - + Unable to export torrent file. Error: %1 Det går inte att exportera torrentfil. Fel: %1 - + Cannot make save path Det går inte att skapa sparsökväg "%1" is not a valid URL - + "%1" är inte en giltig URL URL scheme must be one of [%1] - + URL-schema måste vara ett av [%1] @@ -11362,39 +11235,39 @@ Välj ett annat namn och försök igen. parametern "sort" är ogiltig - + "%1" is not an existing URL - + "%1" är inte en giltig URL - + "%1" is not a valid file index. "%1" är inte ett giltigt filindex. - + Index %1 is out of bounds. Index %1 är utanför gränserna. - - + + Cannot write to directory Kan inte skriva till mapp - + WebUI Set location: moving "%1", from "%2" to "%3" Webbgränssnitt platsinställning: flyttar "%1", från "%2" till "%3" - + Incorrect torrent name Felaktigt torrentnamn - - + + Incorrect category name Felaktigt kategorinamn @@ -11477,45 +11350,33 @@ Välj ett annat namn och försök igen. Invalid state! - + Ogiltigt tillstånd! URL/Announce Endpoint - + Webbadress-/Annonseringsslutpunkt BT Protocol - + BT-protokoll Next Announce - + Nästa annonsering Min Announce - - - - Invalid status! - Ogiltig status! - - - URL/Announce endpoint - URL/annonseringsslutpunkt + Minimal annonsering Tier Nivå - - Protocol - Protokoll - Status @@ -11546,18 +11407,6 @@ Välj ett annat namn och försök igen. Message Meddelande - - Next announce - Nästa annonsering - - - Min announce - Minimal annonsering - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Välj ett annat namn och försök igen. Denna torrent är privat - + Tracker editing Redigera spårare - + Tracker URL: Spårar-URL: - - + + Tracker editing failed Det gick inte att redigera spåraren - + The tracker URL entered is invalid. Den angivna spårarens URL är ogiltig. - + The tracker URL already exists. Spårar-URL finns redan. - + Edit tracker URL... Ändra spårar-URL... - + Remove tracker Ta bort spårare - + Copy tracker URL Kopiera URL för spårare - + Force reannounce to selected trackers Tvinga återannonsera till valda spårare - + Force reannounce to all trackers Tvinga återannonsera till alla spårare - + Resize columns Ändra storlek på kolumner - + Resize all non-hidden columns to the size of their contents Ändra storlek på alla icke-dolda kolumner till storleken på deras innehåll - + Add trackers... Lägg till spårare... - + Column visibility Kolumnens synlighet @@ -11716,20 +11565,12 @@ Välj ett annat namn och försök igen. Start torrents - + Starta torrenter Stop torrents - - - - Resume torrents - Återuppta torrenter - - - Pause torrents - Pausa torrenter + Stoppa torrenter @@ -11853,10 +11694,6 @@ Välj ett annat namn och försök igen. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Kontrollerar återupptagningsdata - - Paused - Pausad - Completed @@ -11897,21 +11734,16 @@ Välj ett annat namn och försök igen. % Done Förlopp - - Status - Torrent status (e.g. downloading, seeding, paused) - Status - Stopped - + Stoppad Status Torrent status (e.g. downloading, seeding, stopped) - Status + Status @@ -11946,7 +11778,7 @@ Välj ett annat namn och försök igen. Popularity - + Popularitet @@ -12027,22 +11859,17 @@ Välj ett annat namn och försök igen. Time Active Time (duration) the torrent is active (not stopped) - Tid aktiv + Tid aktiv Yes - Ja + Ja No - Nej - - - Time Active - Time (duration) the torrent is active (not paused) - Tid aktiv + Nej @@ -12114,12 +11941,12 @@ Välj ett annat namn och försök igen. Private Flags private torrents - + Privat Ratio / Time Active (in months), indicates how popular the torrent is - + Förhållande / Aktiv tid (i månader), indikerar hur populär torrenten är @@ -12144,358 +11971,319 @@ Välj ett annat namn och försök igen. TransferListWidget - + Column visibility Kolumnsynlighet - + Recheck confirmation Bekräftelse på återkontroll - + Are you sure you want to recheck the selected torrent(s)? Är du säker på att du vill kontrollera den valda torrenten/de valda torrenterna igen? - + Rename Byt namn - + New name: Nytt namn: - + Choose save path Välj sparsökväg - Confirm pause - Bekräfta paus - - - Would you like to pause all torrents? - Vill du pausa alla torrenter? - - - Confirm resume - Bekräfta återuppta - - - Would you like to resume all torrents? - Vill du återuppta alla torrenter? - - - + Unable to preview Det går inte att förhandsgranska - + The selected torrent "%1" does not contain previewable files Den valda torrenten "%1" innehåller inte förhandsgranskningsbara filer - + Resize columns Ändra storlek på kolumner - + Resize all non-hidden columns to the size of their contents Ändra storlek på alla icke-dolda kolumner till storleken på deras innehåll - + Enable automatic torrent management Aktivera automatisk torrenthantering - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Är du säker på att du vill aktivera automatisk torrenthantering för de valda torrenterna? De kan komma att flyttas. - Add Tags - Lägg till taggar - - - + Choose folder to save exported .torrent files Välj mapp för att spara exporterade .torrent-filer - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Det gick inte att exportera .torrent-fil. Torrent: "%1". Sparsökväg: "%2". Orsak: "%3" - + A file with the same name already exists En fil med samma namn finns redan - + Export .torrent file error Exportera .torrent-filfel - + Remove All Tags Ta bort alla taggar - + Remove all tags from selected torrents? Ta bort alla taggar från valda torrenter? - + Comma-separated tags: Kommaseparerade taggar: - + Invalid tag Ogiltig tagg - + Tag name: '%1' is invalid Taggnamn: "%1" är ogiltig - &Resume - Resume/start the torrent - &Återuppta - - - &Pause - Pause the torrent - &Pausa - - - Force Resu&me - Force Resume/start the torrent - Tvinga åter&uppta - - - + Pre&view file... Förhands&granska fil... - + Torrent &options... Torrent&alternativ... - + Open destination &folder Öppna destinations&mapp - + Move &up i.e. move up in the queue Flytta &upp - + Move &down i.e. Move down in the queue Flytta &ner - + Move to &top i.e. Move to top of the queue Flytta &överst - + Move to &bottom i.e. Move to bottom of the queue Flytta &nederst - + Set loc&ation... Ange pl&ats... - + Force rec&heck Tvinga åter&kontroll - + Force r&eannounce Tvinga åt&erannonsera - + &Magnet link &Magnetlänk - + Torrent &ID Torrent-&ID - + &Comment &Kommentar - + &Name &Namn - + Info &hash v1 Info-&hash v1 - + Info h&ash v2 Info-h&ash v2 - + Re&name... Byt &namn... - + Edit trac&kers... Redigera spå&rare... - + E&xport .torrent... E&xportera .torrent... - + Categor&y Kategor&i - + &New... New category... &Ny... - + &Reset Reset category &Återställ - + Ta&gs Ta&ggar - + &Add... Add / assign multiple tags... &Lägg till... - + &Remove All Remove all tags &Ta bort alla - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Det går inte att tvinga återannonsering om torrenten är Stoppad/Köad/Felaktig/Kontrolleras - + &Queue &Kö - + &Copy &Kopiera - + Exported torrent is not necessarily the same as the imported Exporterad torrent är inte nödvändigtvis densamma som den importerade - + Download in sequential order Hämta i sekventiell ordning - + Add tags - + Lägg till taggar - + Errors occurred when exporting .torrent files. Check execution log for details. Fel uppstod vid export av .torrent-filer. Kontrollera exekveringsloggen för detaljer. - + &Start Resume/start the torrent - + &Starta - + Sto&p Stop the torrent - + Sto&ppa - + Force Star&t Force Resume/start the torrent - + Tvinga star&t - + &Remove Remove the torrent &Ta bort - + Download first and last pieces first Hämta första och sista delarna först - + Automatic Torrent Management Automatisk torrenthantering - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Automatiskt läge innebär att olika torrentegenskaper (t.ex. sparsökväg) kommer att avgöras av den tillhörande kategorin - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Kan inte framtvinga återannonsering om torrent är pausad/köad/fellerar/kontrollerar - - - + Super seeding mode Superdistributionsläge @@ -12571,7 +12359,7 @@ Välj ett annat namn och försök igen. Set app style failed. Unknown style: "%1" - + Det gick inte att ange appstil. Okänd stil: "%1" @@ -12627,32 +12415,32 @@ Välj ett annat namn och försök igen. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Hittade körbar Python. Namn: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". Det gick inte att hitta körbar Python. Sökväg: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Det gick inte att hitta `python3` körbar i PATH-miljövariabel. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Det gick inte att hitta `python` körbar i PATH-miljövariabel. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Det gick inte att hitta körbar `python` i Windows-registret. - + Failed to find Python executable Det gick inte att hitta körbar Python @@ -12744,52 +12532,52 @@ Välj ett annat namn och försök igen. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Oacceptabelt sessionscookienamn är specificerat: "%1". Standard används. - + Unacceptable file type, only regular file is allowed. Oacceptabel filtyp, endast vanlig fil är tillåten. - + Symlinks inside alternative UI folder are forbidden. Symlinks i alternativa mappen för användargränssnittet är förbjudna. - + Using built-in WebUI. Använder inbyggt webbanvändargränssnittet. - + Using custom WebUI. Location: "%1". Använder anpassat webbanvändargränssnitt. Plats: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Webbanvändargränssnittsöversättning för valt språk (%1) har lästs in. - + Couldn't load WebUI translation for selected locale (%1). Det gick inte att läsa in webbgränssnittsöversättning för valt språk (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Saknar ":" avskiljare i WebUI anpassad HTTP-rubrik: "%1" - + Web server error. %1 Webbserverfel. %1 - + Web server error. Unknown error. Webbserverfel. Okänt fel. @@ -12839,7 +12627,7 @@ Välj ett annat namn och försök igen. Unable to bind to IP: %1, port: %2. Reason: %3 - Det gick inte att binda till IP: %1, port: %2. Orsak: %3 + Det går inte att binda till IP: %1, port: %2. Orsak: %3 @@ -12847,7 +12635,7 @@ Välj ett annat namn och försök igen. Unknown error - Okänt fel + Okänt fel diff --git a/src/lang/qbittorrent_th.ts b/src/lang/qbittorrent_th.ts index 5813dfe88..3ed8b0b2b 100644 --- a/src/lang/qbittorrent_th.ts +++ b/src/lang/qbittorrent_th.ts @@ -170,10 +170,6 @@ Never show again ไม่ต้องแสดงอีก - - Torrent settings - การตั้งค่าทอร์เรนต์ - Set as default category @@ -235,25 +231,25 @@ เงื่อนไขการสิ้นสุด - - + + None ไม่มี - - + + Metadata received ได้รับข้อมูล Metadata - + Torrents that have metadata initially will be added as stopped. โทเรนต์ที่มีข้อมูล Metadata ตั้งแต่แรกจะถูกเพิ่มในสถานะหยุด - + Files checked ตรวจสอบไฟล์แล้ว @@ -368,112 +364,112 @@ บันทึกเป็นไฟล์ .torrent - + I/O Error ข้อมูลรับส่งผิดพลาด - + Not Available This comment is unavailable ไม่สามารถใช้ได้ - + Not Available This date is unavailable ไม่สามารถใช้ได้ - + Not available ไม่สามารถใช้ได้ - + Magnet link magnet link - + Retrieving metadata... กำลังดึงข้อมูล - - + + Choose save path เลือกที่บันทึก - + No stop condition is set. ไม่มีการตั้งเงื่อนไขการหยุด - + Torrent will stop after metadata is received. ทอเร้นต์หยุดเมื่อได้รับข้อมูล metadata - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A N/A - + %1 (Free space on disk: %2) %1 (พื้นที่เหลือบนไดรฟ์: %2) - + Not available This size is unavailable. ไม่สามารถใช้งานได้ - + Torrent file (*%1) ไฟล์ทอร์เรนต์ (*%1) - + Save as torrent file บันทึกเป็นไฟล์ทอร์เรนต์ - + Couldn't export torrent metadata file '%1'. Reason: %2. ไม่สามารถส่งออกไฟล์ข้อมูลเมตาของทอร์เรนต์ '%1' เหตุผล: %2 - + Cannot create v2 torrent until its data is fully downloaded. ไม่สามารถสร้าง v2 ทอร์เรนต์ ได้จนกว่าข้อมูลจะดาวน์โหลดจนเต็ม. - + Filter files... คัดกรองไฟล์... - + Parsing metadata... กำลังแปลข้อมูล - + Metadata retrieval complete ดึงข้อมูลเสร็จสมบูรณ์ @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB เมบิไบต์ - + Recheck torrents on completion ตรวจทอเร้นอีกครั้งเมื่อเสร็จสมบูรณ์ - - + + ms milliseconds มิลลิเซกันด์ - + Setting ตั้งค่า - + Value Value set for this setting มูลค่า - + (disabled) (ปิดการใช้งานแล้ว) - + (auto) (ออโต้) - - + + min minutes นาที - + All addresses ที่อยู่ทั้งหมด - + qBittorrent Section ส่วนของ qBittorrent - - + + Open documentation เปิดเอกสาร - + All IPv4 addresses ที่อยู่ IPv4 ทั้งหมด - + All IPv6 addresses ที่อยู่ IPv6 ทั้งหมด - + libtorrent Section ส่วน libtorrent - + Fastresume files ไฟล์ประวัติด่วน - + SQLite database (experimental) ฐานข้อมูล SQLite (ทดลอง) - + Resume data storage type (requires restart) ประเภทการจัดเก็บข้อมูลต่อ (ต้องรีสตาร์ท) - + Normal ปกติ - + Below normal ต่ำกว่าปกติ - + Medium ปานกลาง - + Low ช้า - + Very low ช้ามาก - + Physical memory (RAM) usage limit จำกัดการใช้งานหน่วยความจำ (RAM) - + Asynchronous I/O threads เธรดไม่ตรงกัน I/O - + Hashing threads แฮชเธรด - + File pool size ขนาดไฟล์ Pool - + Outstanding memory when checking torrents ความสำคัญของหน่วยความจำเมื่อตรวจสอบ Torrents - + Disk cache ดิสก์แคช - - - - + + + + + s seconds s - + Disk cache expiry interval แคชดิสก์หมดอายุ - + Disk queue size ขนาดลำดับของดิสก์ - - + + Enable OS cache เปิดใช้งาน OS แคช - + Coalesce reads & writes เชื่อมต่อการ อ่านและการเขียน - + Use piece extent affinity ใช้งานความสัมพันธ์ของชิ้นส่วน - + Send upload piece suggestions ส่งคำแนะนำชิ้นส่วนที่อัปโหลด - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB กิบิไบต์ - + (infinite) - + (system default) - + Delete files permanently - + ลบไฟล์ถาวร - + Move files to trash (if possible) - + ย้่ายไฟล์ไปยังถังขยะ (หากทำได้) - + Torrent content removing mode - + This option is less effective on Linux ตัวเลือกนี้มีผลน้อยบนระบบลีนุกซ์ - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default ค่าเริ่มต้น - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache ยกเลิกแคชระบบปฏิบัติการ - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark ส่งลายน้ำบัฟเฟอร์ - + Send buffer low watermark ส่งบัฟเฟอร์ลายน้ำต่ำ - + Send buffer watermark factor ส่งส่วนประกอบลายน้ำบัฟเฟอร์ - + Outgoing connections per second การเชื่อมต่อขาออกต่อวินาที - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size ขนาดแบ็คล็อกของซ็อกเก็ต - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers ประเภทของบริการ (ToS) สำหรับการเชื่อมต่อกับเพียร์ - + Prefer TCP เสนอ TCP - + Peer proportional (throttles TCP) สัดส่วนเพียร์ (ควบคุมปริมาณ TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) รองรับชื่อโดเมนสากล (IDN) - + Allow multiple connections from the same IP address อนุญาตให้ใช้การเชื่อมต่อจากหลาย ๆ ที่อยู่ IP - + Validate HTTPS tracker certificates ติดตามตรวจสอบใบอนุญาต HTTPS - + Server-side request forgery (SSRF) mitigation การลดการร้องขอทางฝั่งเซิร์ฟเวอร์ (SSRF) - + Disallow connection to peers on privileged ports ปฏิเสธิการเชื่อมต่อไปเพียร์บนพอร์ตที่มีสิทธิพิเศษ - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval ระยะรอบการรีเฟรช - + Resolve peer host names แก้ไขชื่อโฮสต์เพียร์ - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed ประกาศให้ผู้ติดตามทุกคนทราบอีกครั้งเมื่อ IP หรือ พอร์ต มีการเปลี่ยนแปลง - + Enable icons in menus เปิดใช้งานไอคอนในเมนู - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - วินาที + วินาที - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage เปอร์เซ็นต์การหมุนเวียนของเพียร์ยกเลิกการเชื่อมต่อ - + Peer turnover threshold percentage เปอร์เซ็นต์การหมุนเวียนของเพียร์ - + Peer turnover disconnect interval ช่วงเวลาตัดการเชื่อมต่อการหมุนเวียนของเพียร์ - + Resets to default if empty รีเซ็ตเป็นค่าเริ่มต้นหากว่างเปล่า - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications หน้าจอแสดงการแจ้งเตือน - + Display notifications for added torrents หน้าจอการแจ้งเตือนสำหรับการเพิ่ม torrent - + Download tracker's favicon ติดตามการดาวน์โหลด favicon - + Save path history length บันทึกประวัติเส้นทาง - + Enable speed graphs เปิดใช้งานกราฟความเร็ว - + Fixed slots สล็อตคงที่ - + Upload rate based อัตราการอัพโหลด - + Upload slots behavior อัปโหลดพฤติกรรมสล็อต - + Round-robin รอบ-โรบิน - + Fastest upload อัพโหลดเร็วที่สุด - + Anti-leech ต่อต้าน-leech - + Upload choking algorithm อัปโหลดอัลกอริทึม - + Confirm torrent recheck ยืนยันการตรวจสอบ Torrent อีกครั้ง - + Confirm removal of all tags ยืนยันการลบแท็กทั้งหมด - + Always announce to all trackers in a tier ประกาศต่อผู้ติดตามทุกคน - + Always announce to all tiers ประกาศทุกระดับ - + Any interface i.e. Any network interface ทุก ๆ หน้าตา - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP ผสมโหมดอัลกอริทึม - + Resolve peer countries แก้ไขประเทศของเพียร์ - + Network interface โครงข่ายเชื่อมต่อ - + Optional IP address to bind to ที่อยู่ IP ไม่จำเป็น - + Max concurrent HTTP announces ประกาซใช้ HTTP พร้อมกันสูงสุด - + Enable embedded tracker เปิดใช้งานตัวติดตามแบบฝัง - + Embedded tracker port พอร์ตติดตามแบบฝัง @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 ทำงานในโหมดพกพา. ตรวจพบโฟลเดอร์โปรไฟล์โดยอัตโนมัติที่: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. ตรวจพบตัวบ่งชี้คำสั่งซ้ำซ้อน: "%1". โหมดพกพาย่อที่รวดเร็ว. - + Using config directory: %1 ใช้การกำหนดค่าไดเร็กทอรี: %1 - + Torrent name: %1 ชื่อทอร์เรนต์: %1 - + Torrent size: %1 ขนาดทอร์เรนต์: %1 - + Save path: %1 บันทึกเส้นทาง: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds ดาวน์โหลดทอร์เรนต์ใน %1. - - + + Thank you for using qBittorrent. ขอบคุณที่เลือกใช้ qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, กำลังส่งจดหมายแจ้งเตือน - + Add torrent failed เพิ่มทอร์เรนต์ล้มเหลว - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading ดาวน์โหลดทอร์เรนต์ "%1" สำเร็จแล้ว - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... กำลังโหลดทอร์เรนต์... - + E&xit อ&อก - + I/O Error i.e: Input/Output Error ข้อมูลรับส่งผิดพลาด - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ เหตุผล: %2 - + Torrent added เพิ่มไฟล์ทอเร้นต์แล้ว - + '%1' was added. e.g: xxx.avi was added. '%1' เพิ่มแล้ว - + Download completed ดาวน์โหลดเสร็จสิ้น - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' ดาวน์โหลดเสร็จแล้ว - + Information ข้อมูล - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit ออก - + Recursive download confirmation ยืนยันการดาวน์โหลดซ้ำ - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never ไม่เลย - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... กำลังปิด qBittorrent... - + Saving torrent progress... กำลังบันทึก Torrent - + qBittorrent is now ready to exit @@ -1766,263 +1773,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &นำออก... - + Matches articles based on episode filter. จับคู่บทความตามตัวกรองตอน - + Example: ตัวอย่าง - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match จะตรงกัน 2, 5, 8 ผ่าน 15, 30 และตอนต่อไปของซีซันที่หนึ่ง - + Episode filter rules: กฎตัวกรองตอน: - + Season number is a mandatory non-zero value หมายเลขซีซันเป็นค่าบังคับที่ไม่ใช่ศูนย์ - + Filter must end with semicolon ตัวกรองต้องลงท้ายด้วยอัฒภาค " ; " - + Three range types for episodes are supported: รอบรับตอนทั้งสามประเภท: - + Single number: <b>1x25;</b> matches episode 25 of season one หมายเลขเดียว: <b>1x25;</b> ตรงกับตอน 25 of ซีซันแรก - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one ช่วงปกติ: <b>1x25-40;</b> ตรงกับตอน 25 ผ่าน 40 of ซีซันแรก - + Episode number is a mandatory positive value หมายเลขตอนต้องเป็นค่าบวก - + Rules กฏ - + Rules (legacy) กฏ (สมบัติ) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons ช่วงไม่มีที่สิ้นสุด: <b>1x25-;</b> ตรงกับตอน 25 และสูงกว่าของซีซันที่หนึ่งและทุกตอนของซีซันต่อมา - + Last Match: %1 days ago นัดสุดท้าย: %1 วันที่แล้ว - + Last Match: Unknown นัดสุดท้าย: ไม่ทราบ - + New rule name ชื่อกฎใหม่ - + Please type the name of the new download rule. กรุณาพิมพ์ชื่อกฎการดาวน์โหลดใหม่ - - + + Rule name conflict ความขัดแย้งของชื่อกฎ - - + + A rule with this name already exists, please choose another name. มีกฎที่ใช้ชื่อนี้อยู่แล้วกรุณาลือกชื่ออื่น - + Are you sure you want to remove the download rule named '%1'? แน่ใจไหมว่าต้องการลบกฎการดาวน์โหลดที่ชื่อ '%1'? - + Are you sure you want to remove the selected download rules? แน่ใจไหมว่าต้องการลบกฎการดาวน์โหลดที่เลือก? - + Rule deletion confirmation ยืนยันการลบกฏ - + Invalid action การดำเนินการไม่ถูกต้อง - + The list is empty, there is nothing to export. รายการว่างเปล่าไม่มีอะไรจะส่งออก - + Export RSS rules ส่งออกกฏ RSS - + I/O Error I/O ล้มเหลว - + Failed to create the destination file. Reason: %1 สร้างไฟล์ปลายทางไม่สำเร็จ. เหตุผลคือ: %1 - + Import RSS rules นำเข้ากฏ RSS - + Failed to import the selected rules file. Reason: %1 ไม่สามารถนำเข้าไฟล์กฏที่เลือก. เหตุผล: %1 - + Add new rule... เพิ่มกฏใหม่... - + Delete rule ลบกฏ - + Rename rule... เปลี่ยนชื่อกฏ... - + Delete selected rules ลบกฏที่เลือก - + Clear downloaded episodes... ล้างตอนที่ดาวน์โหลด... - + Rule renaming การเปลี่ยนชื่อกฎ - + Please type the new rule name กรุณาพิมพ์ชื่อกฏใหม่ - + Clear downloaded episodes ล้างตอนที่ดาวน์โหลด - + Are you sure you want to clear the list of downloaded episodes for the selected rule? คุณมั่นใจหรือว่าจะทำการล้างรายชื่อการดาวน์โหลดตอนที่เลือก? - + Regex mode: use Perl-compatible regular expressions โหมด Regex: ใช้ Perl-เข้ากันได้ แสดงความคิดปกติ - - + + Position %1: %2 ตำแหน่ง %1: %2 - + Wildcard mode: you can use โหมดสัญลักษณ์แทน: คุณสามารถใช้ได้ - - + + Import error นำเข้าล้มเหลว - + Failed to read the file. %1 - + ? to match any single character ? เพื่อจับคู่อักขระเดี่ยวใด ๆ - + * to match zero or more of any characters * เพื่อจับคู่อักขระใด ๆ เป็นศูนย์หรือมากกว่า - + Whitespaces count as AND operators (all words, any order) ช่องว่างนับเป็นและเป็นตัวดำเนินการ (ทุกคำใด ๆ ) - + | is used as OR operator | ใช้เป็นตัวดำเนินการ OR - + If word order is important use * instead of whitespace. หากลำดับคำมีความสำคัญให้ใช้ * แทนช่องว่าง - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) การแสดงออกด้วยความว่างเปล่า %1 clause (เช่น %2) - + will match all articles. จะตรงกับบทความทั้งหมด - + will exclude all articles. จะไม่รวมบทความทั้งหมด @@ -2074,28 +2081,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. ไม่สามารถบันทึกข้อมูลเมตาของทอร์เรนต์ไปที่ '%1'. ข้อผิดพลาด: %2 - + Couldn't save torrent resume data to '%1'. Error: %2. ไม่สามารถบันทึกข้อมูลการทำงานต่อของทอร์เรนต์ไปที่ '%1'. ข้อผิดพลาด: %2 @@ -2106,16 +2123,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 ไม่สามารถบันทึกข้อมูลไปที่ '%1'. ข้อผิดพลาด: %2 @@ -2123,38 +2141,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. ไม่พบ. - + Couldn't load resume data of torrent '%1'. Error: %2 ไม่สามารถโหลดข้อมูลประวัติของทอร์เรนต์ '%1'. ข้อผิดพลาด: %2 - - + + Database is corrupted. ฐานข้อมูลล้มเหลว - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2202,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. ไม่สามารถบันทึกข้อมูลเมตาของทอร์เรนต์. ข้อผิดพลาด: %1 - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2185,510 +2225,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON เปิด - - - - - - - - - + + + + + + + + + OFF ปิด - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 โหมดไม่แสดงตัวตน: %1 - - + + Encryption support: %1 - - + + FORCED บังคับอยู่ - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". ทอร์เรนต์ "%1" - Removed torrent. - ทอเร้นต์ลบแล้ว - - - Torrent paused. - หยุดชั่วคราว - - - + Super seeding enabled. โหมดซูเปอร์ซีดดิงเปิดใช้งานอยู่ - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" กู้คืนทอร์เรนต์แล้ว ทอร์เรนต์: "%1" - + Added new torrent. Torrent: "%1" เพิ่มทอร์เรนต์ใหม่แล้ว ทอร์เรนต์: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - Removed torrent. Torrent: "%1" - ลบทอร์เรนต์แล้ว ทอร์เรนต์: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. ตัวกรอง IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 ข้อจำกัดโหมดผสม - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 ปิดใช้งาน - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 ปิดใช้งาน - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2738,47 +2771,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' ดาวน์โหลดชิ้นแรกและชิ้นสุดท้ายก่อน: %1, ทอร์เรนต์: '%2' - + On เปิด - + Off ปิด - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" ไฟล์ประวัติล้มเหลว. Torrent: "%1", ไฟล์: "%2", เหตุผล: "%3" - + Performance alert: %1. More info: %2 @@ -3034,20 +3067,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + เริ่มทอร์เรนต์ Stop torrents - - - - Resume torrents - ดำเนินการทอร์เรนต์ต่อ - - - Pause torrents - หยุดทอร์เรนต์ + หยุดทอร์เรนต์ @@ -3378,22 +3403,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present มีทอร์เรนต์นี้อยู่แล้ว - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3511,6 +3536,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3652,10 +3711,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &ตัวเลือก... - - &Resume - &ดำเนินการต่อ - &Remove @@ -3737,10 +3792,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window ปิดหน้าต่าง - - R&esume All - ดำเนินการต่อทั้งหมด - Manage Cookies... @@ -3856,10 +3907,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &ระบบไฮเบอร์เนต - - S&hutdown System - ปิดระบบ - &Statistics @@ -3880,14 +3927,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &เกี่ยวกับ - - &Pause - &หยุด - - - P&ause All - หยุดทั้งหมด - &Add Torrent File... @@ -3921,12 +3960,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show แสดง - + Check for program updates ตรวจสอบการอัพเดตโปรแกรม @@ -3941,386 +3980,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also ถ้าคุณชอบ qBittorrent, สนับสนุนเรา! - + Execution Log บันทึกการดำเนินการ - + Clear the password ล้างรหัส - + &Set Password &ตั้งพาสเวิร์ด - + Preferences กำหนดค่า - + &Clear Password &ยกเลิกพาสเวิร์ด - + Transfers ถ่ายโอน - - + + qBittorrent is minimized to tray qBittorrent ย่อขนาดลงในถาด - - - + + + This behavior can be changed in the settings. You won't be reminded again. อาการนี้สามารถเปลี่ยนแปลงได้ในการตั้งค่า คุณจะไม่ได้รับการแจ้งเตือนอีก - + Icons Only ไอคอนเท่านั้น - + Text Only ข้อความเท่านั้น - + Text Alongside Icons ข้อความข้างไอคอน - + Text Under Icons ข้อความใต้ไอคอน - + Follow System Style ทำตามรูปแบบระบบ - - + + UI lock password UI ล็อกรหัส - - + + Please type the UI lock password: กรุณาพิมพ์รหัสล็อก UI: - + Are you sure you want to clear the password? คุณมั่นใจว่าต้องการล้างรหัส ? - + Use regular expressions - - + + Search Engine - เครื่องมือค้นหา + เครื่องมือค้นหา - + Search has failed - + Search has finished - การค้นหาเสร็จสิ้น + การค้นหาเสร็จสิ้น - + Search ค้นหา - + Transfers (%1) ถ่ายโอน (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent เพิ่งได้รับการอัปเดตและจำเป็นต้องเริ่มต้นใหม่เพื่อให้การเปลี่ยนแปลงมีผล. - + qBittorrent is closed to tray qBittorrent ปิดถาด - + Some files are currently transferring. บางไฟล์กำลังถ่ายโอน - + Are you sure you want to quit qBittorrent? คุณมั่นใจว่าต้องการปิด qBittorrent? - + &No &ไม่ - + &Yes &ใช่ - + &Always Yes &ใช่เสมอ - + Options saved. บันทึกตัวเลือกแล้ว - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime ไม่มีรันไทม์ Python - + qBittorrent Update Available qBittorrent มีการอัพเดตที่พร้อมใช้งาน - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python iจำเป็นต้องใช้เครื่องมือค้นหา แต่เหมือนจะไม่ได้ติดตั้ง. คุณต้องการที่จะติดตั้งตอนนี้? - + Python is required to use the search engine but it does not seem to be installed. จำเป็นต้องใช้ Python เพื่อใช้เครื่องมือค้นหา แต่ดูเหมือนว่าจะไม่ได้ติดตั้งไว้ - - + + Old Python Runtime รันไทม์ Python เก่า - + A new version is available. มีเวอร์ชันใหม่พร้อมใช้งาน - + Do you want to download %1? คุณต้องการที่จะดาวน์โหลด %1? - + Open changelog... เปิด การบันทึกการเปลี่ยนแปลง... - + No updates available. You are already using the latest version. ไม่มีอัพเดตพร้อมใช้งาน คุณกำลังใช้เวอร์ชันล่าสุดอยู่แล้ว - + &Check for Updates &ตรวจสอบการอัพเดต - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused - หยุดชั่วคราว + หยุดชั่วคราว - + Checking for Updates... กำลังตรวจสอบการอัพเดต - + Already checking for program updates in the background ตรวจสอบการอัพเดตโปรแกรมในเบื้องหลังแล้ว - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error ดาวน์โหลดล้มเหลว - Python setup could not be downloaded, reason: %1. -Please install it manually. - ไม่สามารถดาวน์โหลดการตั้งค่า Python ได้, เหตุผล: %1. -กรุณาติดตั้งด้วยตัวเอง. - - - - + + Invalid password รหัสผ่านไม่ถูกต้อง - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long รหัสผ่านต้องมีความยาวอย่างน้อย 3 อักขระ - - - + + + RSS (%1) RSS (%1) - + The password is invalid รหัสผ่านไม่ถูกต้อง - + DL speed: %1 e.g: Download speed: 10 KiB/s ความเร็วดาวน์โหลด: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s ความเร็วส่งต่อ: %1 - + Hide ซ่อน - + Exiting qBittorrent กำลังออก qBittorrent - + Open Torrent Files เปิดไฟล์ทอร์เรนต์ - + Torrent Files ไฟล์ทอร์เรนต์ @@ -5814,47 +5847,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5896,10 +5929,6 @@ Please install it manually. RSS RSS - - Web UI - เว็บ UI - Advanced @@ -5936,10 +5965,6 @@ Please install it manually. Always เสมอ - - Paused torrents only - หยุดทอร์เรนต์ชั่วคราวเท่านั้น - Action on double-click @@ -5950,10 +5975,6 @@ Please install it manually. Downloading torrents: กำลังดาวน์โหลดทอร์เรนต์: - - Start / Stop Torrent - เริ่ม / หยุด ทอร์เรนต์ - @@ -6012,396 +6033,402 @@ Please install it manually. กิบิไบต์ - + + Show free disk space in status bar + + + + Torrent content layout: เลย์เอาต์เนื้อหาทอร์เรนต์: - + Original ต้นฉบับ - + Create subfolder สร้างโฟลเดอร์ย่อย - + Don't create subfolder ไม่ต้องสร้างโฟลเดอร์ย่อย - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue เลื่อนไปลำดับแรก - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder เก็บไฟล์ที่ไม่ได้เลือกไว้ในโฟลเดอร์ ".unwanted" - + Add... เพิ่ม... - + Options.. ตัวเลือก.. - + Remove ลบ - + Email notification &upon download completion การแจ้งเตือนทางอีเมล เมื่อดาวน์โหลดเสร็จสิ้น - + Send test email - + ส่งอีเมลทดสอบ - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: โปรโตคอลการเชื่อมต่อแบบเพียร์: - + Any ใดๆ - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering การกรอง IP - + Schedule &the use of alternative rate limits กำหนดการใช้ การจำกัดอัตราทางเลือก - + From: From start time จาก: - + To: To end time ถึง: - + Find peers on the DHT network ค้นหาเพียร์ในเครือข่าย DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption ยืนยันการเข้ารหัส - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">ข้อมูลเพิ่มเติม</a>) - + Maximum active checking torrents: - + &Torrent Queueing &ทอร์เรนต์กำลังเข้าคิว - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader RSS ผู้อ่าน - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: - - - + + + min minutes นาที - + Seeding Limits จำกัดการส่งต่อ - Pause torrent - หยุดทอร์เรนต์ - - - + Remove torrent ลบทอร์เรนต์ - + Remove torrent and its files ลบทอร์เรนต์และไฟล์ของมัน - + Enable super seeding for torrent เปิดใช้งานการส่งต่อขั้นสูงสำหรับทอร์เรนต์ - + When ratio reaches เมื่ออัตราส่วนถึง - - Stop torrent + + Some functions are unavailable with the chosen proxy type! - + + Note: The password is saved unencrypted + + + + + Stop torrent + หยุดทอร์เรนต์ + + + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - URL: + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS ทอร์เรนต์ดาวน์โหลดอัตโนมัติ - + Enable auto downloading of RSS torrents เปิดใช้งานการดาวน์โหลด RSS ทอร์เรนต์อัตโนมัติ - + Edit auto downloading rules... แก้ไขกฎการดาวน์โหลดอัตโนมัติ ... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: ตัวกรอง: - + Web User Interface (Remote control) Web User Interface (รีโมทคอนโทรล) - + IP address: IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never ไม่เลย - + ban for: แบนสำหรับ: - + Session timeout: หมดเวลา: - + Disabled ปิดการใข้งาน - + Server domains: โดเมนเซิร์ฟเวอร์: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6410,37 +6437,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost ข้ามการตรวจสอบสำหรับไคลเอนต์บน localhost - + Bypass authentication for clients in whitelisted IP subnets ข้ามการตรวจสอบสำหรับไคลเอนต์ในเครือข่ายย่อยของ IP ที่อนุญาตพิเศษ - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6452,7 +6479,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - ค้นหา + ค้นหา @@ -6553,99 +6580,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.ลบล็อกสำรองที่มีอายุมากกว่า: - + Show external IP in status bar - + When adding a torrent เมื่อเพิ่มทอร์เรนต์ - + Bring torrent dialog to the front นำกล่องโต้ตอบทอร์เรนต์มาไว้ข้างหน้า - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled ลบไฟล์ .torrent ที่มีการยกเลิกการเพิ่มด้วย - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management - + Default Torrent Management Mode: โหมดการจัดการทอร์เรนต์เริ่มต้น: - + Manual จัดการเอง - + Automatic อัตโนมัติ - + When Torrent Category changed: เมื่อหมวดหมู่ทอร์เรนต์เปลี่ยนไป: - + Relocate torrent ย้ายตำแหน่งทอร์เรนต์ - + Switch torrent to Manual Mode เปลี่ยนโหมดทอร์เรนต์เป็นแบบจัดการเอง - - + + Relocate affected torrents ย้ายตำแหน่งทอร์เรนต์ที่ได้รับผล - - + + Switch affected torrents to Manual Mode เปลี่ยนทอร์เรนต์ที่ได้รับผลกระทบเป็นแบบจัดการเอง - + Use Subcategories ใช้งานหมวดหมู่ย่อย - + Default Save Path: ตำแหน่งที่บันทึกเริ่มต้น - + Copy .torrent files to: คัดลอกไฟล์ .torrent ไปที่: @@ -6655,22 +6682,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: คัดลอกไฟล์ .torrent เพื่อดาวน์โหลดเสร็จแล้วไปที่: - + Pre-allocate disk space for all files @@ -6765,64 +6792,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.ปี - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6842,50 +6869,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: เงื่อนไขในการหยุดทอร์เรนต์: - - + + None ไม่มี - - + + Metadata received ข้อมูลรับ Metadata - - + + Files checked ไฟล์ตรวจสอบแล้ว - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6902,511 +6929,506 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + To: To receiver ถึง: - + SMTP server: เซิฟเวอร์ SMTP: - + Sender - + From: From sender จาก: - + This server requires a secure connection (SSL) - - + + Authentication การยืนยันตัวตน - - - - + + + + Username: ชื่อผู้ใช้: - - - - + + + + Password: รหัสผ่าน: - + Run external program - + Show console window - + TCP and μTP TCP และ μTP - + Listening Port - + Port used for incoming connections: - + Set to 0 to let your system pick an unused port - + Random สุ่ม - + Use UPnP / NAT-PMP port forwarding from my router ใช้ UPnP / NAT-PMP พอร์ตการส่งต่อ จากเร้าเตอร์ - + Connections Limits จำกัดการเชื่อมต่อ - + Maximum number of connections per torrent: - + Global maximum number of connections: - + Maximum number of upload slots per torrent: - + Global maximum number of upload slots: - + Proxy Server - + Type: ประเภท: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: โฮสต์: - - - + + + Port: พอร์ต: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... - + Apply to trackers - + Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s กิบิไบต์/วินาที - - + + Upload: อัพโหลด: - - + + Download: ดาวน์โหลด: - + Alternative Rate Limits ถ้าเป็นไปได้ให้จำกัดความเร็ว - + Start time เวลาเริ่ม - + End time เวลาจบ - + When: เมื่อไร: - + Every day ทุกวัน - + Weekdays วันธรรมดา - + Weekends วันหยุดสุดสัปดาห์ - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy ความเป็นส่วนตัว - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: วิธีการเข้ารหัส: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode เปิดใช้งานโหมดไม่ระบุตัวตน - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds วินาที - + Torrent inactivity timer: - + then - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: ใบรับรอง: - + Key: คีย์: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password เปลี่ยนรหัสปัจจุบัน - + Files location: ตำแหน่งไฟล์: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security ความปลอดภัย - + Enable clickjacking protection เปิดใช้งานการป้องกันการคลิกแจ็ค - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: บริการ: - + Register ลงทะเบียน - + Domain name: ชื่อโดเมน: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7416,12 +7438,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not เลือก qBittorrent UI ธีมไฟล์ - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7441,183 +7463,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. ไม่มีการตั้งเงื่อนไขการหยุด - + Torrent will stop after metadata is received. ทอเร้นต์หยุดเมื่อได้รับข้อมูล metadata - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: ชื่อทอร์เรนต์ - + %L: Category %L: หมวดหมู่ - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path %D: บันทึกเส้นทาง - + %C: Number of files %C: จำนวนไฟล์ - + %Z: Torrent size (bytes) %Z: ขนาดไฟล์ทอร์เรนต์ (ไบต์) - + %T: Current tracker %T: ตัวติดตามปัจจุบัน - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (ไม่มี) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate ใบรับรอง - + Select certificate เลือกใบรับรอง - + Private key คีย์ส่วนตัว - + Select private key เลือกคีย์ส่วนตัว - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. รหัสผ่าน WebUI ต้องมีความยาวอย่างน้อย 6 อักขระ - + Location Error ตำแหน่งล้มเหลว - - + + Choose export directory เลือกหมวดหมู่การส่งออก - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7627,69 +7649,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: แท็ก (คั่นด้วยเครื่องหมายจุลภาค) - + %I: Info hash v1 (or '-' if unavailable) %I: ข้อมูลแฮช v1 (หรือ '-' หากไม่มี) - + %J: Info hash v2 (or '-' if unavailable) %I: ข้อมูลแฮช v2 (หรือ '-' หากไม่มี) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. โทเรนต์ที่มีข้อมูล Metadata ตั้งแต่แรกจะถูกเพิ่มในสถานะหยุด - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed รีเฟรชสำเร็จ - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number วิเคราะห์ IP ที่ให้มาสำเร็จ : %1 ข้อบังคับถูกนำไปใช้ @@ -7700,18 +7722,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not กำหนดค่า - + Time Error - + The start time and the end time can't be the same. - - + + Length Error @@ -7802,163 +7824,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region - + IP/Address - + Port พอร์ต - + Flags ธง - + Connection การเชื่อมต่อ - + Client i.e.: Client application ลูกค้า - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded กระบวนการ - + Down Speed i.e: Download speed ความเร็วในการดาวน์โหลด - + Up Speed i.e: Upload speed ความเร็วในการอัพโหลด - + Downloaded i.e: total data downloaded ดาวน์โหลด - + Uploaded i.e: total data uploaded อัพโหลด - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. ความเกี่ยวข้อง - + Files i.e. files that are being downloaded right now ไฟล์ - + Column visibility การเปิดเผยคอลัมน์ - + Resize columns ปรับขนาดคอลัมภ์ - + Resize all non-hidden columns to the size of their contents - + Add peers... เพิ่มเพียร์... - - + + Adding peers กำลังเพิ่มเพียร์ - + Some peers cannot be added. Check the Log for details. ไม่สามารถเพิ่มเพียร์บางคนได้. ตรวจสอบบันทึกสำหรับรายละเอียด - + Peers are added to this torrent. เพียร์ถูกเพิ่มเข้ามาในทอร์เรนต์นี้ - - + + Ban peer permanently แบนเพียร์ถาวร - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected ท่านไม่ได้เลือกเพียร์ - + Are you sure you want to permanently ban the selected peers? คุณแน่ใจหรือไม่ว่าต้องการแบนเพียร์ที่เลือกอย่างถาวร? - + Peer "%1" is manually banned เพียร์ "%1" ถูกแบนด้วยตนเอง - + N/A ไม่สามารถใช้ได้ - + Copy IP:port คัดลอก IP:พอร์ต @@ -8238,34 +8260,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent เปิดใช้งานอยู่ - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent เปิดใช้งานอยู่ @@ -8557,153 +8553,124 @@ Those plugins were disabled. บันทึกไว้ใน: - + Never ไม่เลย - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - - + + %1 (%2 this session) %1 (เซสชั่นนี้ %2) - - + + N/A ไม่สามารถใช้ได้ - + Yes - ใช่ + ใช่ - + No - ไม่ + ไม่ - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (ส่งต่อสำหรับ %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (ทั้งหมด %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (เฉลี่ย %2.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - เผยแพร่เว็บใหม่ - - - Remove Web seed - ลบการเผยแพร่เว็บ - - - Copy Web seed URL - คัดลอก URL ส่งต่อเว็บ - - - Edit Web seed URL - แก้ไข URL ส่งต่อเว็บ - - - + Filter files... กรองไฟล์... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled ปิดใช้งานกราฟความเร็วแล้ว - + You can enable it in Advanced Options - New URL seed - New HTTP source - ส่งต่อ URL ใหม่ - - - New URL seed: - ส่งต่อ URL ใหม่: - - - This URL seed is already in the list. - การส่งต่อ URL นี้มีอยู่แล้วในรายการ - - - + Web seed editing แก้ไขการส่งต่อเว็บ - + Web seed URL: URL ส่งต่อเว็บ: @@ -8711,33 +8678,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8745,22 +8712,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8809,12 +8776,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8836,76 +8803,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. ไม่มีโฟลเดอร์หลัก: %1 + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + วินาที + + + + Default + ค่าเริ่มต้น + + RSSWidget @@ -9005,78 +9013,65 @@ Those plugins were disabled. - Edit feed URL... - แก้ไข URL ของหน้าฟีด... - - - - Edit feed URL + Feed options... - + Edit feed URL... + แก้ไข URL ของหน้าฟีด... + + + Please choose a folder name โปรดเลือกชื่อโฟลเดอร์ - + Folder name: ชื่อโฟลเดอร์: - + New folder โฟลเดอร์ใหม่ - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation ยืนยันการลบ - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed - + New feed name: ชื่อฟีดใหม่: - + Rename failed เปลี่ยนชื่อไม่สำเร็จ - + Date: วันที่: - + Feed: - + Author: ผู้เขียน: @@ -9213,10 +9208,6 @@ Those plugins were disabled. i.e: Number of partial sources ผู้รับ - - Search engine - เครื่องมือค้นหา - Filter search results... @@ -9337,104 +9328,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories ทุกประเภท - + Movies ภาพยนตร์ - + TV shows รายการทีวี - + Music เพลง - + Games เกม - + Anime อะนิเมะ - + Software ซอฟต์แวร์ - + Pictures รูปภาพ - + Books หนังสือ - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9459,131 +9450,127 @@ Click the "Search plugins..." button at the bottom right of the window ค้นหาปลั๊กอิน... - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example ตัวอย่าง: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins ปลั๊กอินทั้งหมด - + Only enabled - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab ปิดแท็บ - + Close all tabs ปิดทุกแท็บ - + Select... เลือก... - - + + Search Engine เครื่องมือค้นหา - - + + Please install Python to use the Search Engine. โปรดติดตั้ง Python เพื่อใช้เครื่องมือค้นหา - + Empty search pattern - + Please type a search pattern first - + Stop หยุด - - Search has finished - การค้นหาเสร็จสิ้น - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9981,67 +9968,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: สถานะการเชื่อมต่อ: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 โหนด - + qBittorrent needs to be restarted! ต้องเริ่มต้น qBittorrent ใหม่! - - + + Connection Status: สถานะการเชื่อมต่อ: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. ออฟไลน์. ซึ่งมักจะหมายความว่า qBittorrent ไม่สามารถเชื่อมต่อพอร์ตที่เลือกสำหรับการเชื่อมต่อขาเข้า - + Online ออนไลน์ - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -10069,14 +10066,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) เสร็จสมบูรณ์ (0) - - Resumed (0) - ดำเนินการต่อ (0) - - - Paused (0) - หยุดชั่วคราว (0) - Running (0) @@ -10160,39 +10149,23 @@ Click the "Search plugins..." button at the bottom right of the window Start torrents - + เริ่มทอร์เรนต์ Stop torrents - - - - Paused (%1) - หยุดชั่วคราว (%1) + หยุดทอร์เรนต์ Moving (%1) - - Resume torrents - ดำเนินการทอร์เรนต์ต่อ - - - Pause torrents - หยุดทอร์เรนต์ - Remove torrents ลบทอเร้นต์ - - Resumed (%1) - ดำเนินการต่อ (%1) - Active (%1) @@ -10264,32 +10237,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags ลบแท็กที่ไม่ได้ใช้ - - Resume torrents - ดำเนินการทอร์เรนต์ต่อ - - - Pause torrents - หยุดทอร์เรนต์ - Remove torrents ลบทอเร้นต์ - - New Tag - เท็กใหม่ - Start torrents - + เริ่มทอร์เรนต์ Stop torrents - + หยุดทอร์เรนต์ @@ -10616,17 +10577,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10878,13 +10839,6 @@ Please choose a different name and try again. - - TorrentInfo - - Invalid metadata - ข้อมูลไม่ถูกต้อง - - TorrentOptionsDialog @@ -10922,10 +10876,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - จำกัดความเร็วของทอร์เรนต์ - Download: @@ -10958,26 +10908,6 @@ Please choose a different name and try again. Upload: อัพโหลด: - - Torrent share limits - จำกัดการแชร์ทอร์เรนต์ - - - Use global share limit - ใช้ขีดจำกัดการแชร์ทั่วโลก - - - Set no share limit - ตั้งค่า ไม่จำกัดการแชร์ - - - Set share limit to - ตั้งขีดจำกัดการแชร์เป็น - - - ratio - อัตราส่วน - Disable DHT for this torrent @@ -11019,14 +10949,6 @@ Please choose a different name and try again. Not applicable to private torrents - - No share limit method selected - ไม่ได้เลือกวิธีการจำกัดการแชร์ - - - Please select a limit method first - โปรดเลือกวิธีการจำกัดก่อน - TorrentShareLimitsWidget @@ -11081,12 +11003,12 @@ Please choose a different name and try again. Stop torrent - + หยุดทอร์เรนต์ Remove torrent - ลบทอร์เรนต์ + ลบทอร์เรนต์ @@ -11096,7 +11018,7 @@ Please choose a different name and try again. Enable super seeding for torrent - เปิดใช้งานการส่งต่อขั้นสูงสำหรับทอร์เรนต์ + เปิดใช้งานการส่งต่อขั้นสูงสำหรับทอร์เรนต์ @@ -11111,10 +11033,6 @@ Please choose a different name and try again. Torrent Tags - - New Tag - เท็กใหม่ - Add tag @@ -11149,78 +11067,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer ลำดับความสำคัญต้องเป็นตัวเลข - + Priority is not valid ลำดับความสำคัญไม่ถูกต้อง - + Torrent's metadata has not yet downloaded ยังไม่ได้ดาวน์โหลดข้อมูลเมตาของทอร์เรนต์ - + File IDs must be integers รหัสไอดีต้องเป็นตัวเลข - + File ID is not valid ไฟล์ไอดีไม่ถูกต้อง - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category ไม่สามารถสร้างหมวดหมู่ได้ - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11240,39 +11158,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory ไม่สามารถเขียนไปยังหมวดหมู่ - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name @@ -11416,73 +11334,73 @@ Please choose a different name and try again. ทอร์เรนต์นี้เป็นทอร์เรนต์ส่วนตัว - + Tracker editing - + Tracker URL: - - + + Tracker editing failed - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker - + Copy tracker URL - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns ปรับขนาดคอลัมภ์ - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility การเปิดเผยคอลัมน์ @@ -11565,20 +11483,12 @@ Please choose a different name and try again. Start torrents - + เริ่มทอร์เรนต์ Stop torrents - - - - Resume torrents - ดำเนินการทอร์เรนต์ต่อ - - - Pause torrents - หยุดทอร์เรนต์ + หยุดทอร์เรนต์ @@ -11702,10 +11612,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. ตรวจสอบข้อมูลต่อ - - Paused - หยุดชั่วคราว - Completed @@ -11746,11 +11652,6 @@ Please choose a different name and try again. % Done กระบวนการ - - Status - Torrent status (e.g. downloading, seeding, paused) - สถานะ - Stopped @@ -11760,7 +11661,7 @@ Please choose a different name and try again. Status Torrent status (e.g. downloading, seeding, stopped) - สถานะ + สถานะ @@ -11876,22 +11777,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - ใช้เวลาไป + ใช้เวลาไป Yes - ใช่ + ใช่ No - ไม่ - - - Time Active - Time (duration) the torrent is active (not paused) - ใช้เวลาไป + ไม่ @@ -11993,349 +11889,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility การเปิดเผยคอลัมน์ - + Recheck confirmation ตรวจสอบการยืนยันอีกครั้ง - + Are you sure you want to recheck the selected torrent(s)? คุณแน่ใจใช่ไหมว่าต้องการจะตรวจสอบไฟล์ Torrent ที่เลือก (s)? - + Rename เปลี่ยนชื่อ - + New name: ชื่อใหม่: - + Choose save path เลือกบันทึกเส้นทาง - Confirm pause - ยืนยันหยุดชั่วคราว - - - Would you like to pause all torrents? - ต้องการหยุดชั่วคราวทุกทอเร้นต์? - - - Confirm resume - ยืนยันดำเนินการต่อ - - - Would you like to resume all torrents? - ต้องการดำเนินการต่อทุกทอเร้นต์? - - - + Unable to preview ไม่สามารถดูตัวอย่างได้ - + The selected torrent "%1" does not contain previewable files ทอร์เรนต์ที่เลือก "%1" ไม่มีไฟล์ที่ดูตัวอย่างได้ - + Resize columns ปรับขนาดคอลัมภ์ - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Add Tags - เพิ่มแท็ก - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags ลบแท็กทั้งหมด - + Remove all tags from selected torrents? ลบแท็กทั้งหมดออกจากทอร์เรนต์ที่เลือกหรือไม่? - + Comma-separated tags: แท็กที่คั่นด้วยจุลภาค: - + Invalid tag ชื่อแท็กไม่ถูกต้อง - + Tag name: '%1' is invalid ชื่อแท็ก: '%1' is ไม่ถูกต้อง - &Resume - Resume/start the torrent - ดำเนินการต่อ - - - &Pause - Pause the torrent - หยุดชั่วคราว - - - + Pre&view file... - + Torrent &options... ตัวเลือกทอเร้นต์ - + 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 loc&ation... ตั้งค่าตำแหน่ง - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID เลขรหัสทอเร้นต์ - + &Comment - + &Name ชื่อ - + Info &hash v1 - + Info h&ash v2 - + Re&name... เปลี่ยนชื่อ - + Edit trac&kers... - + E&xport .torrent... ส่งออกทอเร้นต์ - + Categor&y หมวด - + &New... New category... สร้างใหม่ - + &Reset Reset category เริ่มใหม่ - + Ta&gs แ&ท็ก - + &Add... Add / assign multiple tags... เ&พิ่ม - + &Remove All Remove all tags ลบทั้ง&หมด - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue คิ&ว - + &Copy &คัดลอก - + Exported torrent is not necessarily the same as the imported - + Download in sequential order ดาวน์โหลดตามลำดับ - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent &ลบ - + Download first and last pieces first ดาวน์โหลดชิ้นแรกและชิ้นสุดท้ายก่อน - + Automatic Torrent Management การจัดการทอร์เรนต์อัตโนมัติ - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode โหลดส่งต่อข้อมูลขั้นสูง @@ -12467,32 +12333,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12584,52 +12450,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. ประเภทไฟล์ที่ยอมรับไม่ได้, อนุญาตเฉพาะไฟล์ปกติเท่านั้น - + Symlinks inside alternative UI folder are forbidden. ไม่อนุญาต Symlinks ภายในโฟลเดอร์ UI อื่น - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12687,7 +12553,7 @@ Please choose a different name and try again. Unknown error - ไม่สามารถระบุข้อผิดพลาด + ไม่สามารถระบุข้อผิดพลาด diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index f3803b19d..56c899892 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -170,10 +170,6 @@ Never show again Bir daha asla gösterme - - Torrent settings - Torrent ayarları - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrent seçenekleri @@ -235,25 +231,25 @@ Durdurma koşulu: - - + + None Yok - - + + Metadata received Üstveriler alındı - + Torrents that have metadata initially will be added as stopped. Başlangıçta üstverileri olan torrent'ler durduruldu olarak eklenecektir. - + Files checked Dosyalar denetlendi @@ -368,112 +364,112 @@ .torrent dosyası olarak kaydet... - + I/O Error G/Ç Hatası - + Not Available This comment is unavailable Mevcut Değil - + Not Available This date is unavailable Mevcut Değil - + Not available Mevcut değil - + Magnet link Magnet bağlantısı - + Retrieving metadata... Üstveri alınıyor... - - + + Choose save path Kayıt yolunu seçin - + No stop condition is set. Ayarlanan durdurma koşulu yok. - + Torrent will stop after metadata is received. Torrent, üstveriler alındıktan sonra duracak. - + Torrent will stop after files are initially checked. Torrent, dosyalar başlangıçta denetlendikten sonra duracak. - + This will also download metadata if it wasn't there initially. Bu, başlangıçta orada değilse, üstverileri de indirecek. - + N/A Yok - + %1 (Free space on disk: %2) %1 (Diskteki boş alan: %2) - + Not available This size is unavailable. Mevcut değil - + Torrent file (*%1) Torrent dosyası (*%1) - + Save as torrent file Torrent dosyası olarak kaydet - + Couldn't export torrent metadata file '%1'. Reason: %2. '%1' torrent üstveri dosyası dışa aktarılamadı. Sebep: %2. - + Cannot create v2 torrent until its data is fully downloaded. Verileri tamamen indirilinceye kadar v2 torrent oluşturulamaz. - + Filter files... Dosyaları süzün... - + Parsing metadata... Üstveri ayrıştırılıyor... - + Metadata retrieval complete Üstveri alımı tamamlandı @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Torrent indiriliyor... Kaynak: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Torrent'i ekleme başarısız. Kaynak: "%1". Sebep: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Kopya bir torrent ekleme girişimi algılandı. Kaynak: %1. Varolan torrent: %2. Sonuç: %3 + Kopya bir torrent ekleme girişimi algılandı. Kaynak: %1. Varolan torrent: %2. Sonuç: %3 - + Merging of trackers is disabled İzleyicilerin birleştirilmesi etkisizleştirildi - + Trackers cannot be merged because it is a private torrent İzleyiciler özel bir torrent olduğundan birleştirilemez - + Trackers are merged from new source İzleyiciler yeni kaynaktan birleştirildi + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Tamamlanmada torrent'leri yeniden denetle - - + + ms milliseconds ms - + Setting Ayar - + Value Value set for this setting Değer - + (disabled) (etkisizleştirildi) - + (auto) (otomatik) - - + + min minutes dak - + All addresses Tüm adresler - + qBittorrent Section qBittorrent Bölümü - - + + Open documentation Belgeleri aç - + All IPv4 addresses Tüm IPv4 adresleri - + All IPv6 addresses Tüm IPv6 adresleri - + libtorrent Section libtorrent Bölümü - + Fastresume files Hızlı devam dosyaları - + SQLite database (experimental) SQLite veritabanı (deneysel) - + Resume data storage type (requires restart) Devam verisi depolama türü (yeniden başlatma gerektirir) - + Normal Normal - + Below normal Normalin altında - + Medium Orta - + Low Düşük - + Very low Çok düşük - + Physical memory (RAM) usage limit Fiziksel bellek (RAM) kullanım sınırı - + Asynchronous I/O threads Eşzamansız G/Ç iş parçaları - + Hashing threads Adreslenen iş parçacığı - + File pool size Dosya havuzu boyutu - + Outstanding memory when checking torrents Torrent'ler denetlenirken bekleyen bellek - + Disk cache Disk önbelleği - - - - + + + + + s seconds s - + Disk cache expiry interval Disk önbelleği bitiş aralığı - + Disk queue size Disk kuyruk boyutu - - + + Enable OS cache İS önbelleğini etkinleştir - + Coalesce reads & writes Okuma ve yazmaları birleştir - + Use piece extent affinity Parça kapsam benzeşimi kullan - + Send upload piece suggestions Gönderme parçası önerileri gönder - - - - - + + + + + 0 (disabled) 0 (etkisizleştirildi) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Devam etme verisi kaydetme aralığı [0: etkisizleştirildi] - + Outgoing ports (Min) [0: disabled] Giden bağlantı noktaları (En az) [0: etkisizleştirildi] - + Outgoing ports (Max) [0: disabled] Giden bağlantı noktaları (En fazla) [0: etkisizleştirildi] - + 0 (permanent lease) 0 (kalıcı kiralama) - + UPnP lease duration [0: permanent lease] UPnP kiralama süresi [0: kalıcı kiralama] - + Stop tracker timeout [0: disabled] İzleyiciyi durdurma zaman aşımı [0: etkisizleştirildi] - + Notification timeout [0: infinite, -1: system default] Bildirim zaman aşımı [0: sınırsız, -1: sistem varsayılanı] - + Maximum outstanding requests to a single peer Tek bir kişi için bekleyen en fazla istek sayısı - - - - - + + + + + KiB KiB - + (infinite) (sonsuz) - + (system default) (sistem varsayılanı) - + Delete files permanently - + Dosyaları kalıcı olarak sil - + Move files to trash (if possible) - + Dosyaları çöp kutusuna taşı (mümkünse) - + Torrent content removing mode - + Torrent içeriğini kaldırma kipi - + This option is less effective on Linux Bu seçenek Linux'ta daha az etkilidir - + Process memory priority İşlem belleği önceliği - + Bdecode depth limit Bdecode derinlik sınırı - + Bdecode token limit Bdecode belirteç sınırı - + Default Varsayılan - + Memory mapped files Bellek eşlemeli dosyalar - + POSIX-compliant POSIX uyumlu - + Simple pread/pwrite - + Basit p-okuma/p-yazma - + Disk IO type (requires restart) Disk G/Ç türü (yeniden başlatma gerektirir) - - + + Disable OS cache İS önbelleğini etkisizleştir - + Disk IO read mode Disk G/Ç okuma kipi - + Write-through Baştan sona yaz - + Disk IO write mode Disk G/Ç yazma kipi - + Send buffer watermark Gönderme arabelleği eşiği - + Send buffer low watermark Gönderme arabelleği alt eşiği - + Send buffer watermark factor Gönderme arabelleği eşiği etkeni - + Outgoing connections per second Saniyede giden bağlantı: - - + + 0 (system default) 0 (sistem varsayılanı) - + Socket send buffer size [0: system default] Soket gönderme arabelleği boyutu [0: sistem varsayılanı] - + Socket receive buffer size [0: system default] Soket alma arabellek boyutu [0: sistem varsayılanı] - + Socket backlog size Soket biriktirme listesi boyutu - + Save statistics interval [0: disabled] How often the statistics file is saved. - + İstatistikleri kaydetme aralığı [0: etkisizleştirildi] - + .torrent file size limit .torrent dosya boyutu sınırı - + Type of service (ToS) for connections to peers Kişilere bağlantılar için hizmet türü (ToS) - + Prefer TCP TCP tercih et - + Peer proportional (throttles TCP) Kişi orantılı (TCP'yi kısıtlar) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Uluslararasılaştırılmış etki alanı adını (IDN) destekle - + Allow multiple connections from the same IP address Aynı IP adresinden çoklu bağlantılara izin ver - + Validate HTTPS tracker certificates HTTPS izleyici sertifikalarını doğrula - + Server-side request forgery (SSRF) mitigation Sunucu tarafı istek sahteciliği (SSRF) azaltma - + Disallow connection to peers on privileged ports Yetkili bağlantı noktalarında kişilerle bağlantıya izin verme - + It appends the text to the window title to help distinguish qBittorent instances QBittorent örneklerini ayırt etmeye yardımcı olmak için metni pencere başlığına ekler - + Customize application instance name Uygulama örneği adını özelleştir - + It controls the internal state update interval which in turn will affect UI updates Arayüz güncellemelerini etkileyecek olan dahili durum güncelleme aralığını denetler. - + Refresh interval Yenileme aralığı - + Resolve peer host names Kişi anamakine adlarını çöz - + IP address reported to trackers (requires restart) İzleyicilere bildirilen IP adresi (yeniden başlatma gerektirir) - + Port reported to trackers (requires restart) [0: listening port] - + İzleyicilere bildirilen bağlantı noktası (yeniden başlatma gerektirir) [0: dinlenen bağ. noktası] - + Reannounce to all trackers when IP or port changed IP veya bağlantı noktası değiştiğinde tüm izleyicilere yeniden duyur - + Enable icons in menus Menülerde simgeleri etkinleştir - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Gömülü izleyici için bağlantı noktası yönlendirmeyi etkinleştir - + Enable quarantine for downloaded files İndirilen dosyalar için karantinayı etkinleştir - + Enable Mark-of-the-Web (MOTW) for downloaded files İndirilen dosyalar için Web İşaretini (MOTW) etkinleştir - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Sertifika doğrulamayı ve torrent dışı protokol etkinliklerini etkiler (örn. RSS bildirimleri, program güncellemeleri, torrent dosyaları, geoip veritabanı vb.) - + Ignore SSL errors - + SSL hatalarını yoksay - + (Auto detect if empty) (Boşsa otomatik algıla) - + Python executable path (may require restart) Python çalıştırılabilir dosya yolu (yeniden başlatma gerektirebilir) - + Start BitTorrent session in paused state - + BitTorrent oturumunu duraklatıldı durumunda başlat - + sec seconds - san + san - + -1 (unlimited) - + -1 (sınırsız) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent oturumunu kapatma zaman aşımı [-1: sınırsız] - + Confirm removal of tracker from all torrents İzleyicinin tüm torrent'lerden kaldırılmasını onaylayın - + Peer turnover disconnect percentage Kişi devretme bağlantısını kesme yüzdesi - + Peer turnover threshold percentage Kişi devretme eşiği yüzdesi - + Peer turnover disconnect interval Kişi devretme bağlantısını kesme aralığı - + Resets to default if empty Boşsa varsayılana sıfırlanır - + DHT bootstrap nodes DHT önyükleme düğümleri - + I2P inbound quantity I2P gelen miktarı - + I2P outbound quantity I2P giden miktar - + I2P inbound length I2P gelen uzunluğu - + I2P outbound length I2P giden uzunluğu - + Display notifications Bildirimleri görüntüle - + Display notifications for added torrents Eklenen torrent'ler için bildirimleri görüntüle - + Download tracker's favicon İzleyicinin favicon'unu indir - + Save path history length Kaydetme yolu geçmişi uzunluğu - + Enable speed graphs Hız çizelgesini etkinleştir - + Fixed slots Sabit yuvalar - + Upload rate based Gönderme oranına dayalı - + Upload slots behavior Gönderme yuvaları davranışı - + Round-robin Dönüşümlü - + Fastest upload En hızlı gönderme - + Anti-leech Sömürü önleyici - + Upload choking algorithm Gönderme kısma algoritması - + Confirm torrent recheck Torrent'i yeniden denetlemeyi onayla - + Confirm removal of all tags Tüm etiketlerin kaldırılmasını onayla - + Always announce to all trackers in a tier Bir katmandaki tüm izleyicilere her zaman duyur - + Always announce to all tiers Tüm katmanlara her zaman duyur - + Any interface i.e. Any network interface Herhangi bir arayüz - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP karışık kip algoritması - + Resolve peer countries Kişi ülkelerini çöz - + Network interface Ağ arayüzü - + Optional IP address to bind to Bağlamak için isteğe bağlı IP adresi - + Max concurrent HTTP announces - En fazla eşzamanlı HTTP duyurusu + En fazla eşzamanlı HTTP duyurma - + Enable embedded tracker Gömülü izleyiciyi etkinleştir - + Embedded tracker port Gömülü izleyici bağlantı noktası @@ -1382,142 +1393,142 @@ Invalid directory path - + Geçersiz dizin yolu Directory does not exist - + Dizin mevcut değil Invalid mode, allowed values: %1 - + Geçersiz kip, izin verilen değerler: %1 cookies must be array - + tanımlama bilgileri dizilim olmak zorundadır Application - + Running in portable mode. Auto detected profile folder at: %1 Taşınabilir kipte çalışıyor. Otomatik algılanan profil klasörü: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Gereksiz komut satırı işareti algılandı: "%1". Taşınabilir kipi göreceli hızlı devam anlamına gelir. - + Using config directory: %1 Kullanılan yapılandırma dizini: %1 - + Torrent name: %1 Torrent adı: %1 - + Torrent size: %1 Torrent boyutu: %1 - + Save path: %1 Kaydetme yolu: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent %1 içinde indirildi. - - + + Thank you for using qBittorrent. qBittorrent'i kullandığınız için teşekkür ederiz. - + Torrent: %1, sending mail notification Torrent: %1, posta bildirimi gönderiliyor - + Add torrent failed Torrent ekleme başarısız oldu - + Couldn't add torrent '%1', reason: %2. Torrent '%1' eklenemedi, sebep: %2. - + The WebUI administrator username is: %1 Web Arayüzü yönetici kullanıcı adı: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Web Arayüzü yönetici parolası ayarlanmadı. Bu oturum için geçici bir parola verildi: %1 - + You should set your own password in program preferences. Program tercihlerinde kendi parolanızı belirlemelisiniz. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Web Arayüzü etkisizleştirildi! Web Arayüzü'nü etkinleştirmek için yapılandırma dosyasını el ile düzenleyin. - + Running external program. Torrent: "%1". Command: `%2` Harici program çalıştırılıyor. Torrent: "%1". Komut: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Harici program çalıştırma başarısız. Torrent: "%1". Komut: `%2` - + Torrent "%1" has finished downloading Torrent "%1" dosyasının indirilmesi tamamlandı. - + WebUI will be started shortly after internal preparations. Please wait... Web Arayüzü, iç hazırlıklardan kısa bir süre sonra başlatılacaktır. Lütfen bekleyin... - - + + Loading torrents... Torrent'ler yükleniyor... - + E&xit Çı&kış - + I/O Error i.e: Input/Output Error G/Ç Hatası - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Sebep: %2 - + Torrent added Torrent eklendi - + '%1' was added. e.g: xxx.avi was added. '%1' eklendi. - + Download completed İndirme tamamlandı - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 başladı. İşlem kimliği: %2 - + This is a test email. - + Bu bir deneme e-postasıdır. - + Test email - + E-postayı dene - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' dosyasının indirilmesi tamamlandı. - + Information Bilgi - + To fix the error, you may need to edit the config file manually. Hatayı düzeltmek için yapılandırma dosyasını el ile düzenlemeniz gerekebilir. - + To control qBittorrent, access the WebUI at: %1 qBittorrent'i denetlemek için şu Web Arayüzü adresine erişin: %1 - + Exit Çıkış - + Recursive download confirmation Tekrarlayan indirme onayı - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? '%1' torrent'i, .torrent dosyaları içeriyor, bunların indirilmeleri ile işleme devam etmek istiyor musunuz? - + Never Asla - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Torrent içinde tekrarlayan indirme .torrent dosyası. Kaynak torrent: "%1". Dosya: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Fiziksel bellek (RAM) kullanım sınırını ayarlama başarısız. Hata kodu: %1. Hata iletisi: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Fiziksel bellek (RAM) kullanım sabit sınırını ayarlama başarısız. İstenen boyut: %1. Sistem sabit sınırı: %2. Hata kodu: %3. Hata iletisi: "%4" - + qBittorrent termination initiated qBittorrent sonlandırması başlatıldı - + qBittorrent is shutting down... qBittorrent kapatılıyor... - + Saving torrent progress... Torrent ilerlemesi kaydediliyor... - + qBittorrent is now ready to exit qBittorrent artık çıkmaya hazır @@ -1766,263 +1777,263 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d &Dışa Aktar... - + Matches articles based on episode filter. Bölüm süzgecine dayalı eşleşen makaleler. - + Example: Örnek: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match 2, 5, 8 ila 15, 30 arasıyla ve birinci sezonun ileriki bölümleriyle eşleşecek - + Episode filter rules: Bölüm süzgeç kuralları: - + Season number is a mandatory non-zero value Sezon numarası mecburen sıfırdan farklı bir değerdir - + Filter must end with semicolon Süzgeç noktalı virgül ile bitmek zorundadır - + Three range types for episodes are supported: Bölümler için üç aralık türü desteklenir: - + Single number: <b>1x25;</b> matches episode 25 of season one Tek numara: <b>1x25;</b> birinci sezonun 25. bölümüyle eşleşir - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normal aralık: <b>1x25-40;</b> birinci sezonun 25 ila 40 arası bölümleriyle eşleşir - + Episode number is a mandatory positive value Bölüm numarası mecburen pozitif bir değerdir - + Rules Kurallar - + Rules (legacy) Kurallar (eski) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Sonsuz aralık: <b>1x25-;</b> birinci sezonun 25 ve sonraki bölümleri ve sonraki sezonların tüm bölümleri ile eşleşir - + Last Match: %1 days ago Son Eşleşme: %1 gün önce - + Last Match: Unknown Son Eşleşme: Bilinmiyor - + New rule name Yeni kural adı - + Please type the name of the new download rule. Lütfen yeni indirme kuralı adını yazın. - - + + Rule name conflict Kural adı çakışması - - + + A rule with this name already exists, please choose another name. Bu isimde bir kural zaten var, lütfen başka bir isim seçin. - + Are you sure you want to remove the download rule named '%1'? '%1' adındaki indirme kuralını kaldırmak istediğinize emin misiniz? - + Are you sure you want to remove the selected download rules? Seçilen indirme kurallarını kaldırmak istediğinize emin misiniz? - + Rule deletion confirmation Kural silme onayı - + Invalid action Geçersiz eylem - + The list is empty, there is nothing to export. Liste boş, dışa aktarmak için hiçbir şey yok. - + Export RSS rules RSS kurallarını dışa aktar - + I/O Error G/Ç Hatası - + Failed to create the destination file. Reason: %1 Hedef dosya oluşturma başarısız. Sebep: %1 - + Import RSS rules RSS kurallarını içe aktar - + Failed to import the selected rules file. Reason: %1 Seçilen kurallar dosyasını içe aktarma başarısız. Sebep: %1 - + Add new rule... Yeni kural ekle... - + Delete rule Kuralı sil - + Rename rule... Kuralı yeniden adlandır... - + Delete selected rules Seçilen kuralları sil - + Clear downloaded episodes... İndirilmiş bölümleri temizle... - + Rule renaming Kural yeniden adlandırma - + Please type the new rule name Lütfen yeni kural adını yazın - + Clear downloaded episodes İndirilmiş bölümleri temizle - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Seçilen kural için indirilmiş bölümlerin listesini temizlemek istediğinize emin misiniz? - + Regex mode: use Perl-compatible regular expressions Regex kipi: Perl uyumlu düzenli ifadeleri kullanın - - + + Position %1: %2 Konum %1: %2 - + Wildcard mode: you can use Joker karakter kipi: - - + + Import error İçe aktarma hatası - + Failed to read the file. %1 Dosyayı okuma başarısız. %1 - + ? to match any single character herhangi bir tek karakterle eşleşmesi için ? kullanabilirsiniz - + * to match zero or more of any characters karakterden daha fazlasıyla eşleşmesi ya da hiç eşleşmemesi için * kullanabilirsiniz - + Whitespaces count as AND operators (all words, any order) VE işleticileri olarak boşluk sayısı kullanabilirsiniz (tüm kelimeler, herhangi bir sırada) - + | is used as OR operator | karakteri VEYA işleticisi olarak kullanılır - + If word order is important use * instead of whitespace. Eğer kelime sırası önemliyse boşluk yerine * kullanın. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Boş bir %1 ibaresi olan ifade (örn. %2) - + will match all articles. tüm makalelerle eşleşecek. - + will exclude all articles. tüm makaleleri hariç tutacak. @@ -2074,28 +2085,38 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Devam verileri ayrıştırılamıyor: geçersiz biçim - - + + Cannot parse torrent info: %1 Torrent bilgisi ayrıştırılamıyor: %1 - + Cannot parse torrent info: invalid format Torrent bilgisi ayrıştırılamıyor: geçersiz biçim - + Mismatching info-hash detected in resume data Devam etme verilerinde uyumsuz bilgi adreslemesi algılandı - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. '%1' konumuna torrent üstverileri kaydedilemedi. Hata: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. '%1' konumuna torrent devam verileri kaydedilemedi. Hata: %2. @@ -2106,16 +2127,17 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d + Cannot parse resume data: %1 Devam verileri ayrıştırılamıyor: %1 - + Resume data is invalid: neither metadata nor info-hash was found Devam verileri geçersiz: ne üstveriler ne de bilgi adreslemesi bulundu - + Couldn't save data to '%1'. Error: %2 '%1' konumuna veriler kaydedilemedi. Hata: %2 @@ -2123,38 +2145,60 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d BitTorrent::DBResumeDataStorage - + Not found. Bulunamadı. - + Couldn't load resume data of torrent '%1'. Error: %2 '%1' torrent'inin devam verileri yüklenemedi. Hata: %2 - - + + Database is corrupted. Veritabanı bozuk. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Önceden Yazma Günlüğü (WAL) günlük kaydı kipi etkinleştirilemedi. Hata: %1. - + Couldn't obtain query result. Sorgu sonucu elde edilemedi. - + WAL mode is probably unsupported due to filesystem limitations. WAL kipi muhtemelen dosya sistemi sınırlamalarından dolayı desteklenmiyor. - + + + Cannot parse resume data: %1 + Devam verileri ayrıştırılamıyor: %1 + + + + + Cannot parse torrent info: %1 + Torrent bilgisi ayrıştırılamıyor: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 İşlem başlatılamadı. Hata: %1 @@ -2162,22 +2206,22 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Torrent üstverileri kaydedilemedi. Hata: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 '%1' torrent'i için devam verileri depolanamadı. Hata: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 '%1' torrent'inin devam verileri silinemedi. Hata: %2 - + Couldn't store torrents queue positions. Error: %1 Torrent'lerin kuyruk konumları depolanamadı. Hata: %1 @@ -2185,530 +2229,507 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Dağıtılan Adresleme Tablosu (DHT) desteği: %1 - - - - - - - - - + + + + + + + + + ON AÇIK - - - - - - - - - + + + + + + + + + OFF KAPALI - - + + Local Peer Discovery support: %1 Yerel Kişi Keşfi desteği: %1 - + Restart is required to toggle Peer Exchange (PeX) support Kişi Takası (PeX) desteğini değiştirmek için yeniden başlatma gerekir - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrent'i devam ettirme başarısız. Torrent: "%1". Sebep: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrent'i devam ettirme başarısız: tutarsız torrent kimliği algılandı. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Tutarsız veriler algılandı: yapılandırma dosyasında kategori eksik. Kategori kurtarılacak ancak ayarları varsayılana sıfırlanacaktır. Torrent: "%1". Kategori: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Tutarsız veriler algılandı: geçersiz kategori. Torrent: "%1". Kategori: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Kurtarılan kategorinin kaydetme yolları ile torrent'in şu anki kaydetme yolu arasında uyuşmazlık algılandı. Torrent şimdi Elle kipine geçirildi. Torrent: "%1". Kategori: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Tutarsız veriler algılandı: yapılandırma dosyasında etiket eksik. Etiket kurtarılacaktır. Torrent: "%1". Etiket: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Tutarsız veriler algılandı: geçersiz etiket. Torrent: "%1". Etiket: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Sistem uyandırma olayı algılandı. Tüm izleyicilere yeniden duyuruluyor... - + Peer ID: "%1" Kişi Kimliği: "%1" - + HTTP User-Agent: "%1" - HTTP Kullanıcı Tanıtıcısı: "%1" + HTTP Kullanıcı Aracısı: "%1" - + Peer Exchange (PeX) support: %1 Kişi Takası (PeX) desteği: %1 - - + + Anonymous mode: %1 İsimsiz kipi: %1 - - + + Encryption support: %1 Şifreleme desteği: %1 - - + + FORCED ZORLANDI - + Could not find GUID of network interface. Interface: "%1" Ağ arayüzünün GUID'si bulunamadı. Arayüz: "%1" - + Trying to listen on the following list of IP addresses: "%1" Şu IP adresleri listesi dinlenmeye çalışılıyor: "%1" - + Torrent reached the share ratio limit. Torrent paylaşım oranı sınırına ulaştı. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Torrent kaldırıldı. - - - Removed torrent and deleted its content. - Torrent kaldırıldı ve içeriği silindi. - - - Torrent paused. - Torrent duraklatıldı. - - - + Super seeding enabled. Süper gönderim etkinleştirildi. - + Torrent reached the seeding time limit. Torrent gönderim süresi sınırına ulaştı. - + Torrent reached the inactive seeding time limit. Torrent etkin olmayan gönderim süresi sınırına ulaştı. - + Failed to load torrent. Reason: "%1" Torrent'i yükleme başarısız. Sebep: "%1" - + I2P error. Message: "%1". I2P hatası. İleti: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP desteği: AÇIK - + Saving resume data completed. - + Devam etme verisinin kaydedilmesi tamamlandı. - + BitTorrent session successfully finished. - + BitTorrent oturumu başarılı olarak tamamlandı. - + Session shutdown timed out. - + Oturum kapatma zaman aşımına uğradı. - + Removing torrent. - + Torrent kaldırılıyor. - + Removing torrent and deleting its content. - + Torrent kaldırılıyor ve içeriği siliniyor. - + Torrent stopped. - + Torrent durduruldu. - + Torrent content removed. Torrent: "%1" - + Torrent içeriği kaldırıldı. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent içeriğini kaldırma başarısız. Torrent: "%1". Hata: "%2" - + Torrent removed. Torrent: "%1" - + Torrent kaldırıldı. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Kopya bir torrent ekleme girişimi algılandı. Varolan torrent: %1. Sonuç: %2 - + Merging of trackers is disabled - İzleyicilerin birleştirilmesi etkisizleştirildi + İzleyicilerin birleştirilmesi etkisizleştirildi - + Trackers cannot be merged because it is a private torrent - İzleyiciler özel bir torrent olduğundan birleştirilemez + İzleyiciler özel bir torrent olduğundan birleştirilemez - + Trackers are merged from new source - İzleyiciler yeni kaynaktan birleştirildi + İzleyiciler yeni kaynaktan birleştirildi - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP desteği: KAPALI - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Torrent'i dışa aktarma başarısız. Torrent: "%1". Hedef: "%2". Sebep: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Devam etme verilerini kaydetme iptal edildi. Bekleyen torrent sayısı: %1 - + The configured network address is invalid. Address: "%1" Yapılandırılan ağ adresi geçersiz. Adres: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Dinlenecek yapılandırılmış ağ adresini bulma başarısız. Adres: "%1" - + The configured network interface is invalid. Interface: "%1" Yapılandırılan ağ arayüzü geçersiz. Arayüz: "%1" - + Tracker list updated - + İzleyici listesi güncellendi - + Failed to update tracker list. Reason: "%1" - + İzleyici listesini güncelleme başarısız. Sebep: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Yasaklı IP adresleri listesi uygulanırken geçersiz IP adresi reddedildi. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Torrent'e izleyici eklendi. Torrent: "%1". İzleyici: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Torrent'ten izleyici kaldırıldı. Torrent: "%1". İzleyici: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Torrent'e URL gönderimi eklendi. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Torrent'ten URL gönderimi kaldırıldı. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Parça dosyasını kaldırma başarısız. Torrent: "%1". Sebep: "%2". - Torrent paused. Torrent: "%1" - Torrent duraklatıldı. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent devam ettirildi. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent indirme tamamlandı. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrent'i taşıma iptal edildi. Torrent: "%1". Kaynak: "%2". Hedef: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent durduruldu. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Torrent'i taşımayı kuyruğa alma başarısız. Torrent: "%1". Kaynak: "%2". Hedef: "%3". Sebep: torrent şu anda hedefe taşınıyor - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Torrent'i taşımayı kuyruğa alma başarısız. Torrent: "%1". Kaynak: "%2". Hedef: "%3". Sebep: her iki yol da aynı konumu işaret ediyor - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrent'i taşıma kuyruğa alındı. Torrent: "%1". Kaynak: "%2". Hedef: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Torrent'i taşıma başladı. Torrent: "%1". Hedef: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Kategorilerin yapılandırmasını kaydetme başarısız. Dosya: "%1". Hata: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Kategorilerin yapılandırmasını ayrıştırma başarısız. Dosya: "%1". Hata: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 IP süzgeç dosyası başarılı olarak ayrıştırıldı. Uygulanan kural sayısı: %1 - + Failed to parse the IP filter file IP süzgeci dosyasını ayrıştırma başarısız - + Restored torrent. Torrent: "%1" Torrent geri yüklendi. Torrent: "%1" - + Added new torrent. Torrent: "%1" Yeni torrent eklendi. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent hata verdi. Torrent: "%1". Hata: "%2" - Removed torrent. Torrent: "%1" - Torrent kaldırıldı. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Torrent kaldırıldı ve içeriği silindi. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent'te SSL parametreleri eksik. Torrent: "%1". İleti: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Dosya hata uyarısı. Torrent: "%1". Dosya: "%2". Sebep: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP bağlantı noktası eşleme başarısız oldu. İleti: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP bağlantı noktası eşleme başarılı oldu. İleti: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP süzgeci - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). süzülmüş bağlantı noktası (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). yetkili bağlantı noktası (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL gönderim bağlantısı başarısız oldu. Torrent: "%1". URL: "%2". Hata: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent oturumu ciddi bir hatayla karşılaştı. Sebep: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proksi hatası. Adres: %1. İleti: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 karışık kip kısıtlamaları - + Failed to load Categories. %1 Kategorileri yükleme başarısız. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Kategorilerin yapılandırmasını yükleme başarısız. Dosya: "%1". Hata: "Geçersiz veri biçimi" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Torrent kaldırıldı ancak içeriğini ve/veya parça dosyasını silme başarısız. Torrent: "%1". Hata: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 etkisizleştirildi - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 etkisizleştirildi - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL gönderim DNS araması başarısız oldu. Torrent: "%1", URL: "%2", Hata: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - URL gönderiminden hata iletisi alındı. Torrent: "%1", URL: "%2", İleti: "%3" + URL gönderiminden hata iletisi alındı. Torrent: "%1". URL: "%2". İleti: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" IP üzerinde başarılı olarak dinleniyor. IP: "%1". Bağlantı Noktası: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" IP üzerinde dinleme başarısız. IP: "%1", Bağlantı Noktası: "%2/%3". Sebep: "%4" - + Detected external IP. IP: "%1" Dış IP algılandı. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Hata: İç uyarı kuyruğu doldu ve uyarılar bırakıldı, performansın düştüğünü görebilirsiniz. Bırakılan uyarı türü: "%1". İleti: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent başarılı olarak taşındı. Torrent: "%1". Hedef: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrent'i taşıma başarısız. Torrent: "%1". Kaynak: "%2". Hedef: "%3". Sebep: "%4" @@ -2758,47 +2779,47 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Dosyaya yazılamadı. Sebep: "%1". Torrent artık "sadece gönderme" kipinde. - + Download first and last piece first: %1, torrent: '%2' Önce ilk ve son parçayı indir: %1, torrent: '%2' - + On Açık - + Off Kapalı - + Failed to reload torrent. Torrent: %1. Reason: %2 Torrent'i yeniden yükleme başarısız. Torrent: %1. Sebep: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Devam etme verileri oluşturma başarısız oldu. Torrent: "%1". Sebep: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrent'i geri yükleme başarısız. Dosyalar muhtemelen taşındı veya depolama erişilebilir değil. Torrent: "%1". Sebep: "%2" - + Missing metadata Eksik üstveri - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Dosya yeniden adlandırma başarısız oldu. Torrent: "%1", dosya: "%2", sebep: "%3" - + Performance alert: %1. More info: %2 Performans uyarısı: %1. Daha fazla bilgi: %2 @@ -2835,11 +2856,6 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Expected integer number in environment variable '%1', but got '%2' Ortam değişkeni '%1' içinde beklenen tam sayı, ancak '%2' var - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Parametre '%1', '%1=%2' sözdizimi şeklinde olmak zorunda - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Parametre '%1', '%1=%2' sözdizimi şeklinde olmak zorunda + Parametre '%1', '%1=%2' sözdizimi şeklinde olmak zorunda @@ -2968,11 +2984,7 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Add torrents as running or stopped - - - - Add torrents as started or paused - Torrent'leri başlatıldı veya duraklatıldı olarak ekle + Torrent'leri çalışıyor veya durduruldu olarak ekle @@ -3063,20 +3075,12 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Start torrents - + Torrent'leri başlat Stop torrents - - - - Resume torrents - Torrent'lere devam et - - - Pause torrents - Torrent'leri duraklat + Torrent'leri durdur @@ -3099,7 +3103,7 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d System - + Sistem @@ -3174,11 +3178,7 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Also remove the content files - - - - Also permanently delete the files - Ayrıca dosyaları kalıcı olarak sil + Ayrıca içerik dosyalarını kaldır @@ -3390,47 +3390,43 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Pattern Format - + Şekil Biçimi Plain text - + Düz metin Wildcards - + Joker karakterler Regular expression - + Düzenli ifadeler GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent indiriliyor... Kaynak: "%1" - Trackers cannot be merged because it is a private torrent - İzleyiciler özel bir torrent olduğundan birleştirilemez - - - + Torrent is already present Torrent zaten mevcut - + Trackers cannot be merged because it is a private torrent. - + İzleyiciler özel bir torrent olduğundan birleştirilemez. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' zaten aktarım listesinde. İzleyicileri yeni kaynaktan birleştirmek istiyor musunuz? @@ -3548,6 +3544,40 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Desteklenen resim dosyaları + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Güç yönetimi uygun D-Bus arayüzünü buldu. Arayüz: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Güç yönetimi hatası. Eylem: %1. Hata: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Güç yönetimi beklenmeyen hata. Durum: %1. Hata: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d &Options... &Seçenekler... - - &Resume - &Devam - &Remove @@ -3762,7 +3788,7 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Sh&utdown System - + Bil&gisayarı Kapat @@ -3774,10 +3800,6 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Close Window Pencereyi Kapat - - R&esume All - &Tümüne Devam - Manage Cookies... @@ -3816,22 +3838,22 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Sta&rt - + Başla&t Sto&p - + Dur&dur R&esume Session - + &Oturumu Devam Ettir Pau&se Session - + Ot&urumu Duraklat @@ -3893,10 +3915,6 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d &Hibernate System Bilgisayarı &Hazırda Beklet - - S&hutdown System - Bil&gisayarı Kapat - &Statistics @@ -3917,14 +3935,6 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d &About &Hakkında - - &Pause - &Duraklat - - - P&ause All - Tümünü D&uraklat - &Add Torrent File... @@ -3958,12 +3968,12 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d - + Show Göster - + Check for program updates Program güncellemelerini denetle @@ -3978,388 +3988,383 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d qBittorrent'i beğendiyseniz, lütfen bağış yapın! - + Execution Log Çalıştırma Günlüğü - + Clear the password Parolayı temizle - + &Set Password Parola &Ayarla - + Preferences Tercihler - + &Clear Password Parolayı &Temizle - + Transfers Aktarımlar - - + + qBittorrent is minimized to tray qBittorrent tepsiye simge durumuna küçültüldü - - - + + + This behavior can be changed in the settings. You won't be reminded again. Bu davranış ayarlar içinde değiştirilebilir. Size tekrar hatırlatılmayacaktır. - + Icons Only Sadece Simgeler - + Text Only Sadece Metin - + Text Alongside Icons Metin Simgelerin Yanında - + Text Under Icons Metin Simgelerin Altında - + Follow System Style Sistem Stilini Takip Et - - + + UI lock password Arayüz kilidi parolası - - + + Please type the UI lock password: Lütfen Arayüz kilidi parolasını yazın: - + Are you sure you want to clear the password? Parolayı temizlemek istediğinize emin misiniz? - + Use regular expressions Düzenli ifadeleri kullan - - + + Search Engine - Arama Motoru + Arama Motoru - + Search has failed - Arama başarısız oldu + Arama başarısız oldu - + Search has finished - Arama tamamlandı + Arama tamamlandı - + Search Ara - + Transfers (%1) Aktarımlar (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent henüz güncellendi ve değişikliklerin etkili olması için yeniden başlatılması gerek. - + qBittorrent is closed to tray qBittorrent tepsiye kapatıldı - + Some files are currently transferring. Bazı dosyalar şu anda aktarılıyor. - + Are you sure you want to quit qBittorrent? qBittorrent'ten çıkmak istediğinize emin misiniz? - + &No &Hayır - + &Yes &Evet - + &Always Yes Her &Zaman Evet - + Options saved. Seçenekler kaydedildi. - + [PAUSED] %1 %1 is the rest of the window title - + [DURAKLATILDI] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [İ: %1, G: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Python yükleyicisi indirilemedi. Hata: %1. +Lütfen el ile yükleyin. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python yükleyicisini yeniden adlandırma başarısız oldu. Kaynak: "%1". Hedef: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python kurulumu başarılı oldu. + Exit code: %1. + Çıkış kodu: %1. + + + + Reason: installer crashed. + Sebep: Yükleyici çöktü. + + + Python installation failed. - + Python kurulumu başarısız oldu. - + Launching Python installer. File: "%1". - + Python yükleyicisi başlatılıyor. Dosya: "%1". - - + + Missing Python Runtime Eksik Python Çalışma Zamanı - + qBittorrent Update Available qBittorrent Güncellemesi Mevcut - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Arama motorunu kullanmak için Python gerekir ancak yüklenmiş görünmüyor. Şimdi yüklemek istiyor musunuz? - + Python is required to use the search engine but it does not seem to be installed. Arama motorunu kullanmak için Python gerekir ancak yüklenmiş görünmüyor. - - + + Old Python Runtime Eski Python Çalışma Zamanı - + A new version is available. Yeni bir sürüm mevcut. - + Do you want to download %1? %1 sürümünü indirmek istiyor musunuz? - + Open changelog... Değişiklikleri aç... - + No updates available. You are already using the latest version. Mevcut güncellemeler yok. Zaten en son sürümü kullanıyorsunuz. - + &Check for Updates Güncellemeleri &Denetle - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Python sürümünüz (%1) eski. En düşük gereksinim: %2. Şimdi daha yeni bir sürümü yüklemek istiyor musunuz? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Python sürümünüz (%1) eski. Arama motorlarının çalışması için lütfen en son sürüme yükseltin. En düşük gereksinim: %2. - + Paused - Duraklatıldı + Duraklatıldı - + Checking for Updates... Güncellemeler denetleniyor... - + Already checking for program updates in the background Program güncellemeleri arka planda zaten denetleniyor - + Python installation in progress... - + Python kurulumu devam ediyor... - + Failed to open Python installer. File: "%1". - + Python yükleyicisini açma başarısız. Dosya: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python yükleyicisi için MD5 adresleme denetimi başarısız. Dosya: "%1". Sonuç adresleme: "%2". Beklenen adresleme: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python yükleyicisi için SHA3-512 adresleme denetimi başarısız. Dosya: "%1". Sonuç adresleme: "%2". Beklenen adresleme: "%3". - + Download error İndirme hatası - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python kurulumu indirilemedi, sebep: %1. -Lütfen el ile yükleyin. - - - - + + Invalid password Geçersiz parola - + Filter torrents... Torrent'leri süzün... - + Filter by: Süzme şekli: - + The password must be at least 3 characters long Parola en az 3 karakter uzunluğunda olmak zorundadır - - - + + + RSS (%1) RSS (%1) - + The password is invalid Parola geçersiz - + DL speed: %1 e.g: Download speed: 10 KiB/s İND hızı: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s GÖN hızı: %1 - + Hide Gizle - + Exiting qBittorrent qBittorrent'ten çıkılıyor - + Open Torrent Files Torrent Dosyalarını Aç - + Torrent Files Torrent Dosyaları @@ -4556,7 +4561,7 @@ Lütfen el ile yükleyin. SSL error, URL: "%1", errors: "%2" - + SSL hatası, URL: "%1", hatalar: "%2" @@ -5853,47 +5858,47 @@ Lütfen el ile yükleyin. Net::Smtp - + Connection failed, unrecognized reply: %1 Bağlantı başarısız oldu, tanınmayan yanıt: %1 - + Authentication failed, msg: %1 Kimlik doğrulaması başarısız oldu, ileti: %1 - + <mail from> was rejected by server, msg: %1 <mail from>, sunucu tarafından reddedildi, ileti: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to>, sunucu tarafından reddedildi, ileti: %1 - + <data> was rejected by server, msg: %1 <data>, sunucu tarafından reddedildi, ileti: %1 - + Message was rejected by the server, error: %1 İleti sunucu tarafından reddedildi, hata: %1 - + Both EHLO and HELO failed, msg: %1 Hem EHLO hem de HELO başarısız oldu, ileti: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP sunucusu, desteklediğimiz [CRAM-MD5|PLAIN|LOGIN] kimlik doğrulama kiplerinden hiçbirini desteklemiyor gibi görünüyor, kimlik doğrulama atlanıyor, başarısız olma olasılığının yüksek olduğu biliniyor... Sunucu Yetkilendirme Kipleri: %1 - + Email Notification Error: %1 E-posta Bildirim Hatası: %1 @@ -5935,10 +5940,6 @@ Lütfen el ile yükleyin. RSS RSS - - Web UI - Web Arayüzü - Advanced @@ -5959,14 +5960,6 @@ Lütfen el ile yükleyin. Confirm when deleting torrents Torrent'leri silerken onayla - - Shows a confirmation dialog upon pausing/resuming all the torrents - Tüm torrent'leri duraklatma/devam ettirme üzerine bir onay ileti penceresi gösterir - - - Confirm "Pause/Resume all" actions - "Tümünü duraklat/Tümüne devam" eylemlerini onayla - Use alternating row colors @@ -5983,10 +5976,6 @@ Lütfen el ile yükleyin. Always Her zaman - - Paused torrents only - Sadece duraklatılmış torrent'ler - Action on double-click @@ -5997,10 +5986,6 @@ Lütfen el ile yükleyin. Downloading torrents: İndirilen torrent'ler: - - Start / Stop Torrent - Torrent'i başlat / durdur - @@ -6059,179 +6044,179 @@ Lütfen el ile yükleyin. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent içerik düzeni: - + Original Orijinal - + Create subfolder Alt klasör oluştur - + Don't create subfolder Alt klasör oluşturma - + The torrent will be added to the top of the download queue Torrent, indirme kuyruğunun en üstüne eklenecektir - + Add to top of queue The torrent will be added to the top of the download queue Kuyruğun en üstüne ekle - + When duplicate torrent is being added Kopya torrent eklendiğinde - + Merge trackers to existing torrent İzleyicileri varolan torrent ile birleştir - + Keep unselected files in ".unwanted" folder Seçilmeyen dosyaları ".unwanted" klasöründe tut - + Add... Ekle... - + Options.. Seçenekler... - + Remove Kaldır - + Email notification &upon download completion İndirmenin tamamlanması ü&zerine e-posta bildirimi yap - + Send test email - + Deneme e-postası gönder - + Run on torrent added: - + Torrent eklendiğinde çalıştır: - + Run on torrent finished: - + Torrent tamamlandığında çalıştır: - + Peer connection protocol: Kişi bağlantı protokolü: - + Any Herhangi - + I2P (experimental) I2P (deneysel) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Eğer &quot;karışık kip&quot; etkinleştirilirse, I2P torrent'lerinin izleyici dışında diğer kaynaklardan kişiler almasına ve herhangi bir isimsizleştirme sağlamadan normal IP'lere bağlanmasına izin verilir. Bu, eğer kullanıcı I2P'nin isimsizleştirilmesiyle ilgilenmiyorsa, ancak yine de I2P kişilerine bağlanabilmek istiyorsa yararlı olabilir.</p></body></html> - - - + Mixed mode Karışık kip - Some options are incompatible with the chosen proxy type! - Bazı seçenekler, seçilen proksi türüyle uyumlu değil! + Bazı seçenekler, seçilen proksi türüyle uyumlu değil! - + If checked, hostname lookups are done via the proxy Eğer işaretlendiyse, anamakine adı aramaları proksi aracılığıyla yapılır - + Perform hostname lookup via proxy Proksi aracılığıyla anamakine adı araması gerçekleştir - + Use proxy for BitTorrent purposes BitTorrent amaçları için proksi kullan - + RSS feeds will use proxy RSS bildirimleri proksi kullanacak - + Use proxy for RSS purposes RSS amaçları için proksi kullan - + Search engine, software updates or anything else will use proxy Arama motoru, yazılım güncellemeleri veya başka herhangi bir şey proksi kullanacak - + Use proxy for general purposes Genel amaçlar için proksi kullan - + IP Fi&ltering IP Süz&me - + Schedule &the use of alternative rate limits Alternatif oran sı&nırları kullanımını zamanla - + From: From start time Bu saatten: - + To: To end time Bu saate: - + Find peers on the DHT network DHT ağındaki kişileri bul - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Disable encryption: Only connect to peers without protocol encryption Şifrelemeyi etkisizleştir: Sadece protokol şifrelemesi olmadan kişilere bağlan - + Allow encryption Şifrelemeye izin ver - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Daha fazla bilgi</a>) - + Maximum active checking torrents: En fazla etkin denetlenen torrent: - + &Torrent Queueing &Torrent Kuyruğu - + When total seeding time reaches Toplam gönderim şu süreye ulaştığında - + When inactive seeding time reaches Etkin olmayan gönderim şu süreye ulaştığında - A&utomatically add these trackers to new downloads: - Bu izleyicileri yeni indirmelere &otomatik olarak ekle: - - - + RSS Reader RSS Okuyucu - + Enable fetching RSS feeds RSS bildirimlerini almayı etkinleştir - + Feeds refresh interval: Bildirimleri yenileme aralığı: - + Same host request delay: Aynı anamakine isteği gecikmesi: - + Maximum number of articles per feed: Bildirim başına en fazla makale sayısı: - - - + + + min minutes dak - + Seeding Limits Gönderim Sınırları - Pause torrent - Torrent'i duraklat - - - + Remove torrent Torrent'i kaldır - + Remove torrent and its files Torrent'i ve dosyalarını kaldır - + Enable super seeding for torrent Torrent için süper gönderimi etkinleştir - + When ratio reaches Oran şu orana ulaştığında - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Torrent'i durdur - + A&utomatically append these trackers to new downloads: - + Bu izleyicileri yeni indirmelere &otomatik olarak ekle: - + Automatically append trackers from URL to new downloads: - + İzleyicileri URL'den yeni indirmelere otomatik olarak ekle: - + URL: - URL: + URL: - + Fetched trackers - + Getirilen izleyiciler - + Search UI - + Arama arayüzü - + Store opened tabs - + Açılan sekmeleri sakla - + Also store search results - + Ayrıca arama sonuçlarını sakla - + History length - + Geçmiş uzunluğu - + RSS Torrent Auto Downloader RSS Torrent Otomatik İndirici - + Enable auto downloading of RSS torrents RSS torrent'lerini otomatik indirmeyi etkinleştir - + Edit auto downloading rules... Otomatik indirme kurallarını düzenle... - + RSS Smart Episode Filter RSS Akıllı Bölüm Süzgeci - + Download REPACK/PROPER episodes REPACK/PROPER bölümlerini indir - + Filters: Süzgeçler: - + Web User Interface (Remote control) Web Kullanıcı Arayüzü (Uzak denetim) - + IP address: IP adresi: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Bir IPv4 veya IPv6 adresi belirleyin. Herhangi bir IPv4 adresi için "0.0.0 herhangi bir IPv6 adresi için "::", ya da her iki IPv4 ve IPv6 içinse "*" belirtebilirsiniz. - + Ban client after consecutive failures: Art arda şu kadar hatadan sonra istemciyi yasakla: - + Never Asla - + ban for: yasaklama süresi: - + Session timeout: Oturum zaman aşımı: - + Disabled Etkisizleştirildi - Enable cookie Secure flag (requires HTTPS) - Tanımlama bilgisi Güvenli işaretini etkinleştir (HTTPS gerektirir) - - - + Server domains: Sunucu etki alanları: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Çoklu girişleri bölmek için ';' kullanın. '*' joker karakteri kullanılabilir. - + &Use HTTPS instead of HTTP HTTP yerine HTTPS &kullan - + Bypass authentication for clients on localhost Yerel makinedeki istemciler için kimlik doğrulamasını atlat - + Bypass authentication for clients in whitelisted IP subnets Beyaz listeye alınmış IP alt ağlarındaki istemciler için kimlik doğrulamasını atlat - + IP subnet whitelist... IP alt ağ beyaz listesi... - + Use alternative WebUI - + Alternatif Web Arayüzü kullan - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Yönlendirilen istemci adresini (X-Forwarded-For başlığı) kullanmak için ters proksi IP'lerini (veya alt ağları, örn. 0.0.0.0/24) belirtin. Birden çok girişi bölmek için ';' kullanın. - + Upda&te my dynamic domain name Değişken etki alanı adımı &güncelle @@ -6519,12 +6502,12 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Search - Ara + Ara WebUI - + Web Arayüzü @@ -6539,29 +6522,29 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Style: - + Stil: Color scheme: - + Renk şeması: Stopped torrents only - + Sadece durdurulmuş torrent'ler Start / stop torrent - + Torrent'i başlat / durdur Open torrent options dialog - + Torrent seçenekleri ileti penceresini aç @@ -6602,7 +6585,7 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. &Log Files - + &Günlük Dosyaları @@ -6620,99 +6603,99 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Şu süreden eski yedek günlükleri sil: - + Show external IP in status bar - + Durum çubuğunda dış IP'yi göster - + When adding a torrent Bir torrent eklerken - + Bring torrent dialog to the front Torrent ileti penceresini öne getir - + The torrent will be added to download list in a stopped state - + Torrent, indirme listesine durduruldu durumunda eklenecektir - + Also delete .torrent files whose addition was cancelled Aynı zamanda eklenmesi iptal edilmiş .torrent dosyalarını da sil - + Also when addition is cancelled Ayrıca ekleme iptal edildiğinde - + Warning! Data loss possible! Uyarı! Veri kaybı mümkün! - + Saving Management Kaydetme Yönetimi - + Default Torrent Management Mode: Varsayılan Torrent Yönetim Kipi: - + Manual Elle - + Automatic Otomatik - + When Torrent Category changed: Torrent Kategorisi değiştiğinde: - + Relocate torrent Torrent'in yerini değiştir - + Switch torrent to Manual Mode Torrent'i Elle Kipine değiştir - - + + Relocate affected torrents Etkilenen torrent'lerin yerini değiştir - - + + Switch affected torrents to Manual Mode Etkilenen torrent'leri Elle Kipine değiştir - + Use Subcategories Alt kategorileri kullan - + Default Save Path: Varsayılan Kaydetme Yolu: - + Copy .torrent files to: .torrent dosyalarını şuraya kopyala: @@ -6722,26 +6705,22 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. &qBittorrent'i bildirim alanında göster - &Log file - &Günlük dosyası - - - + Display &torrent content and some options &Torrent içeriğini ve bazı seçenekleri görüntüle - + De&lete .torrent files afterwards Sonrasında .torrent dosyalarını si&l - + Copy .torrent files for finished downloads to: Tamamlanan indirmeler için .torrent dosyalarını şuraya kopyala: - + Pre-allocate disk space for all files Tüm dosyalar için disk alanını önceden ayır @@ -6771,10 +6750,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Preview file, otherwise open destination folder Dosyayı önizle, aksi halde hedef klasörü aç - - Show torrent options - Torrent seçeneklerini göster - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. yıl - + Log performance warnings Performans uyarılarını günlükle - The torrent will be added to download list in a paused state - Torrent, indirme listesine duraklatıldı durumunda eklenecektir - - - + Do not start the download automatically The torrent will be added to download list in a stopped state İndirmeyi otomatik olarak başlatma - + Whether the .torrent file should be deleted after adding it Eklendikten sonra .torrent dosyasının silinmesinin gerekip gerekmeyeceği - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Parçalanmayı en aza indirmek için indirmeleri başlatmadan önce diskte tam dosya boyutlarını ayır. Sadece HDD'ler için faydalıdır. - + Append .!qB extension to incomplete files Tamamlanmamış dosyalara .!qB uzantısı ekle - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Bir torrent indirildiğinde, içinde bulunan herhangi bir .torrent dosyasından torrent'leri eklemeyi teklif eder - + Enable recursive download dialog Tekrarlayan indirme ileti penceresini etkinleştir - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Otomatik: Çeşitli torrent özelliklerine (örn. kaydetme yolu) ilişkilendirilen kategori tarafından karar verilecektir Elle: Çeşitli torrent özellikleri (örn. kaydetme yolu) el ile atanmak zorundadır - + When Default Save/Incomplete Path changed: Varsayılan Kaydetme/Tamamlanmamış Yolu değiştiğinde: - + When Category Save Path changed: Kategori Kaydetme Yolu değiştiğinde: - + Use Category paths in Manual Mode Kategori yollarını Elle Kipinde kullan - + Resolve relative Save Path against appropriate Category path instead of Default one Göreceli Kaydetme Yolunu, Varsayılan yol yerine uygun Kategori yoluna göre çöz @@ -6922,50 +6893,50 @@ Elle: Çeşitli torrent özellikleri (örn. kaydetme yolu) el ile atanmak zorund Başlangıçta qBittorrent pencere durumu - + Torrent stop condition: Torrent durdurma koşulu: - - + + None Yok - - + + Metadata received Üstveriler alındı - - + + Files checked Dosyalar denetlendi - + Ask for merging trackers when torrent is being added manually Torrent el ile eklenirken izleyicileri birleştirmeyi iste - + Use another path for incomplete torrents: Tamamlanmamış torrent'ler için başka bir yol kullan: - + Automatically add torrents from: Torrent'leri otomatik olarak şuradan ekle: - + Excluded file names Hariç tutulan dosya adları - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ benioku.txt: tam dosya adını süzün. benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını süzün, ancak 'benioku10.txt' dosyasını değil. - + Receiver Alan - + To: To receiver Kime: - + SMTP server: SMTP sunucusu: - + Sender Gönderen - + From: From sender Kimden: - + This server requires a secure connection (SSL) Bu sunucu güvenli bir bağlantı gerektirir (SSL) - - + + Authentication Kimlik doğrulaması - - - - + + + + Username: Kullanıcı adı: - - - - + + + + Password: Parola: - + Run external program Harici programı çalıştır - Run on torrent added - Torrent eklendiğinde çalıştır - - - Run on torrent finished - Torrent tamamlandığında çalıştır - - - + Show console window Konsol pencereni göster - + TCP and μTP TCP ve μTP - + Listening Port Dinlenen Bağlantı Noktası - + Port used for incoming connections: Gelen bağlantılar için kullanılan bağlantı noktası: - + Set to 0 to let your system pick an unused port Sisteminizin kullanılmayan bir bağlantı noktası seçmesine izin vermek için 0 olarak ayarlayın - + Random Rastgele - + Use UPnP / NAT-PMP port forwarding from my router Yönlendiricimden UPnP / NAT-PMP bağlantı noktası yönlendirmesi kullan - + Connections Limits Bağlantı Sınırları - + Maximum number of connections per torrent: Torrent başına en fazla bağlantı sayısı: - + Global maximum number of connections: Genel en fazla bağlantı sayısı: - + Maximum number of upload slots per torrent: Torrent başına en fazla gönderme yuvası sayısı: - + Global maximum number of upload slots: Genel en fazla gönderme yuvası sayısı: - + Proxy Server Proksi Sunucusu - + Type: Tür: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Anamakine: - - - + + + Port: B.Noktası: - + Otherwise, the proxy server is only used for tracker connections Aksi halde, proksi sunucusu sadece izleyici bağlantıları için kullanılır - + Use proxy for peer connections Kişi bağlantıları için proksi kullan - + A&uthentication Kimlik doğr&ulaması - Info: The password is saved unencrypted - Bilgi: Parola şifrelenmeden kaydedilir + Bilgi: Parola şifrelenmeden kaydedilir - + Filter path (.dat, .p2p, .p2b): Süzgeç yolu (.dat, .p2p, .p2b): - + Reload the filter Süzgeci yeniden yükle - + Manually banned IP addresses... El ile yasaklanan IP adresleri... - + Apply to trackers İzleyicilere uygula - + Global Rate Limits Genel Oran Sınırları - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Gönderme: - - + + Download: İndirme: - + Alternative Rate Limits Alternatif Oran Sınırları - + Start time Başlangıç zamanı - + End time Bitiş zamanı - + When: Zaman: - + Every day Her gün - + Weekdays Hafta içi - + Weekends Hafta sonu - + Rate Limits Settings Oran Sınırı Ayarları - + Apply rate limit to peers on LAN Oran sınırını LAN üzerindeki kişilere uygula - + Apply rate limit to transport overhead Oran sınırını aktarım ekyüküne uygula - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Eğer "karışık kip" etkinleştirilirse, I2P torrent'lerinin izleyici dışında diğer kaynaklardan kişiler almasına ve herhangi bir isimsizleştirme sağlamadan normal IP'lere bağlanmasına izin verilir. Bu, eğer kullanıcı I2P'nin isimsizleştirilmesiyle ilgilenmiyorsa, ancak yine de I2P kişilerine bağlanabilmek istiyorsa yararlı olabilir.</p></body></html> - + Apply rate limit to µTP protocol Oran sınırını µTP protokolüne uygula - + Privacy Gizlilik - + Enable DHT (decentralized network) to find more peers Daha çok kişi bulmak için DHT'yi (merkezsizleştirilmiş ağ) etkinleştir - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Kişileri uyumlu Bittorrent istemcileri ile değiştir (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Daha çok kişi bulmak için Kişi Takası'nı (PeX) etkinleştir - + Look for peers on your local network Yerel ağınızdaki kişileri arar - + Enable Local Peer Discovery to find more peers Daha çok kişi bulmak için Yerel Kişi Keşfi'ni etkinleştir - + Encryption mode: Şifreleme kipi: - + Require encryption Şifreleme gerekir - + Disable encryption Şifrelemeyi etkisizleştir - + Enable when using a proxy or a VPN connection Bir proksi veya VPN bağlantısı kullanılırken etkinleştir - + Enable anonymous mode İsimsiz kipi etkinleştir - + Maximum active downloads: En fazla aktif indirme: - + Maximum active uploads: En fazla aktif gönderme: - + Maximum active torrents: En fazla aktif torrent: - + Do not count slow torrents in these limits Yavaş torrent'leri bu sınırlar içinde sayma - + Upload rate threshold: Gönderme oranı eşiği: - + Download rate threshold: İndirme oranı eşiği: - - - - + + + + sec seconds san - + Torrent inactivity timer: Torrent boşta durma zamanlayıcısı: - + then ardından - + Use UPnP / NAT-PMP to forward the port from my router Yönlendiricimden bağlantı noktasını yönlendirmek için UPnP / NAT-PMP kullan - + Certificate: Sertifika: - + Key: Anahtar: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Sertifikalar hakkında bilgi</a> - + Change current password Şu anki parolayı değiştirin - Use alternative Web UI - Alternatif Web Arayüzü kullan - - - + Files location: Dosyaların konumu: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Alternatif web arayüzü listesi</a> - + Security Güvenlik - + Enable clickjacking protection Tıklama suistimali (clickjacking) korumasını etkinleştir - + Enable Cross-Site Request Forgery (CSRF) protection Siteler Arası İstek Sahtekarlığı (CSRF) korumasını etkinleştir - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Tanımlama bilgisi Güvenli işaretini etkinleştir (HTTPS veya localhost bağlantısı gerektirir) - + Enable Host header validation Anamakine üstbilgi doğrulamasını etkinleştir - + Add custom HTTP headers Özel HTTP üstbilgilerini ekle - + Header: value pairs, one per line - Üstbilgi: değer çiftleri, satır başına bir + Üstbilgi: değer çiftleri, her satıra bir tane - + Enable reverse proxy support Ters proksi desteğini etkinleştir - + Trusted proxies list: Güvenilen proksiler listesi: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Ters proksi kurulum örnekleri</a> - + Service: Hizmet: - + Register Kaydol - + Domain name: Etki alanı adı: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Bu seçenekleri etkinleştirerek, .torrent dosyalarınızı <strong>geri alınamaz bir şekilde kaybedebilirsiniz</strong>! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Eğer ikinci seçeneği (&ldquo;Ayrıca ekleme iptal edildiğinde&rdquo;) etkinleştirirseniz, &ldquo;Torrent ekle&rdquo; ileti penceresinde &ldquo;<strong>İptal</strong>&rdquo; düğmesine bassanız bile .torrent dosyası <strong>silinecektir</strong> @@ -7520,12 +7478,12 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını qBittorrent Arayüz Teması dosyasını seç - + Choose Alternative UI files location Alternatif Arayüz dosyaları konumunu seçin - + Supported parameters (case sensitive): Desteklenen parametreler (büyük küçük harfe duyarlı): @@ -7545,183 +7503,183 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını Sistem tepsisi varlığının algılanması başarısız olduğundan dolayı etkisizleştirildi - + No stop condition is set. Ayarlanan durdurma koşulu yok. - + Torrent will stop after metadata is received. Torrent, üstveriler alındıktan sonra duracak. - + Torrent will stop after files are initially checked. Torrent, dosyalar başlangıçta denetlendikten sonra duracak. - + This will also download metadata if it wasn't there initially. Bu, başlangıçta orada değilse, üstverileri de indirecek. - + %N: Torrent name %N: Torrent adı - + %L: Category %L: Kategori - + %F: Content path (same as root path for multifile torrent) %F: İçerik yolu (çok dosyalı torrent için olan kök yolu ile aynı) - + %R: Root path (first torrent subdirectory path) %R: Kök yolu (ilk torrent alt dizin yolu) - + %D: Save path %D: Kaydetme yolu - + %C: Number of files %C: Dosya sayısı - + %Z: Torrent size (bytes) %Z: Torrent boyutu (bayt) - + %T: Current tracker %T: Şu anki izleyici - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") İpucu: Metnin boşluktan kesilmesini önlemek için parametreyi tırnak işaretleri arasına alın (örn., "%N") - + Test email - + E-postayı dene - + Attempted to send email. Check your inbox to confirm success - + E-posta gönderilmeye çalışıldı. Başarılı olup olmadığını onaylamak için gelen kutunuzu gözden geçirin - + (None) (Yok) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Bir torrent, indirme ve gönderme oranları bu "Torrent boşta durma zamanlayıcısı" saniye değerinin altında kalırsa yavaş sayılacaktır - + Certificate Sertifika - + Select certificate Sertifika seç - + Private key Özel anahtar - + Select private key Özel anahtar seç - + WebUI configuration failed. Reason: %1 Web Arayüzü yapılandırması başarısız oldu. Sebep: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + Windows karanlık koyu kipi ile en iyi uyumluluk için %1 önerilir - + System System default Qt style - + Sistem - + Let Qt decide the style for this system - + Bu sistemin stiline Qt'nin karar vermesine izin verin - + Dark Dark color scheme - + Koyu - + Light Light color scheme - + Açık - + System System color scheme - + Sistem - + Select folder to monitor İzlemek için bir klasör seçin - + Adding entry failed Giriş ekleme başarısız oldu - + The WebUI username must be at least 3 characters long. Web Arayüzü kullanıcı adı en az 3 karakter uzunluğunda olmak zorundadır. - + The WebUI password must be at least 6 characters long. Web Arayüzü parolası en az 6 karakter uzunluğunda olmak zorundadır. - + Location Error Konum Hatası - - + + Choose export directory Dışa aktarma dizini seçin - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Bu seçenekler etkinleştirildiğinde, dosyalar başarılı olarak indirme kuyruğuna eklendikten (ilk seçenek) ya da eklenmedikten (ikinci seçenek) sonra qBittorrent .torrent dosyalarını <strong>silecek</strong>. Bu, sadece &ldquo;Torrent ekle&rdquo; menüsü eylemi aracılığıyla açılan dosyalara <strong>değil</strong> ayrıca <strong>dosya türü ilişkilendirmesi</strong> aracılığıyla açılanlara da uygulanacaktır @@ -7731,69 +7689,69 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını qBittorrent Arayüz Teması dosyası (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiketler (virgülle ayırarak) - + %I: Info hash v1 (or '-' if unavailable) %I: Bilgi adreslemesi v1 (veya yoksa '-') - + %J: Info hash v2 (or '-' if unavailable) %J: Bilgi adreslemesi v2 (veya yoksa '-') - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent Kimliği (ya v1 torrent için sha-1 bilgi adreslemesi ya da v2/hybrid torrent için kesilmiş sha-256 bilgi adreslemesi) - - + + Choose a save directory Bir kaydetme dizini seçin - + Torrents that have metadata initially will be added as stopped. Başlangıçta üstverileri olan torrent'ler durduruldu olarak eklenecektir. - + Choose an IP filter file Bir IP süzgeci dosyası seçin - + All supported filters Tüm desteklenen süzgeçler - + The alternative WebUI files location cannot be blank. Alternatif Web Arayüzü dosyaları konumu boş olamaz. - + Parsing error Ayrıştırma hatası - + Failed to parse the provided IP filter Verilen IP süzgecini ayrıştırma başarısız - + Successfully refreshed Başarılı olarak yenilendi - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Verilen IP süzgeci başarılı olarak ayrıştırıldı: %1 kural uygulandı. @@ -7804,18 +7762,18 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını Tercihler - + Time Error Zaman Hatası - + The start time and the end time can't be the same. Başlangıç zamanı ve bitiş zamanı aynı olamaz. - - + + Length Error Uzunluk Hatası @@ -7900,169 +7858,169 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını Peer is using NAT hole punching - + Kişi, NAT delik delme kullanıyor PeerListWidget - + Country/Region Ülke/Bölge - + IP/Address IP/Adres - + Port B.Noktası - + Flags İşaretler - + Connection Bağlantı - + Client i.e.: Client application İstemci - + Peer ID Client i.e.: Client resolved from Peer ID Kişi Kimliği İstemcisi - + Progress i.e: % downloaded İlerleme - + Down Speed i.e: Download speed İnd. Hızı - + Up Speed i.e: Upload speed Gön. Hızı - + Downloaded i.e: total data downloaded İndirilen - + Uploaded i.e: total data uploaded Gönderilen - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Uygunluk - + Files i.e. files that are being downloaded right now Dosyalar - + Column visibility Sütun görünürlüğü - + Resize columns Sütunları yeniden boyutlandır - + Resize all non-hidden columns to the size of their contents Gizli olmayan tüm sütunları içeriklerinin boyutuna göre yeniden boyutlandır - + Add peers... Kişileri ekle... - - + + Adding peers Kişiler ekleniyor - + Some peers cannot be added. Check the Log for details. Bazı kişiler eklenemiyor. Ayrıntılar için Günlüğü gözden geçirin. - + Peers are added to this torrent. Kişiler bu torrent'e eklendi. - - + + Ban peer permanently Kişiyi kalıcı olarak yasakla - + Cannot add peers to a private torrent Özel torrent'e kişiler eklenemiyor - + Cannot add peers when the torrent is checking Torrent denetlenirken kişiler eklenemiyor - + Cannot add peers when the torrent is queued Torrent kuyruğa alındığında kişiler eklenemiyor - + No peer was selected Hiç kişi seçilmedi - + Are you sure you want to permanently ban the selected peers? Seçilen kişileri kalıcı olarak yasaklamak istediğinize emin misiniz? - + Peer "%1" is manually banned Kişi "%1" el ile yasaklandı - + N/A Yok - + Copy IP:port IP:b.noktasını kopyala @@ -8077,7 +8035,7 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını List of peers to add (one IP per line): - Eklemek için kişilerin listesi (her satıra bir IP): + Eklenecek kişilerin listesi (her satıra bir IP): @@ -8343,34 +8301,27 @@ Bu eklentiler etkisizleştirildi. PowerManagement - qBittorrent is active - qBittorrent etkin + qBittorrent etkin PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Güç yönetimi uygun D-Bus arayüzünü buldu. Arayüz: %1 + Güç yönetimi uygun D-Bus arayüzünü buldu. Arayüz: %1 - Power management error. Did not found suitable D-Bus interface. - Güç yönetimi hatası. Uygun D-Bus arayüzü bulunamadı. + Güç yönetimi hatası. Uygun D-Bus arayüzü bulunamadı. - - - Power management error. Action: %1. Error: %2 - Güç yönetimi hatası. Eylem: %1. Hata: %2 + Güç yönetimi hatası. Eylem: %1. Hata: %2 - Power management unexpected error. State: %1. Error: %2 - Güç yönetimi beklenmeyen hata. Durum: %1. Hata: %2 + Güç yönetimi beklenmeyen hata. Durum: %1. Hata: %2 @@ -8603,7 +8554,7 @@ Bu eklentiler etkisizleştirildi. Reannounce In: - Yeniden Duyuru Süresi: + Yeniden Duyurma Süresi: @@ -8614,12 +8565,12 @@ Bu eklentiler etkisizleştirildi. Ratio / Time Active (in months), indicates how popular the torrent is - + Oran / Etkin Süre (ay cinsinden), torrent'in ne kadar yaygın olduğunu gösterir Popularity: - + Yaygınlık: @@ -8654,7 +8605,7 @@ Bu eklentiler etkisizleştirildi. Private: - + Özel: @@ -8662,153 +8613,124 @@ Bu eklentiler etkisizleştirildi. Kaydetme Yolu: - + Never Asla - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (%3 var) - - + + %1 (%2 this session) %1 (bu oturumda %2) - - + + N/A Yok - + Yes - Evet + Evet - + No - Hayır + Hayır - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (gönderilme %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (en fazla %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (toplam %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (ort. %2) - + Add web seed Add HTTP source - + Web gönderimi ekle - + Add web seed: - + Web gönderimi ekle: - - + + This web seed is already in the list. - + Bu web gönderimi zaten listede. - New Web seed - Yeni Web gönderimi - - - Remove Web seed - Web gönderimini kaldır - - - Copy Web seed URL - Web gönderim URL'sini kopyala - - - Edit Web seed URL - Web gönderim URL'sini düzenle - - - + Filter files... Dosyaları süzün... - + Add web seed... - + Web gönderimi ekle... - + Remove web seed - + Web gönderimini kaldır - + Copy web seed URL - + Web gönderim URL'sini kopyala - + Edit web seed URL... - + Web gönderim URL'sini düzenle... - + Speed graphs are disabled Hız grafikleri etkisizleştirildi - + You can enable it in Advanced Options Bunu Gelişmiş Seçenekler'de etkinleştirebilirsiniz - New URL seed - New HTTP source - Yeni URL gönderimi - - - New URL seed: - Yeni URL gönderimi: - - - This URL seed is already in the list. - Bu URL gönderimi zaten listede. - - - + Web seed editing Web gönderim düzenleme - + Web seed URL: Web gönderim URL'si: @@ -8816,33 +8738,33 @@ Bu eklentiler etkisizleştirildi. RSS::AutoDownloader - - + + Invalid data format. Geçersiz veri biçimi. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 %1 içine RSS Otoİndirici verileri kaydedilemedi. Hata: %2 - + Invalid data format Geçersiz veri biçimi - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS makalesi '%1', '%2' kuralı tarafından kabul edildi. Torrent eklenmeye çalışılıyor... - + Failed to read RSS AutoDownloader rules. %1 RSS Otoİndirici kurallarını okuma başarısız. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 RSS Otoİndirici kuralları yüklenemedi. Sebep: %1 @@ -8850,22 +8772,22 @@ Bu eklentiler etkisizleştirildi. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 RSS bildirimini '%1' adresinden indirme başarısız. Sebep: %2 - + RSS feed at '%1' updated. Added %2 new articles. '%1' adresinden RSS bildirimi güncellendi. %2 yeni makale eklendi. - + Failed to parse RSS feed at '%1'. Reason: %2 RSS bildirimini '%1' adresinden ayrıştırma başarısız. Sebep: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. '%1' adresinden RSS bildirimi başarılı olarak indirildi. Ayrıştırmaya başlanıyor. @@ -8914,12 +8836,12 @@ Bu eklentiler etkisizleştirildi. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" RSS oturum yapılandırması kaydedilemedi. Dosya: "%1". Hata: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" RSS oturum verileri kaydedilemedi. Dosya: "%1". Hata: "%2" @@ -8941,76 +8863,121 @@ Bu eklentiler etkisizleştirildi. - + Item doesn't exist: %1. Öğe mevcut değil: %1. - Couldn't move folder into itself. - Klasör kendi içine taşınamadı. + Klasör kendi içine taşınamadı. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Kök klasör silinemiyor. - + Failed to read RSS session data. %1 RSS oturum verilerini okuma başarısız. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" RSS oturum verilerini ayrıştırma başarısız. Dosya: "%1". Hata: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." RSS oturum verilerini yükleme başarısız. Dosya: "%1". Hata: "Geçersiz veri biçimi." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. RSS bildirimi yüklenemedi. Bildirim: "%1". Sebep: URL gerekli. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. RSS bildirimi yüklenemedi. Bildirim: "%1". Sebep: UID geçersiz. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Kopya RSS bildirimi bulundu. UID: "%1". Hata: Yapılandırma bozuk gibi görünüyor. - + Couldn't load RSS item. Item: "%1". Invalid data format. RSS öğesi yüklenemedi. Öğe: "%1". Geçersiz veri biçimi. - + Corrupted RSS list, not loading it. RSS listesi bozuldu, yüklenmiyor. - + Incorrect RSS Item path: %1. Yanlış RSS Öğesi yolu: %1. - + RSS item with given path already exists: %1. Verilen yol ile RSS öğesi zaten var: %1. - + Parent folder doesn't exist: %1. Ana klasör mevcut değil: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Bildirim mevcut değil: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + san + + + + Default + Varsayılan + + RSSWidget @@ -9110,78 +9077,77 @@ Bu eklentiler etkisizleştirildi. + Feed options... + + + Edit feed URL... - Bildirim URLʼsini düzenle... + Bildirim URLʼsini düzenle... - Edit feed URL - Bildirim URLʼsini düzenle + Bildirim URLʼsini düzenle - + Please choose a folder name Lütfen bir klasör adı seçin - + Folder name: Klasör adı: - + New folder Yeni klasör - - Please type a RSS feed URL - Lütfen bir RSS bildirim URL'si yazın + Lütfen bir RSS bildirim URL'si yazın - - Feed URL: - Bildirim URL'si: + Bildirim URL'si: - + Deletion confirmation Silme onayı - + Are you sure you want to delete the selected RSS feeds? Seçilen RSS bildirimlerini silmek istediğinize emin misiniz? - + Please choose a new name for this RSS feed Lütfen bu RSS bildirimi için yeni bir ad seçin - + New feed name: Yeni bildirim adı: - + Rename failed Yeniden adlandırma başarısız oldu - + Date: Tarih: - + Feed: Bildirim: - + Author: Hazırlayan: @@ -9318,10 +9284,6 @@ Bu eklentiler etkisizleştirildi. i.e: Number of partial sources Çeken - - Search engine - Arama motoru - Filter search results... @@ -9411,17 +9373,17 @@ Bu eklentiler etkisizleştirildi. Engine - + Motor Engine URL - + Motor URL'si Published On - + Yayınlanma Tarihi @@ -9442,104 +9404,104 @@ Bu eklentiler etkisizleştirildi. SearchPluginManager - + Unknown search engine plugin file format. Bilinmeyen arama motoru eklentisi dosya biçimi. - + Plugin already at version %1, which is greater than %2 Eklenti zaten %2 sürümünden büyük olan %1 sürümünde - + A more recent version of this plugin is already installed. Bu eklentinin en son sürümü zaten yüklü. - + Plugin %1 is not supported. %1 eklentisi desteklenmiyor. - - + + Plugin is not supported. Eklenti desteklenmiyor. - + Plugin %1 has been successfully updated. %1 eklentisi başarılı olarak güncellendi. - + All categories Tüm kategoriler - + Movies Filmler - + TV shows TV programları - + Music Müzik - + Games Oyunlar - + Anime Çizgi film - + Software Yazılım - + Pictures Resimler - + Books Kitaplar - + Update server is temporarily unavailable. %1 Güncelleme sunucusu geçici olarak kullanılamaz. %1 - - + + Failed to download the plugin file. %1 Eklenti dosyasını indirme başarısız. %1 - + Plugin "%1" is outdated, updating to version %2 "%1" eklentisi eski, %2 sürümüne güncelleniyor - + Incorrect update info received for %1 out of %2 plugins. %1 / %2 eklenti için yanlış güncelleme bilgisi alındı. - + Search plugin '%1' contains invalid version string ('%2') Aranan eklenti '%1' geçersiz sürüm dizgisi ('%2') içeriyor @@ -9565,137 +9527,129 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Arama eklentileri... - + A phrase to search for. Aranacak bir ifade. - + Spaces in a search term may be protected by double quotes. Aranan bir terimdeki boşluklar çift tırnaklar ile korunabilir. - + Example: Search phrase example Örnek: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: aranacak olan <b>foo bar</b> - + All plugins Tüm eklentiler - + Only enabled Sadece etkinleştirilenler - - + + Invalid data format. - Geçersiz veri biçimi. + Geçersiz veri biçimi. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: aranacak olan <b>foo</b> ve <b>bar</b> - + Refresh - + Yenile - + Close tab Sekmeyi kapat - + Close all tabs Tüm sekmeleri kapat - + Select... Seç... - - + + Search Engine Arama Motoru - - + + Please install Python to use the Search Engine. Arama Motorunu kullanmak için lütfen Python'u yükleyin. - + Empty search pattern Boş arama örneği - + Please type a search pattern first Lütfen önce bir arama örneği girin - + Stop Durdur - - Search has finished - Arama tamamlandı - - - Search has failed - Arama başarısız oldu - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Arama arayüzü kaydedilmiş durum verilerini yükleme başarısız. Dosya: "%1". Hata: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Kaydedilmiş arama sonuçlarını yükleme başarısız. Sekme: "%1". Dosya: "%2". Hata: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Arama arayüzü durumunu kaydetme başarısız. Dosya: "%1". Hata: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Arama sonuçlarını kaydetme başarısız. Sekme: "%1". Dosya: "%2". Hata: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Arama arayüzü geçmişini yükleme başarısız. Dosya: "%1". Hata: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Arama geçmişini kaydetme başarısız. Dosya: "%1". Hata: "%2" @@ -9771,7 +9725,7 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Suspend confirmation - Akıya alma onayı + Askıya alma onayı @@ -10091,67 +10045,77 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri StatusBar - + Connection status: Bağlantı durumu: - - + + No direct connections. This may indicate network configuration problems. Doğrudan bağlantılar yok. Bu, ağ yapılandırma sorunlarını gösterebilir. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Dış IP: Yok + + + + DHT: %1 nodes DHT: %1 düğüm - + qBittorrent needs to be restarted! qBittorrent'in yeniden başlatılması gerek! - - + + Connection Status: Bağlantı Durumu: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Çevrimdışı. Bu genellikle qBittorrent'in gelen bağlantılar için seçilen bağlantı noktasını dinlemede başarısız olduğu anlamına gelir. - + Online Çevrimiçi - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Dış IP'ler: %1, %2 + + + + External IP: %1%2 + Dış IP: %1%2 + + + Click to switch to alternative speed limits Alternatif hız sınırlarını değiştirmek için tıklayın - + Click to switch to regular speed limits Düzenli hız sınırlarını değiştirmek için tıklayın @@ -10179,23 +10143,15 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Completed (0) Tamamlandı (0) - - Resumed (0) - Devam Edildi (0) - - - Paused (0) - Duraklatıldı (0) - Running (0) - + Çalışıyor (0) Stopped (0) - + Durduruldu (0) @@ -10260,49 +10216,33 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Running (%1) - + Çalışıyor (%1) Stopped (%1) - + Durduruldu (%1) Start torrents - + Torrent'leri başlat Stop torrents - - - - Paused (%1) - Duraklatıldı (%1) + Torrent'leri durdur Moving (%1) Taşınıyor (%1) - - Resume torrents - Torrent'lere devam et - - - Pause torrents - Torrent'leri duraklat - Remove torrents Torrent'leri kaldır - - Resumed (%1) - Devam Edildi (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Remove unused tags Kullanılmayan etiketleri kaldır - - Resume torrents - Torrent'lere devam et - - - Pause torrents - Torrent'leri duraklat - Remove torrents Torrent'leri kaldır - - New Tag - Yeni Etiket - Start torrents - + Torrent'leri başlat Stop torrents - + Torrent'leri durdur @@ -10409,7 +10337,7 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Add tag - + Etiket ekle @@ -10726,17 +10654,17 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. TorrentCreatorController - + Too many active tasks Çok fazla etkin görev - + Torrent creation is still unfinished. Torrent oluşturma hala tamamlanmadı. - + Torrent creation failed. Torrent oluşturma başarısız oldu. @@ -10988,17 +10916,6 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. İzlenen klasör: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Dosya okunurken bellek ayırma başarısız. Dosya: "%1". Hata: "%2" - - - Invalid metadata - Geçersiz üstveri - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Torrent Share Limits - - - - Torrent speed limits - Torrent hız sınırları + Torrent Paylaşma Sınırları @@ -11054,7 +10967,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Torrent Speed Limits - + Torrent Hız Sınırları @@ -11072,34 +10985,6 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Upload: Gönderme: - - Torrent share limits - Torrent paylaşma sınırları - - - Use global share limit - Genel paylaşma sınırını kullan - - - Set no share limit - Paylaşma sınırı ayarlama - - - Set share limit to - Paylaşma sınırını şuna ayarla - - - ratio - oran - - - total minutes - toplam dakika - - - inactive minutes - etkin olmayan dakika - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Not applicable to private torrents Özel torrent'lere uygulanamaz - - No share limit method selected - Seçilen paylaşma sınırı yöntemi yok - - - Please select a limit method first - Lütfen önce bir sınır yöntemi seçin - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Action when the limit is reached: - + Sınıra ulaşıldığında yapılacak eylem: Stop torrent - + Torrent'i durdur Remove torrent - Torrent'i kaldır + Torrent'i kaldır Remove torrent and its content - + Torrent'i ve içeriğini kaldır Enable super seeding for torrent - Torrent için süper gönderimi etkinleştir + Torrent için süper gönderimi etkinleştir @@ -11233,14 +11110,10 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Torrent Tags Torrent Etiketleri - - New Tag - Yeni Etiket - Add tag - + Etiket ekle @@ -11271,90 +11144,90 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. TorrentsController - + Error: '%1' is not a valid torrent file. Hata: '%1' geçerli bir torrent dosyası değil. - + Priority must be an integer Öncelik bir tam sayı olmak zorundadır - + Priority is not valid Öncelik geçerli değil - + Torrent's metadata has not yet downloaded Torrent'lerin üstverisi henüz indirilmedi - + File IDs must be integers Dosya kimlikleri tam sayılar olmak zorundadır - + File ID is not valid Dosya kimliği geçerli değil - - - - + + + + Torrent queueing must be enabled Torrent kuyruğa alma etkinleştirilmek zorundadır - - + + Save path cannot be empty Kaydetme yolu boş olamaz - - + + Cannot create target directory Hedef dizin oluşturulamıyor - - + + Category cannot be empty Kategori boş olamaz - + Unable to create category Kategori oluşturulamıyor - + Unable to edit category Kategori düzenlenemiyor - + Unable to export torrent file. Error: %1 Torrent dosyası dışa aktarılamıyor. Hata: %1 - + Cannot make save path Kaydetme yolunu oluşturamıyor "%1" is not a valid URL - + "%1" geçerli bir URIL değil URL scheme must be one of [%1] - + URL şeması [%1] adetten biri olmak zorundadır @@ -11362,39 +11235,39 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. 'sırala' parametresi geçersiz - + "%1" is not an existing URL - + "%1" varolan bir URL değil - + "%1" is not a valid file index. '%1' geçerli bir dosya indeksi değil. - + Index %1 is out of bounds. %1 indeksi sınırların dışında. - - + + Cannot write to directory Dizine yazamıyor - + WebUI Set location: moving "%1", from "%2" to "%3" Web Arayüzü yeri ayarlama: "%1" dosyası "%2" konumundan "%3" konumuna taşınıyor - + Incorrect torrent name Yanlış torrent adı - - + + Incorrect category name Yanlış kategori adı @@ -11414,7 +11287,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. - All trackers within the same group will belong to the same tier. - The group on top will be tier 0, the next group tier 1 and so on. - Below will show the common subset of trackers of the selected torrents. - Satır başına bir izleyici URL'si. + Her satıra bir izleyici URL'si. - Boş satırlar ekleyerek izleyicileri gruplara bölebilirsiniz. - Aynı gruptaki tüm izleyiciler aynı katmana ait olacaktır. @@ -11467,7 +11340,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Unreachable - Ulaşılamaz + Ulaşılamıyor @@ -11477,45 +11350,33 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Invalid state! - + Geçersiz durum! URL/Announce Endpoint - + URL/Duyurma Uç Noktası BT Protocol - + BT Protokolü Next Announce - + Sonraki Duyurma Min Announce - - - - Invalid status! - Geçersiz durum! - - - URL/Announce endpoint - URL/Duyuru uç noktası + En Az Duyurma Tier Katman - - Protocol - Protokol - Status @@ -11546,18 +11407,6 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Message İleti - - Next announce - Sonraki duyuru - - - Min announce - En düşük duyuru - - - v%1 - s%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Bu torrent özeldir - + Tracker editing İzleyici düzenleme - + Tracker URL: İzleyici URL'si: - - + + Tracker editing failed İzleyici düzenleme başarısız oldu - + The tracker URL entered is invalid. Girilen izleyici URL'si geçersiz. - + The tracker URL already exists. İzleyici URL'si zaten var. - + Edit tracker URL... İzleyici URL'sini düzenle... - + Remove tracker İzleyiciyi kaldır - + Copy tracker URL İzleyici URL'sini kopyala - + Force reannounce to selected trackers Seçilen izleyicilere yeniden duyurmayı zorla - + Force reannounce to all trackers Tüm izleyicilere yeniden duyurmayı zorla - + Resize columns Sütunları yeniden boyutlandır - + Resize all non-hidden columns to the size of their contents Gizli olmayan tüm sütunları içeriklerinin boyutuna göre yeniden boyutlandır - + Add trackers... İzleyicileri ekle... - + Column visibility Sütun görünürlüğü @@ -11648,7 +11497,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. List of trackers to add (one per line): - Eklemek için izleyicilerin listesi (her satıra bir tane): + Eklenecek izleyicilerin listesi (her satıra bir tane): @@ -11716,20 +11565,12 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Start torrents - + Torrent'leri başlat Stop torrents - - - - Resume torrents - Torrent'lere devam et - - - Pause torrents - Torrent'leri duraklat + Torrent'leri durdur @@ -11853,10 +11694,6 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Devam etme verisi denetleniyor - - Paused - Duraklatıldı - Completed @@ -11897,21 +11734,16 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. % Done İlerleme - - Status - Torrent status (e.g. downloading, seeding, paused) - Durum - Stopped - + Durduruldu Status Torrent status (e.g. downloading, seeding, stopped) - Durum + Durum @@ -11946,7 +11778,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Popularity - + Yaygınlık @@ -12027,22 +11859,17 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Time Active Time (duration) the torrent is active (not stopped) - Etkinlik Süresi + Etkinlik Süresi Yes - Evet + Evet No - Hayır - - - Time Active - Time (duration) the torrent is active (not paused) - Etkinlik Süresi + Hayır @@ -12108,18 +11935,18 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Reannounce In Indicates the time until next trackers reannounce - Yeniden Duyuru Süresi + Yeniden Duyurma Süresi Private Flags private torrents - + Özel Ratio / Time Active (in months), indicates how popular the torrent is - + Oran / Etkin Süre (ay cinsinden), torrent'in ne kadar yaygın olduğunu gösterir @@ -12144,358 +11971,319 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. TransferListWidget - + Column visibility Sütun görünürlüğü - + Recheck confirmation Yeniden denetleme onayı - + Are you sure you want to recheck the selected torrent(s)? Seçilen torrent'(ler)i yeniden denetlemek istediğinize emin misiniz? - + Rename Yeniden adlandır - + New name: Yeni adı: - + Choose save path Kaydetme yolunu seçin - Confirm pause - Duraklatmayı onayla - - - Would you like to pause all torrents? - Tüm torrent'leri duraklatmak ister misiniz? - - - Confirm resume - Devam etmeyi onayla - - - Would you like to resume all torrents? - Tüm torrent'leri devam ettirmek ister misiniz? - - - + Unable to preview Önizlenemiyor - + The selected torrent "%1" does not contain previewable files Seçilen torrent "%1" önizlenebilir dosyaları içermiyor - + Resize columns Sütunları yeniden boyutlandır - + Resize all non-hidden columns to the size of their contents Gizli olmayan tüm sütunları içeriklerinin boyutuna göre yeniden boyutlandır - + Enable automatic torrent management - Otomatik torrent yönetimini etkinleştir + Otomatik torrent yönetimini etkinleştirin - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Seçilen torrent(ler) için Otomatik Torrent Yönetimi'ni etkinleştirmek istediğinize emin misiniz? Yer değiştirebilirler. + Seçilen torrent'(ler) için Otomatik Torrent Yönetimi'ni etkinleştirmek istediğinize emin misiniz? Yer değiştirebilirler. - Add Tags - Etiketleri Ekle - - - + Choose folder to save exported .torrent files Dışa aktarılan .torrent dosyalarının kaydedileceği klasörü seçin - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" .torrent dosyası dışa aktarma başarısız oldu. Torrent: "%1". Kaydetme yolu: "%2". Sebep: "%3" - + A file with the same name already exists Aynı ada sahip bir dosya zaten var - + Export .torrent file error .torrent dosyası dışa aktarma hatası - + Remove All Tags Tüm Etiketleri Kaldır - + Remove all tags from selected torrents? Tüm etiketler seçilen torrent'lerden kaldırılsın mı? - + Comma-separated tags: Virgülle ayrılmış etiketler: - + Invalid tag Geçersiz etiket - + Tag name: '%1' is invalid Etiket adı: '%1' geçersiz - &Resume - Resume/start the torrent - &Devam - - - &Pause - Pause the torrent - D&uraklat - - - Force Resu&me - Force Resume/start the torrent - Devam Etmeye &Zorla - - - + Pre&view file... Dosyayı ö&nizle... - + Torrent &options... Torrent s&eçenekleri... - + Open destination &folder Hedef &klasörü aç - + Move &up i.e. move up in the queue Y&ukarı taşı - + Move &down i.e. Move down in the queue Aşağı t&aşı - + Move to &top i.e. Move to top of the queue &En üste taşı - + Move to &bottom i.e. Move to bottom of the queue En a&lta taşı - + Set loc&ation... Yeri a&yarla... - + Force rec&heck Yeniden denetle&meye zorla - + Force r&eannounce Yeniden d&uyurmaya zorla - + &Magnet link Ma&gnet bağlantısı - + Torrent &ID T&orrent kimliği - + &Comment &Açıklama - + &Name &Ad - + Info &hash v1 &Bilgi adreslemesi v1 - + Info h&ash v2 B&ilgi adreslemesi v2 - + Re&name... Yeniden a&dlandır... - + Edit trac&kers... İzle&yicileri düzenle... - + E&xport .torrent... Torrent'i iç&e aktar... - + Categor&y Kate&gori - + &New... New category... &Yeni... - + &Reset Reset category &Sıfırla - + Ta&gs &Etiketler - + &Add... Add / assign multiple tags... &Ekle... - + &Remove All Remove all tags Tü&münü Kaldır - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Torrent Durduruldu/Kuyruğa Alındı/Hata Oldu/Denetleniyor ise yeniden duyurmaya zorlanamaz - + &Queue &Kuyruk - + &Copy K&opyala - + Exported torrent is not necessarily the same as the imported Dışa aktarılan torrent, içe aktarılanla aynı olmak zorunda değildir - + Download in sequential order Sıralı düzende indir - + Add tags - + Etiketleri ekle - + Errors occurred when exporting .torrent files. Check execution log for details. .torrent dosyalarını dışa aktarırken hatalar meydana geldi. Ayrıntılar için çalıştırma günlüğünü gözden geçirin. - + &Start Resume/start the torrent - + &Başlat - + Sto&p Stop the torrent - + Dur&dur - + Force Star&t Force Resume/start the torrent - + Başlatmaya &Zorla - + &Remove Remove the torrent &Kaldır - + Download first and last pieces first Önce ilk ve son parçaları indir - + Automatic Torrent Management Otomatik Torrent Yönetimi - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Otomatik kip, çeşitli torrent özelliklerine (örn. kaydetme yolu) ilişkilendirilmiş kategori tarafından karar verileceği anlamına gelir - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Torrent Duraklatıldı/Kuyruğa Alındı/Hata Oldu/Denetleniyor ise yeniden duyuru yapmaya zorlanamaz - - - + Super seeding mode Süper gönderim kipi @@ -12571,7 +12359,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Set app style failed. Unknown style: "%1" - + Uygulama stilini ayarlama başarısız oldu. Bilinmeyen stil: "%1" @@ -12627,32 +12415,32 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Python çalıştırılabilir dosyası bulundu. Ad: "%1". Sürüm: "%2" - + Failed to find Python executable. Path: "%1". Python çalıştırılabilir dosyasını bulma başarısız. Yol: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" PATH ortam değişkeninde `python3` çalıştırılabilir dosyasını bulma başarısız. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" PATH ortam değişkeninde `python` çalıştırılabilir dosyasını bulma başarısız. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Windows Kayıt Defteri'nde `python` çalıştırılabilir dosyasını bulma başarısız. - + Failed to find Python executable Python çalıştırılabilir dosyasını bulma başarısız @@ -12744,52 +12532,52 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Kabul edilemez oturum tanımlama bilgisi adı belirtildi: '%1'. Varsayılan olan kullanılır. - + Unacceptable file type, only regular file is allowed. Kabul edilemez dosya türü, sadece normal dosyaya izin verilir. - + Symlinks inside alternative UI folder are forbidden. Alternatif Arayüz klasörü içinde simgesel bağlantılar yasaktır. - + Using built-in WebUI. Yerleşik Web Arayüzü kullanılıyor. - + Using custom WebUI. Location: "%1". Özel Web Arayüzü kullanılıyor. Konumu: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Seçilen yerel dil (%1) için Web Arayüzü çevirisi başarılı olarak yüklendi. - + Couldn't load WebUI translation for selected locale (%1). Seçilen yerel dil (%1) için Web Arayüzü çevirisi yüklenemedi. - + Missing ':' separator in WebUI custom HTTP header: "%1" Web Arayüzü özel HTTP üstbilgisinde eksik ':' ayırıcısı: "%1" - + Web server error. %1 Web sunucusu hatası. %1 - + Web server error. Unknown error. Web sunucusu hatası. Bilinmeyen hata. @@ -12847,7 +12635,7 @@ Lütfen farklı bir isim seçin ve tekrar deneyin. Unknown error - Bilinmeyen hata + Bilinmeyen hata diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index e289d6e8f..4be189fc6 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -170,10 +170,6 @@ Never show again Більше ніколи не показувати - - Torrent settings - Налаштування торрента - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Варіанти торенту @@ -235,25 +231,25 @@ Умови зупинки: - - + + None Немає - - + + Metadata received Отримано метадані - + Torrents that have metadata initially will be added as stopped. Торренти, які мають метадані, будуть додані як зупинені. - + Files checked Файли перевірено @@ -368,112 +364,112 @@ Зберегти як файл .torrent... - + I/O Error Помилка вводу/виводу - + Not Available This comment is unavailable Недоступно - + Not Available This date is unavailable Недоступно - + Not available Недоступно - + Magnet link Magnet-посилання - + Retrieving metadata... Отримуються метадані... - - + + Choose save path Виберіть шлях збереження - + No stop condition is set. Умову зупинки не задано. - + Torrent will stop after metadata is received. Торрент зупиниться після отримання метаданих. - + Torrent will stop after files are initially checked. Торрент зупиниться після того, як файли пройдуть початкову перевірку. - + This will also download metadata if it wasn't there initially. Це також завантажить метадані, якщо їх не було спочатку. - + N/A - + %1 (Free space on disk: %2) %1 (Вільно на диску: %2) - + Not available This size is unavailable. Недоступно - + Torrent file (*%1) Torrent-файл (*%1) - + Save as torrent file Зберегти як Torrent-файл - + Couldn't export torrent metadata file '%1'. Reason: %2. Не вдалося експортувати метадані торрент файла'%1'. Причина: %2. - + Cannot create v2 torrent until its data is fully downloaded. Неможливо створити торрент версії 2 поки його дані не будуть повністю завантажені. - + Filter files... Фільтр файлів… - + Parsing metadata... Розбираються метадані... - + Metadata retrieval complete Завершено отримання метаданих @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Завантаження торрента... Джерело: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Не вдалося додати торрент. Джерело: "%1". Причина: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Виявлено спробу додати дублікат торрента. Джерело: %1. Існуючий торрент: %2. Результат: %3 + Виявлено спробу додати дублікат торрента. Джерело: %1. Існуючий торрент: %2. Результат: %3 - + Merging of trackers is disabled Об'єднання трекерів вимкнено - + Trackers cannot be merged because it is a private torrent Трекери не можна об’єднати, оскільки це приватний торрент - + Trackers are merged from new source Трекери об’єднані з нового джерела + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB МіБ - + Recheck torrents on completion Перепровіряти торренти після завантаження - - + + ms milliseconds мс - + Setting Параметр - + Value Value set for this setting Значення - + (disabled) (вимкнено) - + (auto) (автоматично) - - + + min minutes хв - + All addresses Всі адреси - + qBittorrent Section Розділ про qBittorrent - - + + Open documentation Відкрити документацію - + All IPv4 addresses Всі адреси IPv4 - + All IPv6 addresses Всі адреси IPv6 - + libtorrent Section Розділ про libtorrent - + Fastresume files Швидке відновлення файлів - + SQLite database (experimental) База даних SQLite (у розробці) - + Resume data storage type (requires restart) Відновити тип зберігання даних (потрібно перезавантажити програму) - + Normal Звичайний - + Below normal Нижче звичайного - + Medium Середній - + Low Низький - + Very low Дуже низький - + Physical memory (RAM) usage limit Фізичне обмеження пам'яті (ОЗП) - + Asynchronous I/O threads Потоки асинхронного вводу/виводу - + Hashing threads Потоки хешування - + File pool size Розміру пулу файлів: - + Outstanding memory when checking torrents Накладна пам'ять при перевірці торрентів - + Disk cache Дисковий кеш - - - - + + + + + s seconds с - + Disk cache expiry interval Термін дійсності дискового кешу - + Disk queue size Розмір черги диска - - + + Enable OS cache Увімкнути кеш ОС - + Coalesce reads & writes Об'єднувати операції читання і запису - + Use piece extent affinity Використовувати групування споріднених частин - + Send upload piece suggestions Надсилати підказки частин відвантаження - - - - - + + + + + 0 (disabled) 0 (вимкнено) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Зберегти інтервал відновлення даних [0: вимкнено] - + Outgoing ports (Min) [0: disabled] Вихідні порти (мінімум) [0 — вимк.] - + Outgoing ports (Max) [0: disabled] Вихідні порти (максимум) [0 — вимк.] - + 0 (permanent lease) 0 (постійна оренда) - + UPnP lease duration [0: permanent lease] Тривалість оренди UPnP [0: постійна оренда] - + Stop tracker timeout [0: disabled] Час очікування зупинки трекера [0: вимкнено] - + Notification timeout [0: infinite, -1: system default] Час очікування сповіщень [0: нескінченний, -1: системне замовчування] - + Maximum outstanding requests to a single peer Максимальна кількість невиконаних запитів до одного піра - - - - - + + + + + KiB КіБ - + (infinite) (нескінченний) - + (system default) (система за умовчанням) - + Delete files permanently - + Видалити файли назавжди - + Move files to trash (if possible) - + Перемістити файли в кошик (якщо можливо) - + Torrent content removing mode - + Режим видалення контенту через торрент - + This option is less effective on Linux Ця опція менш ефективна на Linux - + Process memory priority Пріоритет пам'яті процесу - + Bdecode depth limit Ліміт глибини Bdecode - + Bdecode token limit Ліміт токенів Bdecode - + Default Типово - + Memory mapped files Файли, які відображаються у пам'ять - + POSIX-compliant Сумісний з POSIX - + Simple pread/pwrite - + Просте читання/запис - + Disk IO type (requires restart) Тип введення-виводу диска (потребує перезапуску) - - + + Disable OS cache Вимкнути кеш ОС - + Disk IO read mode Режим читання дискового Вводу-Виводу - + Write-through Наскрізний запис - + Disk IO write mode Режим запису дискового Вводу-Виводу - + Send buffer watermark Рівень буферу відправлення - + Send buffer low watermark Мінімальний рівень буфера відправлення - + Send buffer watermark factor Множник рівня буфера відправлення - + Outgoing connections per second Вихідні з'єднання за секунду - - + + 0 (system default) 0 (за умовчанням) - + Socket send buffer size [0: system default] Розмір буфера надсилання сокета [0: системне замовчування] - + Socket receive buffer size [0: system default] Розмір буфера отримання сокета [0: системне замовчування] - + Socket backlog size Розмір черги сокета: - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Збережіть інтервал статистики [0: відключений] - + .torrent file size limit Обмеження на розмір файлу .torrent - + Type of service (ToS) for connections to peers Тип обслуговування (ToS) при приєднанні до пірів - + Prefer TCP Надавати перевагу TCP - + Peer proportional (throttles TCP) Пропорціонально пірам (регулювання TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Підтримка інтернаціоналізації доменних імен (IDN) - + Allow multiple connections from the same IP address Дозволити більше одного з'єднання з тієї ж IP-адреси - + Validate HTTPS tracker certificates Перевірити HTTPS-сертифікати трекера - + Server-side request forgery (SSRF) mitigation Запобігання серверної підробки запиту (SSRF) - + Disallow connection to peers on privileged ports Заборонити підключення до пірів на привілейованих портах - + It appends the text to the window title to help distinguish qBittorent instances Він додає текст до заголовка вікна, щоб допомогти розрізнити екземпляри qBittorent - + Customize application instance name Налаштування імені екземпляра програми - + It controls the internal state update interval which in turn will affect UI updates Він контролює внутрішній інтервал оновлення стану, який, у свою чергу, впливатиме на оновлення інтерфейсу користувача - + Refresh interval Інтервал оновлення - + Resolve peer host names Дізнаватись адресу пірів - + IP address reported to trackers (requires restart) IP-адреса, повідомлена трекерам (потребує перезавантаження програми) - + Port reported to trackers (requires restart) [0: listening port] - + Порт, повідомлений трекерам (вимагає перезапуску) [0: Порт прослуховування] - + Reannounce to all trackers when IP or port changed Переанонсувати на всі трекери при зміні IP або порту - + Enable icons in menus Увімкнути значки в меню - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Увімкнути переадресацію портів для вбудованого трекера - + Enable quarantine for downloaded files Увімкнути карантин для завантажених файлів - + Enable Mark-of-the-Web (MOTW) for downloaded files Увімкнути Mark-of-the-Web (MOTW) для завантажених файлів - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Включає перевірку сертифікатів і діяльність, не пов'язану з протоколом торрент (наприклад, RSS-стрічки, оновлення програми, торрент-файли, БД GeoIP і т. д.). - + Ignore SSL errors - + Ігнорувати помилки SSL - + (Auto detect if empty) (Автоматичне визначення, якщо порожній) - + Python executable path (may require restart) Шлях до виконуваного файлу Python (може знадобитися перезапуск) - + Start BitTorrent session in paused state - + Розпочати сеанс BitTorrent у стані паузи - + sec seconds - сек + сек - + -1 (unlimited) - + -1 (необмежено) - + BitTorrent session shutdown timeout [-1: unlimited] - + Час очікування завершення сеансу BitTorrent [-1: необмежений] - + Confirm removal of tracker from all torrents Підтвердити видалення трекера з усіх торрентів - + Peer turnover disconnect percentage Відсоток відключення плинності пірів - + Peer turnover threshold percentage Відсоток межі плинності пірів - + Peer turnover disconnect interval Інтервал відключення плинності пірів - + Resets to default if empty Скидає значення за умовчанням, якщо пусте - + DHT bootstrap nodes Вузли початкового завантаження DHT - + I2P inbound quantity Число вхідного I2P - + I2P outbound quantity Число вихідного I2P - + I2P inbound length Довжина вхідного I2P - + I2P outbound length Довжина вихідного I2P - + Display notifications Показувати сповіщення - + Display notifications for added torrents Показувати сповіщення для доданих торрентів - + Download tracker's favicon Завантажувати піктограми для трекерів - + Save path history length Довжина історії шляхів збереження - + Enable speed graphs Увімкнути графік швидкості - + Fixed slots Фіксовані слоти - + Upload rate based Стандартна швидкість відвантаження - + Upload slots behavior Поведінка слотів відвантаження - + Round-robin По колу - + Fastest upload Найшвидше відвантаження - + Anti-leech Анти-ліч - + Upload choking algorithm Алгоритм приглушення відвантаження - + Confirm torrent recheck Підтверджувати повторну перевірку торрентів - + Confirm removal of all tags Підтверджувати видалення усіх міток - + Always announce to all trackers in a tier Завжди анонсувати на всі трекери в групі - + Always announce to all tiers Завжди анонсувати на всі групи трекерів - + Any interface i.e. Any network interface Будь-який інтерфейс - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Алгоритм мішаного режиму %1-TCP - + Resolve peer countries Дізнаватись країну пірів - + Network interface Мережевий інтерфейс - + Optional IP address to bind to Обрана IP-адреса для прив'язки - + Max concurrent HTTP announces Максимум одночасних анонсів HTTP - + Enable embedded tracker Увімкнути вбудований трекер - + Embedded tracker port Порт вбудованого трекера @@ -1382,142 +1393,142 @@ Invalid directory path - + Недійсний шлях до каталогу Directory does not exist - + Каталог не існує Invalid mode, allowed values: %1 - + Недійсний режим, дозволені значення: %1 cookies must be array - + Файли cookie повинні бути масивом Application - + Running in portable mode. Auto detected profile folder at: %1 Запуск в згорнутому режимі. Автоматично виявлено теку профілю в: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Виявлено надлишковий прапор командного рядка "%1". Портативний режим має на увазі відносне швидке відновлення. - + Using config directory: %1 Використовується каталог налаштувань: %1 - + Torrent name: %1 Назва торрента: %1 - + Torrent size: %1 Розмір торрента: %1 - + Save path: %1 Шлях збереження: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Торрент завантажено за %1. - - + + Thank you for using qBittorrent. Дякуємо за використання qBittorrent. - + Torrent: %1, sending mail notification Торрент: %1, надсилання сповіщення на пошту - + Add torrent failed Не вдалося додати торрент - + Couldn't add torrent '%1', reason: %2. Не вдалося додати торрент "%1", причина: %2. - + The WebUI administrator username is: %1 Адміністратор WebUI: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Пароль адміністратора WebUI не встановлено. Для цього сеансу встановлено тимчасовий пароль: %1 - + You should set your own password in program preferences. Слід встановити власний пароль у налаштуваннях програми. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI вимкнено! Щоб увімкнути WebUI, відредагуйте конфігураційний файл вручну. - + Running external program. Torrent: "%1". Command: `%2` Запуск зовнішньої програми. Торрент: "%1". Команда: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Не вдалося запустити зовнішню програму. Торрент: "%1". Команда: `%2` - + Torrent "%1" has finished downloading Торрент "%1" завершив завантаження - + WebUI will be started shortly after internal preparations. Please wait... Веб-інтерфейс буде запущено незабаром після внутрішньої підготовки. Будь ласка, зачекайте... - - + + Loading torrents... Завантаження торрентів... - + E&xit &Вийти - + I/O Error i.e: Input/Output Error Помилка Вводу/Виводу - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Причина: %2 - + Torrent added Торрент додано - + '%1' was added. e.g: xxx.avi was added. "%1" було додано. - + Download completed Завантаження завершено - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 запущено. Ідентифікатор процесу: %2 - + This is a test email. - + Це тестовий електронний лист. - + Test email - + Тестовий електронний лист - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. «%1» завершив завантаження. - + Information Інформація - + To fix the error, you may need to edit the config file manually. Щоб виправити помилку, вам може знадобитися відредагувати файл конфігурації вручну. - + To control qBittorrent, access the WebUI at: %1 Щоб керувати qBittorrent, перейдіть до веб-інтерфейсу за адресою: %1 - + Exit Вихід - + Recursive download confirmation Підтвердження рекурсивного завантаження - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Торрентний файл «%1» містить файли .torrent, продовжити їх завантаження? - + Never Ніколи - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Рекурсивне завантаження файлу .torrent у торренті. Вихідний торрент: "%1". Файл: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Не вдалося встановити обмеження використання фізичної пам'яті (ОЗП). Код помилки: %1. Текст помилки: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Не вдалося встановити жорсткий ліміт використання фізичної пам'яті (RAM). Запитаний розмір: %1. Жорсткий ліміт системи: %2. Код помилки: %3. Повідомлення про помилку: "%4" - + qBittorrent termination initiated Розпочато припинення роботи qBittorrent - + qBittorrent is shutting down... qBittorrent вимикається... - + Saving torrent progress... Зберігається прогрес торрента... - + qBittorrent is now ready to exit Тепер qBittorrent готовий до виходу @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Експорт... - + Matches articles based on episode filter. Знаходить статті на основі фільтра серій. - + Example: Приклад: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match знайде 2, 5, 8-15, 30 і подальші серії першого сезону - + Episode filter rules: Правила фільтра серій: - + Season number is a mandatory non-zero value Номер сезону — обов'язкове ненульове значення - + Filter must end with semicolon Фільтр повинен закінчуватись крапкою з комою - + Three range types for episodes are supported: Підтримуються три типи діапазонів для серій: - + Single number: <b>1x25;</b> matches episode 25 of season one Одне число: <b>1x25;</b> відповідає 25ій серії першого сезону - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Звичайний діапазон: <b>1x25-40;</b> відповідає серіям 25-40 першого сезону - + Episode number is a mandatory positive value Номер серії — обов'язкове додатне значення - + Rules Правила - + Rules (legacy) Правила (застарілі) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Нескінченний діапазон: <b>1x25-;</b> відповідає всім серіям, починаючи з 25-ї, першого сезону, і всім серіям наступних сезонів - + Last Match: %1 days ago Останній збіг: %1 днів тому - + Last Match: Unknown Останній збіг: невідомо - + New rule name Назва нового правила - + Please type the name of the new download rule. Будь ласка, введіть назву нового правила завантаження. - - + + Rule name conflict Конфлікт назв правил - - + + A rule with this name already exists, please choose another name. Правило з цією назвою вже існує, будь ласка, оберіть іншу назву. - + Are you sure you want to remove the download rule named '%1'? Ви впевнені, що хочете видалити правило завантаження під назвою '%1'? - + Are you sure you want to remove the selected download rules? Ви дійсно хочете видалити вибрані правила завантаження? - + Rule deletion confirmation Підтвердження видалення правила - + Invalid action Хибна дія - + The list is empty, there is nothing to export. Список порожній, нічого експортувати - + Export RSS rules Експортувати правила RSS - + I/O Error Помилка вводу/виводу - + Failed to create the destination file. Reason: %1 Не вдалося створити файл призначення. Причина: %1 - + Import RSS rules Імпортувати правила RSS - + Failed to import the selected rules file. Reason: %1 Не вдалося імпортувати вибраний файл правил. Причина: %1 - + Add new rule... Додати нове правило... - + Delete rule Видалити правило - + Rename rule... Перейменувати правило... - + Delete selected rules Видалити позначені правила - + Clear downloaded episodes... Очистити завантажені серії... - + Rule renaming Перейменування правила - + Please type the new rule name Будь ласка, введіть нову назву правила - + Clear downloaded episodes Очистити завантажені серії - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Чи ви певні що хочете очистити список завантажених серій для вибраного правила? - + Regex mode: use Perl-compatible regular expressions Regex режим: використовуйте Perl-сумісні регулярні вирази - - + + Position %1: %2 Позиція %1: %2 - + Wildcard mode: you can use Режим шаблонів: можна використовувати - - + + Import error Помилка імпорту - + Failed to read the file. %1 Не вдалося прочитати файл. %1 - + ? to match any single character ? для позначення будь-якого одного символа - + * to match zero or more of any characters * для позначення 0 або більше будь-яких символів - + Whitespaces count as AND operators (all words, any order) Пробіли вважаються операторами "і" (всі слова, у будь-якому порядку) - + | is used as OR operator | використовується як оператор "або" - + If word order is important use * instead of whitespace. Якщо порядок слів важливий, то використовуйте * замість пробілів. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Вираз з порожнім пунктом %1 (наприклад: %2) - + will match all articles. відповідатиме всім статтям. - + will exclude all articles. виключить всі статті. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Неможливо проаналізувати відновлені дані: недійсний формат - - + + Cannot parse torrent info: %1 Неможливо проаналізувати інформацію про торрент: %1 - + Cannot parse torrent info: invalid format Неможливо проаналізувати інформацію про торрент: недійсний формат - + Mismatching info-hash detected in resume data Виявлено невідповідність інфо-хешу в даних відновлення - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Не вдалося зберегти метадані торрента в "%1". Помилка: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Не вдалося зберегти дані відновлення торрента в "%1". Помилка: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Неможливо проаналізувати відновлені дані: %1 - + Resume data is invalid: neither metadata nor info-hash was found Відновлення даних неможливе: не знайдено ані метаданих, ані інфо-хеш - + Couldn't save data to '%1'. Error: %2 Не вдалося зберегти дані в '%1'. Помилка: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Не знайдено. - + Couldn't load resume data of torrent '%1'. Error: %2 Не вдалося завантажити дані відновлення торрента '%1'.. Помилка: %2 - - + + Database is corrupted. База даних пошкоджена. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Не вдалося ввімкнути режим журналювання Write-Ahead Logging (WAL). Помилка: %1. - + Couldn't obtain query result. Не вдалося отримати результат запиту. - + WAL mode is probably unsupported due to filesystem limitations. Можливо, режим WAL не підтримується через обмеження файлової системи. - + + + Cannot parse resume data: %1 + Неможливо проаналізувати відновлені дані: %1 + + + + + Cannot parse torrent info: %1 + Неможливо проаналізувати інформацію про торрент: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Не вдалося почати трансакцію. Помилка: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Не вдалося зберегти метадані торрента. Помилка: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Не вдалося зберегти дані відновлення торрента '%1'. Помилка: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Не вдалося видалити дані відновлення торрента '%1'. Помилка: %2 - + Couldn't store torrents queue positions. Error: %1 Не вдалося зберегти черговість торрентів. Помилка: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Підтримка розподіленої хеш-таблиці (DHT): %1 - - - - - - - - - + + + + + + + + + ON УВІМКНЕНО - - - - - - - - - + + + + + + + + + OFF ВИМКНЕНО - - + + Local Peer Discovery support: %1 Підтримка локального виявлення пірів: %1 - + Restart is required to toggle Peer Exchange (PeX) support Щоб увімкнути підтримку обміну пірами (PeX), потрібен перезапуск - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Не вдалося відновити торрент. Торрент: "%1". Причина: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Не вдалося відновити торрент: виявлено невідповідний ідентифікатор торрента. Торрент: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Виявлено неузгоджені дані: категорія відсутня у файлі конфігурації. Категорію буде відновлено, але її налаштування буде скинуто до стандартних. Торрент: "%1". Категорія: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Виявлено суперечливі дані: недійсна категорія. Торрент: "%1". Категорія: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Виявлено невідповідність між шляхами збереження відновленої категорії та поточним шляхом збереження торрента. Торрент тепер переведено в ручний режим. Торрент: "%1". Категорія: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Виявлено суперечливі дані: тег відсутній у файлі конфігурації. Тег буде відновлено. Торрент: "%1". Тег: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Виявлено суперечливі дані: недійсний тег. Торрент: "%1". Тег: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Виявлено подію пробудження системи. Повторний анонс всіх трекерів... - + Peer ID: "%1" ID піра: "%1" - + HTTP User-Agent: "%1" Агент користувача HTTP: "%1" - + Peer Exchange (PeX) support: %1 Підтримка Peer Exchange (PeX): %1 - - + + Anonymous mode: %1 Анонімний режим: %1 - - + + Encryption support: %1 Підтримка шифрування: %1 - - + + FORCED ПРИМУШЕНИЙ - + Could not find GUID of network interface. Interface: "%1" Не вдалося знайти GUID мережевого інтерфейсу. Інтерфейс: "%1" - + Trying to listen on the following list of IP addresses: "%1" Пробую слухати на наступних IP адресах: "%1" - + Torrent reached the share ratio limit. Торрент досяг ліміту співвідношення часток. - + Torrent: "%1". Торрент: "%1". - Removed torrent. - Видалений торрент. - - - Removed torrent and deleted its content. - Видалив торрент і видалив його вміст. - - - Torrent paused. - Торрент призупинено. - - - + Super seeding enabled. Суперсид увімкнено - + Torrent reached the seeding time limit. Торрент досяг ліміту часу заповнення. - + Torrent reached the inactive seeding time limit. Торрент досяг обмеження часу бездіяльності роздачі. - + Failed to load torrent. Reason: "%1" Не вдалося завантажити торрент. Причина: "%1" - + I2P error. Message: "%1". Помилка I2P. Повідомлення: "%1". - + UPnP/NAT-PMP support: ON Підтримка UPnP/NAT-PMP: УВІМК - + Saving resume data completed. - + Збереження даних резюме завершено. - + BitTorrent session successfully finished. - + Сеанс BitTorrent успішно завершено. - + Session shutdown timed out. - + Час очікування завершення сеансу минув. - + Removing torrent. - + Видалення торрента. - + Removing torrent and deleting its content. - + Видалення торрента і видалення його вмісту. - + Torrent stopped. - + Торрент зупинився. - + Torrent content removed. Torrent: "%1" - + Вміст торрента видалено. Торрент: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Не вдалося видалити торрент-контент. Торрент: "%1". Помилка: "%2" - + Torrent removed. Torrent: "%1" - + Торрент видалено. Торрент: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Виявлено спробу додати дублікат торрента. Існуючий торрент: %1. Результат: %2 - + Merging of trackers is disabled - Об'єднання трекерів вимкнено + Об'єднання трекерів вимкнено - + Trackers cannot be merged because it is a private torrent - Трекери не можна об’єднати, оскільки це приватний торрент + Трекери не можна об’єднати, оскільки це приватний торрент - + Trackers are merged from new source - Трекери об’єднані з нового джерела + Трекери об’єднані з нового джерела - + UPnP/NAT-PMP support: OFF Підтримка UPnP/NAT-PMP: ВИМК - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Не вдалося експортувати торрент. Торрент: "%1". Призначення: "%2". Причина: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Перервано збереження відновлених даних. Кількість непотрібних торрентів: %1 - + The configured network address is invalid. Address: "%1" Налаштована мережева адреса недійсна. Адреса: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Не вдалося знайти налаштовану мережеву адресу для прослуховування. Адреса: "%1" - + The configured network interface is invalid. Interface: "%1" Налаштований мережевий інтерфейс недійсний. Інтерфейс: "%1" - + Tracker list updated - + Список трекерів оновлений - + Failed to update tracker list. Reason: "%1" - + Не вдалося оновити список трекерів. Причина: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Відхилено недійсну IP-адресу під час застосування списку заборонених IP-адрес. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Додав трекер в торрент. Торрент: "%1". Трекер: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Видалений трекер з торрента. Торрент: "%1". Трекер: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Додано початкову URL-адресу до торрента. Торрент: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Вилучено початкову URL-адресу з торрента. Торрент: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Не вдалося видалити файл частини. Торрент: "%1". Причина: "%2". - Torrent paused. Torrent: "%1" - Торрент призупинено. Торрент: "%1" - - - + Torrent resumed. Torrent: "%1" Торрент відновлено. Торрент: "%1" - + Torrent download finished. Torrent: "%1" Завантаження торрента завершено. Торрент: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Переміщення торрента скасовано. Торрент: "%1". Джерело: "%2". Пункт призначення: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Торрент зупинився. Торрент: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Не вдалося поставити торрент у чергу. Торрент: "%1". Джерело: "%2". Призначення: "%3". Причина: торрент зараз рухається до місця призначення - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Не вдалося поставити торрент у чергу. Торрент: "%1". Джерело: "%2" Місце призначення: "%3". Причина: обидва шляхи вказують на одне місце - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Переміщення торрента в черзі. Торрент: "%1". Джерело: "%2". Пункт призначення: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Почати переміщення торрента. Торрент: "%1". Пункт призначення: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Не вдалося зберегти конфігурацію категорій. Файл: "%1". Помилка: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Не вдалося проаналізувати конфігурацію категорій. Файл: "%1". Помилка: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Файл IP-фільтра успішно проаналізовано. Кількість застосованих правил: %1 - + Failed to parse the IP filter file Не вдалося проаналізувати файл IP-фільтра - + Restored torrent. Torrent: "%1" Відновлений торрент. Торрент: "%1" - + Added new torrent. Torrent: "%1" Додано новий торрент. Торрент: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Помилка торрента. Торрент: "%1". Помилка: "%2" - Removed torrent. Torrent: "%1" - Видалений торрент. Торрент: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Видалив торрент і видалив його вміст. Торрент: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" У торенті відсутні параметри SSL. Торрент: "%1". Повідомлення: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Сповіщення про помилку файлу. Торрент: "%1". Файл: "%2". Причина: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Помилка зіставлення портів UPnP/NAT-PMP. Повідомлення: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Зіставлення порту UPnP/NAT-PMP виконано успішно. Повідомлення: "%1" - + IP filter this peer was blocked. Reason: IP filter. IP фільтр - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). відфільтрований порт (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). привілейований порт (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Не вдалося з'єднання насіння URL -адреси. Торрент: "%1". URL: "%2". Помилка: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" Під час сеансу BitTorrent сталася серйозна помилка. Причина: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Помилка проксі SOCKS5. Адреса: %1. Повідомлення: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 обмеження змішаного режиму - + Failed to load Categories. %1 Не вдалося завантажити категорії. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Не вдалося завантажити конфігурацію категорій. Файл: "%1". Помилка: "Неправильний формат даних" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Видалено торрент, але не вдалося видалити його вміст і/або частину файлу. Торент: "%1". Помилка: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 вимкнено - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 вимкнено - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Помилка DNS-пошуку початкового URL-адреси. Торрент: "%1". URL: "%2". Помилка: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Отримано повідомлення про помилку від початкового URL-адреси. Торрент: "%1". URL: "%2". Повідомлення: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Успішне прослуховування IP. IP: "%1". Порт: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Не вдалося прослухати IP. IP: "%1". Порт: "%2/%3". Причина: "%4" - + Detected external IP. IP: "%1" Виявлено зовнішній IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Помилка: внутрішня черга сповіщень заповнена, сповіщення видаляються, ви можете спостерігати зниження продуктивності. Тип видаленого сповіщення: "%1". Повідомлення: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Торрент успішно перенесено. Торрент: "%1". Пункт призначення: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Не вдалося перемістити торрент. Торрент: "%1". Джерело: "%2". Призначення: "%3". Причина: "%4" @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Не вдалося записати у файл. Причина: "%1". Торрент зараз у режимі "тільки завантаження". - + Download first and last piece first: %1, torrent: '%2' Завантажувати з першої та останньої частини: %1, торрент: '%2' - + On Увімк. - + Off Вимк. - + Failed to reload torrent. Torrent: %1. Reason: %2 Не вдалося перезавантажити торрент. Торрент: %1. Причина: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Не вдалося створити , відновити дані. Торрент: "%1". Причина: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Не вдалося відновити торрент. Файли були мабуть переміщенні, або сховище недоступне. Торрент: "%1". Причина: "%2" - + Missing metadata Відсутні метадані - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Перейменування файлу не вдалося. Торрент: "%1", файл: "%2", причина: "%3" - + Performance alert: %1. More info: %2 Попередження продуктивності: %1. Більше інформації: %2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Очікувалося ціле число у змінній середовища '%1', але отримано '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Параметр '%1' повинен відповідати синтаксису '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Параметр '%1' повинен відповідати синтаксису '%1=%2' + Параметр '%1' повинен відповідати синтаксису '%1=%2' @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - Додавати торренти як запущені чи призупинені + Додайте торренти як запущені або зупинені @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Запустити торренти Stop torrents - - - - Resume torrents - Відновити торренти - - - Pause torrents - Призупинити торренти + Зупинити торренти @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + Система @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - Також остаточно видалити файли + Також видаліть файли вмісту @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + Формат Шаблону Plain text - + Звичайний текст Wildcards - + Символи підстановки Regular expression - + Регулярний вираз GUIAddTorrentManager - + Downloading torrent... Source: "%1" Завантаження торрента... Джерело: "%1" - Trackers cannot be merged because it is a private torrent - Трекери не можна об’єднати, оскільки це приватний торрент - - - + Torrent is already present Торрент вже існує - + Trackers cannot be merged because it is a private torrent. - + Трекери не можуть бути об'єднані, оскільки це приватний торрент. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Торрент '%1' вже є у списку завантажень. Трекери не об'єднано, бо цей торрент приватний. @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Підтримувані файли образів + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Керування живленням знайшло відповідний інтерфейс D-Bus. Інтерфейс: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Помилка керування живленням. Дія: %1. Помилка: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Неочікувана помилка керування живленням. Стан: %1. Помилка: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Налаштування... - - &Resume - &Відновити - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + Си&стема відключення @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Закрити вікно - - R&esume All - П&родовжити всі - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + Пу&ск Sto&p - + Сто&п R&esume Session - + В&ідновити сеанс Pau&se Session - + При&зупинити Сеанс @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System При&спати систему - - S&hutdown System - &Вимкнути систему - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About &Про програму - - &Pause - При&зупинити - - - P&ause All - &Зупинити всі - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Показати - + Check for program updates Перевірити, чи є свіжіші версії програми @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Якщо вам подобається qBittorrent, будь ласка, пожертвуйте кошти! - + Execution Log Журнал виконання - + Clear the password Забрати пароль - + &Set Password &Встановити пароль - + Preferences Налаштування - + &Clear Password &Забрати пароль - + Transfers Завантаження - - + + qBittorrent is minimized to tray qBittorrent згорнено до системного лотка - - - + + + This behavior can be changed in the settings. You won't be reminded again. Цю поведінку можна змінити в Налаштуваннях. Більше дане повідомлення показуватися не буде. - + Icons Only Лише значки - + Text Only Лише текст - + Text Alongside Icons Текст біля значків - + Text Under Icons Текст під значками - + Follow System Style Наслідувати стиль системи - - + + UI lock password Пароль блокування інтерфейсу - - + + Please type the UI lock password: Будь ласка, введіть пароль блокування інтерфейсу: - + Are you sure you want to clear the password? Ви впевнені, що хочете забрати пароль? - + Use regular expressions Використовувати регулярні вирази - - + + Search Engine - Пошуковик + Пошуковик - + Search has failed - Пошук невдалий + Пошук невдалий - + Search has finished - Пошук закінчено + Пошук закінчено - + Search Пошук - + Transfers (%1) Завантаження (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent щойно був оновлений і потребує перезапуску, щоб застосувати зміни. - + qBittorrent is closed to tray qBittorrent закрито до системного лотка - + Some files are currently transferring. Деякі файли наразі передаються. - + Are you sure you want to quit qBittorrent? Ви впевнені, що хочете вийти з qBittorrent? - + &No &Ні - + &Yes &Так - + &Always Yes &Завжди так - + Options saved. Параметри збережені. - + [PAUSED] %1 %1 is the rest of the window title - + [ПАУЗА] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Інсталятор Python не вдалося завантажити. Помилка: %1. +Будь ласка, встановіть його вручну. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Не вдалося перейменувати інсталятор Python. Джерело: "%1". Призначення: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Успіх у встановленні Python. + Exit code: %1. + Код виходу: %1. + + + + Reason: installer crashed. + Причина: Інсталятор аварійно завершився. + + + Python installation failed. - + Не вдалося встановити Python. - + Launching Python installer. File: "%1". - + Запуск інсталятора Python. Файл: "%1". - - + + Missing Python Runtime Відсутнє середовище виконання Python - + qBittorrent Update Available Доступне оновлення qBittorrent - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Для використання Пошуковика потрібен Python, але, здається, він не встановлений. Встановити його зараз? - + Python is required to use the search engine but it does not seem to be installed. Для використання Пошуковика потрібен Python, але, здається, він не встановлений. - - + + Old Python Runtime Стара версія Python - + A new version is available. Доступна нова версія. - + Do you want to download %1? Чи ви хочете завантажити %1? - + Open changelog... Відкрити список змін... - + No updates available. You are already using the latest version. Немає доступних оновлень. Ви вже користуєтеся найновішою версією. - + &Check for Updates &Перевірити оновлення - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Ваша версія Python (%1) застаріла. Мінімальна вимога: %2 Ви бажаєте встановити більш нову версію зараз? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Ваша версія Python (%1) застаріла. Будь ласка, оновіться до останньої версії, щоб пошукові системи працювали. Мінімально необхідна версія: %2. - + Paused - Призупинений + Призупинені - + Checking for Updates... Перевірка оновлень... - + Already checking for program updates in the background Вже відбувається фонова перевірка оновлень - + Python installation in progress... - + Встановлення Python, що триває ... - + Failed to open Python installer. File: "%1". - + Не вдалося відкрити інсталятор Python. Файл: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Невдалий хеш MD5 на наявність інсталятора Python. Файл: "%1". Результат Хеш: "%2". Очікується хеш: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Невдалий хеш-перевірка SHA3-512 наявність інсталятора Python. Файл: "%1". Результат Хеш: "%2". Очікується хеш: "%3". - + Download error Помилка завантаження - Python setup could not be downloaded, reason: %1. -Please install it manually. - Не вдалося завантажити програму інсталяції Python. Причина: %1. -Будь ласка, встановіть Python самостійно. - - - - + + Invalid password Неправильний пароль - + Filter torrents... Фільтрувати торренти... - + Filter by: Фільтрувати за: - + The password must be at least 3 characters long Пароль має містити щонайменше 3 символи - - - + + + RSS (%1) RSS (%1) - + The password is invalid Цей пароль неправильний - + DL speed: %1 e.g: Download speed: 10 KiB/s Шв. завант.: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Шв. відвант.: %1 - + Hide Сховати - + Exiting qBittorrent Вихід із qBittorrent - + Open Torrent Files Відкрити torrent-файли - + Torrent Files Torrent-файли @@ -4556,7 +4561,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + Помилка SSL, URL: "%1", помилки: "%2" @@ -5853,47 +5858,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 З'єднання не вдале, нерозпізнана відповідь: %1 - + Authentication failed, msg: %1 Автентифікація не вдала, повід.: %1 - + <mail from> was rejected by server, msg: %1 <mail from> було відхиллено сервером, повід.: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> було відхиллено сервером, повід.: %1 - + <data> was rejected by server, msg: %1 <data> було відхиллено сервером, повід.: %1 - + Message was rejected by the server, error: %1 Повідомлення було відхилене сервером, помилка: %1 - + Both EHLO and HELO failed, msg: %1 Обидві команди EHLO і HELO не вдалися, повід.: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP сервер схоже не підтримує жоден з способів автентифікації, які ми підтримуємо [CRAM-MD5|PLAIN|LOGIN], пропускаємо автентифікацію, тому що це, ймовірно, зазнає невдачі... Способи Автентифікації Сервера: %1 - + Email Notification Error: %1 Помилка Сповіщення Електронною Поштою: %1 @@ -5935,10 +5940,6 @@ Please install it manually. RSS RSS - - Web UI - Веб-інтерфейс - Advanced @@ -5959,14 +5960,6 @@ Please install it manually. Confirm when deleting torrents Підтверджувати видалення торрентів - - Shows a confirmation dialog upon pausing/resuming all the torrents - Показує діалогове вікно підтвердження після призупинення/відновлення всіх торрентів - - - Confirm "Pause/Resume all" actions - Підтвердьте дії "призупинити/відновити все" - Use alternating row colors @@ -5983,10 +5976,6 @@ Please install it manually. Always Завжди - - Paused torrents only - Лише призупинені торренти - Action on double-click @@ -5997,10 +5986,6 @@ Please install it manually. Downloading torrents: Якщо завантажується: - - Start / Stop Torrent - Запустити або зупинити торрент - @@ -6059,179 +6044,179 @@ Please install it manually. КіБ - + + Show free disk space in status bar + + + + Torrent content layout: Структура вмісту торрента: - + Original Без змін - + Create subfolder Створити підтеку - + Don't create subfolder Не створювати підтеку - + The torrent will be added to the top of the download queue Торрент буде додано на початок черги завантаження - + Add to top of queue The torrent will be added to the top of the download queue Додати в початок черги - + When duplicate torrent is being added При додаванні дубліката торрента - + Merge trackers to existing torrent Об'єднати трекери в існуючий торрент - + Keep unselected files in ".unwanted" folder Зберігайте невибрані файли у теці ".unwanted" - + Add... Додати... - + Options.. Опції... - + Remove Видалити - + Email notification &upon download completion Сповіщення через e-mail про &завершення завантажень - + Send test email - + Надіслати тестовий електронний лист - + Run on torrent added: - + Запущено торрент додано: - + Run on torrent finished: - + Запущений торрент заавершений: - + Peer connection protocol: Протокол підключення пірів: - + Any Будь-який - + I2P (experimental) I2P (експериментальний) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Якщо &quot; ввімкнено «змішаний режим»&quot;, торрентам I2P також дозволено отримувати однорангові джерела з інших джерел, крім трекера, і підключатися до звичайних IP-адрес, не забезпечуючи анонімізації. Це може бути корисним, якщо користувач не зацікавлений в анонімізації I2P, але все одно хоче мати можливість підключатися до однорангових I2P..</p></body></html> - - - + Mixed mode Змішаний режим - Some options are incompatible with the chosen proxy type! - Деякі параметри несумісні з вибраним типом проксі! + Деякі параметри несумісні з вибраним типом проксі! - + If checked, hostname lookups are done via the proxy Якщо позначено, пошук імені хоста виконується через проксі - + Perform hostname lookup via proxy Виконайте пошук імені хоста через проксі - + Use proxy for BitTorrent purposes Використовуйте проксі для цілей BitTorrent - + RSS feeds will use proxy RSS-канали використовуватимуть проксі - + Use proxy for RSS purposes Використовуйте проксі для цілей RSS - + Search engine, software updates or anything else will use proxy Пошукова система, оновлення програмного забезпечення чи щось інше використовуватиме проксі - + Use proxy for general purposes Використовуйте проксі для загальних цілей - + IP Fi&ltering &Фільтрування IP - + Schedule &the use of alternative rate limits Використання альтернативних обмежень &швидкості за розкладом - + From: From start time З: - + To: To end time До: - + Find peers on the DHT network Шукати пірів в DHT (децентралізованій мережі) - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Disable encryption: Only connect to peers without protocol encryption Вимкнути шифрування: лише підключатися до пірів без шифрування протоколу - + Allow encryption Дозволити шифрування - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Детальніше</a>) - + Maximum active checking torrents: Максимум активних перевірок торрентів: - + &Torrent Queueing &Черга торрентів - + When total seeding time reaches По досягненні загального часу роздачі - + When inactive seeding time reaches По досягненні часу бездіяльності роздачі - A&utomatically add these trackers to new downloads: - Автоматично &додавати ці трекери до нових завантажень: - - - + RSS Reader Читач RSS - + Enable fetching RSS feeds Увімкнути завантаження RSS-подач - + Feeds refresh interval: Інтервал оновлення подач: - + Same host request delay: Затримка запиту до хоста: - + Maximum number of articles per feed: Максимальна кількість новин на подачу: - - - + + + min minutes хв - + Seeding Limits Обмеження роздачі - Pause torrent - Призупинити торрент - - - + Remove torrent Видалити торрент - + Remove torrent and its files Видалити торрент та його файли - + Enable super seeding for torrent Увімкнути режим супер-сід для торрента - + When ratio reaches При досягненні коефіцієнта роздачі - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Зупинити торрент - + A&utomatically append these trackers to new downloads: - + А&втоматично додавати ці трекери до нових завантажень: - + Automatically append trackers from URL to new downloads: - + Автоматично додайте трекери з URL -адреси до нових завантажень: - + URL: - Адреса: + Адреса: - + Fetched trackers - + Отримані трекери - + Search UI - + Пошук UI - + Store opened tabs - + Збережені вкладки магазину - + Also store search results - + Також зберігайте результати пошуку - + History length - + Довжина історії - + RSS Torrent Auto Downloader Автозавантажувач торрентів із RSS - + Enable auto downloading of RSS torrents Увімкнути автоматичне завантаження торрентів із RSS - + Edit auto downloading rules... Редагувати правила автозавантаження... - + RSS Smart Episode Filter Розумний фільтр серій по RSS - + Download REPACK/PROPER episodes Завантажувати серії REPACK/PROPER - + Filters: Фільтри: - + Web User Interface (Remote control) Веб-інтерфейс користувача (дистанційне керування) - + IP address: IP адреса: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv "::" для будь-якої адреси IPv6, або "*" для IPv4 і IPv6. - + Ban client after consecutive failures: Заблокувати клієнта після послідовних збоїв: - + Never Ніколи - + ban for: заблокувати на: - + Session timeout: Тайм-аут сеансу: - + Disabled Вимкнено - Enable cookie Secure flag (requires HTTPS) - Увімкнути захист cookie (вимагає HTTPS) - - - + Server domains: Домени сервера: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP &Використовувати HTTPS замість HTTP - + Bypass authentication for clients on localhost Пропустити автентифікацію для клієнтів на цьому ж комп'ютері - + Bypass authentication for clients in whitelisted IP subnets Пропустити автентифікацію для клієнтів із дозволених підмереж IP - + IP subnet whitelist... Список дозволених підмереж IP... - + Use alternative WebUI - + Використовувати альтернативний WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Укажіть IP-адреси зворотного проксі-сервера (або підмережі, наприклад 0.0.0.0/24), щоб використовувати перенаправлену адресу клієнта (заголовок X-Forwarded-For). Використовуйте ';' щоб розділити кілька записів. - + Upda&te my dynamic domain name Оновлювати мій &динамічний домен @@ -6519,12 +6502,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - Пошук + Пошук WebUI - + WebUI @@ -6539,29 +6522,29 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + Стиль: Color scheme: - + Колірна схема: Stopped torrents only - + Зупинені лише торренти Start / stop torrent - + Почати / зупинити торрент Open torrent options dialog - + Відкрийте діалогове вікно параметрів торрент @@ -6602,7 +6585,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - + Файл &Журналів @@ -6620,99 +6603,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.Видаляти файли журналу, старіші ніж: - + Show external IP in status bar - + Показати зовнішній IP у рядку стану - + When adding a torrent При додаванні торрента - + Bring torrent dialog to the front Підняти вікно торрента - + The torrent will be added to download list in a stopped state - + Торрент буде додано до списку завантажень у зупиненому стані - + Also delete .torrent files whose addition was cancelled Також видаляти .torrent-файли, додавання яких було скасовано - + Also when addition is cancelled Також, якщо додавання скасовано - + Warning! Data loss possible! Увага! Можлива втрата даних! - + Saving Management Керування зберіганням - + Default Torrent Management Mode: Усталений режим керування торрентами: - + Manual Вручну - + Automatic Автоматичний - + When Torrent Category changed: Коли змінилася категорія торрента: - + Relocate torrent Перемістити торрент - + Switch torrent to Manual Mode Перемкнути торрент до ручного режиму - - + + Relocate affected torrents Перемістити відповідні торренти - - + + Switch affected torrents to Manual Mode Перемкнути відповідні торренти до ручного режиму - + Use Subcategories Використовувати підкатегорії - + Default Save Path: Типовий шлях збереження: - + Copy .torrent files to: Копіювати torrent-файли до: @@ -6722,26 +6705,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.Показувати &qBittorrent в області сповіщень - &Log file - Файл &журналу - - - + Display &torrent content and some options Показувати вміст &торрента та деякі налаштування - + De&lete .torrent files afterwards &Видаляти файли .torrent опісля - + Copy .torrent files for finished downloads to: Копіювати torrent-файли для завершених завантажень до: - + Pre-allocate disk space for all files Попередньо виділяти місце для всіх файлів @@ -6771,10 +6750,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder Переглянути файл або відкрити теку призначення - - Show torrent options - Показати параметри торрента - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.років - + Log performance warnings Писати в журнал попередження швидкодії - The torrent will be added to download list in a paused state - Торрент додаватиметься до списку завантаження у призупиненому стані - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Не починати завантаження автоматично - + Whether the .torrent file should be deleted after adding it Чи слід видалити файл .torrent після його додавання - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Перед початком завантаження виділяти на диску місце під повний розмір файлу, щоб мінімізувати фрагментацію. Корисно лише для HDD. - + Append .!qB extension to incomplete files Додавати розширення .!qB до незавершених файлів - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Коли торрент завантажено, запропонувати додати торренти з будь-яких файлів .torrent, знайдених у ньому - + Enable recursive download dialog Увімкнути діалог рекурсивного завантаження - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Автоматично: різні властивості торренту (наприклад, шлях збереження) визначатимуться відповідною категорією Вручну: різні властивості торренту (наприклад, шлях збереження) потрібно призначати вручну - + When Default Save/Incomplete Path changed: Коли стандартний шлях для зберігання/невиконаних торрентів змінюється: - + When Category Save Path changed: Коли змінився шлях збереження категорії: - + Use Category paths in Manual Mode Використовувати шляхи Категорій в Ручному Режимі - + Resolve relative Save Path against appropriate Category path instead of Default one Визначити відносний Шлях Збереження у відповідному шляху Категорії замість типового @@ -6922,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallyСтан вікна qBittorrent під час запуску - + Torrent stop condition: Умови зупинки торрента: - - + + None Жодного - - + + Metadata received Метадані отримано - - + + Files checked Файли перевірені - + Ask for merging trackers when torrent is being added manually Просити про об'єднання трекерів, при ручному додаванні торрента - + Use another path for incomplete torrents: Використовувати інший шлях для неповних торрентів: - + Automatically add torrents from: Автоматично додавати торренти із: - + Excluded file names Виключені імена файлів - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: фільтрувати точне ім'я файлу. readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', але не 'readme10.txt'. - + Receiver Одержувач - + To: To receiver Кому: - + SMTP server: Сервер SMTP: - + Sender Відправник - + From: From sender Від: - + This server requires a secure connection (SSL) Цей сервер вимагає безпечного з'єднання (SSL) - - + + Authentication Автентифікація - - - - + + + + Username: Ім'я користувача: - - - - + + + + Password: Пароль: - + Run external program Запускати зовнішню програму - Run on torrent added - Запускати при додаванні торрента - - - Run on torrent finished - Запускати при завершені торрента - - - + Show console window Показати вікно консолі - + TCP and μTP TCP та μTP - + Listening Port Порт для вхідних з'єднань - + Port used for incoming connections: Порт, який використовуватиметься для вхідних з'єднань: - + Set to 0 to let your system pick an unused port Встановіть рівним 0, щоб дозволити системі вибрати якийсь невикористаний порт - + Random Випадковий - + Use UPnP / NAT-PMP port forwarding from my router Використовувати на моєму роутері перенаправлення портів UPnP / NAT-PMP - + Connections Limits Обмеження з'єднань - + Maximum number of connections per torrent: Максимальна кількість з'єднань на торрент: - + Global maximum number of connections: Загальна максимальна кількість з'єднань: - + Maximum number of upload slots per torrent: Макс. з'єднань для відвантаження на торрент: - + Global maximum number of upload slots: Загальна максимальна кількість з'єднань для відвантаження: - + Proxy Server Проксі-сервер - + Type: Тип: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Адреса: - - - + + + Port: Порт: - + Otherwise, the proxy server is only used for tracker connections В іншому випадку, проксі-сервер використовується лише для з'єднань з трекером - + Use proxy for peer connections Використовувати проксі для з'єднання з пірами - + A&uthentication &Автентифікація - Info: The password is saved unencrypted - Увага: пароль зберігається в незашифрованому вигляді + Увага: пароль зберігається в незашифрованому вигляді - + Filter path (.dat, .p2p, .p2b): Шлях до фільтра (.dat, .p2p, .p2b): - + Reload the filter Перезавантажити фільтр - + Manually banned IP addresses... Вручну заблоковані IP-адреси... - + Apply to trackers Застосувати до трекерів - + Global Rate Limits Глобальні обмеження швидкості - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s КіБ/с - - + + Upload: Відвантаження: - - + + Download: Завантаження: - + Alternative Rate Limits Альтернативні обмеження швидкості - + Start time Час початку - + End time Час завершення - + When: Коли: - + Every day Щодня - + Weekdays Робочі дні - + Weekends Вихідні - + Rate Limits Settings Налаштування обмежень швидкості - + Apply rate limit to peers on LAN Застосувати обмеження для пірів з LAN - + Apply rate limit to transport overhead Включати в обмеження протокол передачі - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Якщо "змішаний режим" увімкнено I2P -торренти дозволяється також отримувати однолітки з інших джерел, ніж трекер, і підключитися до звичайних IPS, не забезпечуючи жодної анонімізації. Це може бути корисно, якщо користувач не зацікавлений у анонімізації I2P, але все -таки хоче мати можливість підключитися до однолітків I2P.</p></body></html> - + Apply rate limit to µTP protocol Включати в обмеження протокол uTP - + Privacy Конфіденційність - + Enable DHT (decentralized network) to find more peers Увімкнути DHT (децентралізовану мережу), щоб знаходити більше пірів - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Обмін пірами із сумісними Bittorrent-клієнтами (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Увімкнути обмін пірами (PeX), щоб знаходити більше пірів - + Look for peers on your local network Шукати пірів у локальній мережі - + Enable Local Peer Discovery to find more peers Увімкнути локальний пошук пірів, щоб знаходити більше пірів - + Encryption mode: Режим шифрування: - + Require encryption Вимагати шифрування - + Disable encryption Вимкнути шифрування - + Enable when using a proxy or a VPN connection Увімкнути при використанні з'єднання через проксі або VPN - + Enable anonymous mode Увімкнути анонімний режим - + Maximum active downloads: Максимум активних завантажень: - + Maximum active uploads: Максимум активних відвантажень: - + Maximum active torrents: Максимум активних торрентів: - + Do not count slow torrents in these limits Не враховувати повільні торренти до цих обмежень - + Upload rate threshold: Поріг швидкості відвантаження: - + Download rate threshold: Поріг швидкості завантаження: - - - - + + + + sec seconds сек - + Torrent inactivity timer: Час простоювання торрента: - + then а тоді - + Use UPnP / NAT-PMP to forward the port from my router Використовувати UPnP / NAT-PMP, щоб направити порт в роутері - + Certificate: Сертифікат: - + Key: Ключ: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Інформація про сертифікати</a> - + Change current password Змінити поточний пароль - Use alternative Web UI - Використовувати альтернативний Веб-інтерфейс - - - + Files location: Розташування файлів: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Список альтернативних Webui</a> - + Security Безпека - + Enable clickjacking protection Увімкнути захист від клікджекінгу - + Enable Cross-Site Request Forgery (CSRF) protection Увімкнути захист від міжсайтової підробки запиту (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Увімкнути прапор захищених файлів cookie (вимагає HTTPS або LocalHost Connection) - + Enable Host header validation Увімкнути перевірку заголовку хоста - + Add custom HTTP headers Додати власні заголовки HTTP - + Header: value pairs, one per line По одному запису "заголовок: значення" на рядок - + Enable reverse proxy support Увімкнути підтримку зворотного проксі-сервера - + Trusted proxies list: Список довірених проксі: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Приклади налаштування зворотного проксі</a> - + Service: Сервіс: - + Register Зареєструватись - + Domain name: Домен: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Увімкнувши ці налаштування, ви ризикуєте <strong>безповоротно втратити</strong> ваші файли .torrent! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Якщо увімкнути другий параметр ( &ldquo;Також, якщо додавання скасовано&rdquo;) файл .torrent <strong>буде видалено</strong> навіть якщо ви натиснете &ldquo;<strong>Скасувати</strong>&rdquo; у вікні &ldquo;Додати торрент&rdquo; @@ -7520,12 +7478,12 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', Вибрати файл теми qBittorrent - + Choose Alternative UI files location Використовувати розташування файлів альтернативного інтерфейсу - + Supported parameters (case sensitive): Підтримувані параметри (чутливо до регістру): @@ -7545,183 +7503,183 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', Вимкнено, оскільки не вдалося виявити наявність системного лотка - + No stop condition is set. Умову зупинки не задано. - + Torrent will stop after metadata is received. Торрент зупиниться після отримання метаданих. - + Torrent will stop after files are initially checked. Торрент зупиниться після початкової перевірки файлів. - + This will also download metadata if it wasn't there initially. Це також завантажить метадані, якщо їх не було спочатку. - + %N: Torrent name %N: Назва торрента - + %L: Category %L: Категорія - + %F: Content path (same as root path for multifile torrent) %F: Шлях вмісту (для торрента з багатьма файлами те саме що корінь) - + %R: Root path (first torrent subdirectory path) %R: Кореневий шлях (шлях до головної теки торрента) - + %D: Save path %D: Шлях збереження - + %C: Number of files %C: Кількість файлів - + %Z: Torrent size (bytes) %Z: Розмір торрента (в байтах) - + %T: Current tracker %T: Поточний трекер - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Порада: Візьміть параметр у лапки, щоб заборонити обрізання тексту на пробілах (наприклад, "%N") - + Test email - + Тестовий електронний лист - + Attempted to send email. Check your inbox to confirm success - + Спроба надіслати електронний лист. Перевірте свою поштову скриньку, щоб підтвердити успіх - + (None) (Немає) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Торрент буде вважатися повільним, якщо його швидкість відвантаження або віддачі стане менше зазначених значень на час "Таймера бездіяльності торрента" - + Certificate Сертифікат: - + Select certificate Вибрати сертифікат - + Private key Закритий ключ - + Select private key Вибрати закритий ключ - + WebUI configuration failed. Reason: %1 Не вдалося виконати конфігурацію WebUI. Причина: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 рекомендується для кращої сумісності з темним режимом Windows - + System System default Qt style - + Система - + Let Qt decide the style for this system - + Хай Qt визначить стиль для цієї системи - + Dark Dark color scheme - + Темна тема - + Light Light color scheme - + Світла тема - + System System color scheme - + Система - + Select folder to monitor Виберіть теку для спостереження - + Adding entry failed Не вдалося додати запис - + The WebUI username must be at least 3 characters long. Ім'я користувача WebUI повинно мати довжину не менше 3 символів. - + The WebUI password must be at least 6 characters long. Пароль WebUI повинен мати довжину не менше 6 символів. - + Location Error Помилка розташування - - + + Choose export directory Виберіть каталог для експорту - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Коли ці параметри увімкнено, qBittorrent <strong>видалить</strong> файли .torrent після того як їх успішно (перший варіант) або неуспішно (другий варіант) додано до черги завантаження. Це буде застосовано <strong>не лише</strong> до файлів відкритих через меню &ldquo;Додати тооррент&rdquo;, але також до тих, що відкриваються через <strong>асоціацію типів файлів</strong> @@ -7731,69 +7689,69 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', Файл теми інтерфейсу користувача qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Мітки (розділені комами) - + %I: Info hash v1 (or '-' if unavailable) %I: інфо хеш v1 (або '-', якщо він недоступний) - + %J: Info hash v2 (or '-' if unavailable) %J: інфо хеш v2 (або '-', якщо він недоступний) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent ID (або sha-1 інфо хеш для торрента v1 або урізаний інфо хеш sha-256 для v2/гібридного торрента) - - + + Choose a save directory Виберіть каталог для збереження - + Torrents that have metadata initially will be added as stopped. Торренти, які мають метадані, будуть додані як зупинені. - + Choose an IP filter file Виберіть файл IP-фільтра - + All supported filters Всі підтримувані фільтри - + The alternative WebUI files location cannot be blank. Альтернативне розташування файлів WebUI не може бути порожнім. - + Parsing error Помилка розбору - + Failed to parse the provided IP filter Не вдалося розібрати даний фільтр IP - + Successfully refreshed Успішно оновлено - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Успішно розібрано наданий фільтр IP: застосовано %1 правил. @@ -7804,18 +7762,18 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', Налаштування - + Time Error Помилка часу - + The start time and the end time can't be the same. Час початку і кінця не може бути тим самим. - - + + Length Error Помилка довжини @@ -7900,169 +7858,169 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', Peer is using NAT hole punching - + Peer використовує пробивання отворів NAT PeerListWidget - + Country/Region Країна/регіон - + IP/Address IP/Адреса - + Port Порт - + Flags Властивості - + Connection З'єднання - + Client i.e.: Client application Клієнт - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID Клієнт - + Progress i.e: % downloaded Прогрес - + Down Speed i.e: Download speed Шв. завантаження - + Up Speed i.e: Upload speed Шв. відвантаження - + Downloaded i.e: total data downloaded Завантажено - + Uploaded i.e: total data uploaded Відвантажено - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Доречність - + Files i.e. files that are being downloaded right now Файли - + Column visibility Показані колонки - + Resize columns Змінити розмір стовпців - + Resize all non-hidden columns to the size of their contents Змінити розмір усіх не прихованих стовпців до розміру їх вмісту - + Add peers... Додати піри... - - + + Adding peers Додавання пірів - + Some peers cannot be added. Check the Log for details. Деякі піри не можуть бути додані. Дивіться журнал для отримання докладної інформації. - + Peers are added to this torrent. Піри додані до цього торрента. - - + + Ban peer permanently Заблокувати піра - + Cannot add peers to a private torrent Неможливо додати піри до приватного торрента - + Cannot add peers when the torrent is checking Неможливо додати піри, коли торрент перевіряється - + Cannot add peers when the torrent is queued Неможливо додати піри, коли торрент стоїть у черзі - + No peer was selected Не було вибрано жодного піра - + Are you sure you want to permanently ban the selected peers? Ви впевнені, що хочете назавжди заблокувати виділених пірів? - + Peer "%1" is manually banned Пір "%1" заблокований вручну - + N/A - + Copy IP:port Копіювати IP:порт @@ -8343,34 +8301,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent працює + qBittorrent працює PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Керування живленням знайшло відповідний інтерфейс D-Bus. Інтерфейс: %1 + Керування живленням знайшло відповідний інтерфейс D-Bus. Інтерфейс: %1 - Power management error. Did not found suitable D-Bus interface. - Помилка керування живленням. Не знайдено відповідний інтерфейс D-Bus. + Помилка керування живленням. Не знайдено відповідний інтерфейс D-Bus. - - - Power management error. Action: %1. Error: %2 - Помилка керування живленням. Дія: %1. Помилка: %2 + Помилка керування живленням. Дія: %1. Помилка: %2 - Power management unexpected error. State: %1. Error: %2 - Неочікувана помилка керування живленням. Стан: %1. Помилка: %2 + Неочікувана помилка керування живленням. Стан: %1. Помилка: %2 @@ -8614,12 +8565,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + Співвідношення / Час активності (у місяцях), вказує на популярність торрента Popularity: - + Популярність: @@ -8654,7 +8605,7 @@ Those plugins were disabled. Private: - + Приватний: @@ -8662,153 +8613,124 @@ Those plugins were disabled. Шлях збереження: - + Never Ніколи - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 × %2 (є %3) - - + + %1 (%2 this session) %1 (%2 цього сеансу) - - + + N/A - + Yes - Так + Так - + No - Ні + Ні - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (роздавався %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (макс. %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 загалом) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 середн.) - + Add web seed Add HTTP source - + Додайте веб seed - + Add web seed: - + Додайте веб seed - - + + This web seed is already in the list. - + Це веб seed вже в списку. - New Web seed - Додати Веб-сід - - - Remove Web seed - Вилучити Веб-сід - - - Copy Web seed URL - Скопіювати адресу веб-сіда - - - Edit Web seed URL - Редагувати адресу веб-сіда - - - + Filter files... Фільтрувати файли... - + Add web seed... - + Додайте веб seed... - + Remove web seed - + Видаліть веб seed - + Copy web seed URL - + Скопіюйте URL -адресу веб seed - + Edit web seed URL... - + Редагувати URL -адресу веб seed ... - + Speed graphs are disabled Графіки швидкості вимкнені - + You can enable it in Advanced Options Ви можете увімкнути їх в додаткових параметрах - New URL seed - New HTTP source - Нова адреса сіда - - - New URL seed: - Нова адреса сіда: - - - This URL seed is already in the list. - Ця адреса сіда вже є у списку. - - - + Web seed editing Редагування Веб-сіда - + Web seed URL: Адреса Веб-сіда: @@ -8816,33 +8738,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. Хибний формат даних. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Не вдалося зберегти дані Автозавантажувача RSS з %1. Помилка: %2 - + Invalid data format Хибний формат даних - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... RSS-стаття '%1' прийнята правилом '%2'. Спроба додати торрент. - + Failed to read RSS AutoDownloader rules. %1 Не вдалося прочитати правила Автозавантажувача RSS. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Не вдалося завантажити правила Автозавантажувача RSS. Причина: %1 @@ -8850,22 +8772,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Не вдалося завантажити RSS-канал з '%1'. Причина: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS-канал з '%1' оновлено. Додано %2 нових статей. - + Failed to parse RSS feed at '%1'. Reason: %2 Не вдалося розібрати RSS-канал з '%1'. Причина: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS-канал з '%1' успішно завантажений. Почався його розбір. @@ -8914,12 +8836,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Не вдалося зберегти конфігурацію сесії RSS подачі. Файл: "%1". Помилка: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Не вдалося зберегти данні сесії RSS подачі. Файл: "%1". Помилка: "%2" @@ -8941,76 +8863,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. Елемент не існує: %1. - Couldn't move folder into itself. - Не вдалося перемістити папку в саму себе. + Не вдалося перемістити папку в саму себе. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Не вдалося видалити кореневу теку. - + Failed to read RSS session data. %1 Не вдалося прочитати дані сеансу RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Не вдалося розібрати дані сеансу RSS. Файл: "%1". Помилка: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Не вдалося завантажити дані сеансу RSS. Файл: "%1". Помилка: "Неправильний формат даних". - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Не вдалося завантажити RSS-канал "%1". Канал: "%1". Причина: Потрібна адреса. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Не вдалося завантажити RSS-канал "%1". Канал: "%1". Причина: Хибний UID. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Повторна RSS роздача знайдена. UID: "%1". Помилка: Конфігурація схоже пошкоджена. - + Couldn't load RSS item. Item: "%1". Invalid data format. Не вдалося завантажити елемент RSS. Елемент: "%1". Хибний формат даних. - + Corrupted RSS list, not loading it. Пошкоджений список RSS подач, не завантажую його. - + Incorrect RSS Item path: %1. Некоректний шлях елемента RSS: %1. - + RSS item with given path already exists: %1. Запис RSS за даним шляхом вже присутній: %1. - + Parent folder doesn't exist: %1. Батьківська тека не існує: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Канал не існує: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Адреса: + + + + Refresh interval: + + + + + sec + сек + + + + Default + + + RSSWidget @@ -9110,78 +9077,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - Редагувати розсилку URL каналу... + Редагувати розсилку URL каналу... - Edit feed URL - Редагувати розсилку URL каналу... + Редагувати розсилку URL каналу... - + Please choose a folder name Будь ласка, виберіть назву теки - + Folder name: Назва теки: - + New folder Нова тека - - Please type a RSS feed URL - Будь-ласка, введіть адресу подачі RSS + Будь-ласка, введіть адресу подачі RSS - - Feed URL: - Адреса подачі: + Адреса подачі: - + Deletion confirmation Підтвердження видалення - + Are you sure you want to delete the selected RSS feeds? Ви впевнені, що хочете видалити вибрані RSS-подачі? - + Please choose a new name for this RSS feed Будь ласка, виберіть нову назву для цієї RSS-подачі - + New feed name: Нова назва подачі: - + Rename failed Перейменування не вдалося - + Date: Дата: - + Feed: канал: - + Author: Автор: @@ -9318,10 +9284,6 @@ Those plugins were disabled. i.e: Number of partial sources Лічери - - Search engine - Пошуковик - Filter search results... @@ -9411,17 +9373,17 @@ Those plugins were disabled. Engine - + Двигун Engine URL - + URL-адреса двигуна Published On - + Опубліковано @@ -9442,104 +9404,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. Нова адреса пошукового додатка - + Plugin already at version %1, which is greater than %2 Плаґін уже має версію %1, що вище ніж %2 - + A more recent version of this plugin is already installed. Новіша версія цього пошукового додатка вже встановлена. - + Plugin %1 is not supported. Додаток %1 не підтримується. - - + + Plugin is not supported. Додаток не підтримується. - + Plugin %1 has been successfully updated. Додаток %1 успішно оновлено. - + All categories Всі категорії - + Movies Фільми - + TV shows Телешоу - + Music Музика - + Games Ігри - + Anime Аніме - + Software Програми - + Pictures Зображення - + Books Книги - + Update server is temporarily unavailable. %1 Сервер оновлень тимчасово недоступний. %1 - - + + Failed to download the plugin file. %1 Не вдалося завантажити файл додатка. %1 - + Plugin "%1" is outdated, updating to version %2 Плаґін "%1 " застарів, оновлення до версії %2 - + Incorrect update info received for %1 out of %2 plugins. Отримано неправильну інформацію про оновлення для %1 з %2 плаґінів. - + Search plugin '%1' contains invalid version string ('%2') Пошуковий додаток '%1' містить хибний рядок версії ('%2') @@ -9565,137 +9527,129 @@ Click the "Search plugins..." button at the bottom right of the window Пошукові додатки... - + A phrase to search for. Пошукова фраза. - + Spaces in a search term may be protected by double quotes. Пробіли в пошуковій фразі можна захистити прямими подвійними лапками - + Example: Search phrase example Наприклад: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: шукати <b>foo bar</b> - + All plugins Всі додатки - + Only enabled Лише увімкнені - - + + Invalid data format. - Хибний формат даних. + Хибний формат даних. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: пошук для <b>foo</b> і <b>bar</b> - + Refresh - + Оновлювати - + Close tab Закрити вкладку - + Close all tabs Закрити усі вкладки - + Select... Вибрати... - - + + Search Engine Пошуковик - - + + Please install Python to use the Search Engine. Будь ласка, встановіть Python, щоб використовувати Пошуковик - + Empty search pattern Порожній шаблон пошуку - + Please type a search pattern first Будь ласка, спочатку введіть шаблон пошуку - + Stop Зупинити - - Search has finished - Пошук закінчено - - - Search has failed - Пошук невдалий - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Не вдалося завантажити пошук за збереженим UI даних. Файл: "%1". Помилка: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Не вдалося завантажити збережені результати пошуку. Вкладка: "%1". Файл: "%2". Помилка: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Не вдалося зберегти пошук стану UI. Файл: "%1". Помилка: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Не вдалося зберегти результати пошуку. Вкладка: "%1". Файл: "%2". Помилка: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Не вдалося завантажити пошук історії UI. Файл: "%1". Помилка: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Не вдалося зберегти історію пошуку. Файл: "%1". Помилка: "%2" @@ -10091,67 +10045,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Статус з'єднання: - - + + No direct connections. This may indicate network configuration problems. Немає прямих з'єднань. Це може означати, що є проблеми з налаштуванням мережі. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + Зовнішній IP: N/A + + + + DHT: %1 nodes DHT: %1 вузлів - + qBittorrent needs to be restarted! Потрібно перезапустити qBittorrent! - - + + Connection Status: Статус з'єднання: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Не в мережі. Зазвичай це означає, що qBittorrent не може приймати вхідні з'єднання з вибраного порту. - + Online В мережі - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + Зовнішні IPs: %1, %2 + + + + External IP: %1%2 + Зовнішній IP: %1 %2 + + + Click to switch to alternative speed limits Клацніть, щоб перемкнутись на альтернативні обмеження швидкості - + Click to switch to regular speed limits Клацніть, щоб повернутись до звичайних обмежень швидкості @@ -10179,23 +10143,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) Завершені (0) - - Resumed (0) - Відновлені (0) - - - Paused (0) - Призупинені (0) - Running (0) - + Виконується (0) Stopped (0) - + Зупинено (0) @@ -10260,49 +10216,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + Виконується (%1) Stopped (%1) - + Зупинено (%1) Start torrents - + Запустити торренти Stop torrents - - - - Paused (%1) - Призупинені (%1) + Зупинити торренти Moving (%1) Переміщення (%1) - - Resume torrents - Відновити завантаження - - - Pause torrents - Призупинити завантаження - Remove torrents Вилучити торренти - - Resumed (%1) - Відновлені (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags Вилучити невикористовувані мітки - - Resume torrents - Відновити торренти - - - Pause torrents - Призупинити торренти - Remove torrents Вилучити торренти - - New Tag - Нова мітка - Start torrents - + Запустити торренти Stop torrents - + Зупинити торренти @@ -10409,7 +10337,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + Додати тег @@ -10726,17 +10654,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks Забагато активних завдань - + Torrent creation is still unfinished. Створення торрента ще не завершено. - + Torrent creation failed. Не вдалося створити торрент. @@ -10988,17 +10916,6 @@ Please choose a different name and try again. Папка перегляду: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Не вдалося виділити пам'ять при читанні файла. Файл: "%1". Помилка: "%2" - - - Invalid metadata - Хибні метадані - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Обмеження швидкості торрента + Обмеження потоку торрент @@ -11054,7 +10967,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Обмеження швидкості потоку торрент @@ -11072,34 +10985,6 @@ Please choose a different name and try again. Upload: Відвантаження: - - Torrent share limits - Обмеження роздачі торрента - - - Use global share limit - Використовувати глобальні обмеження - - - Set no share limit - Встановити необмежену роздачу - - - Set share limit to - Встановити обмеження роздачі - - - ratio - коефіцієнт - - - total minutes - всього хвилин - - - inactive minutes - хвилин неактивності - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Please choose a different name and try again. Not applicable to private torrents Не застосовується до приватних торрентів - - No share limit method selected - Не вибраний метод обмеження роздачі - - - Please select a limit method first - Будь ласка, виберіть метод обмеження - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Please choose a different name and try again. Action when the limit is reached: - + Дія при досягненні ліміту: Stop torrent - + Зупинити торрент Remove torrent - Видалити торрент + Видалити торрент Remove torrent and its content - + Видаліть торрент і його вміст Enable super seeding for torrent - Увімкнути режим супер-сід для торрента + Увімкнути режим супер-сід для торрента @@ -11233,14 +11110,10 @@ Please choose a different name and try again. Torrent Tags Торрент теги - - New Tag - Нова мітка - Add tag - + Додати тег @@ -11271,90 +11144,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. Помилка: '%1' не є коректним torrent-файлом. - + Priority must be an integer Пріоритет повинен бути цілим числом - + Priority is not valid Некоректний пріоритет - + Torrent's metadata has not yet downloaded Метадані торрента ще не завантажені - + File IDs must be integers Ідентифікатори файлів повинні бути цілими числами - + File ID is not valid Некоректний ідентифікатор файла - - - - + + + + Torrent queueing must be enabled Черга торрентів повинна бути увімкнена - - + + Save path cannot be empty Шлях збереження не може бути порожнім - - + + Cannot create target directory Не вдається створити цільовий каталог - - + + Category cannot be empty Категорія не може бути порожньою - + Unable to create category Не вдалося створити категорію - + Unable to edit category Не вдалося редагувати категорію - + Unable to export torrent file. Error: %1 Не вдалося експортувати торрент-файл. Помилка: "%1" - + Cannot make save path Не вдалося створити шлях збереження "%1" is not a valid URL - + "%1" - це не дійсна URL адреса URL scheme must be one of [%1] - + Схема URL повинна бути однією з [%1] @@ -11362,39 +11235,39 @@ Please choose a different name and try again. хибно вказаний параметр "sort" - + "%1" is not an existing URL - + "%1" - це не існуюча URL адреса - + "%1" is not a valid file index. "%1" не є коректним індексом файлу. - + Index %1 is out of bounds. Індекс %1 виходить за межі. - - + + Cannot write to directory Не вдалося записати до каталогу - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI Задати розташування: переміщення "%1" з "%2" на "%3" - + Incorrect torrent name Хибна назва торрента - - + + Incorrect category name Некоректна назва категорії @@ -11477,45 +11350,33 @@ Please choose a different name and try again. Invalid state! - + Недійсний стан! URL/Announce Endpoint - + URL/Оголошення кінцевої точки BT Protocol - + Протокол BT Next Announce - + Наступний анонс Min Announce - - - - Invalid status! - Недійсний статус! - - - URL/Announce endpoint - URL/Оголошення кінцевої точки + Мін. Оголошення Tier Ранг - - Protocol - Протокол - Status @@ -11546,18 +11407,6 @@ Please choose a different name and try again. Message Повідомлення - - Next announce - Наступний анонс - - - Min announce - Мін анонсувати - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Please choose a different name and try again. Цей торрент приватний - + Tracker editing Редагування трекера - + Tracker URL: Адреса трекера: - - + + Tracker editing failed Не вдалось відредагувати трекер - + The tracker URL entered is invalid. Введено некоректну адресу трекера. - + The tracker URL already exists. Така адреса трекера вже існує. - + Edit tracker URL... Редагувати адресу трекера... - + Remove tracker Вилучити трекер - + Copy tracker URL Копіювати адресу трекера - + Force reannounce to selected trackers Примусово отримати пірів із вибраних трекерів - + Force reannounce to all trackers Примусово отримати піри з усіх трекерів - + Resize columns Змінити розмір стовпців - + Resize all non-hidden columns to the size of their contents Змінити розмір усіх не прихованих стовпців до розміру їх вмісту - + Add trackers... Додати трекери... - + Column visibility Показані колонки @@ -11716,20 +11565,12 @@ Please choose a different name and try again. Start torrents - + Запустити торренти Stop torrents - - - - Resume torrents - Відновити торренти - - - Pause torrents - Призупинити завантаження + Зупинити торренти @@ -11853,10 +11694,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Перевірка даних відновлення - - Paused - Призупинений - Completed @@ -11897,21 +11734,16 @@ Please choose a different name and try again. % Done Прогрес - - Status - Torrent status (e.g. downloading, seeding, paused) - Статус - Stopped - + Зупинено Status Torrent status (e.g. downloading, seeding, stopped) - Статус + Статус @@ -11946,7 +11778,7 @@ Please choose a different name and try again. Popularity - + Популярність @@ -12027,22 +11859,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - Активний протягом + Активний протягом Yes - Так + Так No - Ні - - - Time Active - Time (duration) the torrent is active (not paused) - Активний протягом + Ні @@ -12114,12 +11941,12 @@ Please choose a different name and try again. Private Flags private torrents - + Приватний Ratio / Time Active (in months), indicates how popular the torrent is - + Співвідношення / Час активності (у місяцях), вказує на популярність торрента @@ -12144,358 +11971,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility Показані колонки - + Recheck confirmation Підтвердження повторної перевірки - + Are you sure you want to recheck the selected torrent(s)? Ви впевнені, що хочете повторно перевірити вибрані торрент(и)? - + Rename Перейменувати - + New name: Нова назва: - + Choose save path Виберіть шлях збереження - Confirm pause - Підтвердити паузу - - - Would you like to pause all torrents? - Хочете призупинити всі торренти? - - - Confirm resume - Підтвердити відновити - - - Would you like to resume all torrents? - Бажаєте відновити всі торренти? - - - + Unable to preview Попередній перегляд не вдався - + The selected torrent "%1" does not contain previewable files Обраний торрент "%1" не містить файлів для попереднього перегляду - + Resize columns Змінити розмір стовпців - + Resize all non-hidden columns to the size of their contents Змінити розмір усіх не прихованих стовпців до розміру їх вмісту - + Enable automatic torrent management Увімкнути автоматичне керування торрентами - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Ви впевнені, що хочете увімкнути Автоматичне Керування Торрентами для вибраних торрент(ів)? Вони можуть бути переміщенні. - Add Tags - Додати мітки - - - + Choose folder to save exported .torrent files Виберіть теку для збереження експортованих .torrent файлів - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Експорт .torrent файла не вдалий. Торрент: "%1". Шлях збереження: "%2". Причина: "%3" - + A file with the same name already exists Файл з такою назвою вже існує - + Export .torrent file error Помилка експорта .torrent файла - + Remove All Tags Вилучити всі мітки - + Remove all tags from selected torrents? Вилучити всі мітки із вибраних торрентів? - + Comma-separated tags: Мітки, розділені комами: - + Invalid tag Некоректна мітка - + Tag name: '%1' is invalid Назва мітки: '%1' некоректна - &Resume - Resume/start the torrent - &Відновити - - - &Pause - Pause the torrent - &Призупинити - - - Force Resu&me - Force Resume/start the torrent - Примусово Продо&вжити - - - + Pre&view file... Пере&глянути файл... - + Torrent &options... Налаштування &торрента... - + 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 loc&ation... Змінити розта&шування... - + Force rec&heck Примусова перев&ірка - + Force r&eannounce Примусове п&овторне анонсування - + &Magnet link &Magnet-посилання - + Torrent &ID &ID торрента - + &Comment &Коментар - + &Name &Назва - + Info &hash v1 Інформаційний &хеш версія 1 - + Info h&ash v2 Інформаційний х&еш версія 2 - + Re&name... Пере&йменувати... - + Edit trac&kers... Редагувати тре&кери... - + E&xport .torrent... Е&кспортувати .torrent... - + Categor&y Категорі&я - + &New... New category... &Нова... - + &Reset Reset category &Збросити - + Ta&gs Те&ги - + &Add... Add / assign multiple tags... &Додати... - + &Remove All Remove all tags &Вилучити Всі - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Неможливо примусово повторно оголосити, якщо торрент Зупинено/У Черзі/Помилка/Перевірка - + &Queue &Черга - + &Copy &Копіювати - + Exported torrent is not necessarily the same as the imported Експортований торрент не обов’язково збігається з імпортованим - + Download in sequential order Завантажувати послідовно - + Add tags - + Додати тег - + Errors occurred when exporting .torrent files. Check execution log for details. Під час експорту файлів .torrent виникли помилки. Подробиці перевірте в журналі виконання. - + &Start Resume/start the torrent - + &Запуск - + Sto&p Stop the torrent - + Сто&п - + Force Star&t Force Resume/start the torrent - + Примусовий Запус&к - + &Remove Remove the torrent &Вилучити - + Download first and last pieces first Спочатку завантажувати першу і останню частину - + Automatic Torrent Management Автоматичне керування торрентами - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Автоматичний режим означає, що різні властивості торрента (наприклад, шлях збереження) визначатимуться відповідною категорією - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Неможливо примусово оголосити повторно, якщо торрент Призупинено/Поставлено в чергу/З помилкою/Перевіряється - - - + Super seeding mode Режим супер-сідування @@ -12571,7 +12359,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + Не вдалося встановити стиль програми. Невідомий стиль: "%1" @@ -12627,32 +12415,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Знайдено виконуваний файл Python. Ім'я: "%1". Версія: "%2" - + Failed to find Python executable. Path: "%1". Не вдалося знайти виконуваний файл Python. Шлях: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Не вдалося знайти виконуваний файл `python3` у змінній середовища PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Не вдалося знайти виконуваний файл `python` у змінній середовища PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Не вдалося знайти виконуваний файл `python` у реєстрі Windows. - + Failed to find Python executable Не вдалося знайти виконуваний файл Python @@ -12744,52 +12532,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Вказано неприйнятне ім’я cookie сеансу: «%1». Використовується стандартний. - + Unacceptable file type, only regular file is allowed. Неприпустимий тип файлу, дозволені лише звичайні файли. - + Symlinks inside alternative UI folder are forbidden. Символічні посилання всередині теки альтернативного інтерфейсу заборонені. - + Using built-in WebUI. Використовуючи вбудований WebUI. - + Using custom WebUI. Location: "%1". Використання кастомного WebUI. Місцезнаходження: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Переклад WebUI для вибраної локалі (%1) успішно завантажено. - + Couldn't load WebUI translation for selected locale (%1). Не вдалося завантажити переклад WebUI для вибраної локалі (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Відсутній роздільник ":" у спеціальному HTTP-заголовку Веб-інтерфейсу: "%1" - + Web server error. %1 Помилка веб-сервера. %1 - + Web server error. Unknown error. Помилка веб-сервера. Невідома помилка. @@ -12847,7 +12635,7 @@ Please choose a different name and try again. Unknown error - Невідома помилка + Невідома помилка diff --git a/src/lang/qbittorrent_uz@Latn.ts b/src/lang/qbittorrent_uz@Latn.ts index af26decce..34121ebfa 100644 --- a/src/lang/qbittorrent_uz@Latn.ts +++ b/src/lang/qbittorrent_uz@Latn.ts @@ -12,75 +12,75 @@ Haqida - + Authors Mualliflar - + Current maintainer Joriy ta'minotchi - + Greece Gretsiya - - + + Nationality: Millati: - - + + E-mail: E-mail: - - + + Name: Nomi: - + Original author Asl muallif - + France Fransiya - + Special Thanks Alohida minnatdorchilik - + Translators Tarjimonlar - + License Litsenziya - + Software Used Foydalanilgan dasturiy ta'minot - + qBittorrent was built with the following libraries: qBittorrent quyidagi kutubxonalar bilan ishlab chiqilgan: - + Copy to clipboard Buferga nusxalash @@ -164,15 +164,10 @@ Saqlash joyi - + Never show again Boshqa ko‘rsatilmasin - - - Torrent settings - Torrent sozlamalari - Set as default category @@ -189,12 +184,12 @@ Torrentni boshlash - + Torrent information Torrent axboroti - + Skip hash check Shifr tekshirilmasin @@ -203,6 +198,11 @@ Use another path for incomplete torrent + + + Torrent options + + Tags: @@ -229,75 +229,75 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - - + + Files checked - + Add to top of queue - + When checked, the .torrent file will not be deleted regardless of the settings at the "Download" page of the Options dialog - + Content layout: Kontent maketi: - + Original Asli - + Create subfolder Quyi jild yaratish - + Don't create subfolder Quyi jild yaratilmasin - + Info hash v1: - + Size: Hajmi: - + Comment: Sharh: - + Date: Sana: @@ -327,147 +327,147 @@ - + Do not delete .torrent file - + Download in sequential order - + Download first and last pieces first - + Info hash v2: - + Select All - + Select None - + Save as .torrent file... - + I/O Error I/O xatosi - + Not Available This comment is unavailable Mavjud emas - + Not Available This date is unavailable Mavjud emas - + Not available Mavjud emas - + Magnet link Magnet havola - + Retrieving metadata... Tavsif ma’lumotlari olinmoqda... - - + + Choose save path Saqlash yo‘lagini tanlang - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - - + + N/A Noaniq - + %1 (Free space on disk: %2) %1 (Diskdagi boʻsh joy: %2) - + Not available This size is unavailable. Mavjud emas - + Torrent file (*%1) - + Save as torrent file Torrent fayl sifatida saqlash - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... - + Parsing metadata... Tavsif ma’lumotlari ochilmoqda... - + Metadata retrieval complete Tavsif ma’lumotlari olindi @@ -485,22 +485,22 @@ - + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source @@ -666,763 +666,852 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrentlar tugallanganidan so‘ng yana bir bor tekshirilsin - - + + ms milliseconds ms - + Setting Sozlama - + Value Value set for this setting Qiymat - + (disabled) (faolsizlantirilgan) - + (auto) (avtomatik) - + + min minutes daq - + All addresses Barcha manzillar - + qBittorrent Section - - + + Open documentation Qoʻllanmani ochish - + All IPv4 addresses Barcha IPv4 manzillar - + All IPv6 addresses Barcha IPv6 manzillar - + libtorrent Section - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Normal - + Below normal - + Medium - + Low - + Very low - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache - - - - + + + + s seconds s - + Disk cache expiry interval Disk keshining saqlanish muddati - + Disk queue size - - + + Enable OS cache OT keshi ishga tushirilsin - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + + Delete files permanently + + + + + Move files to trash (if possible) + + + + + Torrent content removing mode + + + + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + + Simple pread/pwrite + + + + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - - .torrent file size limit - - - - - Type of service (ToS) for connections to peers + + Save statistics interval [0: disabled] + How often the statistics file is saved. + .torrent file size limit + + + + + Type of service (ToS) for connections to peers + + + + Prefer TCP - + Peer proportional (throttles TCP) - + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Pir xost nomlarini tahlillash - + IP address reported to trackers (requires restart) - + + Port reported to trackers (requires restart) [0: listening port] + + + + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) + + + + + Ignore SSL errors + + + + (Auto detect if empty) - + Python executable path (may require restart) - + + Start BitTorrent session in paused state + + + + + sec + seconds + + + + + -1 (unlimited) + + + + + BitTorrent session shutdown timeout [-1: unlimited] + + + + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications - + Display notifications for added torrents - + Download tracker's favicon - + Save path history length - + Enable speed graphs - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck Torrent qayta tekshirilishi tasdiqlansin - + Confirm removal of all tags - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface Har qanday interfeys - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker Ichki o‘rnatilgan treker ishga tushirilsin - + Embedded tracker port Ichki o‘rnatilgan treker porti + + AppController + + + + Invalid directory path + + + + + Directory does not exist + + + + + Invalid mode, allowed values: %1 + + + + + cookies must be array + + + Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 - + Torrent size: %1 - + Save path: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds - + + Thank you for using qBittorrent. - + Torrent: %1, sending mail notification - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit &Chiqish - + I/O Error i.e: Input/Output Error I/O xatosi - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1431,100 +1520,110 @@ Sababi: %2 - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + + This is a test email. + + + + + Test email + + + + '%1' has finished downloading. e.g: xxx.avi has finished downloading. “%1” yuklab olishni tamomladi. - + Information Ma’lumot - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation Navbatma-navbat yuklab olishni tasdiqlash - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Hech qachon - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Torrent rivoji saqlanmoqda... - + qBittorrent is now ready to exit @@ -1603,12 +1702,12 @@ - + Must Not Contain: Tarkibida bu bo‘lmasligi shart: - + Episode Filter: Qism filtri: @@ -1660,263 +1759,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Eksport qilish... - + Matches articles based on episode filter. Qism filtriga asoslangan maqolalar mosligini aniqlaydi. - + Example: Misol: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match birinchi faslning 2, 5, 8-15, 30 va undan keyingi qismlariga mos keladi - + Episode filter rules: Qism filtri qoidalari: - + Season number is a mandatory non-zero value Fasl raqamiga nol bo‘lmagan qiymat kiritish shart - + Filter must end with semicolon Filtr oxirida nuqta-vergul qo‘yilishi shart - + Three range types for episodes are supported: Qismlar uchun uch xildagi miqyos qo‘llanadi: - + Single number: <b>1x25;</b> matches episode 25 of season one Bitta son: <b>1x25;</b> birinchi faslning 25-qismiga mos keladi - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normal miqyos <b>1x25-40;</b> birinchi faslning 25-40 qismlariga mos keladi - + Episode number is a mandatory positive value - + Rules - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago Oxirgi marta %1 kun oldin mos kelgan - + Last Match: Unknown Oxirgi mos kelish sanasi noma’lum - + New rule name Yangi qoida nomi - + Please type the name of the new download rule. Yangi yuklab olish qoidasi uchun nom kiriting - - + + Rule name conflict Qoida nomida ziddiyat - - + + A rule with this name already exists, please choose another name. Bu nomdagi qoida oldindan mavjud, boshqa kiriting. - + Are you sure you want to remove the download rule named '%1'? Haqiqatan ham “%1” nomli yuklab olish qoidasini o‘chirib tashlamoqchimisiz? - + Are you sure you want to remove the selected download rules? Haqiqatan ham tanlangan yuklab olish qoidalarini o‘chirib tashlamoqchimisiz? - + Rule deletion confirmation Qoidani o‘chirib tashlashni tasdiqlash - + Invalid action Amal noto‘g‘ri - + The list is empty, there is nothing to export. Ro‘yxat bo‘m-bo‘sh, eksport qilinadigan narsa yo‘q. - + Export RSS rules - + I/O Error I/O xatosi - + Failed to create the destination file. Reason: %1 - + Import RSS rules - + Failed to import the selected rules file. Reason: %1 - + Add new rule... Yangi qoida qo‘shish... - + Delete rule Qoidani o‘chirib tashlash - + Rename rule... Qoida nomini o‘zgartirish... - + Delete selected rules Tanlangan qoidalarni o‘chirib tashlash - + Clear downloaded episodes... - + Rule renaming Qoida ismini o‘zgartirish - + Please type the new rule name Yangi qoida nomini kiriting - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -1958,7 +2057,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::BencodeResumeDataStorage - + Cannot create torrent resume folder: "%1" @@ -1968,28 +2067,28 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2004,12 +2103,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2017,38 +2116,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + Couldn't begin transaction. Error: %1 @@ -2056,22 +2155,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2079,457 +2178,498 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - - - + Torrent: "%1". - - - - Removed torrent. - - - - - - - Removed torrent and deleted its content. - - - - - - - Torrent paused. - - - - - - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + + Saving resume data completed. + + + + + BitTorrent session successfully finished. + + + + + Session shutdown timed out. + + + + + Removing torrent. + + + + + Removing torrent and deleting its content. + + + + + Torrent stopped. + + + + + Torrent content removed. Torrent: "%1" + + + + + Failed to remove torrent content. Torrent: "%1". Error: "%2" + + + + + Torrent removed. Torrent: "%1" + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 + + + + + Merging of trackers is disabled + + + + + Trackers cannot be merged because it is a private torrent + + + + + Trackers are merged from new source + + + + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + + Tracker list updated + + + + + Failed to update tracker list. Reason: "%1" + + + + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - - Torrent paused. Torrent: "%1" + + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Torrent stopped. Torrent: "%1" + + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - - - Removed torrent. Torrent: "%1" - - - - - Removed torrent and deleted its content. Torrent: "%1" - - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" + + + + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2545,13 +2685,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::TorrentCreator - + Operation aborted - - + + Create new torrent file failed. Reason: %1. @@ -2559,67 +2699,67 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::TorrentImpl - + Failed to add peer "%1" to torrent "%2". Reason: %3 - + Peer "%1" is added to torrent "%2" - + Unexpected data detected. Torrent: %1. Data: total_wanted=%2 total_wanted_done=%3. - + Couldn't write to file. Reason: "%1". Torrent is now in "upload only" mode. - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -2640,189 +2780,189 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CMD Options - + Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=value' - + Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--webui-port' must follow syntax '--webui-port=<value>' - + Expected integer number in environment variable '%1', but got '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - - - - + Expected %1 in environment variable '%2', but got '%3' - - + + %1 must specify a valid port (1 to 65535). - + Usage: - + [options] [(<filename> | <url>)...] - + Options: - + Display program version and exit - + Display this help message and exit - - Confirm the legal notice - - - - - - port + + Parameter '%1' must follow syntax '%1=%2' + e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' + Confirm the legal notice + + + + + + port + + + + Change the WebUI port - + Change the torrenting port - + Disable splash screen - + Run in daemon-mode (background) - + dir Use appropriate short form or abbreviation of "directory" - + Store configuration files in <dir> - - + + name - + Store configuration files in directories qBittorrent_<name> - + Hack into libtorrent fastresume files and make file paths relative to the profile directory - + files or URLs - + Download the torrents passed by the user - + Options when adding new torrents: - + path - + Torrent save path - - Add torrents as started or paused + + Add torrents as running or stopped - + Skip hash check Shifr tekshirilmasin - + Assign torrents to category. If the category doesn't exist, it will be created. - + Download files in sequential order - + Download first and last pieces first - + Specify whether the "Add New Torrent" dialog opens when adding a torrent. - + Option values may be supplied via environment variables. For option named 'parameter-name', environment variable name is 'QBT_PARAMETER_NAME' (in upper case, '-' replaced with '_'). To pass flag values, set the variable to '1' or 'TRUE'. For example, to disable the splash screen: - + Command line parameters take precedence over environment variables - + Help Yordam @@ -2874,13 +3014,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - Resume torrents - Torrentlarni davomlash + Start torrents + - Pause torrents - Torrentlarni pauza qilish + Stop torrents + @@ -2891,15 +3031,20 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also ColorWidget - + Edit... - + Reset + + + System + + CookiesDialog @@ -2940,12 +3085,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CustomThemeSource - + Failed to load custom theme style sheet. %1 - + Failed to load custom theme colors. %1 @@ -2953,7 +3098,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also DefaultThemeSource - + Failed to load default theme colors. %1 @@ -2972,23 +3117,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - Also permanently delete the files + Also remove the content files - + Are you sure you want to remove '%1' from the transfer list? Are you sure you want to remove 'ubuntu-linux-iso' from the transfer list? - + Are you sure you want to remove these %1 torrents from the transfer list? Are you sure you want to remove these 5 torrents from the transfer list? - + Remove @@ -3001,12 +3146,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Add torrent links - + One link per line (HTTP links, Magnet links and info-hashes are supported) @@ -3016,12 +3161,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Yuklab olish - + No URL entered - + Please type at least one URL. @@ -3180,25 +3325,48 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Tahlil xatosi: bu filtr fayli yaroqli PeerGuardian P2B fayli emas. + + FilterPatternFormatMenu + + + Pattern Format + + + + + Plain text + + + + + Wildcards + + + + + Regular expression + + + GUIAddTorrentManager - + Downloading torrent... Source: "%1" - - Trackers cannot be merged because it is a private torrent - - - - + Torrent is already present - + + Trackers cannot be merged because it is a private torrent. + + + + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3206,38 +3374,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GeoIPDatabase - - + + Unsupported database file size. Database fayl hajmi qo‘llab-quvvatlanmaydi. - + Metadata error: '%1' entry not found. Tavsif ma’lumotlari xatosi: “%1” kiritmasi topilmadi. - + Metadata error: '%1' entry has invalid type. Tavsif ma’lumotlari xatosi: “%1” kiritmasi yaroqsiz turda. - + Unsupported database version: %1.%2 Database versiyasi qo‘llab-quvvatlanmaydi: %1.%2 - + Unsupported IP version: %1 IP versiyasi qo‘llab-quvvatlanmaydi: %1 - + Unsupported record size: %1 Yozuv hajmi qo‘llab-quvvatlanmaydi: %1 - + Database corrupted: no data section found. Database buzilgan: ma’lumotlar bo‘limi topilmadi. @@ -3245,17 +3413,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Http::Connection - + Http request size exceeds limitation, closing socket. Limit: %1, IP: %2 - + Bad Http request method, closing socket. IP: %1. Method: "%2" - + Bad Http request, closing socket. IP: %1 @@ -3296,22 +3464,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also IconWidget - + Browse... Belgila... - + Reset - + Select icon - + Supported image files @@ -3347,13 +3515,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also LogPeerModel - + %1 was blocked. Reason: %2. 0.0.0.0 was blocked. Reason: reason for blocking. - + %1 was banned 0.0.0.0 was banned @@ -3362,60 +3530,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Main - + %1 is an unknown command line parameter. --random-parameter is an unknown command line parameter. - - + + %1 must be the single command line parameter. - + Run application with -h option to read about command line parameters. - + Bad command line - + Bad command line: - + An unrecoverable error occurred. + - qBittorrent has encountered an unrecoverable error. - + You cannot use %1: qBittorrent is already running. - + Another qBittorrent instance is already running. - + Found unexpected qBittorrent instance. Exiting this instance. Current process ID: %1. - + Error when daemonizing. Reason: "%1". Error code: %2. @@ -3428,602 +3596,678 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Tahrirlash - + &Tools &Asboblar - + &File &Fayl - + &Help &Yordam - + On Downloads &Done Yuklanishlar &tugallanganida - + &View &Ko‘rish - + &Options... &Opsiyalar... - - &Resume - &Davomlash - - - + &Remove - + Torrent &Creator &Torrent yaratuvchi - - + + Alternative Speed Limits Muqobil tezlik cheklovlari - + &Top Toolbar &Yuqoridagi uskunalar majmuasi - + Display Top Toolbar Yuqoridagi uskunalar majmuasini ko‘rsatish - + Status &Bar - + Filters Sidebar - + S&peed in Title Bar &Tezlik sarlavha qatorida - + Show Transfer Speed in Title Bar Oldi-berdi tezligini sarlavha qatorida ko‘rsatish - + &RSS Reader &RSS o‘quvchi - + Search &Engine &Qidiruv vositasi - + L&ock qBittorrent qBittorrent’ni q&ulflash - + Do&nate! &Xayriya! - + + Sh&utdown System + + + + &Do nothing - + Close Window - - R&esume All - &Hammasini davomlash - - - + Manage Cookies... - + Manage stored network cookies - + Normal Messages - + Information Messages - + Warning Messages - + Critical Messages - + &Log &Log yuritish - + + Sta&rt + + + + + Sto&p + + + + + R&esume Session + + + + + Pau&se Session + + + + Set Global Speed Limits... - + Bottom of Queue - + Move to the bottom of the queue - + Top of Queue - + Move to the top of the queue - + Move Down Queue - + Move down in the queue - + Move Up Queue - + Move up in the queue - + &Exit qBittorrent qBittorrent’dan &chiqish - + &Suspend System &Tizimni uxlatish - + &Hibernate System Tizimni &kutish holatiga o‘tkazish - - S&hutdown System - Tizimni &o‘chirish - - - + &Statistics &Statistika - + Check for Updates Yangilanishlarni tekshirish - + Check for Program Updates Dastur yangilanishlarini tekshirish - + &About &Dastur haqida - - &Pause - &Pauza qilish - - - - P&ause All - &Hammasini pauza qilish - - - + &Add Torrent File... &Torrent fayli qo‘shish... - + Open Ochish - + E&xit &Chiqish - + Open URL URL manzilini ochish - + &Documentation &Hujjatlar - + Lock Qulflash - - - + + + Show Ko‘rsatish - + Check for program updates Dastur yangilanishlarini tekshirish - + Add Torrent &Link... Torrent &havolasi qo‘shish... - + If you like qBittorrent, please donate! Sizga qBittorrent dasturi yoqqan bo‘lsa, marhamat qilib xayriya qiling! - - + + Execution Log Faoliyat logi - + Clear the password Parolni tozalash - + &Set Password &Parol qo‘yish - + Preferences - + &Clear Password Parolni &tozalash - + Transfers Oldi-berdilar - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only Faqat ikonlar - + Text Only Faqat matn - + Text Alongside Icons Ikonlar yonida matn - + Text Under Icons Ikonlar tagida matn - + Follow System Style Tizim stiliga muvofiq - - + + UI lock password FI qulflash paroli - - + + Please type the UI lock password: UI qulflash parolini kiriting: - + Are you sure you want to clear the password? Haqiqatan ham parolni olib tashlamoqchimisiz? - + Use regular expressions - + + + Search Engine + + + + + Search has failed + + + + + Search has finished + + + + Search Qidiruv - + Transfers (%1) Oldi-berdi (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? - + &No &Yo‘q - + &Yes &Ha - + &Always Yes &Doim ha - + Options saved. - + + [PAUSED] %1 + %1 is the rest of the window title + + + + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - - + + Python installer could not be downloaded. Error: %1. +Please install it manually. + + + + + Rename Python installer failed. Source: "%1". Destination: "%2". + + + + + Python installation success. + + + + + Exit code: %1. + + + + + Reason: installer crashed. + + + + + Python installation failed. + + + + + Launching Python installer. File: "%1". + + + + + Missing Python Runtime - + qBittorrent Update Available qBittorrent uchun yangilanish mavjud - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Qidiruv vositasini ishlatish uchun Python kerak, ammo o‘rnatilmagan shekilli. Uni o‘rnatishni istaysizmi? - + Python is required to use the search engine but it does not seem to be installed. Qidiruv vositasini ishlatish uchun Python kerak, ammo o‘rnatilmagan shekilli. - - + + Old Python Runtime - + A new version is available. - + Do you want to download %1? - + Open changelog... - + No updates available. You are already using the latest version. Hech qanday yangilanish mavjud emas. Siz eng yangi versiyasidan foydalanmoqdasiz. - + &Check for Updates &Yangilanishlarni tekshirish - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + + Paused + Pauzada + + + Checking for Updates... Yangilanishlar tekshirilmoqda... - + Already checking for program updates in the background Dastur yangilanishlar fonda tekshirilmoqda - + + Python installation in progress... + + + + + Failed to open Python installer. File: "%1". + + + + + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". + + + + + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". + + + + Download error Yuklab olish xatoligi - - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python o‘rnatish faylini olib bo‘lmadi, sababi: %1. -Uni o‘zingiz o‘rnating. - - - - + + Invalid password Parol noto‘g‘ri - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - + + RSS (%1) RSS (%1) - + The password is invalid Parol yaroqsiz - + DL speed: %1 e.g: Download speed: 10 KiB/s YO tezligi: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Y tezligi: %1 - + Hide Yashirish - + Exiting qBittorrent qBittorrent dasturidan chiqilmoqda - + Open Torrent Files Torrent fayllarini ochish - + Torrent Files Torrent fayllari @@ -4218,7 +4462,12 @@ Uni o‘zingiz o‘rnating. Net::DownloadManager - + + SSL error, URL: "%1", errors: "%2" + + + + Ignoring SSL error, URL: "%1", errors: "%2" @@ -5590,486 +5839,500 @@ Uni o‘zingiz o‘rnating. - + RSS - - Web UI - - - - + Advanced - + Customize UI Theme... - + Transfer List - + Confirm when deleting torrents - - Shows a confirmation dialog upon pausing/resuming all the torrents - - - - - Confirm "Pause/Resume all" actions - - - - + Use alternating row colors In table elements, every other row will have a grey background. - + Hide zero and infinity values - + Always Har doim - - Paused torrents only - - - - + Action on double-click - + Downloading torrents: - - - Start / Stop Torrent - - - - - + + Open destination folder - - + + No action - + Completed torrents: - + Auto hide zero status filters - + Desktop - + Start qBittorrent on Windows start up - + Show splash screen on start up - + Confirmation on exit when torrents are active - + Confirmation on auto-exit when downloads finish - + <html><head/><body><p>To set qBittorrent as default program for .torrent files and/or Magnet links<br/>you can use <span style=" font-weight:600;">Default Programs</span> dialog from <span style=" font-weight:600;">Control Panel</span>.</p></body></html> - + KiB KiB - + Torrent content layout: - + Original Asli - + Create subfolder Quyi jild yaratish - + Don't create subfolder Quyi jild yaratilmasin - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... - + Options.. - + Remove - + Email notification &upon download completion - + + Send test email + + + + + Run on torrent added: + + + + + Run on torrent finished: + + + + Peer connection protocol: - + Any - + I2P (experimental) - - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - - - - + Mixed mode - + Some options are incompatible with the chosen proxy type! - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time - + To: To end time - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - - A&utomatically add these trackers to new downloads: - - - - + RSS Reader - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: - - - + + + min minutes daq - + Seeding Limits - - Pause torrent - - - - + Remove torrent - + Remove torrent and its files - + Enable super seeding for torrent - + When ratio reaches - + + Stop torrent + + + + + A&utomatically append these trackers to new downloads: + + + + + Automatically append trackers from URL to new downloads: + + + + + URL: + + + + + Fetched trackers + + + + + Search UI + + + + + Store opened tabs + + + + + Also store search results + + + + + History length + + + + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: - + Web User Interface (Remote control) - + IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Hech qachon - + ban for: - + Session timeout: - + Disabled - - Enable cookie Secure flag (requires HTTPS) - - - - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6078,441 +6341,482 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + + Use alternative WebUI + + + + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name - + Minimize qBittorrent to notification area - + + Search + Qidiruv + + + + WebUI + + + + Interface - + Language: - + + Style: + + + + + Color scheme: + + + + + Stopped torrents only + + + + + + Start / stop torrent + + + + + + Open torrent options dialog + + + + Tray icon style: - - + + Normal Normal - + File association - + Use qBittorrent for .torrent files - + Use qBittorrent for magnet links - + Check for program updates Dastur yangilanishlarini tekshirish - + Power Management - + + &Log Files + + + + Save path: - + Backup the log file after: - + Delete backup logs older than: - + + Show external IP in status bar + + + + When adding a torrent - + Bring torrent dialog to the front - + + The torrent will be added to download list in a stopped state + + + + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management - + Default Torrent Management Mode: - + Manual Mustaqil - + Automatic Avtomatik - + When Torrent Category changed: - + Relocate torrent - + Switch torrent to Manual Mode - + Relocate affected torrents - + Switch affected torrents to Manual Mode - + Use Subcategories - + Default Save Path: - + Copy .torrent files to: - + Show &qBittorrent in notification area - - &Log file - - - - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files - + Use custom UI Theme - + UI Theme file: - + Changing Interface settings requires application restart - + Shows a confirmation dialog upon torrent deletion - - + + Preview file, otherwise open destination folder - - - Show torrent options - - - - + Shows a confirmation dialog when exiting with active torrents - + When minimizing, the main window is closed and must be reopened from the systray icon - + The systray icon will still be visible when closing the main window - + Close qBittorrent to notification area The systray icon will still be visible when closing the main window - + Monochrome (for dark theme) - + Monochrome (for light theme) - + Inhibit system sleep when torrents are downloading - + Inhibit system sleep when torrents are seeding - + Creates an additional log file after the log file reaches the specified file size - + days Delete backup logs older than 10 days - + months Delete backup logs older than 10 months - + years Delete backup logs older than 10 years - + Log performance warnings - - The torrent will be added to download list in a paused state - - - - + Do not start the download automatically - The torrent will be added to download list in a paused state + The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one - + Use icons from system theme - + Window state on start up: - + qBittorrent window state on start up - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6529,766 +6833,816 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + To: To receiver - + SMTP server: - + Sender - + From: From sender - + This server requires a secure connection (SSL) - - + + Authentication - - - - + + + + Username: - - - - + + + + Password: - + Run external program - - Run on torrent added - - - - - Run on torrent finished - - - - + Show console window - + TCP and μTP - + Listening Port - + Port used for incoming connections: - + Set to 0 to let your system pick an unused port - + Random - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits - + Maximum number of connections per torrent: - + Global maximum number of connections: - + Maximum number of upload slots per torrent: - + Global maximum number of upload slots: - + Proxy Server - + Type: - + SOCKS4 - + SOCKS5 - + HTTP - - + + Host: - - - + + + Port: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - + Info: The password is saved unencrypted - + Filter path (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... - + Apply to trackers - + Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s - - + + Upload: - - + + Download: - + Alternative Rate Limits - + Start time - + End time - + When: - + Every day Har kuni - + Weekdays - + Weekends - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> + + + + Apply rate limit to µTP protocol - + Privacy - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds - + Torrent inactivity timer: - + then - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: - + Key: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password - - Use alternative Web UI - - - - + Files location: - + + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> + + + + Security - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + + Enable cookie Secure flag (requires HTTPS or localhost connection) + + + + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> + + + + Service: - + Register - + Domain name: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog - + Select qBittorrent UI Theme file - + Choose Alternative UI files location - + Supported parameters (case sensitive): - + Minimized - + Hidden - + Disabled due to failed to detect system tray presence - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name - + %L: Category - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path - + %C: Number of files - + %Z: Torrent size (bytes) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + + Test email + + + + + Attempted to send email. Check your inbox to confirm success + + + + (None) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + + %1 is recommended for best compatibility with Windows dark mode + Fusion is recommended for best compatibility with Windows dark mode + + + + + System + System default Qt style + + + + + Let Qt decide the style for this system + + + + + Dark + Dark color scheme + + + + + Light + Light color scheme + + + + + System + System color scheme + + + + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well - + qBittorrent UI Theme file (*.qbtheme config.json) - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - - + + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Berilgan IP filtri tahlil qilindi: %1 ta qoida qo‘llandi. - + Preferences - + Time Error - + The start time and the end time can't be the same. - - + + Length Error @@ -7296,80 +7650,85 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerInfo - + Unknown - + Interested (local) and choked (peer) - + Interested (local) and unchoked (peer) - + Interested (peer) and choked (local) - + Interested (peer) and unchoked (local) - + Not interested (local) and unchoked (peer) - + Not interested (peer) and unchoked (local) - + Optimistic unchoke - + Peer snubbed - + Incoming connection - + Peer from DHT - + Peer from PEX - + Peer from LSD - + Encrypted traffic - + Encrypted handshake + + + Peer is using NAT hole punching + + PeerListWidget @@ -7525,7 +7884,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + N/A Noaniq @@ -7548,7 +7907,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Format: IPv4:port / [IPv6]:port @@ -7589,27 +7948,27 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PiecesBar - + Files in this piece: - + File in this piece: - + File in these pieces: - + Wait until metadata become available to see detailed information - + Hold Shift key for detailed information @@ -7622,58 +7981,58 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Installed search plugins: - + Name - + Version - + Url - - + + Enabled - + Warning: Be sure to comply with your country's copyright laws when downloading torrents from any of these search engines. - + You can get new search engine plugins here: <a href="https://plugins.qbittorrent.org">https://plugins.qbittorrent.org</a> - + Install a new one - + Check for updates - + Close - + Uninstall @@ -7792,17 +8151,17 @@ Those plugins were disabled. - + Search plugin source: - + Local file - + Web link @@ -7843,47 +8202,47 @@ Those plugins were disabled. PreviewSelectDialog - + The following files from torrent "%1" support previewing, please select one of them: - + Preview - + Name - + Size - + Progress - + Preview impossible - + Sorry, we can't preview this file: "%1". - + Resize columns - + Resize all non-hidden columns to the size of their contents @@ -7896,27 +8255,27 @@ Those plugins were disabled. Private::FileLineEdit - + Path does not exist - + Path does not point to a directory - + Path does not point to a file - + Don't have read permission to path - + Don't have write permission to path @@ -7957,12 +8316,12 @@ Those plugins were disabled. PropertiesWidget - + Downloaded: - + Availability: @@ -7977,53 +8336,53 @@ Those plugins were disabled. - + Time Active: - Time (duration) the torrent is active (not paused) + Time (duration) the torrent is active (not stopped) - + ETA: - + Uploaded: - + Seeds: - + Download Speed: - + Upload Speed: - + Peers: - + Download Limit: - + Upload Limit: - + Wasted: @@ -8033,193 +8392,220 @@ Those plugins were disabled. - + Information Ma’lumot - + Info Hash v1: - + Info Hash v2: - + Comment: Sharh: - + Select All - + Select None - + Share Ratio: - + Reannounce In: - + Last Seen Complete: - + + + Ratio / Time Active (in months), indicates how popular the torrent is + + + + + Popularity: + + + + Total Size: - + Pieces: - + Created By: - + Added On: - + Completed On: - + Created On: - + + Private: + + + + Save Path: - + Never Hech qachon - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - - + + %1 (%2 this session) - - + + + N/A Noaniq - + + Yes + Ha + + + + No + Yo‘q + + + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - - New Web seed + + Add web seed + Add HTTP source - - Remove Web seed + + Add web seed: - - Copy Web seed URL + + + This web seed is already in the list. - - Edit Web seed URL - - - - + Filter files... + + + Add web seed... + + + + + Remove web seed + + + Copy web seed URL + + + + + Edit web seed URL... + + + + Speed graphs are disabled - + You can enable it in Advanced Options - - New URL seed - New HTTP source - - - - - New URL seed: - - - - - - This URL seed is already in the list. - - - - + Web seed editing - + Web seed URL: @@ -8238,22 +8624,22 @@ Those plugins were disabled. - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8312,12 +8698,12 @@ Those plugins were disabled. RSS::Private::Parser - + Invalid RSS feed. - + %1 (line: %2, column: %3, offset: %4). @@ -8335,89 +8721,89 @@ Those plugins were disabled. - - + + RSS feed with given URL already exists: %1. - + Feed doesn't exist: %1. - + Cannot move root folder. - - + + Item doesn't exist: %1. - + Couldn't move folder into itself. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. @@ -8441,8 +8827,8 @@ Those plugins were disabled. - - + + Mark items read @@ -8467,132 +8853,132 @@ Those plugins were disabled. - - + + Delete O‘chirib tashlash - + Rename... Nomini o‘zgartirish... - + Rename - - + + Update - + New subscription... - - + + Update all feeds - + Download torrent - + Open news URL - + Copy feed URL - + New folder... - + Edit feed URL... - + Edit feed URL - + Please choose a folder name - + Folder name: - + New folder - - + + Please type a RSS feed URL - - + + Feed URL: - + Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: - + Feed: - + Author: @@ -8600,38 +8986,38 @@ Those plugins were disabled. SearchController - + Python must be installed to use the Search Engine. - + Unable to create more than %1 concurrent searches. - - + + Offset is out of range - + All plugins are already up to date. - + Updating %1 plugins - + Updating plugin %1 - + Failed to check for plugin updates: %1 @@ -8706,132 +9092,142 @@ Those plugins were disabled. Hajmi: - + Name i.e: file name - + Size i.e: file size - + Seeders i.e: Number of full sources - + Leechers i.e: Number of partial sources - - Search engine - - - - + Filter search results... - + Results (showing <i>%1</i> out of <i>%2</i>): i.e: Search results - + Torrent names only - + Everywhere - + Use regular expressions - + Open download window - + Download Yuklab olish - + Open description page - + Copy Nusxalash - + Name - + Download link - + Description page URL - + Searching... - + Search has finished - + Search aborted - + An error occurred during search... - + Search returned no results - + + Engine + + + + + Engine URL + + + + + Published On + + + + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents @@ -8839,104 +9235,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories - + Movies - + TV shows - + Music - + Games - + Anime - + Software - + Pictures - + Books - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -8946,112 +9342,143 @@ Those plugins were disabled. - - - - Search Qidiruv - + There aren't any search plugins installed. Click the "Search plugins..." button at the bottom right of the window to install some. - + Search plugins... - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins - + Only enabled - + + + Invalid data format. + + + + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + + Refresh + + + + Close tab - + Close all tabs - + Select... - - - + + Search Engine - + + Please install Python to use the Search Engine. - + Empty search pattern - + Please type a search pattern first - + + Stop + + + SearchWidget::DataStorage - - Search has finished + + Failed to load Search UI saved state data. File: "%1". Error: "%2" - - Search has failed + + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" + + + + + Failed to save Search UI state. File: "%1". Error: "%2" + + + + + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" + + + + + Failed to load Search UI history. File: "%1". Error: "%2" + + + + + Failed to save search history. File: "%1". Error: "%2" @@ -9165,34 +9592,34 @@ Click the "Search plugins..." button at the bottom right of the window - + Upload: - - - + + + - - - + + + KiB/s - - + + Download: - + Alternative speed limits @@ -9384,32 +9811,32 @@ Click the "Search plugins..." button at the bottom right of the window - + Connected peers: - + All-time share ratio: - + All-time download: - + Session waste: - + All-time upload: - + Total buffer size: @@ -9424,12 +9851,12 @@ Click the "Search plugins..." button at the bottom right of the window - + Write cache overload: - + Read cache overload: @@ -9448,51 +9875,67 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: - - + + No direct connections. This may indicate network configuration problems. - - + + + External IP: N/A + + + + + DHT: %1 nodes - + qBittorrent needs to be restarted! - - - + + + Connection Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online - + + External IPs: %1, %2 + + + + + External IP: %1%2 + + + + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -9522,12 +9965,12 @@ Click the "Search plugins..." button at the bottom right of the window - Resumed (0) + Running (0) - Paused (0) + Stopped (0) @@ -9590,9 +10033,24 @@ Click the "Search plugins..." button at the bottom right of the window Completed (%1) + + + Running (%1) + + - Paused (%1) + Stopped (%1) + + + + + Start torrents + + + + + Stop torrents @@ -9600,26 +10058,11 @@ Click the "Search plugins..." button at the bottom right of the window Moving (%1) - - - Resume torrents - Torrentlarni davomlash - - - - Pause torrents - Torrentlarni pauza qilish - Remove torrents - - - Resumed (%1) - - Active (%1) @@ -9691,24 +10134,19 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags - - - Resume torrents - Torrentlarni davomlash - - - - Pause torrents - Torrentlarni pauza qilish - Remove torrents - - New Tag + + Start torrents + + + + + Stop torrents @@ -9716,6 +10154,11 @@ Click the "Search plugins..." button at the bottom right of the window Tag: + + + Add tag + + Invalid tag name @@ -9859,32 +10302,32 @@ Please choose a different name and try again. TorrentContentModel - + Name - + Progress - + Download Priority - + Remaining - + Availability - + Total Size @@ -9929,98 +10372,98 @@ Please choose a different name and try again. TorrentContentWidget - + Rename error - + Renaming - + New name: Yangi nomi: - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Open Ochish - + Open containing folder - + Rename... Nomini o‘zgartirish... - + Priority Dolzarblik - - + + Do not download Yuklab olinmasin - + Normal Normal - + High Yuqori - + Maximum Maksimal - + By shown file order - + Normal priority - + High priority - + Maximum priority - + Priority by shown file order @@ -10067,13 +10510,13 @@ Please choose a different name and try again. - + Select file - + Select folder @@ -10148,83 +10591,83 @@ Please choose a different name and try again. - + You can separate tracker tiers / groups with an empty line. - + Web seed URLs: - + Tracker URLs: - + Comments: - + Source: - + Progress: - + Create Torrent - - + + Torrent creation failed - + Reason: Path to file/folder is not readable. - + Select where to save the new torrent - + Torrent Files (*.torrent) - + Add torrent to transfer list failed. - + Reason: "%1" - + Add torrent failed - + Torrent creator - + Torrent created: @@ -10232,32 +10675,32 @@ Please choose a different name and try again. TorrentFilesWatcher - + Failed to load Watched Folders configuration. %1 - + Failed to parse Watched Folders configuration from %1. Error: "%2" - + Failed to load Watched Folders configuration from %1. Error: "Invalid data format." - + Couldn't store Watched Folders configuration to %1. Error: %2 - + Watched folder Path cannot be empty. - + Watched folder Path cannot be relative. @@ -10265,44 +10708,31 @@ Please choose a different name and try again. TorrentFilesWatcher::Worker - + Invalid Magnet URI. URI: %1. Reason: %2 - + Magnet file too big. File: %1 - + Failed to open magnet file: %1 - + Rejecting failed torrent file: %1 - + Watching folder: "%1" - - TorrentInfo - - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - - - - - Invalid metadata - Tavsif ma’lumotlari yaroqsiz - - TorrentOptionsDialog @@ -10331,173 +10761,161 @@ Please choose a different name and try again. - + Category: Toifa: - - Torrent speed limits + + Torrent Share Limits - + Download: - - + + - - + + Torrent Speed Limits + + + + + KiB/s - + These will not exceed the global limits - + Upload: - - Torrent share limits - - - - - Use global share limit - - - - - Set no share limit - - - - - Set share limit to - - - - - ratio - - - - - total minutes - - - - - inactive minutes - - - - + Disable DHT for this torrent - + Download in sequential order - + Disable PeX for this torrent - + Download first and last pieces first - + Disable LSD for this torrent - + Currently used categories - - + + Choose save path Saqlash yo‘lagini tanlang - + Not applicable to private torrents - - - No share limit method selected - - - - - Please select a limit method first - - TorrentShareLimitsWidget - - - + + + + Default - - - + + + Unlimited - - - + + + Set to - + Seeding time: - - - - + + + + + + min minutes daq - + Inactive seeding time: - + + Action when the limit is reached: + + + + + Stop torrent + + + + + Remove torrent + + + + + Remove torrent and its content + + + + + Enable super seeding for torrent + + + + Ratio: @@ -10510,32 +10928,32 @@ Please choose a different name and try again. - - New Tag + + Add tag - + Tag: - + Invalid tag name - + Tag name '%1' is invalid. - + Tag exists - + Tag name already exists. @@ -10543,115 +10961,130 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path - + + "%1" is not a valid URL + + + + + URL scheme must be one of [%1] + + + + 'sort' parameter is invalid - + + "%1" is not an existing URL + + + + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name @@ -10677,196 +11110,191 @@ Please choose a different name and try again. TrackerListModel - + Working - + Disabled - + Disabled for this torrent - + This torrent is private - + N/A Noaniq - + Updating... - + Not working - + Tracker error - + Unreachable - + Not contacted yet - - Invalid status! - - - - - URL/Announce endpoint + + Invalid state! - Tier - - - - - Protocol + URL/Announce Endpoint - Status - - - - - Peers - - - - - Seeds - - - - - Leeches - - - - - Times Downloaded - - - - - Message - - - - - Next announce + BT Protocol - Min announce + Next Announce - - v%1 + + Min Announce + + + + + Tier + + + + + Status + + + + + Peers + + + + + Seeds + + + + + Leeches + + + + + Times Downloaded + + + + + Message TrackerListWidget - + This torrent is private - + Tracker editing - + Tracker URL: - - + + Tracker editing failed - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker - + Copy tracker URL - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility @@ -10884,37 +11312,37 @@ Please choose a different name and try again. - + µTorrent compatible list URL: - + Download trackers list - + Add Qo‘shish - + Trackers list URL error - + The trackers list URL cannot be empty - + Download trackers list error - + Error occurred when downloading the trackers list. Reason: "%1" @@ -10922,62 +11350,62 @@ Please choose a different name and try again. TrackersFilterWidget - + Warning (%1) - + Trackerless (%1) - + Tracker error (%1) - + Other error (%1) - + Remove tracker - - Resume torrents - Torrentlarni davomlash + + Start torrents + - - Pause torrents - Torrentlarni pauza qilish + + Stop torrents + - + Remove torrents - + Removal confirmation - + Are you sure you want to remove tracker "%1" from all torrents? - + Don't ask me again. - + All (%1) this is for the tracker filter Hammasi (%1) @@ -10986,7 +11414,7 @@ Please choose a different name and try again. TransferController - + 'mode': invalid argument @@ -11078,11 +11506,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. - - - Paused - Pauzada - Completed @@ -11106,220 +11529,252 @@ Please choose a different name and try again. - + Name i.e: torrent name - + Size i.e: torrent size - + Progress % Done - - Status - Torrent status (e.g. downloading, seeding, paused) + + Stopped - + + Status + Torrent status (e.g. downloading, seeding, stopped) + + + + Seeds i.e. full sources (often untranslated) - + Peers i.e. partial sources (often untranslated) - + Down Speed i.e: Download speed - + Up Speed i.e: Upload speed - + Ratio Share ratio - + + Popularity + + + + ETA i.e: Estimated Time of Arrival / Time left - + Category - + Tags - + 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 - + Tracker - + Down Limit i.e: Download limit - + Up Limit i.e: Upload limit - + Downloaded Amount of data downloaded (e.g. in MB) Yuklab olingan - + Uploaded Amount of data uploaded (e.g. in MB) - + Session Download Amount of data downloaded since program open (e.g. in MB) - + Session Upload Amount of data uploaded since program open (e.g. in MB) - + Remaining Amount of data left to download (e.g. in MB) - + Time Active - Time (duration) the torrent is active (not paused) + Time (duration) the torrent is active (not stopped) - + + Yes + Ha + + + + No + Yo‘q + + + Save Path Torrent save path - + Incomplete Save Path Torrent incomplete save path - + Completed Amount of data completed (e.g. in MB) Tugallangan - + Ratio Limit Upload share ratio limit - + Last Seen Complete Indicates the time when the torrent was last seen complete/whole - + Last Activity Time passed since a chunk was downloaded/uploaded - + Total Size i.e. Size including unwanted data - + Availability The number of distributed copies of the torrent - + Info Hash v1 i.e: torrent info hash v1 - + Info Hash v2 i.e: torrent info hash v2 - + Reannounce In Indicates the time until next trackers reannounce - - + + Private + Flags private torrents + + + + + Ratio / Time Active (in months), indicates how popular the torrent is + + + + + + N/A Noaniq - + %1 ago e.g.: 1h 20m ago - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) @@ -11328,339 +11783,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility - + Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? - + Rename - + New name: Yangi nomi: - + Choose save path Saqlash yo‘lagini tanlang - - Confirm pause - - - - - Would you like to pause all torrents? - - - - - Confirm resume - - - - - Would you like to resume all torrents? - - - - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - - Add Tags - - - - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags - + Remove all tags from selected torrents? - + Comma-separated tags: - + Invalid tag - + Tag name: '%1' is invalid - - &Resume - Resume/start the torrent - &Davomlash - - - - &Pause - Pause the torrent - &Pauza qilish - - - - Force Resu&me - Force Resume/start the torrent - - - - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking + + + + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order - + + Add tags + + + + Errors occurred when exporting .torrent files. Check execution log for details. - + + &Start + Resume/start the torrent + + + + + Sto&p + Stop the torrent + + + + + Force Star&t + Force Resume/start the torrent + + + + &Remove Remove the torrent - + Download first and last pieces first - + Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - - - - + Super seeding mode @@ -11705,28 +12140,28 @@ Please choose a different name and try again. - + UI Theme Configuration. - + The UI Theme changes could not be fully applied. The details can be found in the Log. - + Couldn't save UI Theme configuration. Reason: %1 - - + + Couldn't remove icon file. File: %1. - + Couldn't copy icon file. Source: %1. Destination: %2. @@ -11734,7 +12169,12 @@ Please choose a different name and try again. UIThemeManager - + + Set app style failed. Unknown style: "%1" + + + + Failed to load UI theme from file: "%1" @@ -11765,20 +12205,21 @@ Please choose a different name and try again. Upgrade - + Migrate preferences failed: WebUI https, file: "%1", error: "%2" - + Migrated preferences: WebUI https, exported data to file: "%1" - - - - + + + + + Invalid value found in configuration file, reverting it to default. Key: "%1". Invalid value: "%2". @@ -11908,67 +12349,67 @@ Please choose a different name and try again. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. - + WebUI: Origin header & Target origin mismatch! Source IP: '%1'. Origin header: '%2'. Target origin: '%3' - + WebUI: Referer header & Target origin mismatch! Source IP: '%1'. Referer header: '%2'. Target origin: '%3' - + WebUI: Invalid Host header, port mismatch. Request source IP: '%1'. Server port: '%2'. Received Host header: '%3' - + WebUI: Invalid Host header. Request source IP: '%1'. Received Host header: '%2' @@ -11976,125 +12417,133 @@ Please choose a different name and try again. WebUI - + Credentials are not set - + WebUI: HTTPS setup successful - + WebUI: HTTPS setup failed, fallback to HTTP - + WebUI: Now listening on IP: %1, port: %2 - + Unable to bind to IP: %1, port: %2. Reason: %3 + + fs + + + Unknown error + + + misc - + B bytes - + KiB kibibytes (1024 bytes) - + MiB mebibytes (1024 kibibytes) - + GiB gibibytes (1024 mibibytes) - + TiB tebibytes (1024 gibibytes) - + PiB pebibytes (1024 tebibytes) - + EiB exbibytes (1024 pebibytes) - + /s per second - + %1s e.g: 10 seconds - + %1m e.g: 10 minutes - + %1h %2m e.g: 3 hours 5 minutes - + %1d %2h e.g: 2 days 10 hours - + %1y %2d e.g: 2 years 10 days - - + + Unknown Unknown (size) - + qBittorrent will shutdown the computer now because all downloads are complete. - + < 1m < 1 minute diff --git a/src/lang/qbittorrent_vi.ts b/src/lang/qbittorrent_vi.ts index 0679742e7..a657cb17c 100644 --- a/src/lang/qbittorrent_vi.ts +++ b/src/lang/qbittorrent_vi.ts @@ -74,7 +74,7 @@ Software Used - Phần mềm Được sử dụng + Phần Mềm Đã Dùng @@ -84,12 +84,12 @@ Copy to clipboard - Sao chép vào bộ nhớ tạm + Sao chép vào bảng tạm An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar. - Một ứng dụng khách BitTorrent nâng cao được lập trình bằng C++, dựa trên bộ công cụ Qt và libtorrent-rasterbar. + Ứng dụng khách BitTorrent nâng cao lập trình bằng C++, dựa trên Qt và libtorrent-rasterbar. @@ -170,10 +170,6 @@ Never show again Không hiển thị lại - - Torrent settings - Cài đặt torrent - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Tùy chọn Torrent @@ -235,25 +231,25 @@ Điều kiện dừng: - - + + None Không - - + + Metadata received Dữ liệu mô tả đã nhận - + Torrents that have metadata initially will be added as stopped. Các torrent có dữ liệu mô tả ban đầu sẽ được thêm vào dưới dạng đã dừng. - + Files checked Tệp đã kiểm tra @@ -368,112 +364,112 @@ Lưu tệp .torrent... - + I/O Error Lỗi I/O - + Not Available This comment is unavailable Không có sẵn - + Not Available This date is unavailable Không có sẵn - + Not available Không có sẵn - + Magnet link Liên kết magnet - + Retrieving metadata... Đang truy xuất dữ liệu mô tả... - - + + Choose save path Chọn đường dẫn lưu - + No stop condition is set. Chưa đặt điều kiện dừng. - + Torrent will stop after metadata is received. Torrent sẽ dừng sau khi nhận dữ liệu mô tả. - + Torrent will stop after files are initially checked. Torrent sẽ dừng sau khi tệp được kiểm tra lần đầu. - + This will also download metadata if it wasn't there initially. Sẽ tải xuống dữ liệu mô tả nếu ban đầu không có. - + N/A Không - + %1 (Free space on disk: %2) %1 (Dung lượng đĩa trống: %2) - + Not available This size is unavailable. Không có sẵn - + Torrent file (*%1) Tệp torrent (*%1) - + Save as torrent file Lưu tệp torrent - + Couldn't export torrent metadata file '%1'. Reason: %2. Không thể xuất tệp dữ liệu mô tả torrent '%1'. Lý do: %2. - + Cannot create v2 torrent until its data is fully downloaded. Không thể tạo torrent v2 cho đến khi dữ liệu của nó đã tải về đầy đủ. - + Filter files... Lọc tệp... - + Parsing metadata... Đang phân tích dữ liệu mô tả... - + Metadata retrieval complete Hoàn tất truy xuất dữ liệu mô tả @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Đang tải torrent... Nguồn: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Thêm torrent thất bại. Nguồn: "%1". Lý do: "%2" - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Đã phát hiện nỗ lực thêm torrent trùng lặp. Nguồn: %1. Torrent hiện có: %2. Kết quả: %3 + Đã phát hiện nỗ lực thêm torrent trùng lặp. Nguồn: %1. Torrent hiện có: %2. Kết quả: %3 - + Merging of trackers is disabled Gộp các máy theo dõi bị tắt - + Trackers cannot be merged because it is a private torrent Không thể hợp nhất trình theo dõi vì đây là torrent riêng tư - + Trackers are merged from new source Máy theo dõi được gộp từ ​​nguồn mới + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Kiểm tra lại torrent khi hoàn tất - - + + ms milliseconds ms - + Setting Cài đặt - + Value Value set for this setting Giá trị - + (disabled) ‎ (bị tắt)‎ - + (auto) (tự động) - - + + min minutes phút - + All addresses Tất cả các địa chỉ - + qBittorrent Section Phần qBittorrent - - + + Open documentation Mở tài liệu - + All IPv4 addresses Tất cả địa chỉ IPv4 - + All IPv6 addresses Tất cả địa chỉ IPv6 - + libtorrent Section Phần libtorrent - + Fastresume files Tệp fastresume - + SQLite database (experimental) Cơ sở dữ liệu SQLite (thử nghiệm) - + Resume data storage type (requires restart) Kiểu lưu trữ dữ liệu tiếp tục (cần khởi động lại) - + Normal Bình thường - + Below normal Dưới bình thường - + Medium Trung bình - + Low Thấp - + Very low Rất thấp - + Physical memory (RAM) usage limit Giới hạn sử dụng bộ nhớ vật lý (RAM) - + Asynchronous I/O threads Luồng I/O không đồng bộ - + Hashing threads Luồng băm - + File pool size Kích thước nhóm tệp - + Outstanding memory when checking torrents Bộ nhớ vượt mức khi kiểm tra torrents - + Disk cache Bộ nhớ đệm trên đĩa - - - - + + + + + s seconds gi. - + Disk cache expiry interval Khoảng thời gian hết hạn bộ nhớ đệm trên đĩa - + Disk queue size Kích thước hàng đợi đĩa - - + + Enable OS cache Bật bộ nhớ đệm của HĐH - + Coalesce reads & writes Kết hợp đọc và ghi - + Use piece extent affinity Sử dụng tương đồng khoảng mảnh - + Send upload piece suggestions Gửi đề xuất phần tải lên - - - - - + + + + + 0 (disabled) 0 (tắt) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Khoảng thời gian lưu dữ liệu tiếp tục [0: tắt] - + Outgoing ports (Min) [0: disabled] Cổng đi (Tối thiểu) [0: đã tắt] - + Outgoing ports (Max) [0: disabled] Cổng đi (Tối đa) [0: đã tắt] - + 0 (permanent lease) 0 (thuê vĩnh viễn) - + UPnP lease duration [0: permanent lease] Thời hạn thuê UPnP [0: thuê vĩnh viễn] - + Stop tracker timeout [0: disabled] Dừng thời gian tạm ngưng máy theo dõi [0: đã tắt] - + Notification timeout [0: infinite, -1: system default] Thời gian chờ thông báo [0: vô hạn, -1: mặc định hệ thống] - + Maximum outstanding requests to a single peer Số lượng yêu cầu tồn đọng tối đa tới một máy ngang hàng - - - - - + + + + + KiB KiB - + (infinite) (vô hạn) - + (system default) (mặc định hệ thống) - + Delete files permanently - + Xóa tập tin vĩnh viễn - + Move files to trash (if possible) - + Đưa tệp vào thùng rác (nếu có thể) - + Torrent content removing mode - + Chế độ xóa nội dung torrent - + This option is less effective on Linux Tùy chọn này ít hiệu quả trên Linux - + Process memory priority Ưu tiên bộ nhớ xử lý - + Bdecode depth limit Giới hạn độ sâu Bdecode - + Bdecode token limit Giới hạn độ sâu Bdecode - + Default Mặc định - + Memory mapped files Tệp ánh xạ bộ nhớ - + POSIX-compliant Chuẩn POSIX - + Simple pread/pwrite - + pread/pwrite đơn giản - + Disk IO type (requires restart) Loại IO trên đĩa (cần khởi động lại) - - + + Disable OS cache Tắt bộ nhớ đệm của hệ điều hành - + Disk IO read mode Chế độ đọc IO trên đĩa - + Write-through Viết qua - + Disk IO write mode Chế độ ghi IO trên đĩa - + Send buffer watermark Gửi buffer watermark - + Send buffer low watermark Gửi hình mờ thấp của bộ đệm - + Send buffer watermark factor Gửi buffer watermark factor - + Outgoing connections per second Kết nối đi mỗi giây - - + + 0 (system default) 0 (mặc định hệ thống) - + Socket send buffer size [0: system default] Socket gửi đi kích cỡ vùng đệm [0: mặc định hệ thống] - + Socket receive buffer size [0: system default] Socket nhận kích cỡ vùng đệm [0: mặc định hệ thống] - + Socket backlog size Kích thước tồn đọng socket - + Save statistics interval [0: disabled] How often the statistics file is saved. - + Lưu khoảng thời gian thống kê [0: tắt] - + .torrent file size limit giới hạn kích thước tệp .torrent - + Type of service (ToS) for connections to peers Loại dịch vụ (ToS) cho các kết nối tới ngang hàng - + Prefer TCP Ưu tiên TCP - + Peer proportional (throttles TCP) Tỷ lệ ngang hàng (điều chỉnh TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Hỗ trợ tên miền quốc tế hóa (IDN) - + Allow multiple connections from the same IP address Cho phép nhiều kết nối từ cùng một địa chỉ IP - + Validate HTTPS tracker certificates Xác thực chứng chỉ máy theo dõi HTTPS - + Server-side request forgery (SSRF) mitigation Chống giả mạo yêu cầu phía máy chủ (SSRF) - + Disallow connection to peers on privileged ports Không kết nối ngang hàng trên các cổng đặc quyền - + It appends the text to the window title to help distinguish qBittorent instances Nó nối văn bản vào tiêu đề cửa sổ để giúp phân biệt các phiên bản qBittorent - + Customize application instance name Tùy chỉnh tên phiên bản ứng dụng - + It controls the internal state update interval which in turn will affect UI updates Kiểm soát khoảng thời gian cập nhật trạng thái nội bộ, nó sẽ ảnh hưởng đến cập nhật giao diện người dùng - + Refresh interval Khoảng thời gian làm mới - + Resolve peer host names Xử lý tên các máy chủ ngang hàng - + IP address reported to trackers (requires restart) Địa chỉ IP được báo cáo cho máy theo dõi (yêu cầu khởi động lại) - + Port reported to trackers (requires restart) [0: listening port] - + Cổng được báo cáo cho máy theo dõi (yêu cầu khởi động lại) [0: Cổng nghe] - + Reannounce to all trackers when IP or port changed Thông báo lại với tất cả máy theo dõi khi IP hoặc cổng thay đổi - + Enable icons in menus Bật các biểu tượng trong menu - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker Bật chuyển tiếp cổng cho máy theo dõi được nhúng - + Enable quarantine for downloaded files Bật cách ly cho các tệp đã tải xuống - + Enable Mark-of-the-Web (MOTW) for downloaded files Bật Mark-of-the-Web (MOTW) cho các tệp đã tải xuống - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ảnh hưởng đến việc xác thực chứng chỉ và các hoạt động giao thức không phải torrent (ví dụ: nguồn cấp dữ liệu RSS, cập nhật chương trình, tệp torrent, db địa lý, v.v.) - + Ignore SSL errors - + Bỏ qua lỗi SSL - + (Auto detect if empty) (Tự động phát hiện nếu trống) - + Python executable path (may require restart) Đường dẫn thực thi Python (có thể yêu cầu khởi động lại) - + Start BitTorrent session in paused state - + Bắt đầu phiên BitTorrent ở trạng thái tạm dừng - + sec seconds - giây + giây - + -1 (unlimited) - + -1 (vô hạn) - + BitTorrent session shutdown timeout [-1: unlimited] - + Hết thời gian tắt phiên BitTorrent [-1: vô hạn] - + Confirm removal of tracker from all torrents Xác nhận xóa máy theo dõi khỏi tất cả torrent - + Peer turnover disconnect percentage Phần trăm ngắt kết nối xoay vòng ngang hàng - + Peer turnover threshold percentage Phần trăm ngưỡng xoay vòng ngang hàng - + Peer turnover disconnect interval Khoảng ngắt kết nối xoay vòng ngang hàng - + Resets to default if empty Đặt lại về mặc định nếu trống - + DHT bootstrap nodes Các nút khởi động DHT - + I2P inbound quantity Số lượng đầu vào I2P - + I2P outbound quantity Số lượng đầu ra I2P - + I2P inbound length Độ dài đầu vào I2P - + I2P outbound length Độ dài đầu ra I2P - + Display notifications Hiển thị thông báo - + Display notifications for added torrents Hiển thị thông báo cho các torrent được thêm vào - + Download tracker's favicon Tải về biểu tượng đại diện của máy theo dõi - + Save path history length Độ dài lịch sử đường dẫn lưu - + Enable speed graphs Bật biểu đồ tốc độ - + Fixed slots Cố định số lượng - + Upload rate based Tỷ lệ tải lên dựa trên - + Upload slots behavior Hành vi các lượt tải lên - + Round-robin Round-robin - + Fastest upload Tải lên nhanh nhất - + Anti-leech Chống leech - + Upload choking algorithm Thuật toán làm nghẽn tải lên - + Confirm torrent recheck Xác nhận kiểm tra lại torrent - + Confirm removal of all tags Xác nhận xóa tất cả các thẻ - + Always announce to all trackers in a tier Luôn thông báo cho tất cả các máy theo dõi trong một cấp - + Always announce to all tiers Luôn thông báo cho tất cả các cấp - + Any interface i.e. Any network interface Bất kỳ giao diện - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP thuật toán chế đọ hỗn hợp - + Resolve peer countries Giải quyết các quốc gia ngang hàng - + Network interface Giao diện mạng - + Optional IP address to bind to Địa chỉ IP tùy chọn để liên kết với - + Max concurrent HTTP announces Thông báo HTTP đồng thời tối đa - + Enable embedded tracker Bật máy theo dõi đã nhúng - + Embedded tracker port Cổng máy theo dõi đã nhúng @@ -1382,142 +1393,142 @@ Invalid directory path - + Đường dẫn thư mục không hợp lệ Directory does not exist - + Thư mục không tồn tại Invalid mode, allowed values: %1 - + Chế độ không hợp lệ, giá trị cho phép: %1 cookies must be array - + cookies phải là mảng Application - + Running in portable mode. Auto detected profile folder at: %1 Chạy ở chế độ di động. Thư mục hồ sơ được phát hiện tự động tại: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Đã phát hiện cờ dòng lệnh dự phòng: "%1". Chế độ di động ngụ ý số lượng nhanh tương đối. - + Using config directory: %1 Sử dụng thư mục cấu hình: %1 - + Torrent name: %1 Tên torrent: %1 - + Torrent size: %1 Kích cỡ Torrent: %1 - + Save path: %1 Đường dẫn lưu: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent đã được tải về trong %1. - - + + Thank you for using qBittorrent. Cảm ơn bạn đã sử dụng qBittorrent. - + Torrent: %1, sending mail notification Torrent: %1, gửi thông báo qua thư - + Add torrent failed Thêm torrent thất bại - + Couldn't add torrent '%1', reason: %2. Không thể thêm torrent '%1', lý do: %2. - + The WebUI administrator username is: %1 Tên người dùng của quản trị viên WebUI là: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Mật khẩu quản trị viên WebUI chưa được đặt. Mật khẩu tạm thời được cung cấp cho phiên này: %1 - + You should set your own password in program preferences. Bạn nên đặt mật khẩu của riêng mình trong tùy chọn chương trình. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI bị tắt! Để bật WebUI, hãy sửa tệp cấu hình theo cách thủ công. - + Running external program. Torrent: "%1". Command: `%2` Chạy chương trình bên ngoài. Torrent: "%1". Lệnh: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` Không thể chạy chương trình bên ngoài. Torrent: "%1". Lệnh: `%2` - + Torrent "%1" has finished downloading Torrent "%1" đã hoàn tất tải xuống - + WebUI will be started shortly after internal preparations. Please wait... WebUI sẽ được bắt đầu ngay sau khi chuẩn bị nội bộ. Vui lòng chờ... - - + + Loading torrents... Đang tải torrent... - + E&xit Thoát - + I/O Error i.e: Input/Output Error Lỗi Nhập/Xuất - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ Lý do: %2 - + Torrent added Đã thêm torrent - + '%1' was added. e.g: xxx.avi was added. '%1' đã được thêm. - + Download completed Đã tải về xong - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 đã bắt đầu. ID tiến trình: %2 - + This is a test email. - + Đây là email kiểm tra. - + Test email - + Email thử nghiệm - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' đã tải về hoàn tất. - + Information Thông tin - + To fix the error, you may need to edit the config file manually. Để sửa lỗi, bạn có thể cần phải sửa tệp cấu hình thủ công. - + To control qBittorrent, access the WebUI at: %1 Để điều khiển qBittorrent, hãy truy cập WebUI tại: %1 - + Exit Thoát - + Recursive download confirmation Xác nhận tải về đệ quy - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent '%1' chứa các tệp .torrent, bạn có muốn tiếp tục tải chúng xuống không? - + Never Không bao giờ - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Tải xuống đệ quy tệp .torrent trong torrent. Nguồn torrent: "%1". Tệp: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Không đặt được giới hạn sử dụng bộ nhớ vật lý (RAM). Mã lỗi: %1. Thông báo lỗi: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Không thể đặt giới hạn cứng sử dụng bộ nhớ vật lý (RAM). Kích thước được yêu cầu: %1. Giới hạn cứng của hệ thống: %2. Mã lỗi: %3. Thông báo lỗi: "%4" - + qBittorrent termination initiated Đã bắt đầu thoát qBittorrent - + qBittorrent is shutting down... qBittorrent đang tắt... - + Saving torrent progress... Đang lưu tiến trình torrent... - + qBittorrent is now ready to exit qBittorrent đã sẵn sàng để thoát @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Xuất... - + Matches articles based on episode filter. Chọn bài viết phù hợp dựa vào bộ lọc phân đoạn. - + Example: Ví dụ: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match sẽ khớp với các tập 2, 5, 8 đến 15, 30 và các tập tiếp theo của phần một - + Episode filter rules: Quy luật lọc phân đoạn: - + Season number is a mandatory non-zero value Số phần là một giá trị khác 0 bắt buộc - + Filter must end with semicolon Bộ lọc phải kết thúc bằng dấu chấm phẩy - + Three range types for episodes are supported: Ba loại phạm vi cho các tập được hỗ trợ: - + Single number: <b>1x25;</b> matches episode 25 of season one Số đơn: <b>1x25;</b> phù hợp với phân đoạn 25 của mùa một - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Khoảng thông thường: <b>1x25-40;</b> phù hợp với các tập từ 25 đến 40 của phần một - + Episode number is a mandatory positive value Số tập là một giá trị dương bắt buộc - + Rules Quy tắc - + Rules (legacy) Quy tắc (kế thừa) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Phạm vi vô hạn:<b>1x25-;</b> khớp với các tập từ 25 trở lên của phần một và tất cả các tập của các phần sau - + Last Match: %1 days ago Phù hợp gần đây: %1 ngày trước - + Last Match: Unknown Phù hợp gần đây: Không rõ - + New rule name Tên quy tắc mới - + Please type the name of the new download rule. Hãy nhập tên quy tắc tải về mới. - - + + Rule name conflict Xung đột tên quy tắc - - + + A rule with this name already exists, please choose another name. Một quy tắc có tên này đã tồn tại, hãy chọn một tên khác. - + Are you sure you want to remove the download rule named '%1'? Bạn có chắc muốn xóa quy tắc tải xuống tên là '%1' không? - + Are you sure you want to remove the selected download rules? Bạn có chắc muốn xóa các quy tắc tải xuống đã chọn không? - + Rule deletion confirmation Xác nhận xóa quy tắc - + Invalid action Hành động không hợp lệ - + The list is empty, there is nothing to export. Danh sách trống, không có gì để xuất. - + Export RSS rules Xuất quy tắc RSS - + I/O Error Lỗi I/O - + Failed to create the destination file. Reason: %1 Không thể tạo tệp đích. Lý do: %1 - + Import RSS rules Nhập quy tắc RSS - + Failed to import the selected rules file. Reason: %1 Không thể nhập tệp quy tắc đã chọn. Lý do: %1 - + Add new rule... Thêm quy tắc mới... - + Delete rule Xoá quy tắc - + Rename rule... Đổi tên quy tắc... - + Delete selected rules Xoá các quy tắc đã chọn - + Clear downloaded episodes... Xóa các tập đã tải xuống... - + Rule renaming Đổi tên quy tắc - + Please type the new rule name Vui lòng nhập tên quy tắc mới - + Clear downloaded episodes Xóa các tập đã tải xuống - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Bạn có chắc chắn muốn xóa danh sách các tập đã tải xuống cho quy tắc đã chọn không? - + Regex mode: use Perl-compatible regular expressions Chế độ Biểu thức chính quy: sử dụng biểu thức chính quy tương thích với Perl - - + + Position %1: %2 Vị trí %1: %2 - + Wildcard mode: you can use Chế độ ký tự đại diện: bạn có thể sử dụng - - + + Import error Lỗi nhập - + Failed to read the file. %1 Không đọc được tệp. %1 - + ? to match any single character ? để khớp với bất kỳ ký tự đơn lẻ nào - + * to match zero or more of any characters * để khớp với không hoặc nhiều hơn bất kỳ ký tự nào - + Whitespaces count as AND operators (all words, any order) Khoảng trắng được tính là toán tử VÀ (tất cả các từ, bất kỳ thứ tự nào) - + | is used as OR operator | được sử dụng như toán tử HOẶC - + If word order is important use * instead of whitespace. Nếu thứ tự từ là quan trọng, hãy sử dụng * thay vì khoảng trắng. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) Một biểu thức có mệnh đề %1 trống (ví dụ: %2) - + will match all articles. sẽ phù hợp với tất cả các bài báo. - + will exclude all articles. sẽ loại trừ tất cả các bài báo. @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Không thể phân tích cú pháp dữ liệu tiếp tục: định dạng không hợp lệ - - + + Cannot parse torrent info: %1 Không thể phân tích cú pháp thông tin của torrent: %1 - + Cannot parse torrent info: invalid format Không thể phân tích cú pháp thông tin của torrent: dịnh dạng không hợp lệ - + Mismatching info-hash detected in resume data Phát hiện hàm băm thông tin không khớp trong dữ liệu tiếp tục - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Không thể lưu dữ liệu mô tả torrent vào '%1'. Lỗi:%2. - + Couldn't save torrent resume data to '%1'. Error: %2. Không thể lưu dữ liệu tiếp tục torrent vào '%1'. Lỗi: %2. @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 Không thể phân tích cú pháp dữ liệu tiếp tục: %1 - + Resume data is invalid: neither metadata nor info-hash was found Dữ liệu tiếp tục không hợp lệ: không tìm thấy dữ liệu mô tả hay thông tin băm - + Couldn't save data to '%1'. Error: %2 Không thể lưu dữ liệu tới '%1'. Lỗi: %2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. Không tìm thấy. - + Couldn't load resume data of torrent '%1'. Error: %2 Không thể tải dữ liệu tiếp tục của torrent '%1'. Lỗi: %2 - - + + Database is corrupted. Cơ sở dữ liệu bị hỏng. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Không thể bật chế độ ghi nhật ký Ghi-Trước (WAL). Lỗi: %1. - + Couldn't obtain query result. Không thể nhận được kết quả truy vấn. - + WAL mode is probably unsupported due to filesystem limitations. Chế độ WAL có thể không được hỗ trợ do hạn chế của hệ thống tệp. - + + + Cannot parse resume data: %1 + Không thể phân tích cú pháp dữ liệu tiếp tục: %1 + + + + + Cannot parse torrent info: %1 + Không thể phân tích cú pháp thông tin của torrent: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Không thể bắt đầu giao dịch. Lỗi: %1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Không thể lưu dữ liệu mô tả torrent. Lỗi: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 Không thể lưu trữ dữ liệu tiếp tục cho torrent '%1'. Lỗi: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 Không thể xóa dữ liệu tiếp tục của torrent '%1'. Lỗi: %2 - + Couldn't store torrents queue positions. Error: %1 Không thể lưu được vị trí hàng đợi torrent. Lỗi: %1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Hỗ trợ Bảng Băm Phân Tán (DHT): %1 - - - - - - - - - + + + + + + + + + ON BẬT - - - - - - - - - + + + + + + + + + OFF TẮT - - + + Local Peer Discovery support: %1 Hỗ trợ tìm kiếm ngang hàng địa phương: %1 - + Restart is required to toggle Peer Exchange (PeX) support Khởi động lại là bắt buộc để chuyển đổi hỗ trợ trao đổi ngang hàng (PeX) - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Tiếp tục tải xuống torrent thất bại/không thành công. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Tiếp tục tải xuống torrent thất bại/không thành công: ID torrent không nhất quán đã được phát hiện/bị phát hiện/được nhận dạng. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Đã phát hiện dữ liệu không nhất quán: danh mục bị thiếu trong tệp cấu hình. Danh mục sẽ được khôi phục nhưng cài đặt của nó sẽ được đặt lại về mặc định. Torrent: "%1". Danh mục: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Đã phát hiện dữ liệu không nhất quán: danh mục không hợp lệ. Torrent: "%1". Danh mục: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Đã phát hiện sự không khớp giữa các đường dẫn lưu của danh mục đã khôi phục và đường dẫn lưu hiện tại của torrent. Torrent hiện đã được chuyển sang chế độ Thủ công. Torrent: "%1". Danh mục: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Đã phát hiện dữ liệu không nhất quán: thiếu thẻ trong tệp cấu hình. Thẻ sẽ được phục hồi. Torrent: "%1". Thẻ: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Đã phát hiện dữ liệu không nhất quán: thẻ không hợp lệ. Torrent: "%1". Thẻ: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Đã phát hiện sự kiện đánh thức hệ thống. Thông báo lại cho tất cả các máy theo dõi... - + Peer ID: "%1" ID Ngang hàng: "%1" - + HTTP User-Agent: "%1" Tác nhân Người dùng HTTP: '%1' - + Peer Exchange (PeX) support: %1 Hỗ trợ trao đổi ngang hàng (PeX): %1 - - + + Anonymous mode: %1 Chế độ ẩn danh: %1 - - + + Encryption support: %1 Hỗ trợ mã hóa: %1 - - + + FORCED BẮT BUỘC - + Could not find GUID of network interface. Interface: "%1" Không thể tìm thấy GUID của giao diện mạng. Giao diện: "%1" - + Trying to listen on the following list of IP addresses: "%1" Đang cố nghe danh sách địa chỉ IP sau: "%1" - + Torrent reached the share ratio limit. Torrent đã đến giới hạn tỷ lệ chia sẻ. - + Torrent: "%1". Torrent: "%1". - Removed torrent. - Xóa torrent. - - - Removed torrent and deleted its content. - Đã xóa torrent và xóa nội dung của nó. - - - Torrent paused. - Torrent đã tạm dừng. - - - + Super seeding enabled. Đã bật siêu chia sẻ. - + Torrent reached the seeding time limit. Torrent đã đạt đến giới hạn thời gian chia sẻ. - + Torrent reached the inactive seeding time limit. Torrent đã đạt đến giới hạn thời gian chia sẻ không hoạt động. - + Failed to load torrent. Reason: "%1" Không tải được torrent. Lý do: "%1" - + I2P error. Message: "%1". Lỗi I2P. Thông báo: "%1". - + UPnP/NAT-PMP support: ON Hỗ trợ UPnP/NAT-PMP: BẬT - + Saving resume data completed. - + Lưu dữ liệu hồi phục đã hoàn tất. - + BitTorrent session successfully finished. - + Phiên BitTorrent đã kết thúc thành công. - + Session shutdown timed out. - + Đã hết thời gian tắt phiên. - + Removing torrent. - + Đang xóa torrent. - + Removing torrent and deleting its content. - + Đang xóa torrent và nội dung của nó. - + Torrent stopped. - + Torrent đã dừng. - + Torrent content removed. Torrent: "%1" - + Đã xóa nội dung torrent. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Xnội dung torrent thất bại. Torrent: "%1". Lỗi: "%2" - + Torrent removed. Torrent: "%1" - + Đã xóa torrent. Torrent: "%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + Đã phát hiện nỗ lực thêm torrent trùng lặp. Torrent hiện có: %1. Kết quả: %2 - + Merging of trackers is disabled - Gộp các máy theo dõi bị tắt + Gộp các máy theo dõi bị tắt - + Trackers cannot be merged because it is a private torrent - + Không thể hợp nhất máy theo dõi vì đây là torrent riêng tư - + Trackers are merged from new source - Máy theo dõi được gộp từ ​​nguồn mới + Máy theo dõi được gộp từ ​​nguồn mới - + UPnP/NAT-PMP support: OFF Hỗ trợ UPnP/NAT-PMP: TẮT - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Không xuất được torrent. Dòng chảy: "%1". Điểm đến: "%2". Lý do: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Đã hủy lưu dữ liệu tiếp tục. Số lượng torrent đang giải quyết: %1 - + The configured network address is invalid. Address: "%1" Địa chỉ mạng đã cấu hình không hợp lệ. Địa chỉ: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Không thể tìm thấy địa chỉ mạng được định cấu hình để nghe. Địa chỉ: "%1" - + The configured network interface is invalid. Interface: "%1" Giao diện mạng được cấu hình không hợp lệ. Giao diện: "%1" - + Tracker list updated - + Đã cập nhật danh sách máy theo dõi - + Failed to update tracker list. Reason: "%1" - + Không thể cập nhật danh sách máy theo dõi. Lý do: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Đã từ chối địa chỉ IP không hợp lệ trong khi áp dụng danh sách các địa chỉ IP bị cấm. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Đã thêm máy theo dõi vào torrent. Torrent: "%1". Máy theo dõi: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" Đã xóa máy theo dõi khỏi torrent. Torrent: "%1". Máy theo dõi: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Đã thêm URL chia sẻ vào torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" Đã URL seed khỏi torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Xóa partfile thất bại. Torrent: "%1". Lý do: "%2". - Torrent paused. Torrent: "%1" - Torrent tạm dừng. Torrent: "%1" - - - + Torrent resumed. Torrent: "%1" Torrent đã tiếp tục. Torrent: "%1" - + Torrent download finished. Torrent: "%1" Tải xuống torrent đã hoàn tất. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Di chuyển Torrent bị hủy bỏ. Torrent: "%1". Nguồn: "%2". Đích đến: "%3" - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent đã dừng lại. Torrent: "%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Không thể xếp hàng di chuyển torrent. Torrent: "%1". Nguồn: "%2". Đích đến: "%3". Lý do: torrent hiện đang di chuyển đến đích - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Không thể xếp hàng di chuyển torrent. Torrent: "%1". Nguồn: "%2" Đích đến: "%3". Lý do: hai đường dẫn trỏ đến cùng một vị trí - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Đã xếp hàng di chuyển torent. Torrent: "%1". Nguồn: "%2". Đích đến: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Bắt đầu di chuyển torrent. Torrent: "%1". Đích đến: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Không lưu được cấu hình Danh mục. Tập tin: "%1". Lỗi: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Không thể phân tích cú pháp cấu hình Danh mục. Tập tin: "%1". Lỗi: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 Đã phân tích cú pháp thành công tệp bộ lọc IP. Số quy tắc được áp dụng: %1 - + Failed to parse the IP filter file Không thể phân tích cú pháp tệp bộ lọc IP - + Restored torrent. Torrent: "%1" Đã khôi phục torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" Đã thêm torrent mới. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Torrent đã bị lỗi. Torrent: "%1". Lỗi: "%2" - Removed torrent. Torrent: "%1" - Đã xóa torrent. Torrent: "%1" - - - Removed torrent and deleted its content. Torrent: "%1" - Đã xóa torrent và xóa nội dung của nó. Torrent: "%1" - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent thiếu tham số SSL. Torrent: "%1". Thông báo: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Cảnh báo lỗi tập tin. Torrent: "%1". Tập tin: "%2". Lý do: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" Ánh xạ cổng UPnP/NAT-PMP không thành công. Thông báo: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" Ánh xạ cổng UPnP/NAT-PMP đã thành công. Thông báo: "%1" - + IP filter this peer was blocked. Reason: IP filter. Lọc IP - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). đã lọc cổng (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). cổng đặc quyền (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + Kết nối hạt RL không thành công. Torrent: "%1". URL: "%2". Lỗi: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" Phiên BitTorrent gặp lỗi nghiêm trọng. Lý do: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". Lỗi proxy SOCKS5. Địa chỉ %1. Thông báo: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 hạn chế chế độ hỗn hợp - + Failed to load Categories. %1 Không tải được Danh mục. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Không tải được cấu hình Danh mục. Tập tin: "%1". Lỗi: "Định dạng dữ liệu không hợp lệ" - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - Đã xóa torrent nhưng không xóa được nội dung và/hoặc phần tệp của nó. Torrent: "%1". Lỗi: "%2" - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 đã tắt - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 đã tắt - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - Tra cứu DNS URL chia sẻ không thành công. Torrent: "%1". URL: "%2". Lỗi: "%3" - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" Đã nhận được thông báo lỗi từ URL chia sẻ. Torrent: "%1". URL: "%2". Thông báo: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" Nghe thành công trên IP. IP: "%1". Cổng: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" Không nghe được trên IP. IP: "%1". Cổng: "%2/%3". Lý do: "%4" - + Detected external IP. IP: "%1" Đã phát hiện IP bên ngoài. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Lỗi: Hàng đợi cảnh báo nội bộ đã đầy và cảnh báo bị xóa, bạn có thể thấy hiệu suất bị giảm sút. Loại cảnh báo bị giảm: "%1". Tin nhắn: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Đã chuyển torrent thành công. Torrent: "%1". Đích đến: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Không thể di chuyển torrent. Torrent: "%1". Nguồn: "%2". Đích đến: "%3". Lý do: "%4" @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Không thể ghi vào tệp. Lý do: "%1". Torrent hiện ở chế độ "chỉ tải lên". - + Download first and last piece first: %1, torrent: '%2' Tải về phần đầu và phần cuối trước: %1, torrent: '%2' - + On Mở - + Off Tắt - + Failed to reload torrent. Torrent: %1. Reason: %2 Không thể tải lại torrent. Torrent: %1. Lý do: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Tạo dữ liệu tiếp tục không thành công. Torrent: "%1". Lý do: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Khôi phục torrent thất bại. Các tệp có thể đã được di chuyển hoặc không thể truy cập bộ nhớ. Torrent: "%1". Lý do: "%2" - + Missing metadata Thiếu dữ liệu mô tả - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Đổi tên tệp thất bại. Torrent: "%1", tệp: "%2", lý do: "%3" - + Performance alert: %1. More info: %2 Cảnh báo hiệu suất: %1. Thông tin khác: %2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' Số nguyên mong đợi trong biến môi trường '%1', nhưng có '%2' - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - Tham số '%1' phải theo cú pháp '%1=%2' - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - Tham số '%1' phải theo cú pháp '%1=%2' + Tham số '%1' phải theo cú pháp '%1=%2' @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - Thêm torrent khi bắt đầu hoặc tạm dừng + Thêm torrent khi đang chạy hoặc đã dừng @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + Chạy torrents Stop torrents - - - - Resume torrents - Tiếp tục torrent - - - Pause torrents - Tạm dừng các torrent + Dừng torrents @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + Hệ thống @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - Đồng thời xóa vĩnh viễn các tệp + Đồng thời xóa các tập tin nội dung @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + Định Dạng Mẫu Plain text - + Văn bản thuần Wildcards - + Ký tự đại diện Regular expression - + Biểu thức chính quy GUIAddTorrentManager - + Downloading torrent... Source: "%1" Đang tải torrent... Nguồn: "%1" - Trackers cannot be merged because it is a private torrent - Không thể hợp nhất máy theo dõi vì đây là torrent riêng tư - - - + Torrent is already present Torrent đã tồn tại - + Trackers cannot be merged because it is a private torrent. - + Không thể gộp máy theo dõi vì đây là một torrent riêng tư. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' đã có trong danh sách trao đổi. Bạn có muốn gộp các máy theo dõi từ nguồn mới không? @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Tệp ảnh được hỗ trợ + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Quản lý năng lượng tìm thấy giao diện D-Bus phù hợp. Giao diện: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Lỗi quản lý nguồn. Hành động: %1. Lỗi: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Lỗi quản lý nguồn không mong muốn. Giai đoạn 1. Lỗi: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... &Tùy chọn... - - &Resume - Tiếp tục - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + Tắt Hệ Thống @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window Đóng cửa sổ - - R&esume All - Tiếp tục Tất cả - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + Chạy Sto&p - + Dừng R&esume Session - + Tiếp Tục Phiên Pau&se Session - + Tạm Dừng Phiên @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System &Ngủ đông Hệ thống - - S&hutdown System - T&ắt máy - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About Thông tin - - &Pause - Tạm dừng - - - P&ause All - Tạ&m Dừng Tất Cả - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Hiển Thị - + Check for program updates Kiểm tra cập nhật chương trình @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Nếu Bạn Thích qBittorrent, Hãy Quyên Góp! - + Execution Log Nhật Ký Thực Thi - + Clear the password Xóa mật khẩu - + &Set Password &Đặt Mật khẩu - + Preferences Tùy chọn - + &Clear Password &Xóa Mật khẩu - + Transfers Trao đổi - - + + qBittorrent is minimized to tray qBittorrent được thu nhỏ xuống khay hệ thống - - - + + + This behavior can be changed in the settings. You won't be reminded again. Hành vi này có thể được thay đổi trong cài đặt. Bạn sẽ không được nhắc lại. - + Icons Only Chỉ Biểu Tượng - + Text Only Chỉ Văn Bản - + Text Alongside Icons Biểu tượng văn bản dọc theo văn bản - + Text Under Icons Văn bản dưới biểu tượng - + Follow System Style Theo kiểu hệ thống - - + + UI lock password Mật Khẩu Khóa Giao Diện - - + + Please type the UI lock password: Vui Lòng Nhập Mật Khẩu Khóa Giao Diện: - + Are you sure you want to clear the password? Bạn có chắc chắn muốn xóa mật khẩu không? - + Use regular expressions Sử dụng biểu thức chính quy - - + + Search Engine - Máy tìm kiếm + Máy tìm kiếm - + Search has failed - Tìm kiếm thất bại + Tìm kiếm thất bại - + Search has finished - Tìm kiếm đã kết thúc + Tìm kiếm đã kết thúc - + Search Tìm Kiếm - + Transfers (%1) Trao đổi (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent vừa được cập nhật và cần được khởi động lại để các thay đổi có hiệu lực. - + qBittorrent is closed to tray qBittorrent được đóng xuống khay hệ thống - + Some files are currently transferring. Một số tệp hiện đang trao đổi. - + Are you sure you want to quit qBittorrent? Bạn có chắc mình muốn thoát qBittorrent? - + &No &Không - + &Yes &Đồng ý - + &Always Yes &Luôn Đồng ý - + Options saved. Đã lưu Tùy chọn. - + [PAUSED] %1 %1 is the rest of the window title - + [ĐÃ TẠM DỪNG] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Bộ cài đặt Python không thể tải xuống. Lỗi: %1. +Vui lòng cài đặt nó theo cách thủ công. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Đổi tên trình cài đặt Python không thành công. Nguồn: "%1". Điểm đến: "%2". - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Cài đặt Python thành công. + Exit code: %1. + Mã thoát: %1. + + + + Reason: installer crashed. + Lý do: Bộ cài đặt bị hỏng. + + + Python installation failed. - + Cài đặt Python thất bại. - + Launching Python installer. File: "%1". - + Khởi chạy bộ cài đặt Python. Tệp: "%1". - - + + Missing Python Runtime Thiếu thời gian chạy Python - + qBittorrent Update Available Cập Nhật qBittorrent Có Sẵn - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Cần Python để sử dụng công cụ tìm kiếm nhưng nó dường như không được cài đặt. Bạn muốn cài đặt nó bây giờ không? - + Python is required to use the search engine but it does not seem to be installed. Python được yêu cầu để sử dụng công cụ tìm kiếm nhưng nó dường như không được cài đặt. - - + + Old Python Runtime Python Runtime cũ - + A new version is available. Một phiên bản mới có sẵn. - + Do you want to download %1? Bạn có muốn tải về %1? - + Open changelog... Mở nhật ký thay đổi... - + No updates available. You are already using the latest version. Không có bản cập nhật có sẵn. Bạn đang sử dụng phiên bản mới nhất. - + &Check for Updates &Kiểm tra Cập nhật - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Phiên bản Python của bạn (%1) đã lỗi thời. Yêu cầu tối thiểu: %2. Bạn có muốn cài đặt phiên bản mới hơn ngay bây giờ không? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Phiên bản Python của bạn (%1) đã lỗi thời. Vui lòng nâng cấp lên phiên bản mới nhất để công cụ tìm kiếm hoạt động. Yêu cầu tối thiểu: %2. - + Paused - Tạm dừng + Bị tạm dừng - + Checking for Updates... Đang kiểm tra Cập nhật... - + Already checking for program updates in the background Đã kiểm tra các bản cập nhật chương trình trong nền - + Python installation in progress... - + Cài đặt Python đang được tiến hành... - + Failed to open Python installer. File: "%1". - + Không thể mở bộ cài đặt Python. Tệp: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Thất bại kiểm tra băm MD5 cho trình cài đặt Python. Tệp: "%1". Kết quả băm: "%2". Hash dự kiến: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Không thành công SHA3-512 Hash Kiểm tra trình cài đặt Python. Tệp: "%1". Kết quả băm: "%2". Hash dự kiến: "%3". - + Download error Lỗi tải về - Python setup could not be downloaded, reason: %1. -Please install it manually. - Không thể tải xuống thiết lập Python, lý do: %1. -Hãy cài đặt thủ công. - - - - + + Invalid password Mật Khẩu Không Hợp Lệ - + Filter torrents... Lọc torrent... - + Filter by: Lọc bởi: - + The password must be at least 3 characters long Mật khẩu buộc phải dài ít nhất 3 ký tự - - - + + + RSS (%1) RSS (%1) - + The password is invalid Mật khẩu không hợp lệ - + DL speed: %1 e.g: Download speed: 10 KiB/s Tốc độ TX: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s - Tốc độ TL: %1 + Tốc độ tải lên: %1 - + Hide Ẩn - + Exiting qBittorrent Thoát qBittorrent - + Open Torrent Files Mở Các Tệp Torrent - + Torrent Files Các Tệp Torrent @@ -4463,7 +4468,7 @@ Hãy cài đặt thủ công. SSL/TLS handshake failed - Bắt tay SSL/TLS không thành công + Bắt tay SSL/TLS thất bại @@ -4556,7 +4561,7 @@ Hãy cài đặt thủ công. SSL error, URL: "%1", errors: "%2" - + Lỗi SSL, URL: "%1", lỗi: "%2" @@ -5853,47 +5858,47 @@ Hãy cài đặt thủ công. Net::Smtp - + Connection failed, unrecognized reply: %1 Kết nối không thành công, trả lời không được công nhận: %1 - + Authentication failed, msg: %1 Xác thực không thành công, thông báo: %1 - + <mail from> was rejected by server, msg: %1 <mail from> đã bị máy chủ từ chối, thông báo: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> đã bị máy chủ từ chối, thông báo: %1 - + <data> was rejected by server, msg: %1 <data> đã bị máy chủ từ chối, thông báo: %1 - + Message was rejected by the server, error: %1 Tin nhắn đã bị máy chủ từ chối, lỗi: %1 - + Both EHLO and HELO failed, msg: %1 Cả EHLO và HELO đều không thành công, thông báo: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Máy chủ SMTP dường như không hỗ trợ bất kỳ chế độ xác thực nào mà chúng tôi hỗ trợ [CRAM-MD5|PLAIN|LOGIN], bỏ qua xác thực, biết rằng nó có khả năng bị lỗi... Chế Độ Xác Thực Máy Chủ: %1 - + Email Notification Error: %1 Lỗi Thông Báo Email: %1 @@ -5935,10 +5940,6 @@ Hãy cài đặt thủ công. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5960,6 @@ Hãy cài đặt thủ công. Confirm when deleting torrents Xác nhận khi xóa torrent - - Shows a confirmation dialog upon pausing/resuming all the torrents - Hiển thị hộp thoại xác nhận khi tạm dừng/tiếp tục tất cả các torrent - - - Confirm "Pause/Resume all" actions - Xác nhận hành động "Tạm dừng/Tiếp tục tất cả" - Use alternating row colors @@ -5983,10 +5976,6 @@ Hãy cài đặt thủ công. Always Luôn luôn - - Paused torrents only - Chỉ torrent bị tạm dừng - Action on double-click @@ -5997,10 +5986,6 @@ Hãy cài đặt thủ công. Downloading torrents: Đang tải xuống torrent: - - Start / Stop Torrent - Khởi chạy / Dừng Torrent - @@ -6059,179 +6044,179 @@ Hãy cài đặt thủ công. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Bố cục nội dung torrent: - + Original Gốc - + Create subfolder Tạo thư mục con - + Don't create subfolder Không tạo thư mục con - + The torrent will be added to the top of the download queue Torrent sẽ được thêm vào đầu hàng đợi tải xuống - + Add to top of queue The torrent will be added to the top of the download queue Thêm vào đầu hàng đợi - + When duplicate torrent is being added Khi torrent trùng lặp đang được thêm vào - + Merge trackers to existing torrent Gộp máy theo dõi với torrent hiện có - + Keep unselected files in ".unwanted" folder Giữ các tập tin không được chọn trong thư mục ".unwanted" - + Add... Thêm... - + Options.. Tùy chọn... - + Remove Xóa - + Email notification &upon download completion Thông báo qua email khi tải về xong - + Send test email - + Gửi email kiểm tra - + Run on torrent added: - + Chạy trên torrent được thêm vào: - + Run on torrent finished: - + Chạy trên torrent đã hoàn thành: - + Peer connection protocol: Giao thức kết nối ngang hàng: - + Any Bất kỳ - + I2P (experimental) I2P (thử nghiệm) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>Nếu &quot;chế độ hỗn hợp&quot; được bật Các torrent I2P cũng được phép nhận các máy ngang hàng từ các nguồn khác ngoài trình theo dõi và kết nối với các IP thông thường, không cung cấp bất kỳ ẩn danh nào. Điều này có thể hữu ích nếu người dùng không quan tâm đến việc ẩn danh I2P, nhưng vẫn muốn có thể kết nối với các máy ngang hàng I2P.</p></body></html> - - - + Mixed mode Chế độ hỗn hợp - Some options are incompatible with the chosen proxy type! - Một số tùy chọn không tương thích với loại proxy đã chọn! + Một số tùy chọn không tương thích với loại proxy đã chọn! - + If checked, hostname lookups are done via the proxy Nếu được chọn, tra cứu tên máy chủ được thực hiện thông qua proxy - + Perform hostname lookup via proxy Thực hiện tra cứu tên máy chủ qua proxy - + Use proxy for BitTorrent purposes Sử dụng proxy cho mục đích BitTorrent - + RSS feeds will use proxy Nguồn cấp dữ liệu RSS sẽ sử dụng proxy - + Use proxy for RSS purposes Sử dụng proxy cho mục đích RSS - + Search engine, software updates or anything else will use proxy Công cụ tìm kiếm, cập nhật phần mềm hoặc bất kỳ thứ gì khác sẽ sử dụng proxy - + Use proxy for general purposes Sử dụng proxy cho các mục đích chung - + IP Fi&ltering &Lọc IP - + Schedule &the use of alternative rate limits Sắp xếp &sử dụng giới hạn tỉ lệ khác - + From: From start time Từ: - + To: To end time Đến: - + Find peers on the DHT network Tìm ngang hàng trên mạng DHT - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Yêu cầu mã hóa: Chỉ kết nối đến máy ngang hàng với giao thức Tắt mã hóa: Chỉ kết nối đến máy ngang hàng không có giao thức mã hóa - + Allow encryption Cho phép mã hóa - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Thêm thông tin</a>) - + Maximum active checking torrents: Hoạt dộng kiểm tra torrents tối đa: - + &Torrent Queueing &Hàng đợi Torrent - + When total seeding time reaches Khi tổng thời gian seeding đạt - + When inactive seeding time reaches Khi thời gian gieo hạt không hoạt động đạt đến - A&utomatically add these trackers to new downloads: - Tự động thêm các máy theo dõi này vào các bản tải về mới: - - - + RSS Reader Trình đọc RSS - + Enable fetching RSS feeds Bật nạp luồng RSS - + Feeds refresh interval: Khoảng làm mới luồng: - + Same host request delay: Độ trễ yêu cầu máy chủ tương tự: - + Maximum number of articles per feed: Số lượng tối đa của các bài viết cho một luồng: - - - + + + min minutes phút - + Seeding Limits Giới hạn chia sẻ - Pause torrent - Tạm dừng torrent - - - + Remove torrent Loại bỏ torrent - + Remove torrent and its files Xóa torrent và các tệp của nó - + Enable super seeding for torrent Bật siêu chia sẻ cho torrent - + When ratio reaches Khi tỷ lệ đạt đến - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + Dừng torrents - + A&utomatically append these trackers to new downloads: - + Tự động thêm các máy theo dõi này vào bản tải xuống mới: - + Automatically append trackers from URL to new downloads: - + Tự động nối các trình theo dõi từ URL sang tải xuống mới: - + URL: - URL: + URL: - + Fetched trackers - + Tìm nạp máy theo dõi - + Search UI - + UI Tìm Kiếm - + Store opened tabs - + Lưu trữ các tab đã mở - + Also store search results - + Cũng lưu trữ kết quả tìm kiếm - + History length - + Độ dài lịch sử - + RSS Torrent Auto Downloader Trình Tải Về RSS Torrent Tự Động - + Enable auto downloading of RSS torrents Bật tự động tải về RSS torrents - + Edit auto downloading rules... Chỉnh sửa quy tắc tải về tự động... - + RSS Smart Episode Filter Bộ Lọc Tập Thông Minh RSS - + Download REPACK/PROPER episodes Tải về các tập phim REPACK/PROPER - + Filters: Bộ Lọc: - + Web User Interface (Remote control) Giao diện người dùng web (Điều khiển từ xa) - + IP address: Địa chỉ IP: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Nêu một địa chỉ IPv4 or IPv6. Bạn có thể nêu "0.0.0.0" c "::" cho bất kì địa chỉ IPv6 nào, hoặc "*" cho cả hai IPv4 và IPv6. - + Ban client after consecutive failures: Cấm máy khách sau các lần thất bại liên tiếp: - + Never Không bao giờ - + ban for: cấm: - + Session timeout: Thời gian chờ phiên: - + Disabled Vô hiệu hóa - Enable cookie Secure flag (requires HTTPS) - Bật cờ bảo mật cookie (yêu cầu HTTPS) - - - + Server domains: Miền máy chủ: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ bạn nên đặt tên miền được sử dụng bởi máy chủ WebUI. Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự đại diện '*'. - + &Use HTTPS instead of HTTP &Sử dụng HTTPS thay vì HTTP - + Bypass authentication for clients on localhost Bỏ qua xác thực máy khách trên máy chủ cục bộ. - + Bypass authentication for clients in whitelisted IP subnets Bỏ qua xác thực cho máy khách trong các mạng con IP được cho phép. - + IP subnet whitelist... Danh sách cho phép mạng con IP... - + Use alternative WebUI - + Sử dụng WebUI thay thế - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Chỉ định IP proxy ngược (hoặc mạng con, ví dụ: 0.0.0.0/24) để sử dụng địa chỉ ứng dụng khách được chuyển tiếp (tiêu đề X-Forwarded-For). Sử dụng ';' để chia nhiều mục nhập. - + Upda&te my dynamic domain name Cập &nhật tên miền động của tôi @@ -6519,12 +6502,12 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng Search - Tìm Kiếm + Tìm kiếm WebUI - + WebUI @@ -6539,29 +6522,29 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng Style: - + Kiểu: Color scheme: - + Bảng màu: Stopped torrents only - + Chỉ torrent đã dừng Start / stop torrent - + Chạy / dừng torrent Open torrent options dialog - + Hộp thoại Tùy chọn torrent mở @@ -6602,7 +6585,7 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng &Log Files - + Tệp Nhật Ký @@ -6620,99 +6603,99 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng Xóa nhật ký sao lưu cũ hơn: - + Show external IP in status bar - + Hiển thị IP bên ngoài trong thanh trạng thái - + When adding a torrent Khi thêm vào một torrent - + Bring torrent dialog to the front Đem hộp thoại torrent lên phía trước - + The torrent will be added to download list in a stopped state - + Torrent sẽ được thêm vào danh sách tải ở trạng thái dừng - + Also delete .torrent files whose addition was cancelled Đồng thời xóa các tệp .torrent có phần bổ sung đã bị hủy - + Also when addition is cancelled Ngoài ra khi việc bổ sung bị hủy bỏ - + Warning! Data loss possible! Cảnh báo! Có thể mất dữ liệu! - + Saving Management Quản lý tiết kiệm - + Default Torrent Management Mode: Chế độ quản lý Torrent mặc định: - + Manual Thủ công - + Automatic Tự động - + When Torrent Category changed: Khi Danh mục Torrent bị thay đổi: - + Relocate torrent Đổi vị trí torrent - + Switch torrent to Manual Mode Chuyển torrent sang Chế độ thủ công - - + + Relocate affected torrents Đổi vị trí các torrent bị ảnh hưởng - - + + Switch affected torrents to Manual Mode Chuyển torrent bị ảnh hưởng sang Chế độ thủ công - + Use Subcategories Sử dụng các danh mục phụ - + Default Save Path: Đường dẫn Lưu Mặc định: - + Copy .torrent files to: Sao chép tệp .torrent đến: @@ -6722,26 +6705,22 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng Hiển thị &qBittorrent trong khu vực thông báo - &Log file - &Tệp nhật ký - - - + Display &torrent content and some options Hiển thị nội dung &torrent và các tùy chọn khác` - + De&lete .torrent files afterwards Xóa các tập tin .torrent sau đó - + Copy .torrent files for finished downloads to: Sao chép các tệp .torrent đã tải về xong vào: - + Pre-allocate disk space for all files Phân bổ trước dung lượng đĩa cho tất cả các tệp @@ -6771,10 +6750,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng Preview file, otherwise open destination folder Xem trước tệp, nếu không, hãy mở thư mục đích - - Show torrent options - Hiển thị các tùy chọn torrent - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng năm - + Log performance warnings Ghi nhật ký cảnh báo hiệu suất - The torrent will be added to download list in a paused state - Torrent sẽ được thêm vào danh sách tải xuống ở trạng thái tạm dừng - - - + Do not start the download automatically The torrent will be added to download list in a stopped state Không bắt đầu tải xuống tự động - + Whether the .torrent file should be deleted after adding it Liệu tệp .torrent có bị xóa sau khi thêm nó hay không - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Phân bổ kích thước tệp đầy đủ trên đĩa trước khi bắt đầu tải xuống, để giảm thiểu phân mảnh. Chỉ hữu ích cho HDDs. - + Append .!qB extension to incomplete files Nối phần mở rộng .!QB vào các tệp chưa hoàn chỉnh - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Khi một torrent dược tải về, đề nghị thêm các torrent từ bất kỳ tệp .torrent nào tìm thấy trong nó - + Enable recursive download dialog Bật hộp thoại tải xuống đệ quy - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Tự động: Các thuộc tính torrent khác nhau (ví dụ: đường dẫn lưu) sẽ do danh mục liên quan quyết định Thủ công: Các thuộc tính torrent khác nhau (ví dụ: đường dẫn lưu) phải được gán thủ công - + When Default Save/Incomplete Path changed: Khi Đường Dẫn Lưu/Chưa Hoàn Tất Mặc Định thay đổi: - + When Category Save Path changed: Khi Đường dẫn Lưu Danh mục bị thay đổi: - + Use Category paths in Manual Mode Dùng đường dẫn Danh Mục ở Chế Độ Thủ Công - + Resolve relative Save Path against appropriate Category path instead of Default one Xử lý Đường Dẫn Lưu tương đối dựa trên đường dẫn Danh Mục thích hợp thay vì đường dẫn Mặc định @@ -6922,50 +6893,50 @@ Thủ công: Các thuộc tính torrent khác nhau (ví dụ: đường dẫn l Trạng thái cửa sổ qBittorrent khi khởi động - + Torrent stop condition: Điều kiện dừng torrent: - - + + None Không có - - + + Metadata received Đã nhận dữ liệu mô tả - - + + Files checked Đã kiểm tra tệp - + Ask for merging trackers when torrent is being added manually Hỏi về gộp máy theo dõi khi torrent được thêm thủ công - + Use another path for incomplete torrents: Dùng một đường dẫn khác cho các torrent chưa xong: - + Automatically add torrents from: Tự động thêm torrent từ: - + Excluded file names Tên tệp bị loại trừ - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt: lọc chính xác tên tập tin. readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng không lọc 'readme10.txt'. - + Receiver Nhận - + To: To receiver Đến: - + SMTP server: Máy chủ SMTP: - + Sender Gửi - + From: From sender Từ: - + This server requires a secure connection (SSL) Máy chủ này yêu cầu kết nối an toàn (SSL) - - + + Authentication Xác thực - - - - + + + + Username: Tên người dùng: - - - - + + + + Password: Mật khẩu: - + Run external program Chạy chương trình bên ngoài - Run on torrent added - Chạy trên torrent đã thêm - - - Run on torrent finished - Chạy trên torrent đã xong - - - + Show console window Hiển thị cửa sổ bảng điều khiển - + TCP and μTP TCP và μTP - + Listening Port Cổng Nghe - + Port used for incoming connections: Cổng được sử dụng cho các kết nối đến: - + Set to 0 to let your system pick an unused port Đặt là 0 để hệ thống chọn một cổng không sử dụng - + Random Ngẫu nhiên - + Use UPnP / NAT-PMP port forwarding from my router Sử dụng chuyển tiếp cổng UPnP / NAT-PMP từ bộ định tuyến của tôi - + Connections Limits Giới hạn Kết nối - + Maximum number of connections per torrent: Số lượng kết nối tối đa mỗi torrent: - + Global maximum number of connections: Số lượng kết nối tối đa chung: - + Maximum number of upload slots per torrent: Số lượng máy tải lên tối đa trên mỗi torrent: - + Global maximum number of upload slots: Số lượng máy tải lên tối đa chung: - + Proxy Server Máy chủ proxy - + Type: Loại: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Máy chủ lưu trữ: - - - + + + Port: Cổng: - + Otherwise, the proxy server is only used for tracker connections Nếu không, máy chủ proxy chỉ dùng cho các kết nối máy theo dõi - + Use proxy for peer connections Sử dụng proxy cho các kết nối ngang hàng - + A&uthentication X&ác thực - Info: The password is saved unencrypted - Thông tin: Mật khẩu đã lưu không mã hóa + Thông tin: Mật khẩu đã lưu không mã hóa - + Filter path (.dat, .p2p, .p2b): Đường dẫn bộ lọc (.dat, .p2p, .p2b): - + Reload the filter Tải lại bộ lọc - + Manually banned IP addresses... Các địa chỉ IP bị cấm theo cách thủ công... - + Apply to trackers Áp dụng với máy theo dõi - + Global Rate Limits Giới hạn Tỉ lệ Chung - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Tải lên: - - + + Download: Tải về: - + Alternative Rate Limits Giới hạn Tỉ lệ Thay thế - + Start time Thời gian bắt đầu - + End time Thời gian kết thúc - + When: Vào lúc: - + Every day Mọi ngày - + Weekdays Ngày tuần - + Weekends Ngày cuối tuần - + Rate Limits Settings Cài đặt giới hạn tỷ lệ - + Apply rate limit to peers on LAN Áp dụng giới hạn tỉ lệ với ngang hàng trên LAN - + Apply rate limit to transport overhead Áp dụng giới hạn tốc độ cho mào đầu truyền tải - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>Nếu "Chế độ hỗn hợp" được kích hoạt i2p Torrent cũng được phép nhận các đồng nghiệp từ các nguồn khác so với trình theo dõi và kết nối với IP thông thường, không cung cấp bất kỳ ẩn danh nào. Điều này có thể hữu ích nếu người dùng không quan tâm đến việc ẩn danh của i2p, nhưng vẫn muốn có thể kết nối với các đồng nghiệp i2p.</p></body></html> - + Apply rate limit to µTP protocol Áp dụng giới hạn tỉ lệ với giao thức uTP - + Privacy Riêng tư - + Enable DHT (decentralized network) to find more peers Bật DHT (mạng phi tập trung) để tìm thêm máy ngang hàng - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) Hoán chuyển mạng ngang hàng với các máy trạm Bittorrent tương thích (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Bật Trao Đổi Ngang Hàng (PeX) để tìm thêm máy ngang hàng - + Look for peers on your local network Tìm các máy ngang hàng ở mạng cục bộ của bạn - + Enable Local Peer Discovery to find more peers Bật tính năng Khám phá ngang hàng cục bộ để tìm thêm máy ngang hàng khác - + Encryption mode: Chế độ mã hóa: - + Require encryption Yêu cầu mã hóa - + Disable encryption Vô hiệu mã hóa - + Enable when using a proxy or a VPN connection Bật khi sử dụng một kết nối proxy hoặc VPN - + Enable anonymous mode Bật chế độ ẩn danh - + Maximum active downloads: Tải xuống hoạt động tối đa: - + Maximum active uploads: Tải lên hoạt động tối đa: - + Maximum active torrents: Các torrent hoạt động tối đa: - + Do not count slow torrents in these limits Không tính các torrent chậm trong các giới hạn này - + Upload rate threshold: Ngưỡng tỉ lệ tải lên: - + Download rate threshold: Ngưỡng tỉ lệ tải xuống: - - - - + + + + sec seconds giây - + Torrent inactivity timer: Đếm giờ torrent bất hoạt: - + then thì - + Use UPnP / NAT-PMP to forward the port from my router Sử dụng UPnP / NAT-PMP để chuyển tiếp cổng từ bộ định tuyến của tôi - + Certificate: Chứng chỉ: - + Key: Chìa khóa: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Thông tin về chứng chỉ</a> - + Change current password Thay đổi mật khẩu hiện tại - Use alternative Web UI - Sử dụng giao diện người dùng web thay thế - - - + Files location: Vị trí tập tin: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Danh sách WebUI thay thế</a> - + Security Bảo mật - + Enable clickjacking protection Bật tính năng bảo vệ chống tấn công bằng nhấp chuột - + Enable Cross-Site Request Forgery (CSRF) protection Bật tính năng bảo vệ Truy vấn Yêu cầu Trên Trang web (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Bật cờ an toàn cookie (yêu cầu kết nối HTTPS hoặc localhost) - + Enable Host header validation Bật xác thực tiêu đề máy chủ lưu trữ - + Add custom HTTP headers Thêm tiêu đề HTTP tùy chỉnh - + Header: value pairs, one per line Phần đầu: các cặp giá trị, một cặp trên mỗi dòng - + Enable reverse proxy support Bật hỗ trợ proxy ngược - + Trusted proxies list: Danh sách proxy tin cậy: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Ví dụ thiết lập proxy ngược</a> - + Service: Dịch vụ: - + Register Đăng ký - + Domain name: Tên miền: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Bằng cách bật các tùy chọn này, bạn có thể <strong>mất mãi mãi</strong> tệp .torrent của bạn! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog Nếu bạn bật tùy chọn thứ hai (&ldquo;khi việc bổ sung bị hủy&rdquo;) tập tin .torrent <strong>sẽ bị xóa</strong> kể cả khi bạn bấm &ldquo;<strong>Hủy</strong>&rdquo; trong hộp thoại &ldquo;Thêm torrent&rdquo; @@ -7520,12 +7478,12 @@ readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng k Chọn tệp chủ đề UI qBittorrent - + Choose Alternative UI files location Chọn vị trí tệp giao diện người dùng thay thế - + Supported parameters (case sensitive): Các thông số được hỗ trợ (phân biệt chữ hoa chữ thường): @@ -7545,183 +7503,183 @@ readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng k Đã vô hiệu hóa vì không thể phát hiện được sự hiện diện của thanh hệ thống - + No stop condition is set. Không có điều kiện dừng nào được đặt. - + Torrent will stop after metadata is received. Torrent sẽ dừng sau khi nhận được dữ liệu mô tả. - + Torrent will stop after files are initially checked. Torrent sẽ dừng sau khi tệp được kiểm tra lần đầu. - + This will also download metadata if it wasn't there initially. Điều này sẽ tải xuống dữ liệu mô tả nếu nó không có ở đó ban đầu. - + %N: Torrent name %N: Tên torrent - + %L: Category %L: Danh mục - + %F: Content path (same as root path for multifile torrent) %F: Đường dẫn nội dung (giống như đường dẫn gốc cho nhiều tệp torrent) - + %R: Root path (first torrent subdirectory path) %R: Đường dẫn gốc (đường dẫn thư mục con torrent đầu tiên) - + %D: Save path %D: Đường dẫn lưu - + %C: Number of files %C: Số lượng tệp - + %Z: Torrent size (bytes) %Z: Kích cỡ Torrent (bytes) - + %T: Current tracker %T: Máy theo dõi hiện tại - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Mẹo: Bao bọc tham số bằng ngoặc kép để tránh văn bản bị cắt tại khoảng trắng (v.d., "%N") - + Test email - + Email kiểm tra - + Attempted to send email. Check your inbox to confirm success - + Đã cố gắng gửi email. Kiểm tra hộp thư đến của bạn để xác nhận thành công - + (None) (Trống) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Một torrent sẽ bị xem là chậm nếu tỉ lệ tải lên và tải xuống của nó ở dưới các giá trị sau trong "Đếm giờ torrent bất hoạt" giây - + Certificate Chứng chỉ - + Select certificate Chọn chứng chỉ - + Private key Key riêng tư - + Select private key Chọn key riêng tư - + WebUI configuration failed. Reason: %1 Cấu hình WebUI không thành công. Lý do: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + %1 được khuyến nghị để tương thích tốt nhất với chế độ tối của Windows - + System System default Qt style - + Hệ thống - + Let Qt decide the style for this system - + Hãy để Qt quyết định kiểu dáng cho hệ thống này - + Dark Dark color scheme - + Tối - + Light Light color scheme - + Sáng - + System System color scheme - + Hệ thống - + Select folder to monitor Chọn thư mục để theo dõi - + Adding entry failed Thêm mục nhập thất bại - + The WebUI username must be at least 3 characters long. Tên người dùng WebUI phải dài ít nhất 3 ký tự. - + The WebUI password must be at least 6 characters long. Mật khẩu WebUI phải dài ít nhất 6 ký tự. - + Location Error Lỗi Vị trí - - + + Choose export directory Chọn thư mục xuất - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Khi bật các tùy chọn này, qBittorrent sẽ <strong>xóa</strong> tệp .torrent sau khi đã thêm thành công (tùy chọn 1) hoặc thất bại (tùy chọn 2) vào hàng đợi tải về. Nó sẽ được áp dụng <strong>không chỉ</strong> các tập tin mở với thao tác menu &ldquo;Thêm torrent&rdquo; mà còn với những thứ được mở bằng <strong>tệp liên kết</strong> @@ -7731,69 +7689,69 @@ readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng k Tệp chủ đề giao diện người dùng qBittorrent (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Thẻ (phân tách bằng dấu phẩy) - + %I: Info hash v1 (or '-' if unavailable) %I: thông tin băm v1 (hoặc '-' nếu không có) - + %J: Info hash v2 (or '-' if unavailable) %J: Băm thông tin v2 (hoặc '-' nếu không có) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: ID Torrent (băm thông tin sha-1 cho torrent v1 hoặc băm thông tin sha-256 bị cắt ngắn cho v2 / torrent lai) - - + + Choose a save directory Chọn một chỉ mục lưu - + Torrents that have metadata initially will be added as stopped. Các torrent có dữ liệu mô tả ban đầu sẽ được thêm vào dưới dạng đã dừng. - + Choose an IP filter file Chọn tệp bộ lọc IP - + All supported filters Tất cả các bộ lọc được hỗ trợ - + The alternative WebUI files location cannot be blank. Vị trí tệp WebUI thay thế không được để trống. - + Parsing error Lỗi Phân tích cú pháp - + Failed to parse the provided IP filter Không phân tích được bộ lọc IP đã cung cấp - + Successfully refreshed Đã cập nhật thành công - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Đã phân tích cú pháp thành công bộ lọc IP đã cung cấp: %1 quy tắc đã được áp dụng. @@ -7804,18 +7762,18 @@ readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng k Tùy chỉnh - + Time Error Lỗi Thời gian - + The start time and the end time can't be the same. Thời gian bắt đầu và thời gian kết thúc không được phép giống nhau. - - + + Length Error Lỗi độ dài @@ -7900,169 +7858,169 @@ readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng k Peer is using NAT hole punching - + Ngang hàng đang sử dụng Nat Hole Punching PeerListWidget - + Country/Region Quốc gia/Khu vực - + IP/Address IP/Địa chỉ - + Port Cổng - + Flags Cờ Đánh Dấu - + Connection Kết nối - + Client i.e.: Client application Máy trạm - + Peer ID Client i.e.: Client resolved from Peer ID ID Máy Ngang Hàng - + Progress i.e: % downloaded Tiến độ - + Down Speed i.e: Download speed Tốc độ tải về - + Up Speed i.e: Upload speed Tốc độ tải lên - + Downloaded i.e: total data downloaded Đã tải về - + Uploaded i.e: total data uploaded Đã tải lên - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Liên quan - + Files i.e. files that are being downloaded right now Tệp - + Column visibility Hiển thị cột - + Resize columns Đổi kích cỡ cột - + Resize all non-hidden columns to the size of their contents Thay đổi kích thước tất cả các cột không ẩn thành kích thước của nội dung của chúng - + Add peers... Thêm máy ngang hàng... - - + + Adding peers Thêm ngang hàng - + Some peers cannot be added. Check the Log for details. Không thể thêm một số máy ngang hàng. Kiểm tra nhật ký để biết chi tiết. - + Peers are added to this torrent. Các máy ngang hàng được thêm vào torrent này. - - + + Ban peer permanently Cấm máy ngang hàng vĩnh viễn - + Cannot add peers to a private torrent Không thể thêm máy ngang hàng vào một torrent riêng tư - + Cannot add peers when the torrent is checking Không thể thêm máy ngang hàng khi torrent đang kiểm tra - + Cannot add peers when the torrent is queued Không thể thêm máy ngang hàng khi torrent được xếp hàng đợi - + No peer was selected Không có máy ngang hàng nào được chọn - + Are you sure you want to permanently ban the selected peers? Bạn có chắc muốn ban vĩnh viễn những máy ngang hàng đã chọn? - + Peer "%1" is manually banned Máy ngang hàng "%1" bị cấm theo cách thủ công - + N/A Không áp dụng - + Copy IP:port Sao chép IP:cổng @@ -8343,34 +8301,27 @@ Các plugin đó đã bị vô hiệu hóa. PowerManagement - qBittorrent is active - qBittorrent đang hoạt động + qBittorrent đang hoạt động PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - Quản lý năng lượng tìm thấy giao diện D-Bus phù hợp. Giao diện: %1 + Quản lý năng lượng tìm thấy giao diện D-Bus phù hợp. Giao diện: %1 - Power management error. Did not found suitable D-Bus interface. - Lỗi quản lý nguồn. Không tìm thấy giao diện D-Bus phù hợp. + Lỗi quản lý nguồn. Không tìm thấy giao diện D-Bus phù hợp. - - - Power management error. Action: %1. Error: %2 - Lỗi quản lý nguồn. Hành động: %1. Lỗi: %2 + Lỗi quản lý nguồn. Hành động: %1. Lỗi: %2 - Power management unexpected error. State: %1. Error: %2 - Lỗi quản lý nguồn không mong muốn. Giai đoạn 1. Lỗi: %2 + Lỗi quản lý nguồn không mong muốn. Giai đoạn 1. Lỗi: %2 @@ -8614,12 +8565,12 @@ Các plugin đó đã bị vô hiệu hóa. Ratio / Time Active (in months), indicates how popular the torrent is - + Tỷ lệ / Thời gian hoạt động (tính theo tháng), cho biết mức độ phổ biến của torrent Popularity: - + Phổ biến: @@ -8654,7 +8605,7 @@ Các plugin đó đã bị vô hiệu hóa. Private: - + Riêng tư: @@ -8662,153 +8613,124 @@ Các plugin đó đã bị vô hiệu hóa. Đường Dẫn Lưu: - + Never Không bao giờ - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (có %3) - - + + %1 (%2 this session) %1 (%2 phiên này) - - + + N/A Không áp dụng - + Yes - + Đồng Ý - + No - Không + Không Đồng Ý - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (đã chia sẻ cho %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (tối đa %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (tổng %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 tr. bình) - + Add web seed Add HTTP source - + Thêm hạt giống web - + Add web seed: - + Thêm hạt giống web: - - + + This web seed is already in the list. - + Hạt giống web này đã có trong danh sách. - New Web seed - Web Chia Sẻ Mới - - - Remove Web seed - Loại bỏ seed Web - - - Copy Web seed URL - Sao chép URL seed Web - - - Edit Web seed URL - Chỉnh sửa đường dẫn seed Web - - - + Filter files... Bộ Lọc tệp ... - + Add web seed... - + Thêm hạt giống web... - + Remove web seed - + Loại bỏ hạt giống web - + Copy web seed URL - + Sao chép URL hạt giống web - + Edit web seed URL... - + Chỉnh sửa URL hạt giống web ... - + Speed graphs are disabled Biểu đồ tốc độ bị tắt - + You can enable it in Advanced Options Bạn có thể bật nó trong Tùy Chọn Nâng Cao - New URL seed - New HTTP source - URL chia sẻ mới - - - New URL seed: - URL chia sẻ mới: - - - This URL seed is already in the list. - URL chia sẻ này đã có trong danh sách. - - - + Web seed editing Đang chỉnh sửa seed Web - + Web seed URL: Đường liên kết seed Web: @@ -8816,33 +8738,33 @@ Các plugin đó đã bị vô hiệu hóa. RSS::AutoDownloader - - + + Invalid data format. Dạng dữ liệu không hợp lệ. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 Không thể lưu dữ liệu Trình tải xuống tự động RSS trong %1. Lỗi: %2 - + Invalid data format Định dạng dữ liệu không hợp lệ - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... Bài đăng RSS '%1' được chấp nhận theo quy tắc '%2'. Đang cố thêm torrent... - + Failed to read RSS AutoDownloader rules. %1 Không thể đọc các quy tắc RSS AutoDownloader. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 Không thể tải quy tắc Trình tải xuống tự động RSS. Lý do: %1 @@ -8850,22 +8772,22 @@ Các plugin đó đã bị vô hiệu hóa. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 Không tải xuống được nguồn cấp RSS tại '%1'. Lý do: %2 - + RSS feed at '%1' updated. Added %2 new articles. Đã cập nhật nguồn cấp dữ liệu RSS tại '%1'. Đã thêm %2 bài viết mới. - + Failed to parse RSS feed at '%1'. Reason: %2 Không thể phân tích cú pháp nguồn cấp dữ liệu RSS tại '%1'. Lý do: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. Luồng RSS tại '%1' đã được tải xuống thành công. Bắt đầu phân tích nó. @@ -8914,12 +8836,12 @@ Các plugin đó đã bị vô hiệu hóa. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" Không thể lưu cấu hình phiên RSS. Tệp: "%1". Lỗi: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" Không thể lưu dữ liệu phiên RSS. Tệp: "%1". Lỗi: "%2" @@ -8941,76 +8863,121 @@ Các plugin đó đã bị vô hiệu hóa. - + Item doesn't exist: %1. Mục không tồn tại: %1. - Couldn't move folder into itself. - Không thể di chuyển thư mục vào chính nó. + Không thể di chuyển thư mục vào chính nó. - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. Không thể xóa thư mục gốc. - + Failed to read RSS session data. %1 Không thể đọc dữ liệu phiên RSS. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" Không thể phân tích cú pháp dữ liệu phiên RSS. Tập tin: "%1". Lỗi: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." Không tải được dữ liệu phiên RSS. Tập tin: "%1". Lỗi: "Định dạng dữ liệu không hợp lệ." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. Không thể tải nguồn cấp dữ liệu RSS. Nguồn cấp dữ liệu: "%1". Lý do: URL là bắt buộc. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. Không thể tải nguồn cấp dữ liệu RSS. Nguồn cấp dữ liệu: "%1". Lý do: UID không hợp lệ. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. Đã tìm thấy nguồn cấp dữ liệu RSS trùng lặp. UID: "%1". Lỗi: Cấu hình dường như bị hỏng. - + Couldn't load RSS item. Item: "%1". Invalid data format. Không thể tải mục RSS. Mục: "%1". Định dạng dữ liệu không hợp lệ. - + Corrupted RSS list, not loading it. Danh sách RSS bị hỏng, không tải được. - + Incorrect RSS Item path: %1. Đường dẫn Mục RSS không chính xác: %1. - + RSS item with given path already exists: %1. Mục RSS với đường dẫn nhất định đã tồn tại: %1. - + Parent folder doesn't exist: %1. Thư mục mẹ không tồn tại: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Luồng không tồn tại: %1. + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + giây + + + + Default + Mặc định + + RSSWidget @@ -9110,78 +9077,77 @@ Các plugin đó đã bị vô hiệu hóa. + Feed options... + + + Edit feed URL... - Sửa URL nguồn cấp... + Sửa URL nguồn cấp... - Edit feed URL - Sửa URL nguồn cấp + Sửa URL nguồn cấp - + Please choose a folder name Vui lòng chọn tên thư mục - + Folder name: Tên thư mục: - + New folder Thư mục mới - - Please type a RSS feed URL - Vui lòng nhập URL nguồn cấp RSS + Vui lòng nhập URL nguồn cấp RSS - - Feed URL: - URL nguồn cấp dữ liệu: + URL nguồn cấp dữ liệu: - + Deletion confirmation Xác nhận xóa - + Are you sure you want to delete the selected RSS feeds? Bạn có chắc muốn xóa các nguồn cấp RSS đã chọn không? - + Please choose a new name for this RSS feed Vui lòng chọn một tên mới cho nguồn cấp dữ liệu RSS này - + New feed name: Tên nguồn cấp dữ liệu mới: - + Rename failed Đổi tên thất bại - + Date: Ngày: - + Feed: Luồng: - + Author: Tác giả: @@ -9318,10 +9284,6 @@ Các plugin đó đã bị vô hiệu hóa. i.e: Number of partial sources Người leech - - Search engine - Máy tìm kiếm - Filter search results... @@ -9411,17 +9373,17 @@ Các plugin đó đã bị vô hiệu hóa. Engine - + Máy Engine URL - + URL Máy Published On - + Đã Xuất Bản Lúc @@ -9442,104 +9404,104 @@ Các plugin đó đã bị vô hiệu hóa. SearchPluginManager - + Unknown search engine plugin file format. Định dạng tệp plugin của công cụ tìm kiếm không xác định. - + Plugin already at version %1, which is greater than %2 Phiên bản tiện ích đã là %1, mới hơn %2 - + A more recent version of this plugin is already installed. Một phiên bản mới hơn của tiện ích này đã được cài đặt. - + Plugin %1 is not supported. Tiện ích %1 không được hỗ trợ. - - + + Plugin is not supported. Tiện ích không được hỗ trợ. - + Plugin %1 has been successfully updated. Plugin %1 đã được cập nhật thành công. - + All categories Tất cả danh mục - + Movies Phim - + TV shows Chương trình TV - + Music Âm nhạc - + Games Trò chơi - + Anime Anime - + Software Phần mềm - + Pictures Hình ảnh - + Books Sách - + Update server is temporarily unavailable. %1 Máy chủ cập nhật tạm thời không khả dụng. %1 - - + + Failed to download the plugin file. %1 Không thể tải xuống tệp plugin. %1 - + Plugin "%1" is outdated, updating to version %2 Plugin "%1" đã lỗi thời, cập nhật lên phiên bản %2 - + Incorrect update info received for %1 out of %2 plugins. Đã nhận được thông tin cập nhật không chính xác cho %1 trong số %2 plugin. - + Search plugin '%1' contains invalid version string ('%2') Plugin tìm kiếm '%1' chứa chuỗi phiên bản không hợp lệ ('%2') @@ -9565,137 +9527,129 @@ Nhấp vào nút "Tìm kiếm plugin ..." ở dưới cùng bên phả Tìm kiếm plugins... - + A phrase to search for. Một cụm từ để tìm kiếm. - + Spaces in a search term may be protected by double quotes. Các dấu cách trong một cụm từ tìm kiếm có thể được bảo vệ bằng dấu ngoặc kép. - + Example: Search phrase example Ví dụ: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: tìm kiếm <b>foo bar</b> - + All plugins Tất cả tiện ích - + Only enabled Chỉ được bật - - + + Invalid data format. - Dạng dữ liệu không hợp lệ. + Dạng dữ liệu không hợp lệ. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: tìm kiếm <b>foo</b> và <b>bar</b> - + Refresh - + Làm mới - + Close tab Đóng tab - + Close all tabs Đóng tất cả cửa sổ - + Select... Lựa chọn... - - + + Search Engine Máy tìm kiếm - - + + Please install Python to use the Search Engine. Hãy cài đặt Python để dùng Công cụ tìm kiếm. - + Empty search pattern Mẫu tìm kiếm trống - + Please type a search pattern first Vui lòng nhập một mẫu tìm kiếm trước tiên - + Stop Dừng - - Search has finished - Tìm kiếm đã kết thúc - - - Search has failed - Tìm kiếm thất bại - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Không tải được tìm kiếm dữ liệu trạng thái được lưu UI. Tệp: "%1". Lỗi: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Không tải được kết quả tìm kiếm đã lưu. Tab: "%1". Tệp: "%2". Lỗi: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Không thể lưu trạng thái UI tìm kiếm. Tệp: "%1". Lỗi: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Không thể lưu kết quả tìm kiếm. Tab: "%1". Tệp: "%2". Lỗi: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Không tải được tìm kiếm lịch sử UI. Tệp: "%1". Lỗi: "%2" - + Failed to save search history. File: "%1". Error: "%2" - + Không thể lưu lịch sử tìm kiếm. Tệp: "%1". Lỗi: "%2" @@ -10091,67 +10045,77 @@ Nhấp vào nút "Tìm kiếm plugin ..." ở dưới cùng bên phả StatusBar - + Connection status: Trạng thái kết nối: - - + + No direct connections. This may indicate network configuration problems. Không có kết nối trực tiếp. Điều này có thể cho thấy sự cố cấu hình mạng. - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + IP ngoài: N/A + + + + DHT: %1 nodes DHT: %1 nút - + qBittorrent needs to be restarted! qBittorrent buộc khởi động lại! - - + + Connection Status: Trạng Thái Kết Nối: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Ngoại tuyến. Điều này có nghĩa rằng qBittorrent không thể tiếp nhận các tín hiệu từ cổng kết nối được chọn dành cho những kết nối đầu vào. - + Online Trực tuyến - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + IP bên ngoài: %1, %2 + + + + External IP: %1%2 + IP ngoài: %1%2 + + + Click to switch to alternative speed limits Nhấp để chuyển sang các giới hạn tốc độ thay thế - + Click to switch to regular speed limits Bấm để chuyển sang giới hạn tốc độ thông thường @@ -10179,23 +10143,15 @@ Nhấp vào nút "Tìm kiếm plugin ..." ở dưới cùng bên phả Completed (0) Đã hoàn tất (0) - - Resumed (0) - Đã tiếp tục (0) - - - Paused (0) - Tạm dừng (0) - Running (0) - + Đang chạy (0) Stopped (0) - + Đã dừng (0) @@ -10260,49 +10216,33 @@ Nhấp vào nút "Tìm kiếm plugin ..." ở dưới cùng bên phả Running (%1) - + Đang chạy (%1) Stopped (%1) - + Đã dừng (%1) Start torrents - + Chạy torrents Stop torrents - - - - Paused (%1) - Tạm dừng (%1) + Dừng torrents Moving (%1) Đang di chuyển (%1) - - Resume torrents - Tiếp tục torrent - - - Pause torrents - Tạm dừng torrent - Remove torrents Xóa các torrent - - Resumed (%1) - Đã tiếp tục (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Nhấp vào nút "Tìm kiếm plugin ..." ở dưới cùng bên phả Remove unused tags Xóa thẻ không dùng - - Resume torrents - Tiếp tục torrent - - - Pause torrents - Tạm dừng torrent - Remove torrents Xóa các torrent - - New Tag - Thẻ mới - Start torrents - + Chạy torrents Stop torrents - + Dừng torrents @@ -10409,7 +10337,7 @@ Nhấp vào nút "Tìm kiếm plugin ..." ở dưới cùng bên phả Add tag - + Thêm thẻ @@ -10726,17 +10654,17 @@ Vui lòng chọn một tên khác và thử lại. TorrentCreatorController - + Too many active tasks Quá nhiều nhiệm vụ đang hoạt động - + Torrent creation is still unfinished. Tạo torrent vẫn chưa hoàn thành. - + Torrent creation failed. Tạo torrent thất bại. @@ -10988,17 +10916,6 @@ Vui lòng chọn một tên khác và thử lại. Thư mục đang xem: "%1" - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - Không thể cấp phát bộ nhớ khi đọc tệp. Tập tin: "%1". Lỗi: "%2" - - - Invalid metadata - Dữ liệu mô tả không hợp lệ - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Vui lòng chọn một tên khác và thử lại. Torrent Share Limits - - - - Torrent speed limits - Giới hạn tốc độ torrent + Giới Hạn Chia Sẻ Torrent @@ -11054,7 +10967,7 @@ Vui lòng chọn một tên khác và thử lại. Torrent Speed Limits - + Giới Hạn Tốc Độ Torrent @@ -11072,34 +10985,6 @@ Vui lòng chọn một tên khác và thử lại. Upload: Tải lên: - - Torrent share limits - Giới hạn chia sẻ torrent - - - Use global share limit - Sử dụng giới hạn chung - - - Set no share limit - Không đặt giới hạn chia sẻ - - - Set share limit to - Đặt giới hạn chia sẻ thành - - - ratio - tỉ lệ - - - total minutes - tổng số phút - - - inactive minutes - phút không hoạt động - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Vui lòng chọn một tên khác và thử lại. Not applicable to private torrents Không áp được được với torrent riêng tư - - No share limit method selected - Không cách giới hạn chia sẻ nào được chọn - - - Please select a limit method first - Vui lòng chọn một cách giới hạn trước tiên - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Vui lòng chọn một tên khác và thử lại. Action when the limit is reached: - + Hành động khi đạt đến giới hạn: Stop torrent - + Dừng torrent Remove torrent - Loại bỏ torrent + Loại bỏ torrent Remove torrent and its content - + Xóa torrent và xóa nội dung của nó Enable super seeding for torrent - Bật siêu chia sẻ cho torrent + Bật siêu chia sẻ cho torrent @@ -11233,14 +11110,10 @@ Vui lòng chọn một tên khác và thử lại. Torrent Tags Thẻ torrent - - New Tag - Thẻ mới - Add tag - + Thêm thẻ @@ -11271,90 +11144,90 @@ Vui lòng chọn một tên khác và thử lại. TorrentsController - + Error: '%1' is not a valid torrent file. Lỗi: '%1' không phải là tệp torrent hợp lệ. - + Priority must be an integer Độ Ưu tiên phải là một số nguyên - + Priority is not valid Ưu tiên không hợp lệ - + Torrent's metadata has not yet downloaded Dữ liệu mô tả torrent chưa được tải xuống - + File IDs must be integers ID tệp phải là số nguyên - + File ID is not valid ID tệp không hợp lệ - - - - + + + + Torrent queueing must be enabled Hàng đợi torrent phải được bật - - + + Save path cannot be empty Đường dẫn lưu không được để trống` - - + + Cannot create target directory Không thể tạo thư mục đích - - + + Category cannot be empty Danh mục không được để trống - + Unable to create category Không thể tạo danh mục - + Unable to edit category Không thể sửa danh mục được - + Unable to export torrent file. Error: %1 Không thể xuất tệp torrent. Lỗi: %1 - + Cannot make save path Không thể tạo đường dẫn lưu "%1" is not a valid URL - + "%1" không phải là URL hợp lệ URL scheme must be one of [%1] - + Sơ đồ URL phải là một trong [%1] @@ -11362,39 +11235,39 @@ Vui lòng chọn một tên khác và thử lại. tham số 'sort' không hợp lệ - + "%1" is not an existing URL - + "%1" không phải là một URL hiện có - + "%1" is not a valid file index. "%1" không phải là một chỉ mục tệp hợp lệ. - + Index %1 is out of bounds. Chỉ mục %1 nằm ngoài giới hạn. - - + + Cannot write to directory Không thể viết vào chỉ mục - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI Đặt vị trí: di chuyển "%1", từ "%2" đến "%3" - + Incorrect torrent name Tên torrent không chính xác - - + + Incorrect category name Tên danh mục không chính xác @@ -11477,45 +11350,33 @@ Vui lòng chọn một tên khác và thử lại. Invalid state! - + Trạng thái không hợp lệ! URL/Announce Endpoint - + Đích đến URL/Thông Báo BT Protocol - + Giao Thức BT Next Announce - + Thông Báo Kế Tiếp Min Announce - - - - Invalid status! - Trạng thái không hợp lệ! - - - URL/Announce endpoint - Đích đến URL/Thông Báo + Phút Thông Báo Tier Hạng - - Protocol - Giao thức - Status @@ -11546,18 +11407,6 @@ Vui lòng chọn một tên khác và thử lại. Message Thông báo - - Next announce - Thông báo tiếp theo - - - Min announce - Thông báo tối thiểu - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Vui lòng chọn một tên khác và thử lại. Torrent này có dạng riêng tư - + Tracker editing Sửa máy theo dõi - + Tracker URL: URL máy theo dõi: - - + + Tracker editing failed Sửa máy theo dõi thất bại - + The tracker URL entered is invalid. URL máy theo dõi đã nhập không hợp lệ. - + The tracker URL already exists. URL máy theo dõi đã tồn tại. - + Edit tracker URL... Chỉnh sửa URL máy theo dõi... - + Remove tracker Xóa máy theo dõi - + Copy tracker URL Sao chép URL máy theo dõi - + Force reannounce to selected trackers Buộc thông báo lại với các máy theo dõi đã chọn - + Force reannounce to all trackers Buộc thông báo lại với tất cả máy theo dõi - + Resize columns Đổi kích cỡ cột - + Resize all non-hidden columns to the size of their contents Thay đổi kích thước tất cả các cột không ẩn thành kích thước của nội dung của chúng - + Add trackers... Thêm máy theo dõi... - + Column visibility Khả năng hiển thị của cột @@ -11716,20 +11565,12 @@ Vui lòng chọn một tên khác và thử lại. Start torrents - + Chạy torrents Stop torrents - - - - Resume torrents - Tiếp tục torrent - - - Pause torrents - Tạm dừng torrent + Dừng torrents @@ -11853,10 +11694,6 @@ Vui lòng chọn một tên khác và thử lại. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. Kiểm tra dữ liệu tiếp tục - - Paused - Tạm dừng - Completed @@ -11897,21 +11734,16 @@ Vui lòng chọn một tên khác và thử lại. % Done Tiến độ - - Status - Torrent status (e.g. downloading, seeding, paused) - Trạng thái - Stopped - + Đã dừng lại Status Torrent status (e.g. downloading, seeding, stopped) - Trạng thái + Trạng thái @@ -11946,7 +11778,7 @@ Vui lòng chọn một tên khác và thử lại. Popularity - + Phổ biến @@ -12027,22 +11859,17 @@ Vui lòng chọn một tên khác và thử lại. Time Active Time (duration) the torrent is active (not stopped) - Thời Gian Hoạt Động + Thời Gian Hoạt Động Yes - + Đúng No - Không - - - Time Active - Time (duration) the torrent is active (not paused) - Thời Gian Hoạt Động + Không @@ -12114,12 +11941,12 @@ Vui lòng chọn một tên khác và thử lại. Private Flags private torrents - + Riêng tư Ratio / Time Active (in months), indicates how popular the torrent is - + Tỷ lệ / Thời gian hoạt động (tính theo tháng), cho biết mức độ phổ biến của torrent @@ -12144,358 +11971,319 @@ Vui lòng chọn một tên khác và thử lại. TransferListWidget - + Column visibility Khả năng hiển thị của cột - + Recheck confirmation Kiểm tra lại xác nhận - + Are you sure you want to recheck the selected torrent(s)? Bạn có chắc muốn kiểm tra lại (các)torrent đã chọn? - + Rename Đổi tên - + New name: Tên mới: - + Choose save path Chọn đường dẫn lưu - Confirm pause - Xác nhận tạm dừng - - - Would you like to pause all torrents? - Bạn có muốn tạm dừng tất cả các torrent? - - - Confirm resume - Xác nhận tiếp tục - - - Would you like to resume all torrents? - Bạn có muốn tiếp tục tất cả các torrent không? - - - + Unable to preview Không thể xem trước - + The selected torrent "%1" does not contain previewable files Torrent đã chọn "%1" không chứa các tệp có thể xem trước - + Resize columns Đổi kích cỡ cột - + Resize all non-hidden columns to the size of their contents Thay đổi kích thước tất cả các cột không ẩn thành kích thước của nội dung của chúng - + Enable automatic torrent management Bật quản lý torrent tự động - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Bạn có chắc chắn muốn bật Quản lý Torrent Tự động cho (các) torrent đã chọn không? Nó có thể được đổi chỗ. - Add Tags - Thêm thẻ - - - + Choose folder to save exported .torrent files Chọn thư mục để lưu các tệp .torrent đã xuất - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" Xuất tệp .torrent thất bại. Torrent: "%1". Đường dẫn lưu: "%2". Lý do: "%3" - + A file with the same name already exists Tệp có cùng tên đã tồn tại - + Export .torrent file error Lỗi xuất tệp .torrent - + Remove All Tags Xóa Hết Các Thẻ - + Remove all tags from selected torrents? Xóa hết thẻ khỏi torrent đã chọn? - + Comma-separated tags: Các thẻ cách nhau bằng dấu phẩy: - + Invalid tag Thẻ không hợp lệ - + Tag name: '%1' is invalid Tên thẻ '%1' không hợp lệ - &Resume - Resume/start the torrent - Tiếp tục - - - &Pause - Pause the torrent - Tạm ngừng - - - Force Resu&me - Force Resume/start the torrent - Buộc Tiếp Tục - - - + Pre&view file... Xem trước tệp... - + Torrent &options... Tùy chọn t&orrent... - + Open destination &folder Mở thư mục đích - + Move &up i.e. move up in the queue Di ch&uyển lên - + Move &down i.e. Move down in the queue &Di chuyển xuống - + Move to &top i.e. Move to top of the queue Di chuyển lên đầu - + Move to &bottom i.e. Move to bottom of the queue Di chuyển xuống cuối - + Set loc&ation... Đặt vị trí... - + Force rec&heck Buộc kiểm tra lại - + Force r&eannounce Buộc thông báo lại - + &Magnet link Liên kết Magnet - + Torrent &ID Torrent &ID - + &Comment &Bình luận - + &Name Tê&n - + Info &hash v1 Thông tin băm v1 - + Info h&ash v2 Thông tin băm v2 - + Re&name... Đổi tê&n - + Edit trac&kers... Sửa máy theo dõi... - + E&xport .torrent... &Xuất .torrent - + Categor&y Danh mục - + &New... New category... Mới... - + &Reset Reset category Đặt lại - + Ta&gs Thẻ - + &Add... Add / assign multiple tags... Thêm - + &Remove All Remove all tags Xoá Hết - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + Không thể buộc thông báo lại nếu torrent Đã Dừng/Xếp Hàng/Lỗi/Đang Kiểm Tra - + &Queue Xếp hàng - + &Copy Sao &Chép - + Exported torrent is not necessarily the same as the imported Torrent đã xuất không nhất thiết phải giống với torrent đã nhập - + Download in sequential order Tải về theo thứ tự tuần tự - + Add tags - + Thêm thẻ - + Errors occurred when exporting .torrent files. Check execution log for details. Đã xảy ra lỗi khi xuất tệp .torrent. Kiểm tra nhật ký thực thi để biết chi tiết. - + &Start Resume/start the torrent - + Chạy - + Sto&p Stop the torrent - + Dừng - + Force Star&t Force Resume/start the torrent - + Buộc Chạy - + &Remove Remove the torrent Xóa - + Download first and last pieces first Tải về phần đầu và phần cuối trước - + Automatic Torrent Management Quản lý Torrent tự động - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Chế độ tự động có nghĩa là các thuộc tính torrent khác nhau (VD: đường dẫn lưu) sẽ được quyết định bởi danh mục liên quan - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - Không thể buộc thông báo lại nếu torrent bị Tạm dừng/Xếp hàng đợi/ Lỗi/Đang kiểm tra - - - + Super seeding mode Chế độ siêu chia sẻ @@ -12571,7 +12359,7 @@ Vui lòng chọn một tên khác và thử lại. Set app style failed. Unknown style: "%1" - + Đặt kiểu dáng ứng dụng thất bại. Không rõ kiểu: "%1" @@ -12627,32 +12415,32 @@ Vui lòng chọn một tên khác và thử lại. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Đã tìm thấy Python có thể thực thi được. Tên: "%1". Phiên bản: "%2" - + Failed to find Python executable. Path: "%1". Không tìm thấy tệp thực thi Python. Đường dẫn: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" Không tìm thấy tệp thực thi `python3` trong biến môi trường PATH. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" Không tìm thấy tệp thực thi `python` trong biến môi trường PATH. PATH: "%1" - + Failed to find `python` executable in Windows Registry. Không tìm thấy tệp thực thi `python` trong Windows Registry. - + Failed to find Python executable Không thể tìm thấy Python có thể thực thi được @@ -12744,52 +12532,52 @@ Vui lòng chọn một tên khác và thử lại. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Tên cookie phiên không được chấp nhận được chỉ định: '%1'. Mặc định một được sử dụng. - + Unacceptable file type, only regular file is allowed. Loại tệp không được chấp nhận, chỉ cho phép tệp thông thường. - + Symlinks inside alternative UI folder are forbidden. Liên kết biểu tượng bên trong thư mục giao diện người dùng thay thế bị cấm. - + Using built-in WebUI. Sử dụng WebUI tích hợp. - + Using custom WebUI. Location: "%1". Sử dụng WebUI tùy chỉnh. Vị trí: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Bản dịch WebUI cho ngôn ngữ đã chọn (%1) đã được tải thành công. - + Couldn't load WebUI translation for selected locale (%1). Không thể tải bản dịch WebUI cho ngôn ngữ đã chọn (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Thiếu dấu phân tách ':' trong tiêu đề HTTP tùy chỉnh WebUI: "%1" - + Web server error. %1 Lỗi máy chủ web. %1 - + Web server error. Unknown error. Lỗi máy chủ web. Không rõ lỗi. @@ -12847,7 +12635,7 @@ Vui lòng chọn một tên khác và thử lại. Unknown error - Không rõ lỗi + Không rõ lỗi diff --git a/src/lang/qbittorrent_zh_CN.ts b/src/lang/qbittorrent_zh_CN.ts index be6851787..459210c30 100644 --- a/src/lang/qbittorrent_zh_CN.ts +++ b/src/lang/qbittorrent_zh_CN.ts @@ -170,10 +170,6 @@ Never show again 不再显示 - - Torrent settings - Torrent 设置 - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrent 选项 @@ -235,25 +231,25 @@ 停止条件: - - + + None - - + + Metadata received 已收到元数据 - + Torrents that have metadata initially will be added as stopped. 最开始就有元数据的 Torrent 文件被添加后将处在停止状态 - + Files checked 文件已被检查 @@ -368,112 +364,112 @@ 保存为 .torrent 文件... - + I/O Error I/O 错误 - + Not Available This comment is unavailable 不可用 - + Not Available This date is unavailable 不可用 - + Not available 不可用 - + Magnet link 磁力链接 - + Retrieving metadata... 正在检索元数据... - - + + Choose save path 选择保存路径 - + No stop condition is set. 未设置停止条件。 - + Torrent will stop after metadata is received. 接收到元数据后,Torrent 将停止。 - + Torrent will stop after files are initially checked. 第一次文件检查完成后,Torrent 将停止。 - + This will also download metadata if it wasn't there initially. 如果最开始不存在元数据,勾选此选项也会下载元数据。 - + N/A N/A - + %1 (Free space on disk: %2) %1(剩余磁盘空间:%2) - + Not available This size is unavailable. 不可用 - + Torrent file (*%1) Torrent 文件 (*%1) - + Save as torrent file 另存为 Torrent 文件 - + Couldn't export torrent metadata file '%1'. Reason: %2. 无法导出 Torrent 元数据文件 “%1”。原因:%2。 - + Cannot create v2 torrent until its data is fully downloaded. 在完全下载数据之前无法创建 v2 Torrent。 - + Filter files... 过滤文件... - + Parsing metadata... 正在解析元数据... - + Metadata retrieval complete 元数据检索完成 @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" 正在下载 Torrent... 来源:“%1” - + Failed to add torrent. Source: "%1". Reason: "%2" 添加 Torrent 失败。来源:“%1”。原因:“%2” - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 检测到尝试添加重复 Torrent 文件。来源:%1。现有 Torrent 文件:%2。结果:%3 + 检测到尝试添加重复 Torrent 文件。来源:%1。现有 Torrent 文件:%2。结果:%3 - + Merging of trackers is disabled 合并 Tracker 已禁用 - + Trackers cannot be merged because it is a private torrent 因为这是一个私有 Torrent,所以无法合并 Tracker - + Trackers are merged from new source 来自新来源的 Tracker 已经合并 + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 完成后重新校验 Torrent - - + + ms milliseconds 毫秒 - + Setting 设置 - + Value Value set for this setting - + (disabled) (禁用) - + (auto) (自动) - - + + min minutes 分钟 - + All addresses 所有地址 - + qBittorrent Section qBittorrent 相关 - - + + Open documentation 打开文档 - + All IPv4 addresses 所有 IPv4 地址 - + All IPv6 addresses 所有 IPv6 地址 - + libtorrent Section libtorrent 相关 - + Fastresume files 快速恢复文件 - + SQLite database (experimental) SQLite 数据库(实验性功能) - + Resume data storage type (requires restart) 恢复数据存储类型(需要重新启动) - + Normal 正常 - + Below normal 低于正常 - + Medium 中等 - + Low - + Very low 极低 - + Physical memory (RAM) usage limit 物理内存(RAM)使用限制 - + Asynchronous I/O threads 异步 I/O 线程数 - + Hashing threads 散列线程 - + File pool size 文件池大小 - + Outstanding memory when checking torrents 校验时内存使用扩增量 - + Disk cache 磁盘缓存 - - - - + + + + + s seconds - + Disk cache expiry interval 磁盘缓存到期间隔 - + Disk queue size 磁盘队列大小 - - + + Enable OS cache 启用操作系统缓存 - + Coalesce reads & writes 合并读写 - + Use piece extent affinity 启用相连文件块下载模式 - + Send upload piece suggestions 发送分块上传建议 - - - - - + + + + + 0 (disabled) 0(禁用) - + Save resume data interval [0: disabled] How often the fastresume file is saved. 保存恢复数据的间隔 [0:禁用] - + Outgoing ports (Min) [0: disabled] 传出端口(最低)[0:禁用] - + Outgoing ports (Max) [0: disabled] 传出端口(最高)[0:禁用] - + 0 (permanent lease) 0(永久租约) - + UPnP lease duration [0: permanent lease] UPnP 租期 [0:永久 ] - + Stop tracker timeout [0: disabled] 停止 Tracker 超时 [0:禁用] - + Notification timeout [0: infinite, -1: system default] 通知超时 [0:无限,-1:系统默认值] - + Maximum outstanding requests to a single peer 单一 peer 的最大未完成请求数 - - - - - + + + + + KiB KiB - + (infinite) (无限) - + (system default) (系统默认) - + Delete files permanently - + 永久删除文件 - + Move files to trash (if possible) - + 移动文件到回收站(如果可能) - + Torrent content removing mode - + Torrent 内容删除模式 - + This option is less effective on Linux 这个选项在 Linux 上没那么有效 - + Process memory priority 处理内存优先级 - + Bdecode depth limit Bdecode 深度限制 - + Bdecode token limit Bdecode 令牌限制 - + Default 默认 - + Memory mapped files 内存映射文件 - + POSIX-compliant 遵循 POSIX - + Simple pread/pwrite - + 简单 pread/pwrite - + Disk IO type (requires restart) 磁盘 IO 类型(需要重启) - - + + Disable OS cache 禁用操作系统缓存 - + Disk IO read mode 磁盘 IO 读取模式 - + Write-through 连续写入 - + Disk IO write mode 磁盘 IO 写入模式 - + Send buffer watermark 发送缓冲区上限 - + Send buffer low watermark 发送缓冲区下限 - + Send buffer watermark factor 发送缓冲区增长系数 - + Outgoing connections per second 每秒传出连接数 - - + + 0 (system default) 0(系统默认) - + Socket send buffer size [0: system default] 套接字发送缓存大小 [0:系统默认值] - + Socket receive buffer size [0: system default] 套接字接收缓存大小 [0:系统默认值] - + Socket backlog size 套接字 backlog 大小 - + Save statistics interval [0: disabled] How often the statistics file is saved. - + 保存统计数据间隔 [0:停用] - + .torrent file size limit .torrent 文件大小上限 - + Type of service (ToS) for connections to peers 与 peers 连接的服务类型(ToS) - + Prefer TCP 优先使用 TCP - + Peer proportional (throttles TCP) 按用户比重 (抑制 TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) 支持国际化域名(IDN) - + Allow multiple connections from the same IP address 允许来自同一 IP 地址的多个连接 - + Validate HTTPS tracker certificates 验证 HTTPS tracker 证书 - + Server-side request forgery (SSRF) mitigation 服务器端请求伪造(SSRF)缓解 - + Disallow connection to peers on privileged ports 禁止连接到特权端口上的 peer - + It appends the text to the window title to help distinguish qBittorent instances 它将文本附加到窗口标题来区分不同的 qBittorrent 实例 - + Customize application instance name 定制程序实例名 - + It controls the internal state update interval which in turn will affect UI updates 它控制内部状态更新间隔,此间隔会影响用户界面更新 - + Refresh interval 刷新间隔 - + Resolve peer host names 解析用户主机名 - + IP address reported to trackers (requires restart) 报告给 Tracker 的 IP 地址(需要重启) - + Port reported to trackers (requires restart) [0: listening port] - + 报告给 Trackers 的端口 (需要重启)[0:监听端口] - + Reannounce to all trackers when IP or port changed 当 IP 或端口更改时重新通知所有 Tracker - + Enable icons in menus 启用菜单中的图标 - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker 对内置 Tracker 启用端口转发 - + Enable quarantine for downloaded files 开启已下载文件隔离 - + Enable Mark-of-the-Web (MOTW) for downloaded files 开启已下载文件 Mark-of-the-Web (MOTW) - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + 影响证书验证和非 torrent 协议活动(如 RSS 源、程序更新、torrent 文件、geoip 数据库等) - + Ignore SSL errors - + 忽略 SSL 错误 - + (Auto detect if empty) (假如为空,自动检测) - + Python executable path (may require restart) Python 可执行路径(可能需要重新启动) - + Start BitTorrent session in paused state - + 启动处于暂停状态下的 BitTorrent 会话 - + sec seconds - + - + -1 (unlimited) - + -1 (无限) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent 会话关闭超时 [-1:无限制] - + Confirm removal of tracker from all torrents 确认从所有 Torrent 中移除 Tracker - + Peer turnover disconnect percentage peer 进出断开百分比 - + Peer turnover threshold percentage peer 进出阈值百分比 - + Peer turnover disconnect interval peer 进出断开间隔 - + Resets to default if empty 如果为空,则重置为默认值 - + DHT bootstrap nodes DHT Bootstrap 节点 - + I2P inbound quantity I2P 传入量 - + I2P outbound quantity I2P 传出量 - + I2P inbound length I2P 传入长度 - + I2P outbound length I2P 传出长度 - + Display notifications 显示通知 - + Display notifications for added torrents 显示已添加 Torrent 的通知 - + Download tracker's favicon 下载 Tracker 的网站图标 - + Save path history length 保存路径的历史记录条目数 - + Enable speed graphs 启用速度图表 - + Fixed slots 固定窗口数 - + Upload rate based 基于上传速度 - + Upload slots behavior 上传窗口策略 - + Round-robin 轮流上传 - + Fastest upload 最快上传 - + Anti-leech 反吸血 - + Upload choking algorithm 上传连接策略 - + Confirm torrent recheck 重新校验 Torrent 时提示确认 - + Confirm removal of all tags 删除所有标签时提示确认 - + Always announce to all trackers in a tier 总是向同级的所有 Tracker 汇报 - + Always announce to all tiers 总是向所有等级的 Tracker 汇报 - + Any interface i.e. Any network interface 任意网络接口 - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP 混合模式策略 - + Resolve peer countries 解析用户所在国家 - + Network interface 网络接口 - + Optional IP address to bind to 绑定到的可选 IP 地址 - + Max concurrent HTTP announces 最大并发 HTTP 汇报 - + Enable embedded tracker 启用内置 Tracker - + Embedded tracker port 内置 Tracker 端口 @@ -1382,142 +1393,142 @@ Invalid directory path - + 无效的目录路径 Directory does not exist - + 目录不存在 Invalid mode, allowed values: %1 - + 无效模式,允许的值:%1 cookies must be array - + Cookies 必须为数组 Application - + Running in portable mode. Auto detected profile folder at: %1 当前运行在便携模式下。自动检测配置文件夹于:%1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. 检测到冗余的命令行参数:“%1”。便携模式使用基于相对路径的快速恢复文件。 - + Using config directory: %1 使用配置目录:%1 - + Torrent name: %1 Torrent 名称:%1 - + Torrent size: %1 Torrent 大小:%1 - + Save path: %1 保存路径:%1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds 该 Torrent 下载用时为 %1。 - - + + Thank you for using qBittorrent. 感谢您使用 qBittorrent。 - + Torrent: %1, sending mail notification Torrent:%1,发送邮件提醒 - + Add torrent failed 添加 torrent 失败 - + Couldn't add torrent '%1', reason: %2. 无法添加 Torrent “%1”,原因:%2。 - + The WebUI administrator username is: %1 WebUI 管理员用户名是:%1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 未设置 WebUI 管理员密码。为此会话提供了一个临时密码:%1 - + You should set your own password in program preferences. 你应该在程序首选项中设置你自己的密码 - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI 已禁用!要启用 WebUI,请手动编辑配置文件。 - + Running external program. Torrent: "%1". Command: `%2` 运行外部程序。Torrent:“%1”。命令:`%2` - + Failed to run external program. Torrent: "%1". Command: `%2` 运行外部程序失败。Torrent 文件:“%1”。命令:`%2` - + Torrent "%1" has finished downloading Torrent “%1” 已完成下载 - + WebUI will be started shortly after internal preparations. Please wait... WebUI 将在内部准备不久后启动。请稍等… - - + + Loading torrents... 加载 Torrent 中... - + E&xit 退出(&X) - + I/O Error i.e: Input/Output Error I/O 错误 - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ 原因:%2 - + Torrent added 已添加 Torrent - + '%1' was added. e.g: xxx.avi was added. 已添加 “%1”。 - + Download completed 下载完成 - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 已启动。进程 ID:%2 - + This is a test email. - + 这是测试邮件。 - + Test email - + 测试邮件 - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. “%1” 下载完成。 - + Information 信息 - + To fix the error, you may need to edit the config file manually. 你可能需要手动编辑配置文件以修复此错误。 - + To control qBittorrent, access the WebUI at: %1 要控制 qBittorrent,请访问下列地址的 WebUI:%1 - + Exit 退出 - + Recursive download confirmation 确认递归下载 - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent “%1” 包含 .torrent 文件,您要继续下载它们的内容吗? - + Never 从不 - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" 递归下载 Torrent 内的 .torrent 文件。源 Torrent:“%1”。文件:“%2” - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" 设置物理内存(RAM)使用限制失败。错误代码:%1。错误信息:“%2” - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" 未能设置硬性物理内存(RAM)用量限制。请求的大小:%1。硬性系统限制:%2。错误码:%3。错误消息:“%4” - + qBittorrent termination initiated 发起了 qBittorrent 终止操作 - + qBittorrent is shutting down... qBittorrent 正在关闭... - + Saving torrent progress... 正在保存 Torrent 进度... - + qBittorrent is now ready to exit qBittorrent 现在准备好退出了 @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 导出(&E)... - + Matches articles based on episode filter. 使用剧集过滤器匹配文章。 - + Example: 示例: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match 可匹配第 1 季的第 2 集、第 5 集、第 8 至 15 集、第 30 集及之后的集数 - + Episode filter rules: 剧集过滤器规则: - + Season number is a mandatory non-zero value 季数必须是非零数 - + Filter must end with semicolon 过滤规则必须以分号结束 - + Three range types for episodes are supported: 支持 3 种集数范围写法: - + Single number: <b>1x25;</b> matches episode 25 of season one 单个数字:<b>1x25;</b> 匹配第 1 季的第 25 集 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one 正常范围:<b>1x25-40;</b> 匹配第 1 季的第 25 至 40 集 - + Episode number is a mandatory positive value 集数必须是正数 - + Rules 规则 - + Rules (legacy) 规则 (旧式) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons 无限范围:<b>1x25-;</b> 匹配第 1 季的第 25 集及之后的集数,以及之后所有季度的集数 - + Last Match: %1 days ago 上次匹配:%1 天前 - + Last Match: Unknown 上次匹配:未知 - + New rule name 新规则名称 - + Please type the name of the new download rule. 请输入新的下载规则的名称。 - - + + Rule name conflict 规则名称冲突 - - + + A rule with this name already exists, please choose another name. 该名称已被另一规则使用,请重新命名。 - + Are you sure you want to remove the download rule named '%1'? 您确定要删除下载规则 '%1' 吗? - + Are you sure you want to remove the selected download rules? 您确定要删除所选的下载规则吗? - + Rule deletion confirmation 删除规则时提示确认 - + Invalid action 无效操作 - + The list is empty, there is nothing to export. 列表为空,没有可导出的项目。 - + Export RSS rules 导出 RSS 规则 - + I/O Error I/O 错误 - + Failed to create the destination file. Reason: %1 无法创建目标文件。原因:%1 - + Import RSS rules 导入 RSS 规则 - + Failed to import the selected rules file. Reason: %1 无法导入所选规则文件。原因:%1 - + Add new rule... 添加新规则... - + Delete rule 删除规则 - + Rename rule... 重命名规则... - + Delete selected rules 删除所选规则 - + Clear downloaded episodes... 清空已下载剧集... - + Rule renaming 重命名规则 - + Please type the new rule name 请输入新的规则名称 - + Clear downloaded episodes 清空已下载剧集 - + Are you sure you want to clear the list of downloaded episodes for the selected rule? 您确定要清空所选规则下的已下载剧集列表吗? - + Regex mode: use Perl-compatible regular expressions 正则模式:使用兼容 Perl 的正则表达式 - - + + Position %1: %2 位置 %1:%2 - + Wildcard mode: you can use 通配符模式:您可以使用—— - - + + Import error 导入错误 - + Failed to read the file. %1 未能读取文件:%1 - + ? to match any single character ? —— 匹配任意单个字符 - + * to match zero or more of any characters * —— 匹配 0 个或多个任意字符 - + Whitespaces count as AND operators (all words, any order) 空格 —— "与" 运算符 (所有关键词,任意顺序) - + | is used as OR operator | —— "或" 运算符 - + If word order is important use * instead of whitespace. 如果要区分关键词顺序,请使用 * 替代空格。 - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) 将 %1 符号的一侧留空的表达式 (例如 %2) - + will match all articles. 将匹配所有文章。 - + will exclude all articles. 将排除所有文章。 @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 无法解析恢复数据:无效格式 - - + + Cannot parse torrent info: %1 无法解析 Torrent 信息:%1 - + Cannot parse torrent info: invalid format 无法解析 Torrent 信息:无效格式 - + Mismatching info-hash detected in resume data 在继续数据中检测到不匹配的 info-hash - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. 无法将 Torrent 元数据保存到 “%1”。错误:%2 - + Couldn't save torrent resume data to '%1'. Error: %2. 无法将 Torrent 恢复数据保存到 “%1”。错误:%2 @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 无法解析恢复数据:%1 - + Resume data is invalid: neither metadata nor info-hash was found 恢复数据无效:没有找到元数据和信息哈希 - + Couldn't save data to '%1'. Error: %2 无法将数据保存到 “%1”。错误:%2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. 未找到。 - + Couldn't load resume data of torrent '%1'. Error: %2 无法加载 Torrent “%1”的恢复数据。错误:%2 - - + + Database is corrupted. 数据库损坏。 - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. 无法启用预写式日志(WAL)记录模式。错误:%1。 - + Couldn't obtain query result. 无法获取查询结果。 - + WAL mode is probably unsupported due to filesystem limitations. 由于文件系统限制,WAL 模式可能不受支持。 - + + + Cannot parse resume data: %1 + 无法解析恢复数据:%1 + + + + + Cannot parse torrent info: %1 + 无法解析 Torrent 信息:%1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 无法开始处理。错误:%1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. 无法保存 Torrent 元数据。 错误:%1。 - + Couldn't store resume data for torrent '%1'. Error: %2 无法存储 Torrent “%1” 的恢复数据。错误:%2 - + Couldn't delete resume data of torrent '%1'. Error: %2 无法删除 Torrent “%1” 的恢复数据。错误:%2 - + Couldn't store torrents queue positions. Error: %1 无法存储 Torrent 的队列位置。错误:%1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 分布式哈希表(DHT)支持:%1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 本地 Peer 发现支持:%1 - + Restart is required to toggle Peer Exchange (PeX) support 开/关 Peer 交换(PeX)功能必须重新启动程序 - + Failed to resume torrent. Torrent: "%1". Reason: "%2" 未能继续下载 Torrent。Torrent:“%1”。原因:“%2” - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" 未能继续下载 Torrent:检测到不一致的 Torrent ID。Torrent:“%1” - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" 检测到不一致的数据:配置文件缺少分类。分类将被恢复但其设置将被重置到默认值。Torrent:“%1”。分类:“%2” - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" 检测到不一致的数据:无效分类。Torrent:“%1”。分类:“%2” - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" 检测到已恢复分类的路径和 Torrent 当前保存路径不一致。Torrent 现在切换到手动模式。Torrent:“%1”。分类:“%2” - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" 检测到不一致的数据:配置文件缺少标签。标签将被恢复。Torrent:“%1”。标签:“%2” - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" 检测到不一致的数据:无效标签。Torrent:“%1”。标签:“%2” - + System wake-up event detected. Re-announcing to all the trackers... 检测到系统唤醒事件。正重新向所有 Tracker 广播... - + Peer ID: "%1" Peer ID:“%1” - + HTTP User-Agent: "%1" HTTP User-Agent:“%1” - + Peer Exchange (PeX) support: %1 Peer 交换(PeX)支持:%1 - - + + Anonymous mode: %1 匿名模式:%1 - - + + Encryption support: %1 加密支持:%1 - - + + FORCED 强制 - + Could not find GUID of network interface. Interface: "%1" 找不到网络接口的 GUID。接口:“%1” - + Trying to listen on the following list of IP addresses: "%1" 尝试侦听下列 IP 地址列表:“%1” - + Torrent reached the share ratio limit. Torrent 到达了分享率上限。 - + Torrent: "%1". Torrent:“%1”。 - Removed torrent. - 已移除 Torrent。 - - - Removed torrent and deleted its content. - 已移除 Torrent 并删除了其内容。 - - - Torrent paused. - Torrent 已暂停。 - - - + Super seeding enabled. 已开启超级做种。 - + Torrent reached the seeding time limit. Torrent 到达做种时间上限。 - + Torrent reached the inactive seeding time limit. Torrent 到达了不活跃做种时间上限。 - + Failed to load torrent. Reason: "%1" 加载 Torrent 失败,原因:“%1” - + I2P error. Message: "%1". I2P 错误。消息:“%1”。 - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP 支持:开 - + Saving resume data completed. - + 已完成恢复数据保存。 - + BitTorrent session successfully finished. - + BitTorrent 会话成功完成了。 - + Session shutdown timed out. - + 会话关闭超时。 - + Removing torrent. - + 删除 torrent。 - + Removing torrent and deleting its content. - + 删除 torrent 及其内容。 - + Torrent stopped. - + Torrent 已停止。 - + Torrent content removed. Torrent: "%1" - + 已删除 Torrent 内容。Torrent:"%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + 删除 torrent 内容失败。Torrent:"%1"。 错误:"%2" - + Torrent removed. Torrent: "%1" - + 已删除 Torrent。Torrent:"%1" - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + 检测到尝试添加重复 Torrent 文件。现有 Torrent 文件:%1。结果:%2 - + Merging of trackers is disabled - 合并 Tracker 已禁用 + 合并 Tracker 已禁用 - + Trackers cannot be merged because it is a private torrent - + 无法合并 Tracker,因为这是一个私有 Torrent - + Trackers are merged from new source - 来自新来源的 Tracker 已经合并 + 来自新来源的 Tracker 已经合并 - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP 支持:关 - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" 导出 Torrent 失败。Torrent:“%1”。保存位置:“%2”。原因:“%3” - + Aborted saving resume data. Number of outstanding torrents: %1 终止了保存恢复数据。未完成 Torrent 数目:%1 - + The configured network address is invalid. Address: "%1" 配置的网络地址无效。地址:“%1” - - + + Failed to find the configured network address to listen on. Address: "%1" 未能找到配置的要侦听的网络地址。地址:“%1” - + The configured network interface is invalid. Interface: "%1" 配置的网络接口无效。接口:“%1” - + Tracker list updated - + Tracker 列表已更新 - + Failed to update tracker list. Reason: "%1" - + 更新Tracker列表失败。原因:“%1” - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" 应用被禁止的 IP 地址列表时拒绝了无效的 IP 地址。IP:“%1” - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" 已添加 Tracker 到 Torrent。Torrent:“%1”。Tracker:“%2” - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" 从 Torrent 删除了 Tracker。Torrent:“%1”。Tracker:“%2” - + Added URL seed to torrent. Torrent: "%1". URL: "%2" 已添加 URL 种子到 Torrent。Torrent:“%1”。URL:“%2” - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" 从 Torrent 中删除了 URL 种子。Torrent:“%1”。URL:“%2” - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + 删除 partfile 失败。Torrent:"%1"。理由:"%2". - Torrent paused. Torrent: "%1" - Torrent 已暂停。Torrent:“%1” - - - + Torrent resumed. Torrent: "%1" Torrent 已恢复。Torrent:“%1” - + Torrent download finished. Torrent: "%1" Torrent 下载完成。Torrent:“%1” - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" 取消了 Torrent 移动。Torrent:“%1”。 源位置:“%2”。目标位置:“%3” - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent 已停止。Torrent:"%1" + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination 未能将 Torrent 移动加入队列。Torrent:“%1”。源位置:“%2”。目标位置:“%3”。原因:正在将 Torrent 移动到目标位置 - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location 未能将 Torrent 移动加入队列。Torrent:“%1”。源位置:“%2”。目标位置:“%3”。原因:两个路径指向同一个位置 - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" 已将 Torrent 移动加入队列。Torrent:“%1”。源位置:“%2”。目标位置:“%3” - + Start moving torrent. Torrent: "%1". Destination: "%2" 开始移动 Torrent。Torrent:“%1”。目标位置:“%2” - + Failed to save Categories configuration. File: "%1". Error: "%2" 保存分类配置失败。文件:“%1”。错误:“%2” - + Failed to parse Categories configuration. File: "%1". Error: "%2" 解析分类配置失败。文件:“%1”。错误:“%2” - + Successfully parsed the IP filter file. Number of rules applied: %1 成功解析了 IP 过滤规则文件。应用的规则数:%1 - + Failed to parse the IP filter file 解析 IP 过滤规则文件失败 - + Restored torrent. Torrent: "%1" 已还原 Torrent。Torrent:“%1” - + Added new torrent. Torrent: "%1" 添加了新 Torrent。Torrent:“%1” - + Torrent errored. Torrent: "%1". Error: "%2" Torrent 出错了。Torrent:“%1”。错误:“%2” - Removed torrent. Torrent: "%1" - 移除了 Torrent。Torrent:“%1” - - - Removed torrent and deleted its content. Torrent: "%1" - 移除了 Torrent 并删除了其内容。Torrent:“%1” - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent 缺少 SSL 参数。Torrent:"%1"。消息: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" 文件错误警报。Torrent:“%1”。文件:“%2”。原因:“%3” - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP 端口映射失败。消息:“%1” - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP 端口映射成功。消息:“%1” - + IP filter this peer was blocked. Reason: IP filter. IP 过滤规则 - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). 过滤的端口(%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). 特权端口(%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL 种子连接失败。Torrent:"%1"。URL:"%2"。错误:"%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent 会话遇到严重错误。原因:“%1” - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 代理错误。地址:%1。消息:“%2”。 - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 混合模式限制 - + Failed to load Categories. %1 未能加载类别:%1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" 未能加载分类配置。文件:“%1”。错误:“无效数据格式” - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - 移除了 Torrent 文件但未能删除其内容和/或 part 文件。Torrent:“%1”。错误:“%2” - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 已停用 - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 已停用 - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL 种子 DNS 查询失败。Torrent:“%1”。URL:“%2”。错误:“%3” - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" 收到了来自 URL 种子的错误信息。Torrent:“%1”。URL:“%2”。消息:“%3” - + Successfully listening on IP. IP: "%1". Port: "%2/%3" 成功监听 IP。IP:“%1”。端口:“%2/%3” - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" 监听 IP 失败。IP:“%1”。端口:“%2/%3”。原因:“%4” - + Detected external IP. IP: "%1" 检测到外部 IP。IP:“%1” - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" 错误:内部警报队列已满,警报被丢弃。您可能注意到性能下降。被丢弃的警报类型:“%1”。消息:“%2” - + Moved torrent successfully. Torrent: "%1". Destination: "%2" 成功移动了 Torrent。Torrent:“%1”。目标位置:“%2” - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" 移动 Torrent 失败。Torrent:“%1”。源位置:“%2”。目标位置:“%3”。原因:“%4” @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 无法写入文件。原因:“%1”。Torrent 目前处在 “仅上传” 模式。 - + Download first and last piece first: %1, torrent: '%2' 先下载首尾文件块:%1,Torrent:“%2” - + On 开启 - + Off 关闭 - + Failed to reload torrent. Torrent: %1. Reason: %2 重加载 torrent 文件失败。Torrent:%1. 原因:%2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" 生成恢复数据失败。Torrent:“%1”。原因:“%2” - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" 恢复 Torrent 失败。文件可能被移动或存储不可访问。Torrent:“%1”。原因:“%2” - + Missing metadata 缺少元数据 - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" 文件重命名错误。Torrent:“%1”,文件:“%2”,错误:“%3” - + Performance alert: %1. More info: %2 性能警报:%1。更多信息:%2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' 预期环境变量 “%1” 是一个整数,而它的值为 “%2” - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - 参数 “%1” 必须符合语法 “%1=%2” - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - 参数 “%1” 必须符合语法 “%1=%2” + 参数 “%1” 必须符合语法 “%1=%2” @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - 添加 Torrent 时的状态为开始或暂停 + 以运行或停止状态添加多个 torrent @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + 启动 torrent Stop torrents - - - - Resume torrents - 继续 torrent - - - Pause torrents - 暂停 torrent + 停止 torrent @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + 系统 @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - 并永久删除这些文件 + 同时删除已下载的文件 @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + 模式格式 Plain text - + 纯文本 Wildcards - + 通配符 Regular expression - + 正则表达式 GUIAddTorrentManager - + Downloading torrent... Source: "%1" 正在下载 Torrent... 来源:“%1” - Trackers cannot be merged because it is a private torrent - 无法合并 Tracker,因为这是一个私有 Torrent - - - + Torrent is already present Torrent 已存在 - + Trackers cannot be merged because it is a private torrent. - + 无法合并 Tracker,因为这是一个私有 Torrent - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent “%1” 已经在传输列表中。你想合并来自新来源的 Tracker 吗? @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 支持的图片文件 + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + 电源管理发现了合适的 D-Bus 界面。界面:%1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + 电源管理错误。操作:%1。错误:%2 + + + + Power management unexpected error. State: %1. Error: %2 + 电源管理异常错误。状态:%1.。错误:%2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... 设置(&O)... - - &Resume - 继续(&R) - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + 关闭系统(&U) @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window 关闭窗口 - - R&esume All - 全部继续(&E) - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + 启动(&R) Sto&p - + 停止(&P) R&esume Session - + 恢复会话(&E) Pau&se Session - + 暂停会话(&S) @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System 系统休眠(&H) - - S&hutdown System - 关机(&U) - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About 关于(&A) - - &Pause - 暂停(&P) - - - P&ause All - 全部暂停(&A) - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 显示 - + Check for program updates 检查程序更新 @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 如果您喜欢 qBittorrent,请捐款! - + Execution Log 执行日志 - + Clear the password 清除密码 - + &Set Password 设置密码(&S) - + Preferences 首选项 - + &Clear Password 清除密码(&C) - + Transfers 传输 - - + + qBittorrent is minimized to tray qBittorrent 已最小化到任务托盘 - - - + + + This behavior can be changed in the settings. You won't be reminded again. 该行为可以在设置中改变。你不会再次收到此提醒。 - + Icons Only 只显示图标 - + Text Only 只显示文字 - + Text Alongside Icons 在图标旁显示文字 - + Text Under Icons 在图标下显示文字 - + Follow System Style 跟随系统设置 - - + + UI lock password 锁定用户界面的密码 - - + + Please type the UI lock password: 请输入用于锁定用户界面的密码: - + Are you sure you want to clear the password? 您确定要清除密码吗? - + Use regular expressions 使用正则表达式 - - + + Search Engine - 搜索引擎 + 搜索引擎 - + Search has failed - 搜索失败 + 搜索失败 - + Search has finished - + 搜索已完成 - + Search 搜索 - + Transfers (%1) 传输 (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent 刚刚被更新,需要重启以使更改生效。 - + qBittorrent is closed to tray qBittorrent 已关闭到任务托盘 - + Some files are currently transferring. 一些文件正在传输中。 - + Are you sure you want to quit qBittorrent? 您确定要退出 qBittorrent 吗? - + &No 否(&N) - + &Yes 是(&Y) - + &Always Yes 总是(&A) - + Options saved. 已保存选项 - + [PAUSED] %1 %1 is the rest of the window title - + [已暂停] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + 无法下载 Python 安装程序。错误:%1。 +请手动安装。 - + Rename Python installer failed. Source: "%1". Destination: "%2". - + 无法重命名 Python 安装程序。源:“%1”。目标:“%2”。 - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python 安装成功。 + Exit code: %1. + 退出码:%1。 + + + + Reason: installer crashed. + 原因:安装程序崩溃。 + + + Python installation failed. - + Python 安装失败。 - + Launching Python installer. File: "%1". - + 启动 Python 安装程序。文件:“%1”。 - - + + Missing Python Runtime 缺少 Python 运行环境 - + qBittorrent Update Available qBittorrent 有可用更新 - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? 使用搜索引擎需要 Python,但是它似乎未被安装。 你想现在安装吗? - + Python is required to use the search engine but it does not seem to be installed. 使用搜索引擎需要 Python,但是它似乎未被安装。 - - + + Old Python Runtime Python 运行环境过旧 - + A new version is available. 新版本可用。 - + Do you want to download %1? 您想要下载版本 %1 吗? - + Open changelog... 打开更新日志... - + No updates available. You are already using the latest version. 没有可用更新。 您正在使用的已是最新版本。 - + &Check for Updates 检查更新(&C) - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? 您的 Python 版本(%1)已过时。最低要求:%2。 您想现在安装较新的版本吗? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. 您的 Python 版本(%1)已过时,请更新其至最新版本以继续使用搜索引擎。 最低要求:%2。 - + Paused - 暂停 + 暂停 - + Checking for Updates... 正在检查更新... - + Already checking for program updates in the background 已经在后台检查程序更新 - + Python installation in progress... - + Python 安装进行中… - + Failed to open Python installer. File: "%1". - + 打开 Python 安装程序失败。文件:“%1”。 - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python 安装程序的 MD5 哈希检查失败。文件:“%1”。哈希结果:“%2”。期望哈希值:“%3”。 - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python 安装程序的 SHA3-512 哈希检查失败。文件:“%1”。哈希结果:“%2”。期望哈希值:“%3”。 - + Download error 下载出错 - Python setup could not be downloaded, reason: %1. -Please install it manually. - 无法下载 Python 安装程序,原因:%1。 -请手动安装。 - - - - + + Invalid password 无效密码 - + Filter torrents... 过滤 Torrent... - + Filter by: 过滤依据: - + The password must be at least 3 characters long 密码长度至少为 3 个字符 - - - + + + RSS (%1) RSS (%1) - + The password is invalid 该密码无效 - + DL speed: %1 e.g: Download speed: 10 KiB/s 下载速度:%1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s 上传速度:%1 - + Hide 隐藏 - + Exiting qBittorrent 正在退出 qBittorrent - + Open Torrent Files 打开 Torrent 文件 - + Torrent Files Torrent 文件 @@ -4556,7 +4561,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + SSL 错误, URL:"%1", 错误: "%2" @@ -5853,47 +5858,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 连接失败,未识别的响应:%1 - + Authentication failed, msg: %1 认证失败,消息:%1 - + <mail from> was rejected by server, msg: %1 <mail from>被服务器拒绝,消息:%1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to>被服务器拒绝,消息:%1 - + <data> was rejected by server, msg: %1 <data>被服务器拒绝,消息:%1 - + Message was rejected by the server, error: %1 消息被服务器拒绝,错误:%1 - + Both EHLO and HELO failed, msg: %1 EHLO 和 HELO 均失败,消息:%1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP 服务器似乎不支持任何我们支持的认证模式 [CRAM-MD5|PLAIN|LOGIN],正跳过验证,因为它可能会失败...服务器认证模式:%1 - + Email Notification Error: %1 电子邮件通知错误:%1 @@ -5935,10 +5940,6 @@ Please install it manually. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5960,6 @@ Please install it manually. Confirm when deleting torrents 删除 Torrent 时提示确认 - - Shows a confirmation dialog upon pausing/resuming all the torrents - 暂停/恢复所有 torrent 时显示确认对话框 - - - Confirm "Pause/Resume all" actions - 确认”暂停/继续所有“操作 - Use alternating row colors @@ -5983,10 +5976,6 @@ Please install it manually. Always 总是 - - Paused torrents only - 仅暂停 torrent - Action on double-click @@ -5997,10 +5986,6 @@ Please install it manually. Downloading torrents: 正在下载 torrent: - - Start / Stop Torrent - 开始 / 停止 Torrent - @@ -6059,179 +6044,179 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent 内容布局: - + Original 原始 - + Create subfolder 创建子文件夹 - + Don't create subfolder 不创建子文件夹 - + The torrent will be added to the top of the download queue 该 Torrent 将被添加至下载队列顶部 - + Add to top of queue The torrent will be added to the top of the download queue 添加到队列顶部 - + When duplicate torrent is being added 当添加重复的 torrent 时 - + Merge trackers to existing torrent 合并 trackers 到现有 torrent - + Keep unselected files in ".unwanted" folder 将未选中的文件保留在 ".unwanted" 文件夹中 - + Add... 添加... - + Options.. 选项.. - + Remove 删除 - + Email notification &upon download completion 下载完成时发送电子邮件通知(&U) - + Send test email - + 发送测试邮件 - + Run on torrent added: - + 新增 Torrent 时运行: - + Run on torrent finished: - + torrent 完成时运行: - + Peer connection protocol: Peer 连接协议: - + Any 任何 - + I2P (experimental) I2P(实验性) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>如启用 “混合模式”,则 I2P Torrent 也被允许从 Tracker 之外的来源获得 peers,并连接到正常的 IP 地址,这样的结果是不提供任何的匿名性。对于对 I2P 匿名性不感兴趣,但让仍希望能连接到 I2P peer 的用户来说,此模式会有用处。</p></body></html> - - - + Mixed mode 混合模式 - Some options are incompatible with the chosen proxy type! - 某些选项与所选的代理类型不兼容! + 某些选项与所选的代理类型不兼容! - + If checked, hostname lookups are done via the proxy 勾选后,将通过代理查找主机名 - + Perform hostname lookup via proxy 通过代理查找主机名 - + Use proxy for BitTorrent purposes 对 BitTorrent 目的使用代理 - + RSS feeds will use proxy RSS 源将使用代理 - + Use proxy for RSS purposes 对 RSS 目的使用代理 - + Search engine, software updates or anything else will use proxy 搜索引擎、软件更新或其他事项将使用代理 - + Use proxy for general purposes 对常规目的使用代理 - + IP Fi&ltering IP 过滤(&L) - + Schedule &the use of alternative rate limits 自动启用备用速度限制(&T) - + From: From start time 从: - + To: To end time 到: - + Find peers on the DHT network 在 DHT 网络上寻找节点 - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Disable encryption: Only connect to peers without protocol encryption 禁用加密:仅当节点不使用加密协议时才连接 - + Allow encryption 允许加密 - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">更多信息</a>) - + Maximum active checking torrents: 最大活跃检查 Torrent 数: - + &Torrent Queueing Torrent 队列(&T) - + When total seeding time reaches 达到总做种时间时 - + When inactive seeding time reaches 达到不活跃做种时间时 - A&utomatically add these trackers to new downloads: - 自动将以下 Tracker 添加到新的任务(&U): - - - + RSS Reader RSS 阅读器 - + Enable fetching RSS feeds 启用获取 RSS 订阅 - + Feeds refresh interval: RSS 订阅源更新间隔: - + Same host request delay: 相同的主机请求延迟: - + Maximum number of articles per feed: 每个订阅源文章数目最大值: - - - + + + min minutes 分钟 - + Seeding Limits 做种限制 - Pause torrent - 暂停 torrent - - - + Remove torrent 删除 torrent - + Remove torrent and its files 删除 torrent 及所属文件 - + Enable super seeding for torrent 为 torrent 启用超级做种 - + When ratio reaches 当分享率达到 - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + 停止 torrent - + A&utomatically append these trackers to new downloads: - + 自动附加这些 tracker 到新下载: - + Automatically append trackers from URL to new downloads: - + 自动附加 URL 的 trackers 到新的下载: - + URL: - 网址: + 网址: - + Fetched trackers - + 获取 tracker - + Search UI - + 搜索用户界面 - + Store opened tabs - + 保存已开启的分页 - + Also store search results - + 也存储搜索结果 - + History length - + 历史记录数量 - + RSS Torrent Auto Downloader RSS Torrent 自动下载器 - + Enable auto downloading of RSS torrents 启用 RSS Torrent 自动下载 - + Edit auto downloading rules... 修改自动下载规则... - + RSS Smart Episode Filter RSS 智能剧集过滤器 - + Download REPACK/PROPER episodes 下载 REPACK/PROPER 版剧集 - + Filters: 过滤器: - + Web User Interface (Remote control) Web 用户界面(远程控制) - + IP address: IP 地址: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv "::" 为任何 IPv6 地址,或 "*" 为 IPv4 和 IPv6。 - + Ban client after consecutive failures: 连续失败后禁止客户端: - + Never 从不 - + ban for: 禁止: - + Session timeout: 会话超时: - + Disabled 禁用 - Enable cookie Secure flag (requires HTTPS) - 启用 cookie 安全标志(需要 HTTPS) - - - + Server domains: 服务器域名: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP 使用 HTTPS 而不是 HTTP(&U) - + Bypass authentication for clients on localhost 对本地主机上的客户端跳过身份验证 - + Bypass authentication for clients in whitelisted IP subnets 对 IP 子网白名单中的客户端跳过身份验证 - + IP subnet whitelist... IP 子网白名单... - + Use alternative WebUI - + 使用备选 WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. 指定反向代理 IP(或子网,如 0.0.0.0/24)以使用转发的客户端地址(X-Forwarded-For 标头)。使用 “;” 符号分割多个条目。 - + Upda&te my dynamic domain name 更新我的动态域名(&T) @@ -6519,12 +6502,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - 搜索 + 搜索 WebUI - + WebUI @@ -6539,29 +6522,29 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + 样式 Color scheme: - + 配色方案: Stopped torrents only - + 仅已停止的 torrent Start / stop torrent - + 开始 / 停止 torrent Open torrent options dialog - + 打开 Torrent 设置对话框 @@ -6602,7 +6585,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - + 日志文件(&L) @@ -6620,99 +6603,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.删除早于指定时间的备份日志文件: - + Show external IP in status bar - + 在状态栏展示外部 IP - + When adding a torrent 添加 torrent 时 - + Bring torrent dialog to the front 前置 torrent 对话框 - + The torrent will be added to download list in a stopped state - + torrent 将以停止状态添加到下载列表中 - + Also delete .torrent files whose addition was cancelled 添加操作被取消时也删除 .torrent 文件 - + Also when addition is cancelled 添加操作被取消时也删除 .torrent 文件 - + Warning! Data loss possible! 警告!该操作可能会丢失数据! - + Saving Management 保存管理 - + Default Torrent Management Mode: 默认 Torrent 管理模式: - + Manual 手动 - + Automatic 自动 - + When Torrent Category changed: 当 Torrent 分类改变时: - + Relocate torrent 移动 torrent - + Switch torrent to Manual Mode 切换 torrent 至手动模式 - - + + Relocate affected torrents 移动影响的 torrent - - + + Switch affected torrents to Manual Mode 切换受影响的 torrent 至手动模式 - + Use Subcategories 启用子分类: - + Default Save Path: 默认保存路径: - + Copy .torrent files to: 复制 .torrent 文件到: @@ -6722,26 +6705,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.在通知区域显示 qBittorrent(&Q) - &Log file - 日志文件(&L) - - - + Display &torrent content and some options 显示 Torrent 内容和选项(&T) - + De&lete .torrent files afterwards 添加后删除 .torrent 文件(&L) - + Copy .torrent files for finished downloads to: 复制下载完成的 .torrent 文件到: - + Pre-allocate disk space for all files 为所有文件预分配磁盘空间 @@ -6771,10 +6750,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder 预览文件,否则打开所在目录 - - Show torrent options - 显示 Torrent 选项 - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.年 - + Log performance warnings 记录性能警报 - The torrent will be added to download list in a paused state - 将 Torrent 以暂停状态添加到下载列表中 - - - + Do not start the download automatically The torrent will be added to download list in a stopped state 不要自动开始下载 - + Whether the .torrent file should be deleted after adding it 添加 .torrent 文件后是否要删除它 - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. 开始下载前分配所有文件的磁盘空间,以便最大限度减少磁盘碎片。只对 HDD 硬盘有用。 - + Append .!qB extension to incomplete files 为不完整的文件添加扩展名 .!qB - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it 当 Torrent 下载完成的同时,把其中包含的所有 .torrent 文件一并添加到 Torrent 列表中 - + Enable recursive download dialog 启用递归下载对话框 - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually 自动:各种 Torrent 属性(如保存路径)由关联分类决定 手动:各种 Torrent 属性(如保存路径)必须手工指定 - + When Default Save/Incomplete Path changed: 默认保存/不完整路径更改时: - + When Category Save Path changed: 当分类保存路径更改时: - + Use Category paths in Manual Mode 在手动模式下使用分类路径 - + Resolve relative Save Path against appropriate Category path instead of Default one 根据适当的分类路径而不是默认路径解析相对的保存路径 @@ -6922,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually启动时 qBittorrent 窗口状态 - + Torrent stop condition: Torrent 停止条件: - - + + None - - + + Metadata received 已收到元数据 - - + + Files checked 文件已被检查 - + Ask for merging trackers when torrent is being added manually 手动添加 torrent 时询问是否合并 trackers - + Use another path for incomplete torrents: 对不完整的 Torrent 使用另一个路径: - + Automatically add torrents from: 自动从此处添加 torrent: - + Excluded file names 排除的文件名 - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt:过滤精确文件名。 readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “readme10.txt”。 - + Receiver 接收者 - + To: To receiver 到: - + SMTP server: SMTP 服务器: - + Sender 发送者 - + From: From sender 从: - + This server requires a secure connection (SSL) 该服务器需要安全链接(SSL) - - + + Authentication 验证 - - - - + + + + Username: 用户名: - - - - + + + + Password: 密码: - + Run external program 运行外部程序 - Run on torrent added - 新增 Torrent 时运行 - - - Run on torrent finished - Torrent 完成时运行 - - - + Show console window 显示控制台窗口 - + TCP and μTP TCP 和 μTP - + Listening Port 监听端口 - + Port used for incoming connections: 用于传入连接的端口: - + Set to 0 to let your system pick an unused port 设为 0,让系统选择一个未使用的端口 - + Random 随机 - + Use UPnP / NAT-PMP port forwarding from my router 使用我的路由器的 UPnP / NAT-PMP 端口转发 - + Connections Limits 连接限制 - + Maximum number of connections per torrent: 每 torrent 最大连接数: - + Global maximum number of connections: 全局最大连接数: - + Maximum number of upload slots per torrent: 每个 Torrent 上传窗口数上限: - + Global maximum number of upload slots: 全局上传窗口数上限: - + Proxy Server 代理服务器 - + Type: 类型: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: 主机: - - - + + + Port: 端口: - + Otherwise, the proxy server is only used for tracker connections 否则,代理服务器将仅用于 tracker 连接 - + Use proxy for peer connections 使用代理服务器进行用户连接 - + A&uthentication 认证(&U) - Info: The password is saved unencrypted - 提示:密码未加密 + 提示:密码未加密 - + Filter path (.dat, .p2p, .p2b): 过滤规则路径 (.dat, .p2p, .p2b): - + Reload the filter 重新加载过滤规则 - + Manually banned IP addresses... 手动屏蔽 IP 地址... - + Apply to trackers 匹配 tracker - + Global Rate Limits 全局速度限制 - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: 上传: - - + + Download: 下载: - + Alternative Rate Limits 备用速度限制 - + Start time 开始时间 - + End time 结束时间 - + When: 时间: - + Every day 每天 - + Weekdays 工作日 - + Weekends 周末 - + Rate Limits Settings 设置速度限制 - + Apply rate limit to peers on LAN 对本地网络用户进行速度限制 - + Apply rate limit to transport overhead 对传送总开销进行速度限制 - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>如启用 “混合模式”,I2P Torrent 将被允许从 Tracker 之外的来源获得 peers,并连接到正常的 IP 地址,不提供任何的匿名性。对于对 I2P 的匿名性不感兴趣,但让仍希望能连接到 I2P peer 的用户来说,此模式可能会有用。</p></body></html> - + Apply rate limit to µTP protocol 对 µTP 协议进行速度限制 - + Privacy 隐私 - + Enable DHT (decentralized network) to find more peers 启用 DHT (去中心化网络) 以找到更多用户 - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) 与兼容的 Bittorrent 客户端交换用户 (µTorrent, Vuze, …) - + Enable Peer Exchange (PeX) to find more peers 启用用户交换 (PeX) 以找到更多用户 - + Look for peers on your local network 在本地网络上寻找用户 - + Enable Local Peer Discovery to find more peers 启用本地用户发现以找到更多用户 - + Encryption mode: 加密模式: - + Require encryption 强制加密 - + Disable encryption 禁用加密 - + Enable when using a proxy or a VPN connection 使用代理或 VPN 连接时启用 - + Enable anonymous mode 启用匿名模式 - + Maximum active downloads: 最大活动的下载数: - + Maximum active uploads: 最大活动的上传数: - + Maximum active torrents: 最大活动的 torrent 数: - + Do not count slow torrents in these limits 慢速 torrent 不计入限制内 - + Upload rate threshold: 上传速度阈值: - + Download rate threshold: 下载速度阈值: - - - - + + + + sec seconds - + Torrent inactivity timer: Torrent 非活动计时器: - + then 达到上限后: - + Use UPnP / NAT-PMP to forward the port from my router 使用我的路由器的 UPnP / NAT-PMP 功能来转发端口 - + Certificate: 证书: - + Key: 密钥: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>关于证书</a> - + Change current password 更改当前密码 - Use alternative Web UI - 使用备用的 Web UI - - - + Files location: 文件位置: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">替代 WebUI 清单</a> - + Security 安全 - + Enable clickjacking protection 启用点击劫持保护 - + Enable Cross-Site Request Forgery (CSRF) protection 启用跨站请求伪造 (CSRF) 保护 - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + 启用 cookie 安全标志(需要 HTTPS或本地连接) - + Enable Host header validation 启用 Host header 属性验证 - + Add custom HTTP headers 添加自定义 HTTP headers - + Header: value pairs, one per line Header: value 值对,每行一个 - + Enable reverse proxy support 启用反向代理支持 - + Trusted proxies list: 受信任的代理列表: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>反向代理安装样例</a> - + Service: 服务: - + Register 注册 - + Domain name: 域名: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! 若启用以下选项,你可能会<strong>永久地丢失<strong>你的 .torrent 文件! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog 如果启用第二个选项&ldquo;取消添加后也删除&rdquo;,即使在&ldquo;添加 Torrent&rdquo;对话框中点击&ldquo;<strong>取消</strong>&rdquo;,<strong>也会删除</strong> .torrent 文件。 @@ -7520,12 +7478,12 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r 选择 qBittorrent 界面主题文件 - + Choose Alternative UI files location 选择备用的 UI 文件位置 - + Supported parameters (case sensitive): 支持的参数(区分大小写): @@ -7545,183 +7503,183 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r 因未能检测到系统托盘的存在而禁用 - + No stop condition is set. 未设置停止条件。 - + Torrent will stop after metadata is received. 接收到元数据后,Torrent 将停止。 - + Torrent will stop after files are initially checked. 第一次文件检查完成后,Torrent 将停止。 - + This will also download metadata if it wasn't there initially. 如果最开始不存在元数据,勾选此选项也会下载元数据。 - + %N: Torrent name %N:Torrent 名称 - + %L: Category %L:分类 - + %F: Content path (same as root path for multifile torrent) %F:内容路径(与多文件 torrent 的根目录相同) - + %R: Root path (first torrent subdirectory path) %R:根目录(第一个 torrent 的子目录路径) - + %D: Save path %D:保存路径 - + %C: Number of files %C:文件数 - + %Z: Torrent size (bytes) %Z:Torrent 大小(字节) - + %T: Current tracker %T:当前 tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") 提示:使用引号将参数扩起以防止文本被空白符分割(例如:"%N") - + Test email - + 测试邮件 - + Attempted to send email. Check your inbox to confirm success - + 已尝试发送邮件。检查你的收件箱确认是否发送成功 - + (None) (无) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds 当 Torrent 下载或上传速度低于指定阈值并持续超过 “Torrent 非活动计时器” 指定的时间时,Torrent 将会被判定为慢速。 - + Certificate 证书 - + Select certificate 选择证书 - + Private key 私钥 - + Select private key 选择私钥 - + WebUI configuration failed. Reason: %1 WebUI 配置失败了。原因:%1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + 建议选择 %1 来达到和 Windows 深色模式最佳兼容性 - + System System default Qt style - + 系统 - + Let Qt decide the style for this system - + 让 Qt 决定此系统的样式 - + Dark Dark color scheme - + 深色 - + Light Light color scheme - + 浅色 - + System System color scheme - + 系统 - + Select folder to monitor 选择要监视的文件夹 - + Adding entry failed 添加条目失败 - + The WebUI username must be at least 3 characters long. WebUI 用户名长度至少为3个字符 - + The WebUI password must be at least 6 characters long. WebUI 密码长度至少为6个字符 - + Location Error 路径错误 - - + + Choose export directory 选择导出目录 - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well 如果启用以上选项,qBittorrent 会在 .torrent 文件成功添加到下载队列后(第一个选项)或取消添加后(第二个选项)<strong> 删除</strong>原本的 .torrent 文件。这<strong>不仅</strong>适用于通过&ldquo;添加 Torrent&rdquo;菜单打开的文件,也适用于通过<strong>关联文件类型</strong>打开的文件。 @@ -7731,69 +7689,69 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r qBittorrent UI 主题文件 (*.qbtheme config.json) - + %G: Tags (separated by comma) %G:标签(以逗号分隔) - + %I: Info hash v1 (or '-' if unavailable) %I:信息哈希值 v1(如果不可用,则为“-”) - + %J: Info hash v2 (or '-' if unavailable) %J:信息哈希值 v2(如果不可用,则为“-”) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K:Torrent ID(v1 Torrent 的 sha-1 信息哈希值,或 v2/混合 Torrent 的截断 sha-256 信息哈希值) - - + + Choose a save directory 选择保存目录 - + Torrents that have metadata initially will be added as stopped. 最开始就有元数据的 Torrent 文件被添加后将处在停止状态 - + Choose an IP filter file 选择一个 IP 过滤规则文件 - + All supported filters 所有支持的过滤规则 - + The alternative WebUI files location cannot be blank. 备选的 WebUI 文件位置不能为空 - + Parsing error 解析错误 - + Failed to parse the provided IP filter 无法解析提供的 IP 过滤规则 - + Successfully refreshed 刷新成功 - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number 成功解析提供的 IP 过滤规则:%1 条规则已应用。 @@ -7804,18 +7762,18 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r 首选项 - + Time Error 时间错误 - + The start time and the end time can't be the same. 开始时间和结束时间不能相同。 - - + + Length Error 长度错误 @@ -7900,169 +7858,169 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r Peer is using NAT hole punching - + Peer 正使用 NAT 打洞 PeerListWidget - + Country/Region 国家/地区 - + IP/Address IP/地址 - + Port 端口 - + Flags 标志 - + Connection 连接 - + Client i.e.: Client application 客户端 - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID 客户端 - + Progress i.e: % downloaded 进度 - + Down Speed i.e: Download speed 下载速度 - + Up Speed i.e: Upload speed 上传速度 - + Downloaded i.e: total data downloaded 已下载 - + Uploaded i.e: total data uploaded 已上传 - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. 文件关联 - + Files i.e. files that are being downloaded right now 文件 - + Column visibility 显示列 - + Resize columns 调整列大小 - + Resize all non-hidden columns to the size of their contents 将所有非隐藏列的大小调整为其内容的大小 - + Add peers... 添加 peers 用户... - - + + Adding peers 添加用户 - + Some peers cannot be added. Check the Log for details. 部分用户无法被添加。请查看日志以了解更多。 - + Peers are added to this torrent. 这些用户已添加到此 torrent。 - - + + Ban peer permanently 永久禁止用户 - + Cannot add peers to a private torrent 无法将 peer 用户添加至私有 torrent - + Cannot add peers when the torrent is checking torrent 在检查时无法添加 peers 用户 - + Cannot add peers when the torrent is queued torrent 排队时无法添加 peers 用户 - + No peer was selected 未选中 peer - + Are you sure you want to permanently ban the selected peers? 您确定要永久禁止所选的用户吗? - + Peer "%1" is manually banned 用户 "%1" 已被自动屏蔽 - + N/A N/A - + Copy IP:port 复制 IP:端口 @@ -8343,34 +8301,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent 正在活动 + qBittorrent 正在活动 PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - 电源管理发现了合适的 D-Bus 界面。界面:%1 + 电源管理发现了合适的 D-Bus 界面。界面:%1 - Power management error. Did not found suitable D-Bus interface. - 电源管理错误。未发现合适的 D-Bus 界面。 + 电源管理错误。未发现合适的 D-Bus 界面。 - - - Power management error. Action: %1. Error: %2 - 电源管理错误。操作:%1。错误:%2 + 电源管理错误。操作:%1。错误:%2 - Power management unexpected error. State: %1. Error: %2 - 电源管理异常错误。状态:%1.。错误:%2 + 电源管理异常错误。状态:%1.。错误:%2 @@ -8614,12 +8565,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + 分享率/活跃时间(月份为单位),表明 torrent 的流行度 Popularity: - + 流行度: @@ -8654,7 +8605,7 @@ Those plugins were disabled. Private: - + 私密: @@ -8662,153 +8613,124 @@ Those plugins were disabled. 保存路径: - + Never 从不 - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (已完成 %3) - - + + %1 (%2 this session) %1 (本次会话 %2) - - + + N/A N/A - + Yes - + - + No - + - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (已做种 %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (最大 %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (总计 %2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (平均 %2) - + Add web seed Add HTTP source - + 新增 Web 种子 - + Add web seed: - + 新增 Web 种子: - - + + This web seed is already in the list. - + 该 Web 种子已在此列表中。 - New Web seed - 新建 Web 种子 - - - Remove Web seed - 移除 Web 种子 - - - Copy Web seed URL - 复制 Web 种子 URL - - - Edit Web seed URL - 编辑 Web 种子 URL - - - + Filter files... 过滤文件... - + Add web seed... - + 新增 Web 种子 - + Remove web seed - + 移除 Web 种子 - + Copy web seed URL - + 复制 Web 种子 URL - + Edit web seed URL... - + 编辑 Web 种子 URL... - + Speed graphs are disabled 速度图被禁用 - + You can enable it in Advanced Options 您可以在“高级选项”中启用它 - New URL seed - New HTTP source - 新建 URL 种子 - - - New URL seed: - 新建 URL 种子: - - - This URL seed is already in the list. - 该 URL 种子已在列表中。 - - - + Web seed editing 编辑 Web 种子 - + Web seed URL: Web 种子 URL: @@ -8816,33 +8738,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. 无效的数据格式。 - + Couldn't save RSS AutoDownloader data in %1. Error: %2 无法在 %1 保存 RSS 自动下载器数据。错误:%2 - + Invalid data format 无效数据格式 - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... 已接受 RSS 文章 '%1',依据是规则 '%2'。正尝试添加 torrent... - + Failed to read RSS AutoDownloader rules. %1 未能读取 RSS 自动下载程序规则: %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 无法读取 RSS 自动下载器规则。原因:%1 @@ -8850,22 +8772,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 下载 RSS 订阅 '%1' 失败。原因:%2 - + RSS feed at '%1' updated. Added %2 new articles. 已更新 RSS 订阅 '%1'。添加了 %2 个新文章。 - + Failed to parse RSS feed at '%1'. Reason: %2 无法解析 RSS 订阅 '%1'。原因:%2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. 已成功下载 RSS 订阅 “%1”。开始解析。 @@ -8914,12 +8836,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" 无法保存 RSS 会话配置。文件:“%1”。错误:“%2” - + Couldn't save RSS session data. File: "%1". Error: "%2" 无法保存 RSS 会话数据。文件:“%1”。错误:“%2” @@ -8941,76 +8863,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. 项目不存在:%1。 - Couldn't move folder into itself. - 文件夹移动的起点和终点不能相同 + 文件夹移动的起点和终点不能相同 - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. 不能删除根文件夹。 - + Failed to read RSS session data. %1 未能读取 RSS 会话数据: %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" 未能解析 RSS 会话数据。文件:"%1"。错误: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." 未能加载 RSS 会话数据。文件:"%1"。错误: "无效的数据格式." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. 无法加载 RSS 源。源:“%1”。原因:需要 URL。 - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. 无法加载 RSS 源。源:“%1”。原因:UID 无效。 - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. 找到重复的 RSS 源。UID:“%1”,错误:配置似乎已损坏。 - + Couldn't load RSS item. Item: "%1". Invalid data format. 无法加载 RSS 项目。项目:“%1”。无效的数据格式。 - + Corrupted RSS list, not loading it. 损坏的 RSS 列表,无法加载它。 - + Incorrect RSS Item path: %1. 不正确的 RSS 项路径:%1。 - + RSS item with given path already exists: %1. 该 RSS 项的路径已存在:%1。 - + Parent folder doesn't exist: %1. 父文件夹不存在:%1。 + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed 不存在:%1。 + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + 网址: + + + + Refresh interval: + + + + + sec + + + + + Default + 默认 + + RSSWidget @@ -9110,78 +9077,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - 编辑源 URL... + 编辑源 URL... - Edit feed URL - 编辑源 URL + 编辑源 URL - + Please choose a folder name 请指定文件夹名 - + Folder name: 文件夹名: - + New folder 新建文件夹 - - Please type a RSS feed URL - 请输入一个 RSS 订阅地址 + 请输入一个 RSS 订阅地址 - - Feed URL: - 订阅源 URL: + 订阅源 URL: - + Deletion confirmation 确认删除 - + Are you sure you want to delete the selected RSS feeds? 您确定要删除所选的 RSS 订阅吗? - + Please choose a new name for this RSS feed 请重命名该 RSS 订阅源 - + New feed name: 新订阅源名称: - + Rename failed 重命名失败 - + Date: 日期: - + Feed: 订阅源: - + Author: 作者: @@ -9318,10 +9284,6 @@ Those plugins were disabled. i.e: Number of partial sources 下载 - - Search engine - 搜索引擎 - Filter search results... @@ -9411,17 +9373,17 @@ Those plugins were disabled. Engine - + 引擎 Engine URL - + 引擎 URL Published On - + 发布于 @@ -9442,104 +9404,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. 未知的搜索引擎插件文件格式。 - + Plugin already at version %1, which is greater than %2 插件当前版本为 %1,比 %2 更新。 - + A more recent version of this plugin is already installed. 已安装此插件的更新版本。 - + Plugin %1 is not supported. 不支持插件 %1。 - - + + Plugin is not supported. 不支持的插件。 - + Plugin %1 has been successfully updated. 插件 %1 已成功更新。 - + All categories 所有分类 - + Movies 电影 - + TV shows 电视节目 - + Music 音乐 - + Games 游戏 - + Anime 动画 - + Software 软件 - + Pictures 图片 - + Books 书籍 - + Update server is temporarily unavailable. %1 更新服务器暂时不可用。%1 - - + + Failed to download the plugin file. %1 无法下载插件文件。%1 - + Plugin "%1" is outdated, updating to version %2 插件 "%1" 已过时,正在更新至 %2 版本 - + Incorrect update info received for %1 out of %2 plugins. 在 %2 插件中收到 %1 不正确的更新信息。 - + Search plugin '%1' contains invalid version string ('%2') 搜索插件 '%1' 包含无效的版本字符串 ('%2') @@ -9565,137 +9527,129 @@ Click the "Search plugins..." button at the bottom right of the window 搜索插件... - + A phrase to search for. 欲搜索的关键词。 - + Spaces in a search term may be protected by double quotes. 可以使用双引号防止搜索关键词中的空格被忽略。 - + Example: Search phrase example 例如: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: 搜索 <b>foo bar</b> - + All plugins 所有插件 - + Only enabled 仅启用的 - - + + Invalid data format. - 无效的数据格式。 + 无效的数据格式。 - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>:搜索 <b>foo</b> 和 <b>bar</b> - + Refresh - + 刷新 - + Close tab 关闭标签 - + Close all tabs 关闭所有标签 - + Select... 选择... - - + + Search Engine 搜索引擎 - - + + Please install Python to use the Search Engine. 请安装 Python 以使用搜索引擎。 - + Empty search pattern 无搜索关键词 - + Please type a search pattern first 请先输入关键词 - + Stop 停止 - - Search has finished - 搜索完毕 - - - Search has failed - 搜索失败 - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + 加载搜索用户界面已保存的状态数据失败。文件:“%1”。错误:“%2” - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + 加载已保存的搜索结果失败。分页:“%1”。文件:“%2”。错误:“%3” - + Failed to save Search UI state. File: "%1". Error: "%2" - + 保存搜索用户界面状态失败。文件:“%1”。错误:“%2” - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + 保存搜索结果失败。分页:“%1”。文件:“%2”。错误:“%3” - + Failed to load Search UI history. File: "%1". Error: "%2" - + 加载搜索用户界面历史失败。文件:“%1”。错误:“%2” - + Failed to save search history. File: "%1". Error: "%2" - + 保存搜索历史失败。文件:“%1”。错误:“%2” @@ -10091,67 +10045,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: 连接状态: - - + + No direct connections. This may indicate network configuration problems. 无直接连接。这也许表明网络设置存在问题。 - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + 外部 IP:N/A + + + + DHT: %1 nodes DHT:%1 结点 - + qBittorrent needs to be restarted! 需要重启 qBittorrent! - - + + Connection Status: 连接状态: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. 离线。这通常是 qBittorrent 无法监听传入连接的端口。 - + Online 联机 - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + 外部 IP:%1, %2 + + + + External IP: %1%2 + 外部 IP:%1%2 + + + Click to switch to alternative speed limits 点击以切换到备用速度限制 - + Click to switch to regular speed limits 点击以切换到常规速度限制 @@ -10179,23 +10143,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) 完成 (0) - - Resumed (0) - 恢复 (0) - - - Paused (0) - 暂停 (0) - Running (0) - + 正运行 (0) Stopped (0) - + 已停止 (0) @@ -10260,49 +10216,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + 正运行 (%1) Stopped (%1) - + 已停止 (%1) Start torrents - + 启动 torrent Stop torrents - - - - Paused (%1) - 暂停 (%1) + 停止 torrent Moving (%1) 正在移动 (%1) - - Resume torrents - 继续 Torrent - - - Pause torrents - 暂停 Torrent - Remove torrents 移除 Torrent - - Resumed (%1) - 恢复 (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags 删除未使用的标签 - - Resume torrents - 继续 torrent - - - Pause torrents - 暂停 torrent - Remove torrents 移除 Torrent - - New Tag - 新标签 - Start torrents - + 启动 torrent Stop torrents - + 停止 torrent @@ -10409,7 +10337,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + 添加标签 @@ -10726,17 +10654,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks 活跃任务太多了 - + Torrent creation is still unfinished. 仍未完成 Torrent 创建 - + Torrent creation failed. Torrent 创建失败了。 @@ -10988,17 +10916,6 @@ Please choose a different name and try again. 监视文件夹:“%1” - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - 读取文件时未能分配内存。文件: "%1"。错误: "%2" - - - Invalid metadata - 元数据无效 - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Torrent 速度限制 + Torrent 分享率限制 @@ -11054,7 +10967,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Torrent 速度限制 @@ -11072,34 +10985,6 @@ Please choose a different name and try again. Upload: 上传: - - Torrent share limits - Torrent 分享限制 - - - Use global share limit - 使用全局分享限制 - - - Set no share limit - 设置为无分享限制 - - - Set share limit to - 设置分享限制为 - - - ratio - 分享率 - - - total minutes - 总分钟 - - - inactive minutes - 不活跃分钟 - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Please choose a different name and try again. Not applicable to private torrents 不适用于私有 Torrent - - No share limit method selected - 未指定分享限制方式 - - - Please select a limit method first - 请先选择一个限制方式 - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Please choose a different name and try again. Action when the limit is reached: - + 达到限制时采取的操作: Stop torrent - + 停止 torrent Remove torrent - 删除 torrent + 删除 torrent Remove torrent and its content - + 删除 torrent 及其内容 Enable super seeding for torrent - 为 torrent 启用超级做种 + 为 torrent 启用超级做种 @@ -11233,14 +11110,10 @@ Please choose a different name and try again. Torrent Tags Torrent 标签 - - New Tag - 新标签 - Add tag - + 添加标签 @@ -11271,90 +11144,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. 错误:'%1' 不是一个有效的 torrent 文件。 - + Priority must be an integer 优先级必须是整数 - + Priority is not valid 优先级无效 - + Torrent's metadata has not yet downloaded Torrent 的元数据尚未下载 - + File IDs must be integers 文件 ID 必须是整数 - + File ID is not valid 文件 ID 无效 - - - - + + + + Torrent queueing must be enabled 必须启用 torrent 队列 - - + + Save path cannot be empty 保存路径不能为空 - - + + Cannot create target directory 无法创建目标目录 - - + + Category cannot be empty 分类不能为空 - + Unable to create category 无法创建分类 - + Unable to edit category 无法编辑分类 - + Unable to export torrent file. Error: %1 无法导出 Torrent 文件。错误:%1 - + Cannot make save path 无法保存路径 "%1" is not a valid URL - + “%1” 不是有效的 URL URL scheme must be one of [%1] - + URL 形式必须为其中之一 [%1] @@ -11362,39 +11235,39 @@ Please choose a different name and try again. “sort” 参数无效 - + "%1" is not an existing URL - + URL “%1” 不存在 - + "%1" is not a valid file index. “%1” 不是有效的文件索引。 - + Index %1 is out of bounds. 索引 %1 超出范围。 - - + + Cannot write to directory 无法写入目录 - + WebUI Set location: moving "%1", from "%2" to "%3" Web UI 设置路径:从 "%2" 移动 "%1" 至 "%3" - + Incorrect torrent name 不正确的 torrent 名称 - - + + Incorrect category name 不正确的分类名 @@ -11477,45 +11350,33 @@ Please choose a different name and try again. Invalid state! - + 无效状态! URL/Announce Endpoint - + URL/Announce 端点 BT Protocol - + BT 协议 Next Announce - + 下一个 Announce Min Announce - - - - Invalid status! - 无效状态! - - - URL/Announce endpoint - URL/汇报 + 最小 Announce Tier 层级 - - Protocol - 协议 - Status @@ -11546,18 +11407,6 @@ Please choose a different name and try again. Message 消息 - - Next announce - 下次汇报 - - - Min announce - 最小汇报 - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Please choose a different name and try again. 这是私有 torrent - + Tracker editing 编辑 Tracker - + Tracker URL: Tracker URL: - - + + Tracker editing failed Tracker 编辑失败 - + The tracker URL entered is invalid. 输入的 tracker URL 是无效的。 - + The tracker URL already exists. 这个 tracker URL 已经存在。 - + Edit tracker URL... 编辑 tracker URL... - + Remove tracker 移除 tracker - + Copy tracker URL 复制 tracker URL - + Force reannounce to selected trackers 强制向选定的 Tracker 重新汇报 - + Force reannounce to all trackers 强制向所有 Tracker 重新汇报 - + Resize columns 调整列大小 - + Resize all non-hidden columns to the size of their contents 将所有非隐藏列的大小调整为其内容的大小 - + Add trackers... 添加 Tracker... - + Column visibility 显示列 @@ -11716,20 +11565,12 @@ Please choose a different name and try again. Start torrents - + 启动 torrent Stop torrents - - - - Resume torrents - 继续 Torrent - - - Pause torrents - 暂停 Torrent + 停止 torrent @@ -11853,10 +11694,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. 校验恢复数据 - - Paused - 暂停 - Completed @@ -11897,21 +11734,16 @@ Please choose a different name and try again. % Done 进度 - - Status - Torrent status (e.g. downloading, seeding, paused) - 状态 - Stopped - + 已停止 Status Torrent status (e.g. downloading, seeding, stopped) - 状态 + 状态 @@ -11946,7 +11778,7 @@ Please choose a different name and try again. Popularity - + 流行度 @@ -12027,22 +11859,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - 活动时间 + 有效时间 Yes - + No - - - - Time Active - Time (duration) the torrent is active (not paused) - 活动时间 + @@ -12114,12 +11941,12 @@ Please choose a different name and try again. Private Flags private torrents - + 私密 Ratio / Time Active (in months), indicates how popular the torrent is - + 分享率/活跃时间(月份为单位),表明 torrent 的流行度 @@ -12144,358 +11971,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility 是否显示列 - + Recheck confirmation 确认重新校验 - + Are you sure you want to recheck the selected torrent(s)? 您确定要重新校验所选的 Torrent 吗? - + Rename 重命名 - + New name: 新名称: - + Choose save path 选择保存路径 - Confirm pause - 确认暂停 - - - Would you like to pause all torrents? - 您要暂停所有的 Torrent 吗? - - - Confirm resume - 确认继续 - - - Would you like to resume all torrents? - 您要继续所有的 Torrent 吗? - - - + Unable to preview 无法预览 - + The selected torrent "%1" does not contain previewable files 已选中的 torrent "%1" 不包含任何可预览的文件 - + Resize columns 调整列大小 - + Resize all non-hidden columns to the size of their contents 将所有非隐藏列的大小调整为其内容的大小 - + Enable automatic torrent management 启用自动 Torrent 管理 - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. 你确定要为选定的 Torrent 启用自动 Torrent 管理吗?它们可能会被移动到新位置。 - Add Tags - 添加标签 - - - + Choose folder to save exported .torrent files 选择保存所导出 .torrent 文件的文件夹 - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" 导出 .torrent 文件失败。Torrent:“%1”。保存路径:“%2”。原因:“%3” - + A file with the same name already exists 已存在同名文件 - + Export .torrent file error 导出 .torrent 文件错误 - + Remove All Tags 删除所有标签 - + Remove all tags from selected torrents? 从选中的 Torrent 中删除所有标签? - + Comma-separated tags: 标签(以逗号分隔): - + Invalid tag 无效标签 - + Tag name: '%1' is invalid 标签名:'%1' 无效 - &Resume - Resume/start the torrent - 继续(&R) - - - &Pause - Pause the torrent - 暂停(&P) - - - Force Resu&me - Force Resume/start the torrent - 强制继续(&M) - - - + Pre&view file... 预览文件(&V)... - + Torrent &options... Torrent 选项(&O)... - + Open destination &folder 打开目标文件夹(&F) - + Move &up i.e. move up in the queue 上移(&U) - + Move &down i.e. Move down in the queue 下移(&D) - + Move to &top i.e. Move to top of the queue 移至顶部(&T) - + Move to &bottom i.e. Move to bottom of the queue 移至底部(&B) - + Set loc&ation... 设定位置(&A)... - + Force rec&heck 强制重新检查(&H) - + Force r&eannounce 强制重新汇报(&E) - + &Magnet link 磁力链接(&M) - + Torrent &ID Torrent ID(&I) - + &Comment 注释(&C) - + &Name 名称(&N) - + Info &hash v1 信息哈希值 v1(&H) - + Info h&ash v2 信息哈希值 v2(&A) - + Re&name... 重命名(&N)... - + Edit trac&kers... 编辑 Tracker(&K)... - + E&xport .torrent... 导出 .torrent(&X)... - + Categor&y 分类(&Y) - + &New... New category... 新建(&N)... - + &Reset Reset category 重置(&R) - + Ta&gs 标签(&G) - + &Add... Add / assign multiple tags... 添加(&A)... - + &Remove All Remove all tags 删除全部(&R) - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + 如 torrent 被停止/加入队列/出错/正在检查,则无法强制重新 announce - + &Queue 队列(&Q) - + &Copy 复制(&C) - + Exported torrent is not necessarily the same as the imported 导出的 Torrent 未必和导入的相同 - + Download in sequential order 按顺序下载 - + Add tags - + 添加标签 - + Errors occurred when exporting .torrent files. Check execution log for details. 导出 .torrent 文件时发生错误。详细信息请查看执行日志。 - + &Start Resume/start the torrent - + 启动(&S) - + Sto&p Stop the torrent - + 停止(&P) - + Force Star&t Force Resume/start the torrent - + 强制启动(&T) - + &Remove Remove the torrent 移除(&R) - + Download first and last pieces first 先下载首尾文件块 - + Automatic Torrent Management 自动 Torrent 管理 - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category 自动模式意味着各种 Torrent 属性(例如保存路径)将由相关的分类决定 - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - 如果 Torrent 处于暂停/排队/出错/检查状态,则无法强制重新汇报 - - - + Super seeding mode 超级做种模式 @@ -12571,7 +12359,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + 设置应用程序样式失败。未知样式:"%1" @@ -12627,32 +12415,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" 发现 Python 可执行文件。名称:"%1"。版本:"%2" - + Failed to find Python executable. Path: "%1". 未发现 Python 可执行文件。路径:"%1"。 - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" 未在 PATH 环境变量下发现`python3`可执行文件。PATH:"%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" 未在 PATH 环境变量下发现`python`可执行文件。PATH:"%1" - + Failed to find `python` executable in Windows Registry. 未在 Windows 注册表里发现`python`可执行文件。 - + Failed to find Python executable 查找 Python 可执行文件失败 @@ -12744,52 +12532,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. 指定了不可接受的会话 cookie 名:“%1”。将使用默认值。 - + Unacceptable file type, only regular file is allowed. 不可接受的文件类型,只允许使用常规文件。 - + Symlinks inside alternative UI folder are forbidden. 备用 UI 目录中不允许使用符号链接。 - + Using built-in WebUI. 使用内置 WebUI - + Using custom WebUI. Location: "%1". 使用自定义 WebUI。位置:"%1". - + WebUI translation for selected locale (%1) has been successfully loaded. 成功加载了所选语言环境 (%1) 的 WebUI 翻译 - + Couldn't load WebUI translation for selected locale (%1). 无法加载所选语言环境 (%1) 的 Web UI 翻译。 - + Missing ':' separator in WebUI custom HTTP header: "%1" 自定义 WebUI HTTP 头字段缺少分隔符 “:”:“%1” - + Web server error. %1 Web 服务器错误:%1 - + Web server error. Unknown error. Web 服务器错误:未知错误。 @@ -12847,7 +12635,7 @@ Please choose a different name and try again. Unknown error - 未知错误 + 未知错误 diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index c65e2c43f..396d532fb 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -170,10 +170,6 @@ Never show again 不要再顯示 - - Torrent settings - Torrent設定 - Set as default category @@ -235,25 +231,25 @@ 停止條件: - - + + None - - + + Metadata received 收到的元資料 - + Torrents that have metadata initially will be added as stopped. - + Files checked 已檢查的檔案 @@ -368,112 +364,112 @@ 另存為 .torrent 檔案…… - + I/O Error 入出錯誤 - + Not Available This comment is unavailable 不可選用 - + Not Available This date is unavailable 不可選用 - + Not available 不可選用 - + Magnet link 磁性連結 - + Retrieving metadata... 檢索元資料… - - + + Choose save path 選取儲存路徑 - + No stop condition is set. 停止條件未設定。 - + Torrent will stop after metadata is received. Torrent會在收到元資料後停止。 - + Torrent will stop after files are initially checked. 初步檢查完檔案後,Torrent 將會停止。 - + This will also download metadata if it wasn't there initially. 如果一開始不存在,這也會下載元資料。 - + N/A N/A - + %1 (Free space on disk: %2) %1(硬碟上的可用空間:%2) - + Not available This size is unavailable. 無法使用 - + Torrent file (*%1) Torrent 檔案 (*%1) - + Save as torrent file 另存為 torrent 檔案 - + Couldn't export torrent metadata file '%1'. Reason: %2. 無法匯出 torrent 詮釋資料檔案「%1」。理由:%2。 - + Cannot create v2 torrent until its data is fully downloaded. 在完全下載其資料前無法建立 v2 torrent。 - + Filter files... 過濾檔案… - + Parsing metadata... 解析元資料… - + Metadata retrieval complete 完成檢索元資料 @@ -481,35 +477,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +668,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 完成後重新檢查Torrent - - + + ms milliseconds 毫秒 - + Setting 設定 - + Value Value set for this setting - + (disabled) (已停用) - + (auto) (自動) - - + + min minutes 分鐘 - + All addresses 全部位址 - + qBittorrent Section qBittorrent部份 - - + + Open documentation 網上說明 - + All IPv4 addresses 所有 IPv4 位址 - + All IPv6 addresses 所有 IPv6 位址 - + libtorrent Section libtorrent部份 - + Fastresume files 快速復原檔案 - + SQLite database (experimental) SQLite 資料庫(實驗性) - + Resume data storage type (requires restart) 復原資料儲存類型(需要重新啟動) - + Normal 一般 - + Below normal 低於一般 - + Medium 中等 - + Low - + Very low 非常低 - + Physical memory (RAM) usage limit 實體記憶體 (RAM) 使用率限制 - + Asynchronous I/O threads 異步入出執行緒 - + Hashing threads 雜湊執行緒 - + File pool size 檔案叢集大小 - + Outstanding memory when checking torrents 檢查Torrent時未處理資料暫存 - + Disk cache 磁碟快存 - - - - + + + + + s seconds - + Disk cache expiry interval 磁碟快存到期間距 - + Disk queue size 磁碟佇列大小 - - + + Enable OS cache 啟用作業系統快存 - + Coalesce reads & writes 結合讀取和寫入 - + Use piece extent affinity 使用片段範圍關聯 - + Send upload piece suggestions 傳送上載片段建議 - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer 對單個 peer 的最多未完成請求 - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux 這個選項在 Linux 上沒那麼有效 - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default 預設 - + Memory mapped files 記憶體對映檔案 - + POSIX-compliant 遵循 POSIX - + Simple pread/pwrite - + Disk IO type (requires restart) 硬碟 IO 類型(須重新啟動) - - + + Disable OS cache 停用作業系統快取 - + Disk IO read mode 磁碟 IO 讀取模式 - + Write-through 連續寫入 - + Disk IO write mode 磁碟 IO 寫入模式 - + Send buffer watermark 傳送緩衝區上限 - + Send buffer low watermark 傳送緩衝區下限 - + Send buffer watermark factor 傳送緩衝區上下限因素 - + Outgoing connections per second 每秒對外連線數 - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size Socket 紀錄檔大小 - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers 與 peers 連線的服務類型 (ToS) - + Prefer TCP 傾向使用TCP - + Peer proportional (throttles TCP) 同路人按比例(抑制TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) 支援國際化域名 (IDN) - + Allow multiple connections from the same IP address 容許來自相同IP位置的多重連接 - + Validate HTTPS tracker certificates 驗證 HTTPS Tracker 憑證 - + Server-side request forgery (SSRF) mitigation 伺服器端請求偽造 (SSRF) 緩解 - + Disallow connection to peers on privileged ports 不允許連線到在特權通訊埠上的 peer - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates 控制內部狀態更新間隔,進而影響使用者界面更新 - + Refresh interval 重新整理間隔 - + Resolve peer host names 分析同路人主機名 - + IP address reported to trackers (requires restart) 向追蹤器回報的 IP 位置(需要重新啟動) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed 當 IP 或通訊埠變更時回報至所有Tracker - + Enable icons in menus 在選單中啟用圖示 - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker 為內置的Tracker啟用通訊埠轉發 - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - + - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage Peer 流動斷線百分比 - + Peer turnover threshold percentage Peer 流動閾值百分比 - + Peer turnover disconnect interval Peer 流動斷線間隔 - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications 顯示程式通知 - + Display notifications for added torrents 顯示已加入Torrent的通知 - + Download tracker's favicon 下載追蹤器圖示 - + Save path history length 記住的儲存路徑數量 - + Enable speed graphs 啟用速度圖 - + Fixed slots 固定通道 - + Upload rate based 基於上載速度 - + Upload slots behavior 上載通道行為 - + Round-robin 輪流上載 - + Fastest upload 最快上載 - + Anti-leech 反依附 - + Upload choking algorithm 上載與否推算法 - + Confirm torrent recheck 重新檢查Torrent時須確認 - + Confirm removal of all tags 確認清除全部標籤 - + Always announce to all trackers in a tier 總是公告到同一追蹤器群組內全部的追蹤器 - + Always announce to all tiers 總是公告到全部追蹤器群組 - + Any interface i.e. Any network interface 任何介面 - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP混合模式推算法 - + Resolve peer countries 解析 peer 國家 - + Network interface 網絡介面 - + Optional IP address to bind to 可選擇綁紮的 IP 地址 - + Max concurrent HTTP announces 最大並行 HTTP 回報 - + Enable embedded tracker 啟用嵌入式追蹤器 - + Embedded tracker port 嵌入式追蹤器埠 @@ -1403,121 +1410,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 正以可攜模式執行。自動偵測到的設定檔資料夾位於:%1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. 偵測到冗餘的命令列旗標:「%1」。可攜模式代表了相對快速的恢復。 - + Using config directory: %1 正在使用設定目錄:%1 - + Torrent name: %1 Torrent名:%1 - + Torrent size: %1 Torrent大小:%1 - + Save path: %1 儲存路徑:%1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent用%1完成下載。 - - + + Thank you for using qBittorrent. 多謝使用qBittorrent。 - + Torrent: %1, sending mail notification Torrent:%1,傳送電郵通知 - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` 正在執行外部程式。Torrent:「%1」。指令:「%2」 - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading Torrent「%1」已下載完畢 - + WebUI will be started shortly after internal preparations. Please wait... WebUI 將在內部準備不久後啟動。請稍等… - - + + Loading torrents... 正在載入 torrent… - + E&xit 關閉(&X) - + I/O Error i.e: Input/Output Error I/O 錯誤 - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1533,110 @@ 理由:「%2」 - + Torrent added 已新增 Torrent - + '%1' was added. e.g: xxx.avi was added. 「%1」已新增。 - + Download completed 下載完成 - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. 「%1」已下載完畢。 - + Information 資訊 - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 要控制 qBittorrent,請從 %1 造訪 WebUI - + Exit 關閉 - + Recursive download confirmation 確認反復下載 - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent「%1」包含 .torrent 檔案,您想要執行下載作業嗎? - + Never 從不 - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" 在 torrent 中遞迴下載 .torrent 檔案。來源 torrent:「%1」。檔案:「%2」 - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" 設定實體記憶體(RAM)使用率限制失敗。錯誤代碼:%1。錯誤訊息:「%2」 - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated qBittorrent 中止操作 - + qBittorrent is shutting down... qBittorrent 正在關閉…… - + Saving torrent progress... 儲存Torrent進度… - + qBittorrent is now ready to exit qBittorrent 已準備好關閉 @@ -1766,263 +1773,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 匯出(&E)… - + Matches articles based on episode filter. 基於分集過濾器搜尋相符文章。 - + Example: 例子: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match 相符第1季的第2、第5、第8至15,以及由第30集起的往後分集 - + Episode filter rules: 分集過濾器規則: - + Season number is a mandatory non-zero value 季度數值須大於零 - + Filter must end with semicolon 過濾器須以分號作結尾 - + Three range types for episodes are supported: 接受3種分集表達方式: - + Single number: <b>1x25;</b> matches episode 25 of season one 指明分集:<b>1x25;</b> 即第1季第25集 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one 分集範圍:<b>1x25-40;</b>即第1季第25至40集 - + Episode number is a mandatory positive value 分集數值須大於零 - + Rules 規則 - + Rules (legacy) 規則(舊版) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons 往後分集:<b>1x25-;</b> 即第1季由第25集起的往後分集,以及往後季度的全部分集 - + Last Match: %1 days ago 最後相符:%1日前 - + Last Match: Unknown 最後相符:未知 - + New rule name 新規則名 - + Please type the name of the new download rule. 請輸入新下載規則名稱。 - - + + Rule name conflict 規則名稱衝突 - - + + A rule with this name already exists, please choose another name. 存在同名規則,請另選名稱。 - + Are you sure you want to remove the download rule named '%1'? 清除下載規則「%1」,確定? - + Are you sure you want to remove the selected download rules? 清除所選下載規則,確定? - + Rule deletion confirmation 確認清除規則 - + Invalid action 無效行動 - + The list is empty, there is nothing to export. 清單空白,不會匯出任何東西。 - + Export RSS rules 匯出RSS規則 - + I/O Error 入出錯誤 - + Failed to create the destination file. Reason: %1 無法建立目標檔案。理由:%1 - + Import RSS rules 匯入RSS規則 - + Failed to import the selected rules file. Reason: %1 無法匯入所選規則檔。理由:%1 - + Add new rule... 加入新規則… - + Delete rule 刪除規則 - + Rename rule... 重新命名規則… - + Delete selected rules 刪除所選規則 - + Clear downloaded episodes... 清除已下載分集… - + Rule renaming 重新命名規則 - + Please type the new rule name 請輸入新規則名稱 - + Clear downloaded episodes 清除已下載分集 - + Are you sure you want to clear the list of downloaded episodes for the selected rule? 清除所選規則的已下載分集清單,確定? - + Regex mode: use Perl-compatible regular expressions 正規表示法模式:使用兼容Perl的正規表示法 - - + + Position %1: %2 位置%1:%2 - + Wildcard mode: you can use 萬用字元: - - + + Import error - + Failed to read the file. %1 - + ? to match any single character ? 問號代表任何單一字元 - + * to match zero or more of any characters * 星號代表無或多個字元 - + Whitespaces count as AND operators (all words, any order) 空格代表運算子「AND」(全部文字、任何排序) - + | is used as OR operator 「|」代表運算子「OR」 - + If word order is important use * instead of whitespace. 如果文字順序重要,使用「*」,而不是空格。 - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) 帶有空白從屬句「%1」的表示法(例如:%2) - + will match all articles. 將搜尋全部相符文章。 - + will exclude all articles. 將排除全部文章。 @@ -2074,28 +2081,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 無法解析還原資料:無效格式 - - + + Cannot parse torrent info: %1 無法解析 torrent 資訊:%1 - + Cannot parse torrent info: invalid format 無法解析 torrent 資訊:無效格式 - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. 無法儲存 Torrent 詮釋資料至「%1」。錯誤:%2。 - + Couldn't save torrent resume data to '%1'. Error: %2. 無法儲存 Torrent 復原資料至「%1」。錯誤:%2。 @@ -2106,16 +2123,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 無法解析還原資料:%1 - + Resume data is invalid: neither metadata nor info-hash was found 還原資料無效:沒有找到詮釋資料與資訊雜湊值 - + Couldn't save data to '%1'. Error: %2 無法儲存資料至「%1」。錯誤:%2 @@ -2123,38 +2141,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. 找不到 - + Couldn't load resume data of torrent '%1'. Error: %2 無法載入 torrent「%1」的復原資料。錯誤:%2 - - + + Database is corrupted. 資料庫毀損。 - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + 無法解析還原資料:%1 + + + + + Cannot parse torrent info: %1 + 無法解析 torrent 資訊:%1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2162,22 +2202,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. 無法儲存 torrent 詮釋資料。錯誤:%1。 - + Couldn't store resume data for torrent '%1'. Error: %2 無法儲存 torrent「%1」的復原資料。錯誤:%2 - + Couldn't delete resume data of torrent '%1'. Error: %2 無法載入 torrent「%1」的復原資料。錯誤:%2 - + Couldn't store torrents queue positions. Error: %1 無法儲存 torrent 的排程位置。錯誤:%1 @@ -2185,526 +2225,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 分散式雜湊表 (DHT) 支援:%1 - - - - - - - - - + + + + + + + + + ON 開啟 - - - - - - - - - + + + + + + + + + OFF 關閉 - - + + Local Peer Discovery support: %1 區域 Peer 搜尋支援:%1 - + Restart is required to toggle Peer Exchange (PeX) support 切換 Peer 交換 (PeX) 支援必須重新啟動 - + Failed to resume torrent. Torrent: "%1". Reason: "%2" 還原 torrent 失敗。Torrent:「%1」。理由:「%2」 - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" 還原 torrent 失敗:偵測到不一致的 torrent ID。Torrent:「%1」 - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" 偵測到不一致的資料:設定檔中缺少分類。分類將會被還原,但其設定將會重設回預設值。Torrent:「%1」。分類:「%2」 - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" 偵測到不一致的資料:無效分類。Torrent:「%1」。分類:「%2」 - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" 偵測到還原分類的儲存路徑與目前 torrent 的儲存路徑不相符。Torrent 目前已切換至手動模式。Torrent:「%1」。分類:「%2」 - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" 偵測到不一致的資料:設定檔中缺少標籤。標籤將會被還原。Torrent:「%1」。標籤:「%2」 - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" 偵測到不一致的資料:無效標籤。Torrent:「%1」。標籤:「%2」 - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" Peer ID:「%1」 - + HTTP User-Agent: "%1" HTTP 使用者代理:「%1」 - + Peer Exchange (PeX) support: %1 Peer 交換 (PeX) 支援:%1 - - + + Anonymous mode: %1 匿名模式:%1 - - + + Encryption support: %1 加密支援:%1 - - + + FORCED 強制 - + Could not find GUID of network interface. Interface: "%1" 找不到網路介面的 GUID。介面:「%1」 - + Trying to listen on the following list of IP addresses: "%1" 正在嘗試監聽以下 IP 位址清單:「%1」 - + Torrent reached the share ratio limit. Torrent 達到了分享比例限制。 - + Torrent: "%1". Torrent:「%1」。 - Removed torrent. - 已移除 torrent。 - - - Removed torrent and deleted its content. - 已移除 torrent 並刪除其內容。 - - - Torrent paused. - Torrent 已暫停。 - - - + Super seeding enabled. 超級種子模式已啟用。 - + Torrent reached the seeding time limit. Torrent 達到了種子時間限制。 - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" 載入 torrent 失敗。理由:「%1」 - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP 支援:開啟 - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP 支援:關閉 - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" 匯出 torrent 失敗。Torrent:「%1」。目的地:「%2」。理由:「%3」 - + Aborted saving resume data. Number of outstanding torrents: %1 中止儲存還原資料。未完成的 torrent 數量:%1 - + The configured network address is invalid. Address: "%1" 已設定的網絡位址無效。位址:「%1」 - - + + Failed to find the configured network address to listen on. Address: "%1" 未能找到要監聽的網絡位址。位址:「%1」 - + The configured network interface is invalid. Interface: "%1" 已設定的網絡介面無效。介面:「%1」 - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" 套用封鎖 IP 位址清單時拒絕無效的 IP 位址。IP:「%1」 - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" 已新增追蹤器至 torrent。Torrent:「%1」。追蹤器:「%2」 - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" 已從 torrent 移除追蹤器。Torrent:「%1」。追蹤器:「%2」 - + Added URL seed to torrent. Torrent: "%1". URL: "%2" 已新增 URL 種子到 torrent。Torrent:「%1」。URL:「%2」 - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" 已從 torrent 移除 URL 種子。Torrent:「%1」。URL:「%2」 - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - Torrent paused. Torrent: "%1" - Torrent 已暫停。Torrent:「%1」 - - - + Torrent resumed. Torrent: "%1" Torrent 已恢復下載。Torrent:「%1」 - + Torrent download finished. Torrent: "%1" Torrent 下載完成。Torrent:「%1」 - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" 取消移動 torrent。Torrent:「%1」。來源:「%2」。目的地:「%3」 - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination 未能將 torrent 將入佇列。Torrent:「%1」。來源:「%2」。目的地:「%3」。理由:torrent 目前正在移動至目的地 - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location 將 torrent 移動加入佇列失敗。Torrent:「%1」。來源:「%2」。目的地:「%3」。理由:兩個路徑均指向相同的位置 - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" 已將 torrent 移動加入佇列。Torrent:「%1」。來源:「%2」。目的地:「%3」 - + Start moving torrent. Torrent: "%1". Destination: "%2" 開始移動 torrent。Torrent:「%1」。目的地:「%2」 - + Failed to save Categories configuration. File: "%1". Error: "%2" 儲存分類設定失敗。檔案:「%1」。錯誤:「%2」 - + Failed to parse Categories configuration. File: "%1". Error: "%2" 解析分類設定失敗。檔案:「%1」。錯誤:「%2」 - + Successfully parsed the IP filter file. Number of rules applied: %1 成功解析 IP 位址過濾檔案。套用的規則數量:%1 - + Failed to parse the IP filter file 解析 IP 過濾條件檔案失敗 - + Restored torrent. Torrent: "%1" 已還原 torrent。Torrent:「%1」 - + Added new torrent. Torrent: "%1" 已新增新的 torrent。Torrent:「%1」 - + Torrent errored. Torrent: "%1". Error: "%2" Torrent 錯誤。Torrent:「%1」。錯誤:「%2」 - Removed torrent. Torrent: "%1" - 已移除 torrent。Torrent:「%1」 - - - Removed torrent and deleted its content. Torrent: "%1" - 已移除 torrent 並刪除其內容。Torrent:「%1」 - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" 檔案錯誤警告。Torrent:「%1」。檔案:「%2」。理由:「%3」 - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP 通訊埠對映失敗。訊息:「%1」 - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP 通訊埠映射成功。訊息:「%1」 - + IP filter this peer was blocked. Reason: IP filter. IP 過濾 - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 混合模式限制 - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 已停用 - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 已停用 - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL 種子 DNS 查詢失敗。Torrent:「%1」。URL:「%2」。錯誤:「%3」 - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" 從 URL 種子收到錯誤訊息。Torrent:「%1」。URL:「%2」。訊息:「%3」 - + Successfully listening on IP. IP: "%1". Port: "%2/%3" 成功監聽 IP。IP:「%1」。通訊埠:「%2/%3」 - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" 監聽 IP 失敗。IP:「%1」。通訊埠:「%2/%3」。理由:「%4」 - + Detected external IP. IP: "%1" 偵測到外部 IP。IP:「%1」 - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" 錯誤:內部警告佇列已滿,警告已被丟棄,您可能會發現效能變差。被丟棄的警告類型:「%1」。訊息:「%2」 - + Moved torrent successfully. Torrent: "%1". Destination: "%2" 已成功移動 torrent。Torrent:「%1」。目的地:「%2」 - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" 移動 torrent 失敗。Torrent:「%1」。來源:「%2」。目的地:「%3」。理由:「%4」 @@ -2754,47 +2771,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 無法寫入檔案。理由:「%1」。Torrent 目前處在「僅上傳」模式。 - + Download first and last piece first: %1, torrent: '%2' 先下載第一及最後一塊:%1,torrent:「%2」 - + On 開啟 - + Off 關閉 - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" 產生還原資料失敗。Torrent:「%1」。理由:「%2」 - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" 還原 Torrent 失敗。檔案可能被移動或儲存空間不可存取。Torrent:「%1」。原因:「%2」 - + Missing metadata 缺少詮釋資料 - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" 檔案重新命名失敗。Torrent:「%1」,檔案:「%2」,理由:「%3」 - + Performance alert: %1. More info: %2 效能警告:%1。更多資訊:%2 @@ -2831,11 +2848,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' 預期環境變數「%1」是整數,但實際是「%2」 - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - 參數「%1」須跟從句子結構「%1=%2」 - Expected %1 in environment variable '%2', but got '%3' @@ -2876,7 +2888,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - 參數「%1」須跟從句子結構「%1=%2」 + 參數「%1」須跟從句子結構「%1=%2」 @@ -2966,10 +2978,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - Add torrents as started or paused - 加入Torrent後,立即開始或暫停 - Skip hash check @@ -3066,14 +3074,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - - Resume torrents - 回復Torrent - - - Pause torrents - 暫停Torrent - Remove torrents @@ -3172,10 +3172,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - Also permanently delete the files - 同時永久刪除檔案 - Are you sure you want to remove '%1' from the transfer list? @@ -3407,22 +3403,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present Torrent已存在 - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent「%1」已經在傳輸清單中。您想合併來自新來源的追蹤者嗎? @@ -3540,6 +3536,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3681,10 +3711,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... 喜好設定(&O) - - &Resume - 取消暫停(&R) - &Remove @@ -3766,10 +3792,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window 關閉視窗 - - R&esume All - 全部取消暫停(&E) - Manage Cookies... @@ -3885,10 +3907,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System 休眠 - - S&hutdown System - 關機 - &Statistics @@ -3909,14 +3927,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About 關於(&A) - - &Pause - 暫停(&P) - - - P&ause All - 全部暫停(&A) - &Add Torrent File... @@ -3950,12 +3960,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 顯示 - + Check for program updates 檢查程式更新 @@ -3970,388 +3980,382 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 如果你喜歡qBittorrent,請捐款! - + Execution Log 執行日誌 - + Clear the password 清除密碼 - + &Set Password 設定密碼(&S) - + Preferences 喜好設定 - + &Clear Password 清除密碼(&C) - + Transfers 傳輸 - - + + qBittorrent is minimized to tray qBittorrent最小化到工作列通知區域 - - - + + + This behavior can be changed in the settings. You won't be reminded again. 此行為可於喜好設定更改。往後不會再有提醒。 - + Icons Only 只有圖示 - + Text Only 只有文字 - + Text Alongside Icons 文字於圖示旁 - + Text Under Icons 文字於圖示下 - + Follow System Style 跟隨系統風格 - - + + UI lock password UI鎖定密碼 - - + + Please type the UI lock password: 請輸入UI鎖定密碼: - + Are you sure you want to clear the password? 清除密碼,確定? - + Use regular expressions 使用正規表示法 - - + + Search Engine - 搜尋器 + 搜尋器 - + Search has failed - 搜尋失敗 + 搜尋失敗 - + Search has finished - 搜尋完成 + 搜尋完成 - + Search 搜尋 - + Transfers (%1) 傳輸(%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent更新後須重新啟動。 - + qBittorrent is closed to tray qBittorrent關閉到工作列通知區域 - + Some files are currently transferring. 部份檔案仍在傳輸。 - + Are you sure you want to quit qBittorrent? 確定離開qBittorrent嗎? - + &No 否(&N) - + &Yes 是((&Y) - + &Always Yes 總是(&A) - + Options saved. 已儲存選項。 - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime 沒有Python直譯器 - + qBittorrent Update Available qBittorrent存在新版本 - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? 沒有安裝搜尋器需要的Pyrhon。 立即安裝? - + Python is required to use the search engine but it does not seem to be installed. 沒有安裝搜尋器需要的Pyrhon。 - - + + Old Python Runtime 舊Python直譯器 - + A new version is available. 存在新版本。 - + Do you want to download %1? 下載%1嗎? - + Open changelog... 開啟更新日誌… - + No updates available. You are already using the latest version. 沒有較新的版本 你的版本已是最新。 - + &Check for Updates 檢查更新(&C) - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? 您的 Python 版本 (%1) 太舊了。最低需求:%2。 您想要現在安裝更新版本嗎? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. 您的 Python 版本 (%1) 太舊了。請升級到最新版本來讓搜尋引擎運作。 最低需求:%2。 - + Paused - 暫停 + 暫停 - + Checking for Updates... 正在檢查更新… - + Already checking for program updates in the background 已於背景檢查程式更新 - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error 下載錯誤 - Python setup could not be downloaded, reason: %1. -Please install it manually. - Python安裝程式無法下載。理由:%1。 -請手動安裝。 - - - - + + Invalid password 無效密碼 - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long 密碼長度必須至少有 3 個字元 - - - + + + RSS (%1) RSS(%1) - + The password is invalid 無效密碼 - + DL speed: %1 e.g: Download speed: 10 KiB/s 下載速度:%1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s 上載速度:%1 - + Hide 隱藏 - + Exiting qBittorrent 離開qBittorrent - + Open Torrent Files 開啟Torrent檔 - + Torrent Files Torrent檔 @@ -5845,47 +5849,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 連線失敗,無法是別的回覆:%1 - + Authentication failed, msg: %1 驗證失敗,訊息:%1 - + <mail from> was rejected by server, msg: %1 <mail from> 被伺服器拒絕,訊息:%1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> 被伺服器拒絕,訊息:%1 - + <data> was rejected by server, msg: %1 <data> 被伺服器拒絕,訊息:%1 - + Message was rejected by the server, error: %1 訊息被伺服器拒絕,錯誤:%1 - + Both EHLO and HELO failed, msg: %1 EHLO 與 HELO 皆失敗,訊息:%1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP 伺服器似乎並不支援任何我們支援的驗證模式 [CRAM-MD5|PLAIN|LOGIN],正在略過驗證,知道其可能會失敗……伺服器驗證模式:%1 - + Email Notification Error: %1 電郵通知錯誤:%1 @@ -5927,10 +5931,6 @@ Please install it manually. RSS RSS - - Web UI - Web UI遠端控制 - Advanced @@ -5967,10 +5967,6 @@ Please install it manually. Always 總是 - - Paused torrents only - 僅暫停Torrent - Action on double-click @@ -5981,10 +5977,6 @@ Please install it manually. Downloading torrents: 下載中的Torrent: - - Start / Stop Torrent - 開始╱停止Torrent - @@ -6043,175 +6035,175 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent 內容佈局: - + Original 原版 - + Create subfolder 建立子資料夾 - + Don't create subfolder 不要建立子資料夾 - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue 加至佇列頂部 - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... 新增…… - + Options.. 選項…… - + Remove 移除 - + Email notification &upon download completion 下載完成時以電郵通知 - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: 下載者連線協定: - + Any 任何 - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering IP過濾 - + Schedule &the use of alternative rate limits 設定使用特別速度限制的時間 - + From: From start time 從: - + To: To end time 到: - + Find peers on the DHT network 在 DHT 網路上尋找 peer - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6220,188 +6212,190 @@ Disable encryption: Only connect to peers without protocol encryption 停用加密:僅連線到沒有加密協議的 peer - + Allow encryption 允許加密 - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">網上說明</a>) - + Maximum active checking torrents: 最大活躍的正在檢查 torrent 數: - + &Torrent Queueing Torrent排程 - + When total seeding time reaches - + When inactive seeding time reaches - A&utomatically add these trackers to new downloads: - 自動加入以下追蹤器到新下載: - - - + RSS Reader RSS閱讀器 - + Enable fetching RSS feeds 啟用讀取最新RSS Feed - + Feeds refresh interval: RSS Feed更新間距: - + Same host request delay: - + Maximum number of articles per feed: 每個RSS Feed的最大文章數: - - - + + + min minutes 分鐘 - + Seeding Limits 做種限制 - Pause torrent - 暫停 torrent - - - + Remove torrent 移除 torrent - + Remove torrent and its files 移除 torrent 與其檔案 - + Enable super seeding for torrent 為 torrent 啟用超級做種 - + When ratio reaches 當分享率達到 - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - 網址: + 網址: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS Torrent自動下載器 - + Enable auto downloading of RSS torrents 啟用RSS Torrent自動下載 - + Edit auto downloading rules... 編輯自動下載規則… - + RSS Smart Episode Filter RSS智能分集過濾器 - + Download REPACK/PROPER episodes 下載「重新發佈」╱「足本」分集 - + Filters: 過濾器: - + Web User Interface (Remote control) 網絡用戶介面(Web UI遠端控制) - + IP address: IP位址: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6410,41 +6404,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv 「::」代表任何IPv6位址,而「*」代表任何的IPv4或IPv6位址。 - + Ban client after consecutive failures: 連續失敗後封鎖用戶端: - + Never 永不 - + ban for: 封鎖: - + Session timeout: 工作階段逾時: - + Disabled 已停用 - Enable cookie Secure flag (requires HTTPS) - 啟用 cookie 安全旗標(需要 HTTPS) - - - + Server domains: 伺服器域名: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6457,37 +6447,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP 使用HTTPS,而不是HTTP - + Bypass authentication for clients on localhost 略過對本機上用戶的驗證 - + Bypass authentication for clients in whitelisted IP subnets 略過對IP子網絡白名單用戶的驗證 - + IP subnet whitelist... IP子網絡白名單… - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. 指定反向代理 IP(或子網路,例如 0.0.0.0/24)以使用轉發的客戶端位置(X-Forwarded-For 標頭)。使用 ';' 來分隔多個項目。 - + Upda&te my dynamic domain name 更新動態域名 @@ -6499,7 +6489,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - 搜尋 + 搜尋 @@ -6600,99 +6590,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.只保存備份日誌: - + Show external IP in status bar - + When adding a torrent 加入Torrent時 - + Bring torrent dialog to the front 保持Torrent話匣在畫面最上層 - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled 取消「加入」Torrent動作時,同時刪除相關Torrent檔 - + Also when addition is cancelled 也當「加入」被取消時 - + Warning! Data loss possible! 警告!資料可能消失! - + Saving Management 存檔管理 - + Default Torrent Management Mode: 預設Torrent管理模式: - + Manual 手動 - + Automatic 自動 - + When Torrent Category changed: Torrent的分類更改時: - + Relocate torrent 遷移Torrent - + Switch torrent to Manual Mode 切換Torrent到手動模式 - - + + Relocate affected torrents 遷移受影響Torrent - - + + Switch affected torrents to Manual Mode 切換受影響Torrent到手動模式 - + Use Subcategories 使用子分類 - + Default Save Path: 預設儲存路徑: - + Copy .torrent files to: 複製「.torrent」檔到: @@ -6702,26 +6692,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.工作列通知區域顯示qBittorrent圖示 - &Log file - 備份執行日誌 - - - + Display &torrent content and some options 顯示Torrent內容和其他選項 - + De&lete .torrent files afterwards 往後再清除Torrent檔 - + Copy .torrent files for finished downloads to: 複製完成下載的「.torrent」檔到: - + Pre-allocate disk space for all files 預先分配檔案的磁碟空間 @@ -6751,10 +6737,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder 預覽檔案,否則開啟目標資料夾 - - Show torrent options - 顯示 torrent 選項 - Shows a confirmation dialog when exiting with active torrents @@ -6820,69 +6802,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.年 - + Log performance warnings 記錄效能警告 - The torrent will be added to download list in a paused state - Torrent 將以暫停狀態加入到下載清單中 - - - + Do not start the download automatically The torrent will be added to download list in a stopped state 不要自動開始下載 - + Whether the .torrent file should be deleted after adding it 是否於加入Torrent檔後將其刪除 - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. 開始下載前,請在磁碟上預先分配好完整檔案大小的空間以減少磁碟碎片。僅對 HDD 有用。 - + Append .!qB extension to incomplete files 未完成檔案加上.!qB副檔名 - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it 下載 torrent 時,可以從其中找到的任何 .torrent 檔案新增 torrent - + Enable recursive download dialog 啟用反復下載確認話匣 - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually 自動:各種 torrent 屬性(如儲存路徑)將由相關分類來決定 手動:各種 torrent 屬性(如儲存路徑)必須手動分配 - + When Default Save/Incomplete Path changed: 當預設儲存/不完整路徑變更時: - + When Category Save Path changed: 分類儲存路徑更改時: - + Use Category paths in Manual Mode 在手動模式下使用分類路徑 - + Resolve relative Save Path against appropriate Category path instead of Default one 根據適當的分類路徑而非預設路徑解析相對儲存路徑 @@ -6902,50 +6880,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: Torrent 停止條件: - - + + None - - + + Metadata received 收到的元資料 - - + + Files checked 已檢查的檔案 - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: 使用其他路徑取得不完整的 torrents: - + Automatically add torrents from: 自動加入以下位置的Torrent: - + Excluded file names 排除的檔案名稱 - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6974,523 +6952,510 @@ readme.txt:過濾精確的檔案名稱。 readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「readme10.txt」。 - + Receiver 接收人 - + To: To receiver 到: - + SMTP server: SMTP伺服器: - + Sender 寄件者 - + From: From sender 從: - + This server requires a secure connection (SSL) 此伺服器需要加密連接(SSL) - - + + Authentication 驗證 - - - - + + + + Username: 用戶名: - - - - + + + + Password: 密碼: - + Run external program 執行外部程式 - Run on torrent added - 在 torrent 新增時執行 - - - Run on torrent finished - 在 torrent 完成時執行 - - - + Show console window 顯示終端機視窗 - + TCP and μTP TCP和μTP - + Listening Port 監聽埠 - + Port used for incoming connections: 連入埠: - + Set to 0 to let your system pick an unused port 設定為 0 讓您的系統挑選未使用的通訊埠 - + Random 隨機 - + Use UPnP / NAT-PMP port forwarding from my router 使用映射自路由器的UPnP╱NAT-PMP連接埠 - + Connections Limits 連接限制 - + Maximum number of connections per torrent: 每個Torrent最大連接數量: - + Global maximum number of connections: 整體最大連接數量: - + Maximum number of upload slots per torrent: 每個Torrent最大上載通道數量: - + Global maximum number of upload slots: 整體最大上載通道數量: - + Proxy Server 代理伺服器 - + Type: 類型: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: 主機: - - - + + + Port: 埠: - + Otherwise, the proxy server is only used for tracker connections 否則,代理伺服器僅用於追蹤器連接 - + Use proxy for peer connections 使用代理伺服器來連接同路人 - + A&uthentication 驗證 - Info: The password is saved unencrypted - (注意:儲存的密碼不會加密) + (注意:儲存的密碼不會加密) - + Filter path (.dat, .p2p, .p2b): 過濾器(.dat、.p2p、.p2b) - + Reload the filter 重新載入過濾器 - + Manually banned IP addresses... 手動封鎖IP位址… - + Apply to trackers 套用到追蹤器 - + Global Rate Limits 整體速度限制 - - - - - - - + + + + + + + 無限 - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: 上載: - - + + Download: 下載: - + Alternative Rate Limits 特別速度限制 - + Start time 開始時間 - + End time 結束時間 - + When: 日期: - + Every day 每日 - + Weekdays 工作日 - + Weekends 週末 - + Rate Limits Settings 設定速度限制 - + Apply rate limit to peers on LAN 將速度限制套用到區域網絡(LAN)的同路人 - + Apply rate limit to transport overhead 將速度限制套用到傳輸消耗 - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol 將速度限制套用到µTP協定 - + Privacy 私隱 - + Enable DHT (decentralized network) to find more peers 啟用DHT分散式網絡來尋找更多同路人 - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) 與相容的Bittorrent用戶端(µTorrent等)交換同路人資訊 - + Enable Peer Exchange (PeX) to find more peers 啟用PeX同路人交換來尋找更多同路人 - + Look for peers on your local network 於本地網絡尋找同路人 - + Enable Local Peer Discovery to find more peers 啟用LPD本地同路人發現來尋找更多同路人 - + Encryption mode: 加密模式: - + Require encryption 要求加密 - + Disable encryption 停用加密 - + Enable when using a proxy or a VPN connection 使用代理伺服器或VPN連接時啟用 - + Enable anonymous mode 啟用匿名模式 - + Maximum active downloads: 最大活躍下載數量: - + Maximum active uploads: 最大活躍上載數量: - + Maximum active torrents: 最大活躍Torrent數量: - + Do not count slow torrents in these limits 此等限制不要計算慢速Torrent - + Upload rate threshold: 上載速度下限: - + Download rate threshold: 下載速度下限: - - - - + + + + sec seconds - + Torrent inactivity timer: 慢速Torrent時間: - + then 然後 - + Use UPnP / NAT-PMP to forward the port from my router 使用UPnP╱NAT-PMP映射路由器連接埠 - + Certificate: 憑證: - + Key: 密匙: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>關於憑證</a> - + Change current password 更改目前密碼 - Use alternative Web UI - 使用後備Web UI遠端控制 - - - + Files location: 檔案位置: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security 驗證 - + Enable clickjacking protection 啟用防劫持鼠鍵保護 - + Enable Cross-Site Request Forgery (CSRF) protection 啟用防偽造跨站請求(CSRF)保護 - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation 啟用主機標頭驗證 - + Add custom HTTP headers 新增自訂 HTTP 標頭 - + Header: value pairs, one per line 標頭:鍵值對,一行一個 - + Enable reverse proxy support 啟用反向代理支援 - + Trusted proxies list: 受信任的代理伺服器清單: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: 服務: - + Register 註冊 - + Domain name: 域名: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! 啟用此等選項,你的「.torrent 」檔或會<strong>無可挽回</strong>地離你而去! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog 啟用第二個選項(也當「加入」被取消),「.torrent」檔會被<strong>清除</strong>,不管有否按下「加入Torrent」話匣的「<strong>取消</strong>」按鈕。 @@ -7500,12 +7465,12 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 選取 qBittorrent UI 佈景主題檔案 - + Choose Alternative UI files location 選取後備Web UI遠端控制的檔案位置 - + Supported parameters (case sensitive): 支援的參數(大小楷視為不同): @@ -7525,183 +7490,183 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 未偵測到系統匣存在而停用 - + No stop condition is set. 未設定停止條件。 - + Torrent will stop after metadata is received. Torrent 將會在收到詮釋資料後停止。 - + Torrent will stop after files are initially checked. 初步檢查檔案後,torrent 將會停止。 - + This will also download metadata if it wasn't there initially. 如果一開始不存在,這也會下載詮釋資料。 - + %N: Torrent name 【%N】Torrent名稱 - + %L: Category 【%L】分類 - + %F: Content path (same as root path for multifile torrent) 【%F】已下載檔案的路徑(單一檔案Torrent) - + %R: Root path (first torrent subdirectory path) 【%R】已下載檔案的路徑(多檔案Torrent首個子資料夾) - + %D: Save path 【%D】儲存路徑 - + %C: Number of files 【%C】檔案數量 - + %Z: Torrent size (bytes) 【%Z】Torrent大小(位元組) - + %T: Current tracker 【%T】目前追蹤器 - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") 提示:以引號包起參數可避免於空格被切斷(例如:"%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (無) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent會被視為慢速,如果於「慢速Torrent時間」設定秒數內的上下載速度都低於設定下限值。 - + Certificate 憑證 - + Select certificate 選取憑證 - + Private key 私密金鑰 - + Select private key 選取私密金鑰 - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor 選取監視的資料夾 - + Adding entry failed 加入項目失敗 - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error 位置錯誤 - - + + Choose export directory 選取輸出路徑 - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well 當這些選項啟用時,qBittorrent 將會在它們成功(第一個選項)或是未(第二個選項)加入其下載佇列時<strong>刪除</strong> .torrent 檔案。這將<strong>不僅是套用於</strong>透過「新增 torrent」選單動作開啟的檔案,也會套用於透過<strong>檔案類型關聯</strong>開啟的檔案。 @@ -7711,69 +7676,69 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read qBittorrent UI 佈景主題檔案 (*.qbtheme config.json) - + %G: Tags (separated by comma) %G:標籤(以逗號分隔) - + %I: Info hash v1 (or '-' if unavailable) %I:資訊雜湊值 v1(如果不可用則為 '-') - + %J: Info hash v2 (or '-' if unavailable) %J:資訊雜湊值 v2(如果不可用則為 '-') - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K:Torrent ID(v1 的 torrent 即為 sha-1 資訊雜湊值,若為 v2 或是混合的 torrent 即為截斷的 sha-256 資訊雜湊值) - - + + Choose a save directory 選取儲存路徑 - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file 選取一個IP過濾器檔 - + All supported filters 全部支援的過濾器 - + The alternative WebUI files location cannot be blank. - + Parsing error 解析錯誤 - + Failed to parse the provided IP filter 解析IP過濾器失敗 - + Successfully refreshed 成功更新 - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number 成功解析IP過濾器:已套用%1個規則。 @@ -7784,18 +7749,18 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 喜好設定 - + Time Error 時間錯誤 - + The start time and the end time can't be the same. 開始時間和結尾時間不可相同。 - - + + Length Error 長度錯誤 @@ -7886,163 +7851,163 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read PeerListWidget - + Country/Region 國家/區域 - + IP/Address - + Port - + Flags 旗號 - + Connection 連接 - + Client i.e.: Client application 用戶端 - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID 客戶端 - + Progress i.e: % downloaded 進度 - + Down Speed i.e: Download speed 下載速度 - + Up Speed i.e: Upload speed 上載速度 - + Downloaded i.e: total data downloaded 已下載 - + Uploaded i.e: total data uploaded 已上載 - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. 相關度 - + Files i.e. files that are being downloaded right now 檔案 - + Column visibility 欄位顯示 - + Resize columns 調整欄位大小 - + Resize all non-hidden columns to the size of their contents 調整所有非隱藏欄位與其內容的大小 - + Add peers... 新增 Peers... - - + + Adding peers 正在新增 Peers - + Some peers cannot be added. Check the Log for details. 有些下載者無法被新增。檢查記錄檔以取得更多資訊。 - + Peers are added to this torrent. Peers 已新增到此 torrent 中。 - - + + Ban peer permanently 永遠封鎖同路人 - + Cannot add peers to a private torrent 無法新增 Peers 至私有 torrent - + Cannot add peers when the torrent is checking 正在檢查 torrent 時無法新增 Peers - + Cannot add peers when the torrent is queued torrent 排入佇列時無法新增 Peers - + No peer was selected 未選取 Peers - + Are you sure you want to permanently ban the selected peers? 您確定要永遠封鎖所選的 Peers 嗎? - + Peer "%1" is manually banned Peer「%1」已被手動封鎖 - + N/A N/A - + Copy IP:port 複製「IP:埠」 @@ -8322,34 +8287,8 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent運行中 - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - + qBittorrent運行中 @@ -8641,153 +8580,124 @@ Those plugins were disabled. 儲存路徑: - + Never 從不 - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1×%2(完成%3) - - + + %1 (%2 this session) %1(本階段%2) - - + + N/A N/A - + Yes - + - + No - + - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1(做種%2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1(最高%2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1(總計%2) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1(平均%2) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - New Web seed - 新Web種子 - - - Remove Web seed - 清除Web種子 - - - Copy Web seed URL - 複製Web種子網址 - - - Edit Web seed URL - 編輯Web種子網址 - - - + Filter files... 過濾檔案… - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled 已停用速度圖表 - + You can enable it in Advanced Options 您可以在進階選項中啟用它 - New URL seed - New HTTP source - 新URL種子 - - - New URL seed: - 新URL種子: - - - This URL seed is already in the list. - 此URL種子已於清單。 - - - + Web seed editing 編輯Web種子 - + Web seed URL: Web種子網址: @@ -8795,33 +8705,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. 無效的資料格式。 - + Couldn't save RSS AutoDownloader data in %1. Error: %2 無法於%1儲存RSS自動下載器資料。錯誤:%2 - + Invalid data format 無效的資料格式 - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 無法載入RSS自動下載器規則。理由:%1 @@ -8829,22 +8739,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 下載「%1」的RSS Feed失敗。理由:%2 - + RSS feed at '%1' updated. Added %2 new articles. 「%1」的RSS Feed已更新。加入%2個新文章。 - + Failed to parse RSS feed at '%1'. Reason: %2 解析「%1」的RSS Feed失敗。理由:%2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. 在「%1」的 RSS feed 已成功下載。開始解析它。 @@ -8893,12 +8803,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" 無法儲存 RSS 工作階段設定。檔案:「%1」。錯誤:「%2」 - + Couldn't save RSS session data. File: "%1". Error: "%2" 無法儲存 RSS 工作階段資料。檔案:「%1」。錯誤:「%2」 @@ -8920,76 +8830,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. 項目不存在:%1。 - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. 無法刪除根資料夾。 - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. 無法載入 RSS feed。Feed:「%1」。理由:URL 為必填。 - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. 無法載入 RSS feed。Feed:「%1」。理由:UID 無效。 - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. 找到重複的 RSS feed。UID:「%1」。錯誤:設定似乎已損壞。 - + Couldn't load RSS item. Item: "%1". Invalid data format. 無法載入 RSS 項目。項目:「%1」。無效的資料格式。 - + Corrupted RSS list, not loading it. 損壞的 RSS 清單,無法載入。 - + Incorrect RSS Item path: %1. 錯誤的RSS項目路徑:%1。 - + RSS item with given path already exists: %1. 存在同路徑RSS項目:%1。 - + Parent folder doesn't exist: %1. 父資料夾不存在:%1。 + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + 網址: + + + + Refresh interval: + + + + + sec + + + + + Default + 預設 + + RSSWidget @@ -9089,78 +9040,69 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name 請選取資料夾名稱 - + Folder name: 資料夾名稱: - + New folder 新資料夾 - - Please type a RSS feed URL - 請輸入一個RSS Feed網址 + 請輸入一個RSS Feed網址 - - Feed URL: - RSS Feed網址: + RSS Feed網址: - + Deletion confirmation 確認刪除 - + Are you sure you want to delete the selected RSS feeds? 刪除所選RSS Feed,確定? - + Please choose a new name for this RSS feed 請為此RSS Feed選取新名稱 - + New feed name: 新RSS Feed名稱: - + Rename failed 重新命名失敗 - + Date: 日期: - + Feed: - + Author: 作者: @@ -9297,10 +9239,6 @@ Those plugins were disabled. i.e: Number of partial sources 同路人 - - Search engine - 搜尋器 - Filter search results... @@ -9421,104 +9359,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. 未知的搜尋器附加元件檔案格式。 - + Plugin already at version %1, which is greater than %2 附加元件目前版本是%1,比%2新。 - + A more recent version of this plugin is already installed. 已安裝此附加元件較新版本。 - + Plugin %1 is not supported. 不支援附加元件%1。 - - + + Plugin is not supported. 不支援的附加元件。 - + Plugin %1 has been successfully updated. 成功更新附加元件%1。 - + All categories 全部類別 - + Movies 電影 - + TV shows 電視節目 - + Music 音樂 - + Games 遊戲 - + Anime 動畫 - + Software 軟件 - + Pictures 圖片 - + Books - + Update server is temporarily unavailable. %1 更新伺服器暫時不可用。%1 - - + + Failed to download the plugin file. %1 下載附加元件檔案失敗。%1 - + Plugin "%1" is outdated, updating to version %2 附加元件「%1」已過時,正在更新到版本%2 - + Incorrect update info received for %1 out of %2 plugins. %2個附加元件其中%1個有不正確更新資訊。 - + Search plugin '%1' contains invalid version string ('%2') 搜尋附加元件「%1」包含了無效的版本字串(「%2」) @@ -9544,135 +9482,127 @@ Click the "Search plugins..." button at the bottom right of the window 搜尋附加元件… - + A phrase to search for. 搜尋的句語: - + Spaces in a search term may be protected by double quotes. 保護搜尋句語的完整,請使用英語雙引號。 - + Example: Search phrase example 例子: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>會搜尋句語<b>foo bar</b> - + All plugins 全部附加元件 - + Only enabled 僅已啟用 - - + + Invalid data format. - 無效的資料格式。 + 無效的資料格式。 - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>:搜尋 <b>foo</b> 與 <b>bar</b> - + Refresh - + Close tab 關閉分頁 - + Close all tabs 關閉所有分頁 - + Select... 選取… - - + + Search Engine 搜尋器 - - + + Please install Python to use the Search Engine. 請安裝搜尋器需要的Pyrhon。 - + Empty search pattern 空白搜尋模式 - + Please type a search pattern first 請先輸入一個搜尋模式 - + Stop 停止 - - Search has finished - 搜尋完成 - - - Search has failed - 搜尋失敗 - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -10070,67 +10000,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: 連接狀態: - - + + No direct connections. This may indicate network configuration problems. 沒有直接連接。表示你的網絡設定可能有問題。 - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT分散式網絡:%1個節點 - + qBittorrent needs to be restarted! qBittorrent須重新啟動。 - - + + Connection Status: 連接狀態: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. 離線。通常表示qBittorrent監聽連入埠失敗。 - + Online 在線 - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits 按下切換到特別速度限制 - + Click to switch to regular speed limits 按下切換到正常速度限制 @@ -10158,14 +10098,6 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) 完成(0) - - Resumed (0) - 回復下載(0) - - - Paused (0) - 暫停(0) - Running (0) @@ -10256,32 +10188,16 @@ Click the "Search plugins..." button at the bottom right of the window Stop torrents - - Paused (%1) - 暫停(%1) - Moving (%1) 移動中 (%1) - - Resume torrents - 繼續下載 torrent - - - Pause torrents - 暫停 torrent - Remove torrents 移除 torrents - - Resumed (%1) - 回復下載(%1) - Active (%1) @@ -10353,23 +10269,11 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags 清除未使用標籤 - - Resume torrents - 回復Torrent - - - Pause torrents - 暫停Torrent - Remove torrents 移除 torrents - - New Tag - 新標籤 - Start torrents @@ -10705,17 +10609,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10967,13 +10871,6 @@ Please choose a different name and try again. 正在監視資料夾:「%1」 - - TorrentInfo - - Invalid metadata - 無效的詮釋資料 - - TorrentOptionsDialog @@ -11011,10 +10908,6 @@ Please choose a different name and try again. Torrent Share Limits - - Torrent speed limits - Torrent 速度限制 - Download: @@ -11047,26 +10940,6 @@ Please choose a different name and try again. Upload: 上傳: - - Torrent share limits - Torrent 速度限制 - - - Use global share limit - 使用全域分享限制 - - - Set no share limit - 設定無分享限制 - - - Set share limit to - 設定分享限制為 - - - ratio - 上傳╱下載比率 - Disable DHT for this torrent @@ -11108,14 +10981,6 @@ Please choose a different name and try again. Not applicable to private torrents 不適用於私人 torrent - - No share limit method selected - 未選取分享限制方法 - - - Please select a limit method first - 請先選擇限制方式 - TorrentShareLimitsWidget @@ -11175,7 +11040,7 @@ Please choose a different name and try again. Remove torrent - 移除 torrent + 移除 torrent @@ -11185,7 +11050,7 @@ Please choose a different name and try again. Enable super seeding for torrent - 為 torrent 啟用超級做種 + 為 torrent 啟用超級做種 @@ -11200,10 +11065,6 @@ Please choose a different name and try again. Torrent Tags - - New Tag - 新標籤 - Add tag @@ -11238,78 +11099,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. 錯誤:「%1」不是有效Torrent檔。 - + Priority must be an integer 優先權須是整數 - + Priority is not valid 優先權無效 - + Torrent's metadata has not yet downloaded Torrent的元資料未有下載 - + File IDs must be integers 檔案ID須是整數 - + File ID is not valid 檔案ID無效 - - - - + + + + Torrent queueing must be enabled 須啟用Torrent排程 - - + + Save path cannot be empty 儲存路徑不可空白 - - + + Cannot create target directory 無法建立目標目錄 - - + + Category cannot be empty 分類不可空白 - + Unable to create category 無法建立分類 - + Unable to edit category 無法編輯分類 - + Unable to export torrent file. Error: %1 無法匯出Torrent文件。錯誤:%1 - + Cannot make save path 無法建立儲存路徑 @@ -11329,39 +11190,39 @@ Please choose a different name and try again. 「sort」參數無效 - + "%1" is not an existing URL - + "%1" is not a valid file index. 「%1」不是有效的檔案索引。 - + Index %1 is out of bounds. 索引 %1 超出範圍。 - - + + Cannot write to directory 無法寫入到路徑 - + WebUI Set location: moving "%1", from "%2" to "%3" Web UI遠端控制存放位置:將「%1」從「%2」搬到「%3」 - + Incorrect torrent name 錯誤Torrent名稱 - - + + Incorrect category name 錯誤分類名稱 @@ -11510,73 +11371,73 @@ Please choose a different name and try again. 私人Torrent - + Tracker editing 編輯追蹤器 - + Tracker URL: 追蹤器網址: - - + + Tracker editing failed 編輯追蹤器失敗 - + The tracker URL entered is invalid. 無效追蹤器網址。 - + The tracker URL already exists. 存在同網址的追蹤器。 - + Edit tracker URL... 編輯追蹤器網址… - + Remove tracker 清除追蹤器 - + Copy tracker URL 複製追蹤器網址 - + Force reannounce to selected trackers 強制重新公告到所選追蹤器 - + Force reannounce to all trackers 強制重新公告到全部追蹤器 - + Resize columns 調整欄位大小 - + Resize all non-hidden columns to the size of their contents 調整所有非隱藏欄位與其內容的大小 - + Add trackers... 新增追蹤者… - + Column visibility 欄位顯示 @@ -11666,14 +11527,6 @@ Please choose a different name and try again. Stop torrents - - Resume torrents - 回復Torrent - - - Pause torrents - 暫停 torrent - Remove torrents @@ -11796,10 +11649,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. 正在檢查恢復資料 - - Paused - 暫停 - Completed @@ -11840,21 +11689,16 @@ Please choose a different name and try again. % Done 進度 - - Status - Torrent status (e.g. downloading, seeding, paused) - 狀態 - Stopped - + 已停止 Status Torrent status (e.g. downloading, seeding, stopped) - 狀態 + 狀態 @@ -11970,22 +11814,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - 已用時間 + 已用時間 Yes - + No - - - - Time Active - Time (duration) the torrent is active (not paused) - 已用時間 + @@ -12087,358 +11926,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility 欄位顯示 - + Recheck confirmation 確認重新檢查 - + Are you sure you want to recheck the selected torrent(s)? 重新檢查所選Torrent,確定? - + Rename 重新命名 - + New name: 新名稱: - + Choose save path 選取儲存路徑 - Confirm pause - 確認暫停 - - - Would you like to pause all torrents? - 您想要暫停所有 torrents 嗎? - - - Confirm resume - 確認繼續 - - - Would you like to resume all torrents? - 您想要繼續所有 torrents 嗎? - - - + Unable to preview 無法預覽 - + The selected torrent "%1" does not contain previewable files 所選的 torrent「%1」不包含可預覽的檔案 - + Resize columns 調整欄位大小 - + Resize all non-hidden columns to the size of their contents 調整所有非隱藏欄位與其內容的大小 - + Enable automatic torrent management 啟用自動 torrent 管理 - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. 您確定要為選定的 torrent 啟用自動 Torrent 管理嗎?它們可能會被重新安置。 - Add Tags - 加入標籤 - - - + Choose folder to save exported .torrent files 選擇保存所匯出 .torrent 文件的文件夾 - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" 匯出 .torrent 檔案失敗。Torrent:「%1」。儲存路徑:「%2」。理由:「%3」 - + A file with the same name already exists 已存在同名檔案 - + Export .torrent file error 匯出 .torrent 文件錯誤 - + Remove All Tags 清除全部標籤 - + Remove all tags from selected torrents? 從所選Torrent清除全部標籤? - + Comma-separated tags: 標籤(以英語逗號分開): - + Invalid tag 無效標籤 - + Tag name: '%1' is invalid 標籤名:「%1」無效 - &Resume - Resume/start the torrent - 取消暫停(&R) - - - &Pause - Pause the torrent - 暫停(&P) - - - Force Resu&me - Force Resume/start the torrent - 強制繼續(&M) - - - + Pre&view file... 預覽檔案(&V)... - + Torrent &options... Torrent 選項(&O)... - + Open destination &folder 開啟目的資料夾(&F) - + Move &up i.e. move up in the queue 上移(&U) - + Move &down i.e. Move down in the queue 下移(&D) - + Move to &top i.e. Move to top of the queue 移至頂端(&T) - + Move to &bottom i.e. Move to bottom of the queue 移至底部(&B) - + Set loc&ation... 設定位置(&A)... - + Force rec&heck 強制重新檢查(&H) - + Force r&eannounce 強制重新回報(&E) - + &Magnet link 磁力連結(&M) - + Torrent &ID Torrent ID(&I) - + &Comment - + &Name 名稱(&N) - + Info &hash v1 資訊雜湊值 v1(&H) - + Info h&ash v2 資訊雜湊值 v2(&A) - + Re&name... 重新命名…(&N) - + Edit trac&kers... 編輯追蹤器…(&K) - + E&xport .torrent... 匯出 .torrent…(&X) - + Categor&y 類別(&Y) - + &New... New category... 新增…(&N) - + &Reset Reset category 重設(&R) - + Ta&gs 標籤(&G) - + &Add... Add / assign multiple tags... 加入…(&A) - + &Remove All Remove all tags 删除全部(&R) - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue 隊列(&Q) - + &Copy 複製(&C) - + Exported torrent is not necessarily the same as the imported 匯出的 torrent 不一定與匯入的相同 - + Download in sequential order 按順序下載 - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. 匯出 .torrent 檔案時發生錯誤。請檢視執行紀錄檔以取得更多資訊。 - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent 移除(&R) - + Download first and last pieces first 先下載首片段和最後片段 - + Automatic Torrent Management 自動Torrent管理 - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category 自動模式代表多個Torrent屬性(例如儲存路徑)將由相關分類決定 - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - 若 Torrent 暫停/排入佇列/錯誤/檢查,則無法強制重新公告 - - - + Super seeding mode 超級種子模式 @@ -12570,32 +12370,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12687,52 +12487,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. 不接受的檔案類型,僅容許常規檔案。 - + Symlinks inside alternative UI folder are forbidden. 後備Web UI遠端控制資料夾中不准使用符號連結。 - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" Web UI遠端控制的自訂 HTTP 標頭缺少 ':' 分隔符號:「%1」 - + Web server error. %1 - + Web server error. Unknown error. @@ -12790,7 +12590,7 @@ Please choose a different name and try again. Unknown error - 未知的錯誤 + 未知的錯誤 diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index d2a277819..3bb9c8e03 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -170,10 +170,6 @@ Never show again 不要再顯示 - - Torrent settings - Torrent 設定 - Set as default category @@ -207,7 +203,7 @@ Torrent options - + Torrent 選項 @@ -235,25 +231,25 @@ 停止條件: - - + + None - - + + Metadata received 收到的詮釋資料 - + Torrents that have metadata initially will be added as stopped. 一開始就有詮釋資料的 torrent 將被新增為已停止。 - + Files checked 已檢查的檔案 @@ -368,112 +364,112 @@ 另存為 .torrent 檔案… - + I/O Error I/O 錯誤 - + Not Available This comment is unavailable 無法使用 - + Not Available This date is unavailable 無法使用 - + Not available 無法使用 - + Magnet link 磁力連結 - + Retrieving metadata... 正在檢索詮釋資料… - - + + Choose save path 選擇儲存路徑 - + No stop condition is set. 未設定停止條件。 - + Torrent will stop after metadata is received. Torrent 將會在收到詮釋資料後停止。 - + Torrent will stop after files are initially checked. 最初檢查檔案後,torrent 將會停止。 - + This will also download metadata if it wasn't there initially. 如果一開始不存在,這也會下載詮釋資料。 - + N/A N/A - + %1 (Free space on disk: %2) %1(磁碟上的可用空間:%2) - + Not available This size is unavailable. 無法使用 - + Torrent file (*%1) Torrent 檔案 (*%1) - + Save as torrent file 另存為 torrent 檔案 - + Couldn't export torrent metadata file '%1'. Reason: %2. 無法匯出 torrent 詮釋資料檔案「%1」。原因:%2。 - + Cannot create v2 torrent until its data is fully downloaded. 在完全下載其資料前無法建立 v2 torrent。 - + Filter files... 過濾檔案... - + Parsing metadata... 正在解析詮釋資料… - + Metadata retrieval complete 詮釋資料檢索完成 @@ -481,35 +477,39 @@ AddTorrentManager - + Downloading torrent... Source: "%1" 正在下載 torrent……來源:「%1」 - + Failed to add torrent. Source: "%1". Reason: "%2" 新增 torrent 失敗。來源:「%1」。理由:「%2」 - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 偵測到嘗試新增重複的 torrent。來源:%1。既有的 torrent:%2。結果:%3 + 偵測到嘗試新增重複的 torrent。來源:%1。既有的 torrent:%2。結果:%3 - + Merging of trackers is disabled 合併 tracker 已停用 - + Trackers cannot be merged because it is a private torrent 因為這是私有的 torrent,所以無法合併 tracker - + Trackers are merged from new source 已經合併來自新來源的 tracker + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -672,706 +672,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion 完成後重新檢查 torrent - - + + ms milliseconds ms - + Setting 設定 - + Value Value set for this setting - + (disabled) (已停用) - + (auto) (自動) - - + + min minutes 分鐘 - + All addresses 所有位置 - + qBittorrent Section qBittorrent 小節 - - + + Open documentation 開啟文件 - + All IPv4 addresses 所有 IPv4 地址 - + All IPv6 addresses 所有 IPv6 地址 - + libtorrent Section libtorrent 小節 - + Fastresume files 快速復原檔案 - + SQLite database (experimental) SQLite 資料庫(實驗性) - + Resume data storage type (requires restart) 復原資料儲存類型(需要重新啟動) - + Normal 一般 - + Below normal 低於一般 - + Medium 中等 - + Low - + Very low 非常低 - + Physical memory (RAM) usage limit 實體記憶體 (RAM) 使用率限制 - + Asynchronous I/O threads 異步 I/O 執行緒 - + Hashing threads 雜湊執行緒 - + File pool size 檔案叢集大小 - + Outstanding memory when checking torrents 檢查 torrent 時的未完成記憶 - + Disk cache 磁碟快取 - - - - + + + + + s seconds s - + Disk cache expiry interval 磁碟快取到期區間 - + Disk queue size 磁碟佇列大小 - - + + Enable OS cache 啟用作業系統快取 - + Coalesce reads & writes 合併讀取與寫入 - + Use piece extent affinity 使用片段範圍關聯 - + Send upload piece suggestions 傳送上傳分塊建議 - - - - - + + + + + 0 (disabled) 0(停用) - + Save resume data interval [0: disabled] How often the fastresume file is saved. 儲存復原資料區間 [0:停用] - + Outgoing ports (Min) [0: disabled] 連出埠(最小)[0:停用] - + Outgoing ports (Max) [0: disabled] 連出埠(最大)[0:停用] - + 0 (permanent lease) 0(永久租約) - + UPnP lease duration [0: permanent lease] UPnP 租約期限 [0:永久租約] - + Stop tracker timeout [0: disabled] 停止追蹤器逾時 [0:停用] - + Notification timeout [0: infinite, -1: system default] 通知逾時 [0:無限大,-1:系統預設值] - + Maximum outstanding requests to a single peer 對單個 peer 的最多未完成請求 - - - - - + + + + + KiB KiB - + (infinite) (無限大) - + (system default) (系統預設值) - + Delete files permanently - + 永久刪除檔案 - + Move files to trash (if possible) - + 移動檔案到回收桶(若可能) - + Torrent content removing mode - + Torrent 內容移除模式 - + This option is less effective on Linux 這個選項在 Linux 上沒那麼有效 - + Process memory priority 處理程序記憶體優先程度 - + Bdecode depth limit Bdecode 深度限制 - + Bdecode token limit Bdecode 權杖限制 - + Default 預設 - + Memory mapped files 記憶體對映檔案 - + POSIX-compliant 遵循 POSIX - + Simple pread/pwrite - + 簡易預先讀取/預先寫入 - + Disk IO type (requires restart) 磁碟 IO 類型(需要重新啟動): - - + + Disable OS cache 停用作業系統快取 - + Disk IO read mode 磁碟 IO 讀取模式 - + Write-through 連續寫入 - + Disk IO write mode 磁碟 IO 寫入模式 - + Send buffer watermark 傳送緩衝浮水印 - + Send buffer low watermark 傳送緩衝低浮水印 - + Send buffer watermark factor 傳送緩衝浮水印因子 - + Outgoing connections per second 每秒對外連線數 - - + + 0 (system default) 0(系統預設值) - + Socket send buffer size [0: system default] 插座傳送緩衝大小 [0:系統預設值] - + Socket receive buffer size [0: system default] 插座接收緩衝大小 [0:系統預設值] - + Socket backlog size Socket 紀錄檔大小 - + Save statistics interval [0: disabled] How often the statistics file is saved. - + 儲存統計資料間隔 [0:停用] - + .torrent file size limit .torrent 檔案大小限制 - + Type of service (ToS) for connections to peers 與 peers 連線的服務類型 (ToS) - + Prefer TCP 偏好 TCP - + Peer proportional (throttles TCP) 下載者比例 (TCP 節流) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) 支援國際化域名 (IDN) - + Allow multiple connections from the same IP address 允許從同一個 IP 位置而來的多重連線 - + Validate HTTPS tracker certificates 驗證 HTTPS 追蹤器憑證 - + Server-side request forgery (SSRF) mitigation 伺服器端請求偽造 (SSRF) 緩解 - + Disallow connection to peers on privileged ports 不允許連線到在特權連接埠上的 peer - + It appends the text to the window title to help distinguish qBittorent instances 其將文字附加到視窗標題以協助區分 qBittorrent 實體 - + Customize application instance name 自訂應用程式實體名稱 - + It controls the internal state update interval which in turn will affect UI updates 其控制內部狀態更新間隔,進而影響使用者介面更新 - + Refresh interval 重新整理間隔 - + Resolve peer host names 解析下載者的主機名 - + IP address reported to trackers (requires restart) 向追蹤器回報的 IP 位置(需要重新啟動) - + Port reported to trackers (requires restart) [0: listening port] - + 回報給 tracker 的連接埠(需要重新啟動)[0:監聽埠] - + Reannounce to all trackers when IP or port changed 當 IP 或連接埠變更時通知所有追蹤者 - + Enable icons in menus 在選單中啟用圖示 - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker 為嵌入的追蹤器啟用通訊埠轉送 - + Enable quarantine for downloaded files 開啟已下載檔案隔離 - + Enable Mark-of-the-Web (MOTW) for downloaded files 啟用已下載檔案的 Mark-of-the-Web (MOTW) - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + 影響證書驗證及非 torrent 通訊協定活動(例如 RSS 摘要、程式更新、torrent 檔案、geoip 資料庫等) - + Ignore SSL errors - + 忽略 SSL 錯誤 - + (Auto detect if empty) (若為空則自動偵測) - + Python executable path (may require restart) Python 可執行檔路徑(可能需要重新啟動) - + Start BitTorrent session in paused state - + 以暫停狀態啟動 BitTorrent 工作階段 - + sec seconds - + - + -1 (unlimited) - + -1(無限制) - + BitTorrent session shutdown timeout [-1: unlimited] - + BitTorrent 工作階段關閉逾時 [-1:無限制] - + Confirm removal of tracker from all torrents 確認從所有 torrent 中移除 tracker - + Peer turnover disconnect percentage Peer 流動斷線百分比 - + Peer turnover threshold percentage Peer 流動閾值百分比 - + Peer turnover disconnect interval Peer 流動斷線間隔 - + Resets to default if empty 若為空,則重設回預設值 - + DHT bootstrap nodes DHT 自舉節點 - + I2P inbound quantity I2P 傳入量 - + I2P outbound quantity I2P 傳出量 - + I2P inbound length I2P 傳入長度 - + I2P outbound length I2P 傳出長度 - + Display notifications 顯示通知 - + Display notifications for added torrents 顯示已加入 torrent 的通知 - + Download tracker's favicon 下載追蹤者的 favicon - + Save path history length 儲存路徑歷史長度 - + Enable speed graphs 啟用速率圖 - + Fixed slots 固定通道 - + Upload rate based 上傳速率基於 - + Upload slots behavior 上傳通道行為 - + Round-robin 循環 - + Fastest upload 上傳最快 - + Anti-leech 反蝗族 - + Upload choking algorithm 是否上傳演算法 - + Confirm torrent recheck Torrent 重新檢查確認 - + Confirm removal of all tags 確認移除所有標籤 - + Always announce to all trackers in a tier 總是發佈到同一追蹤者群組內所有的追蹤者 - + Always announce to all tiers 總是發佈到所有追蹤者群組 - + Any interface i.e. Any network interface 任何介面 - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm %1-TCP 混合模式演算法 - + Resolve peer countries 解析 peer 國家 - + Network interface 網路介面 - + Optional IP address to bind to 可選擇繫結的 IP 位址 - + Max concurrent HTTP announces 最大並行 HTTP 宣佈 - + Enable embedded tracker 啟用嵌入追蹤者 - + Embedded tracker port 嵌入追蹤者埠 @@ -1382,142 +1393,142 @@ Invalid directory path - + 無效的目錄路徑 Directory does not exist - + 目錄不存在 Invalid mode, allowed values: %1 - + 無效模式,允許的值:%1 cookies must be array - + cookies 必須為陣列 Application - + Running in portable mode. Auto detected profile folder at: %1 正以可攜模式執行。自動偵測到的設定檔資料夾位於:%1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. 偵測到冗餘的命令列旗標:「%1」。可攜模式代表了相對快速的恢復。 - + Using config directory: %1 正在使用設定目錄:%1 - + Torrent name: %1 Torrent 名稱:%1 - + Torrent size: %1 Torrent 大小:%1 - + Save path: %1 儲存路徑:%1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent 已於 %1 下載完成。 - - + + Thank you for using qBittorrent. 感謝您使用 qBittorrent。 - + Torrent: %1, sending mail notification Torrent:%1,正在傳送郵件通知 - + Add torrent failed 新增 torrent 失敗 - + Couldn't add torrent '%1', reason: %2. 無法新增 torrent「%1」,理由:%2。 - + The WebUI administrator username is: %1 WebUI 管理員使用者名稱為:%1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 未設定 WebUI 管理員密碼。為此工作階段提供了臨時密碼:%1 - + You should set your own password in program preferences. 您應該在程式的偏好設定中設定您自己的密碼。 - + The WebUI is disabled! To enable the WebUI, edit the config file manually. WebUI 已停用!要啟用 WebUI,請手動編輯設定檔。 - + Running external program. Torrent: "%1". Command: `%2` 正在執行外部程式。Torrent:「%1」。指令:「%2」 - + Failed to run external program. Torrent: "%1". Command: `%2` 無法執行外部程式。Torrent:「%1」。命令:`%2` - + Torrent "%1" has finished downloading Torrent「%1」已完成下載 - + WebUI will be started shortly after internal preparations. Please wait... WebUI 將在內部準備後不久啟動。請稍等... - - + + Loading torrents... 正在載入 torrent... - + E&xit 離開 (&X) - + I/O Error i.e: Input/Output Error I/O 錯誤 - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1526,110 +1537,110 @@ 原因:「%2」 - + Torrent added 已新增 Torrent - + '%1' was added. e.g: xxx.avi was added. 「%1」已新增。 - + Download completed 下載完成 - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 已啟動。處理程序 ID:%2 - + This is a test email. - + 這是測試電子郵件。 - + Test email - + 測試電子郵件 - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. 「%1」已下載完畢。 - + Information 資訊 - + To fix the error, you may need to edit the config file manually. 要修復錯誤,您可能需要手動編輯設定檔。 - + To control qBittorrent, access the WebUI at: %1 要控制 qBittorrent,請從 %1 造訪 WebUI - + Exit 離開 - + Recursive download confirmation 遞迴下載確認 - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? Torrent「%1」包含 .torrent 檔案,您想要執行下載作業嗎? - + Never 永不 - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" 在 torrent 中遞迴下載 .torrent 檔案。來源 torrent:「%1」。檔案:「%2」 - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" 無法設定實體記憶體使用率限制。錯誤代碼:%1。錯誤訊息:「%2」 - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" 設定實體記憶體 (RAM) 硬性使用量限制失敗。請求大小:%1。系統硬性限制:%2。錯誤代碼:%3。錯誤訊息:「%4」 - + qBittorrent termination initiated qBittorrent 中止操作 - + qBittorrent is shutting down... qBittorrent 正在關閉…… - + Saving torrent progress... 正在儲存 torrent 進度… - + qBittorrent is now ready to exit qBittorrent 已準備好關閉 @@ -1766,263 +1777,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 匯出… (&E) - + Matches articles based on episode filter. 基於章節過濾器的符合文章。 - + Example: 範例: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match 符合第1季的第 2、第 5、第 8 到 15,以及第 30 集和之後章節 - + Episode filter rules: 章節過濾器原則: - + Season number is a mandatory non-zero value 季的數字為一強制非零的值 - + Filter must end with semicolon 過濾器必須以分號作結尾 - + Three range types for episodes are supported: 支援三種範圍類型的過濾器: - + Single number: <b>1x25;</b> matches episode 25 of season one 單一數字:<b>1x25;</b> 表示第 1 季的第 25 集 - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one 一般範圍:<b>1x25-40;</b> 表示第 1 季的第 25 到 40 集 - + Episode number is a mandatory positive value 章節的數字為一強制正值 - + Rules 規則 - + Rules (legacy) 規則 (舊版) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons 無限範圍:<b>1x25-;</b> 表示第 1 季的第 25 集和之後章節,以及後面季度的所有章節 - + Last Match: %1 days ago 最後符合:%1 天前 - + Last Match: Unknown 最後符合:未知 - + New rule name 新原則名稱 - + Please type the name of the new download rule. 請輸入新下載原則的名稱。 - - + + Rule name conflict 原則名稱衝突 - - + + A rule with this name already exists, please choose another name. 已有這原則名稱,請選擇另一個名稱。 - + Are you sure you want to remove the download rule named '%1'? 您確定要移除已下載的原則「%1」嗎? - + Are you sure you want to remove the selected download rules? 您確定要移除選取的下載規則嗎? - + Rule deletion confirmation 原則刪除確認 - + Invalid action 無效的動作 - + The list is empty, there is nothing to export. 這個清單是空白的,沒有東西可以匯出。 - + Export RSS rules 匯出 RSS 規則 - + I/O Error I/O 錯誤 - + Failed to create the destination file. Reason: %1 無法建立目標檔案。原因:%1 - + Import RSS rules 匯入 RSS 規則 - + Failed to import the selected rules file. Reason: %1 無法匯入指定的規則檔案。原因:%1 - + Add new rule... 增加新原則… - + Delete rule 刪除原則 - + Rename rule... 重新命名原則… - + Delete selected rules 刪除選取的規則 - + Clear downloaded episodes... 清除已下載的章節… - + Rule renaming 重新命名原則 - + Please type the new rule name 請輸入新原則的名稱 - + Clear downloaded episodes 清除已下載的章節 - + Are you sure you want to clear the list of downloaded episodes for the selected rule? 您確定要清除選取規則的已下載章節清單嗎? - + Regex mode: use Perl-compatible regular expressions 正規表示法模式:使用相容於 Perl 的正規表示法 - - + + Position %1: %2 位置 %1:%2 - + Wildcard mode: you can use 萬用字元模式:您可以使用 - - + + Import error 匯入錯誤 - + Failed to read the file. %1 讀取檔案失敗。%1 - + ? to match any single character ? 可配對為任何單一字元 - + * to match zero or more of any characters * 可配對為零個或更多個任意字元 - + Whitespaces count as AND operators (all words, any order) 空格會以 AND 運算子來計算(所有文字、任意順序) - + | is used as OR operator | 則作為 OR 運算子使用 - + If word order is important use * instead of whitespace. 若文字順序很重要請使用 * 而非空格。 - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) 帶有空白 %1 子句的表達式 (例如 %2) - + will match all articles. 將會配對所有文章。 - + will exclude all articles. 將會排除所有文章。 @@ -2074,28 +2085,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 無法解析還原資料:無效格式 - - + + Cannot parse torrent info: %1 無法解析 torrent 資訊:%1 - + Cannot parse torrent info: invalid format 無法解析 torrent 資訊:無效格式 - + Mismatching info-hash detected in resume data 在還原資料中偵測到不相符的資訊雜湊值 - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. 無法儲存 torrent 詮釋資料至「%1」。錯誤:%2。 - + Couldn't save torrent resume data to '%1'. Error: %2. 無法儲存 torrent 復原資料至「%1」。錯誤:%2。 @@ -2106,16 +2127,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 無法解析還原資料:%1 - + Resume data is invalid: neither metadata nor info-hash was found 還原資料無效:找不到詮釋資料與資訊雜湊值 - + Couldn't save data to '%1'. Error: %2 無法儲存資料至「%1」。錯誤:%2 @@ -2123,38 +2145,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. 找不到 - + Couldn't load resume data of torrent '%1'. Error: %2 無法載入 torrent「%1」的復原資料。錯誤:%2 - - + + Database is corrupted. 資料庫毀損。 - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. 無法啟用預寫紀錄 (WAL) 日誌模式。錯誤:%1。 - + Couldn't obtain query result. 無法取得查詢結果。 - + WAL mode is probably unsupported due to filesystem limitations. 因為檔案系統限制,可能不支援 WAL 模式。 - + + + Cannot parse resume data: %1 + 無法解析還原資料:%1 + + + + + Cannot parse torrent info: %1 + 無法解析 torrent 資訊:%1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 無法開始交易。錯誤:%1 @@ -2162,22 +2206,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. 無法儲存 torrent 詮釋資料。錯誤:%1。 - + Couldn't store resume data for torrent '%1'. Error: %2 無法儲存 torrent「%1」的復原資料。錯誤:%2 - + Couldn't delete resume data of torrent '%1'. Error: %2 無法刪除 torrent「%1」的復原資料。錯誤:%2 - + Couldn't store torrents queue positions. Error: %1 無法儲存 torrent 的佇列位置。錯誤:%1 @@ -2185,530 +2229,507 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 分散式雜湊表 (DHT) 支援:%1 - - - - - - - - - + + + + + + + + + ON 開啟 - - - - - - - - - + + + + + + + + + OFF 關閉 - - + + Local Peer Discovery support: %1 區域 Peer 探索支援:%1 - + Restart is required to toggle Peer Exchange (PeX) support 切換 Peer 交換 (PeX) 支援必須重新啟動 - + Failed to resume torrent. Torrent: "%1". Reason: "%2" 無法繼續 torrent。Torrent:「%1」。原因:「%2」 - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" 無法繼續 torrent:偵測到不一致的 torrent ID。Torrent:「%1」 - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" 偵測到不一致的資料:設定檔中缺少分類。分類將會被還原,但其設定將會重設回預設值。Torrent:「%1」。分類:「%2」 - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" 偵測到不一致的資料:無效分類。Torrent:「%1」。分類:「%2」 - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" 偵測到還原分類的儲存路徑與目前 torrent 的儲存路徑不相符。Torrent 目前已切換至手動模式。Torrent:「%1」。分類:「%2」 - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" 偵測到不一致的資料:設定檔中缺少標籤。標籤將會被還原。Torrent:「%1」。標籤:「%2」 - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" 偵測到不一致的資料:無效標籤。Torrent:「%1」。標籤:「%2」 - + System wake-up event detected. Re-announcing to all the trackers... 偵測到系統喚醒事件。正重新向所有 tracker 廣播…… - + Peer ID: "%1" Peer ID:「%1」 - + HTTP User-Agent: "%1" HTTP 使用者代理字串:「%1」 - + Peer Exchange (PeX) support: %1 Peer 交換 (PeX) 支援:%1 - - + + Anonymous mode: %1 匿名模式:%1 - - + + Encryption support: %1 加密支援:%1 - - + + FORCED 強制 - + Could not find GUID of network interface. Interface: "%1" 找不到網路介面的 GUID。介面:「%1」 - + Trying to listen on the following list of IP addresses: "%1" 正在嘗試監聽以下 IP 位置清單:「%1」 - + Torrent reached the share ratio limit. Torrent 達到了分享比例限制。 - + Torrent: "%1". Torrent:「%1」。 - Removed torrent. - 已移除 torrent。 - - - Removed torrent and deleted its content. - 已移除 torrent 並刪除其內容。 - - - Torrent paused. - Torent 已暫停。 - - - + Super seeding enabled. 超級種子已啟用。 - + Torrent reached the seeding time limit. Torrent 達到了種子時間限制。 - + Torrent reached the inactive seeding time limit. Torrent 已達到不活躍種子時間限制。 - + Failed to load torrent. Reason: "%1" 無法載入 torrent。原因:「%1」 - + I2P error. Message: "%1". I2P 錯誤。訊息:「%1」。 - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP 支援:開啟 - + Saving resume data completed. - + 儲存復原資料完成。 - + BitTorrent session successfully finished. - + BitTorrent 工作階段成功結束。 - + Session shutdown timed out. - + 工作階段關閉逾時。 - + Removing torrent. - + 移除 torrent。 - + Removing torrent and deleting its content. - + 移除 torrent 並刪除其內容。 - + Torrent stopped. - + Torrent 已停止。 - + Torrent content removed. Torrent: "%1" - + Torrent 內容已移除。Torretn:「%1」 - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + 移除 torrent 內容失敗。Torrent:「%1」。錯誤:「%2」 - + Torrent removed. Torrent: "%1" - + Torrent 已移除。Torrent:「%1」 - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - + 偵測到嘗試新增重複的 torrent。既有的 torrent:%1。結果:%2 - + Merging of trackers is disabled - 合併 tracker 已停用 + 合併 tracker 已停用 - + Trackers cannot be merged because it is a private torrent - 因為這是私有的 torrent,所以無法合併 tracker + 因為這是私有的 torrent,所以無法合併 tracker - + Trackers are merged from new source - 已經合併來自新來源的 tracker + 已經合併來自新來源的 tracker - + UPnP/NAT-PMP support: OFF UPnP/NAT-PMP 支援:關閉 - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" 無法匯出 torrent。Torrent:「%1」。目標:「%2」。原因:「%3」 - + Aborted saving resume data. Number of outstanding torrents: %1 中止儲存還原資料。未完成的 torrent 數量:%1 - + The configured network address is invalid. Address: "%1" 已設定的網路地址無效。地址:「%1」 - - + + Failed to find the configured network address to listen on. Address: "%1" 找不到指定監聽的網路位址。位址:「%1」 - + The configured network interface is invalid. Interface: "%1" 已設定的網路介面無效。介面:「%1」 - + Tracker list updated - + Tracker 清單已更新 - + Failed to update tracker list. Reason: "%1" - + 更新 tracker 清單失敗。理由:「%1」 - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" 套用封鎖 IP 位置清單時拒絕無效的 IP 位置。IP:「%1」 - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" 已新增追蹤器至 torrent。Torrent:「%1」。追蹤器:「%2」 - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" 已從 torrent 移除追蹤器。Torrent:「%1」。追蹤器:「%2」 - + Added URL seed to torrent. Torrent: "%1". URL: "%2" 已新增 URL 種子到 torrent。Torrent:「%1」。URL:「%2」 - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" 已從 torrent 移除 URL 種子。Torrent:「%1」。URL:「%2」 - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + 移除 partfile 失敗。Torrent:「%1」。理由:「%2」。 - Torrent paused. Torrent: "%1" - Torrent 已暫停。Torrent:「%1」 - - - + Torrent resumed. Torrent: "%1" Torrent 已復原。Torrent:「%1」 - + Torrent download finished. Torrent: "%1" Torrent 下載完成。Torrent:「%1」 - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" 已取消移動 torrent。Torrent:「%1」。來源:「%2」。目標:「%3」 - - Torrent stopped. Torrent: "%1" + + Duplicate torrent - + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + + Torrent stopped. Torrent: "%1" + Torrent 已停止。Torrent:「%1」 + + + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination 無法將 torrent 加入移動佇列。Torrent:「%1」。來源:「%2」。目標:「%3」。原因:torrent 目前正在移動至目標資料夾 - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location 無法將 torrent 移動加入佇列。Torrent:「%1」。來源:「%2」。目標:「%3」。原因:兩個路徑均指向相同的位置 - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" 已將 torrent 移動加入佇列。Torrent:「%1」。來源:「%2」。目標:「%3」 - + Start moving torrent. Torrent: "%1". Destination: "%2" 開始移動 torrent。Torrent:「%1」。目標:「%2」 - + Failed to save Categories configuration. File: "%1". Error: "%2" 無法儲存分類設定。檔案:「%1」。錯誤:「%2」 - + Failed to parse Categories configuration. File: "%1". Error: "%2" 無法解析分類設定。檔案:「%1」。錯誤:「%2」 - + Successfully parsed the IP filter file. Number of rules applied: %1 成功解析 IP 過濾條件檔案。套用的規則數量:%1 - + Failed to parse the IP filter file 無法解析 IP 過濾條件檔案 - + Restored torrent. Torrent: "%1" 已還原 torrent。Torrent:「%1」 - + Added new torrent. Torrent: "%1" 已新增新的 torrent。Torrent:「%1」 - + Torrent errored. Torrent: "%1". Error: "%2" Torrent 錯誤。Torrent:「%1」。錯誤:「%2」 - Removed torrent. Torrent: "%1" - 已移除 torrent。Torrent:「%1」 - - - Removed torrent and deleted its content. Torrent: "%1" - 已移除 torrent 並刪除其內容。Torrent:「%1」 - - - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrent 缺少 SSL 參數。Torretn:「%1」。訊息:「%2」 - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" 檔案錯誤警告。Torrent:「%1」。檔案:「%2」。原因:「%3」 - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP 連接埠對映失敗。訊息:「%1」 - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP 連接埠對映成功。訊息:「%1」 - + IP filter this peer was blocked. Reason: IP filter. IP 過濾 - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). 已過濾的連接埠 (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). 特權連接埠 (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + URL 種子連線失敗。Torrent:「%1」。URL:「%2」。錯誤:「%3」 - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent 工作階段遇到嚴重錯誤。理由:「%1」 - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 代理伺服器錯誤。地址:%1。訊息:「%2」。 - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 混合模式限制 - + Failed to load Categories. %1 載入分類失敗。%1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" 載入分類設定失敗。檔案:「%1」。錯誤:「無效的資料格式」 - Removed torrent but failed to delete its content and/or partfile. Torrent: "%1". Error: "%2" - 已移除 torrent 但刪除其內容及/或部份檔案失敗。Torrent:「%1」。錯誤:「%2」 - - - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 已停用 - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 已停用 - URL seed DNS lookup failed. Torrent: "%1". URL: "%2". Error: "%3" - URL 種子 DNS 查詢失敗。Torrent:「%1」。URL:「%2」。錯誤:「%3」 - - - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" 從 URL 種子收到錯誤訊息。Torrent:「%1」。URL:「%2」。訊息:「%3」 - + Successfully listening on IP. IP: "%1". Port: "%2/%3" 成功監聽 IP。IP:「%1」。連接埠:「%2/%3」 - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" 無法監聽該 IP 位址。IP:「%1」。連接埠:「%2/%3」。原因:「%4」 - + Detected external IP. IP: "%1" 偵測到外部 IP。IP:「%1」 - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" 錯誤:內部警告佇列已滿,警告已被丟棄,您可能會發現效能變差。被丟棄的警告類型:「%1」。訊息:「%2」 - + Moved torrent successfully. Torrent: "%1". Destination: "%2" 已成功移動 torrent。Torrent:「%1」。目標:「%2」 - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" 無法移動 torrent。Torrent:「%1」。來源:「%2」。目標:「%3」。原因:「%4」 @@ -2758,47 +2779,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 無法寫入檔案。原因:「%1」。Torrent 目前為「僅上傳」模式。 - + Download first and last piece first: %1, torrent: '%2' 先下載第一及最後一塊:%1,torrent:「%2」 - + On 開啟 - + Off 關閉 - + Failed to reload torrent. Torrent: %1. Reason: %2 重新載入 torrent 失敗。Torrent:%1。理由:%2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" 無法產生復原資料。Torrent:「%1」。原因:「%2」 - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" 無法還原 torrent。檔案可能已被移動或儲存空間無法存取。Torrent:「%1」。原因:「%2」 - + Missing metadata 缺少詮釋資料 - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" 無法重新命名檔案。Torrent:「%1」,檔案:「%2」,原因:「%3」 - + Performance alert: %1. More info: %2 效能警告:%1。更多資訊:%2 @@ -2835,11 +2856,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expected integer number in environment variable '%1', but got '%2' 預期環境變數「%1」為整數,但得到的是「%2」 - - Parameter '%1' must follow syntax '%1=%2' - e.g. Parameter '--add-paused' must follow syntax '--add-paused=<true|false>' - 參數「%1」必須使用語法「%1=%2」 - Expected %1 in environment variable '%2', but got '%3' @@ -2880,7 +2896,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Parameter '%1' must follow syntax '%1=%2' e.g. Parameter '--add-stopped' must follow syntax '--add-stopped=<true|false>' - 參數「%1」必須使用語法「%1=%2」 + 參數「%1」必須使用語法「%1=%2」 @@ -2968,11 +2984,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add torrents as running or stopped - - - - Add torrents as started or paused - 新增 torrent 為已開始或已暫停 + 新增正在執行或已停止的 torrent @@ -3063,20 +3075,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + 啟動 torrent Stop torrents - - - - Resume torrents - 繼續 torrent - - - Pause torrents - 暫停 torrent + 停止 torrent @@ -3099,7 +3103,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also System - + 系統 @@ -3174,11 +3178,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Also remove the content files - - - - Also permanently delete the files - 同時永久刪除檔案 + 也移除內容檔案 @@ -3390,47 +3390,43 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Pattern Format - + 模式格式 Plain text - + 純文字 Wildcards - + 萬用字元 Regular expression - + 正則表示式 GUIAddTorrentManager - + Downloading torrent... Source: "%1" 正在下載 torrent……來源:「%1」 - Trackers cannot be merged because it is a private torrent - 因為這是私有的 torrent,所以無法合併 tracker - - - + Torrent is already present Torrent 已經存在 - + Trackers cannot be merged because it is a private torrent. - + 因為這是私有的 torrent,所以無法合併 tracker。 - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent「%1」已經在傳輸清單中。您想合併來自新來源的追蹤者嗎? @@ -3548,6 +3544,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 支援的影像檔案 + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + 電源管理找到了合適的 D-Bus 介面。介面:%1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + 電源管理錯誤。動作:%1。錯誤:%2 + + + + Power management unexpected error. State: %1. Error: %2 + 電源管理非預期的錯誤。狀態:%1。錯誤:%2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3689,10 +3719,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Options... 選項… (&O) - - &Resume - 繼續 (&R) - &Remove @@ -3762,7 +3788,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sh&utdown System - + 關機 (&U) @@ -3774,10 +3800,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Close Window 關閉視窗 - - R&esume All - 全部繼續 (&E) - Manage Cookies... @@ -3816,22 +3838,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sta&rt - + 啟動(&R) Sto&p - + 停止(&P) R&esume Session - + 繼續工作階段(&E) Pau&se Session - + 暫停工作階段(&S) @@ -3893,10 +3915,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Hibernate System 系統休眠 (&H) - - S&hutdown System - 關機 (&h) - &Statistics @@ -3917,14 +3935,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &About 關於 (&A) - - &Pause - 暫停 (&P) - - - P&ause All - 全部暫停 (&A) - &Add Torrent File... @@ -3958,12 +3968,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show 顯示 - + Check for program updates 檢查軟體更新 @@ -3978,388 +3988,383 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also 如果您喜歡 qBittorrent,請捐款! - + Execution Log 活動紀錄 - + Clear the password 清除密碼 - + &Set Password 設定密碼 (&S) - + Preferences 偏好設定 - + &Clear Password 清除密碼 (&C) - + Transfers 傳輸 - - + + qBittorrent is minimized to tray qBittorrent 最小化到系統匣 - - - + + + This behavior can be changed in the settings. You won't be reminded again. 這行為可以在設定中變更。您將不會再被提醒。 - + Icons Only 只有圖示 - + Text Only 只有文字 - + Text Alongside Icons 文字在圖示旁 - + Text Under Icons 文字在圖示下 - + Follow System Style 跟隨系統風格 - - + + UI lock password UI 鎖定密碼 - - + + Please type the UI lock password: 請輸入 UI 鎖定密碼: - + Are you sure you want to clear the password? 您確定要清除密碼? - + Use regular expressions 使用正規表示式 - - + + Search Engine - 搜尋引擎 + 搜尋引擎 - + Search has failed - 搜尋失敗 + 搜尋失敗 - + Search has finished - 搜尋完成 + 搜尋完成 - + Search 搜尋 - + Transfers (%1) 傳輸 (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent 已經更新了並且需要重新啟動。 - + qBittorrent is closed to tray qBittorrent 關閉到系統匣 - + Some files are currently transferring. 有些檔案還在傳輸中。 - + Are you sure you want to quit qBittorrent? 您確定要退出 qBittorrent 嗎? - + &No 否 (&N) - + &Yes 是 (&Y) - + &Always Yes 總是 (&A) - + Options saved. 已儲存選項。 - + [PAUSED] %1 %1 is the rest of the window title - + [已暫停] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [下載:%1,上傳:%2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. - + 無法下載 Python 安裝程式。原因:%1。 +請手動安裝。 - + Rename Python installer failed. Source: "%1". Destination: "%2". - + 無法重新命名 Python 安裝程式。來源:「%1」。目的地:「%2」。 - + Python installation success. - - - - - Exit code: %1. - - - - - Reason: installer crashed. - + Python 安裝成功 + Exit code: %1. + 結束碼:%1。 + + + + Reason: installer crashed. + 理由:安裝程式當機。 + + + Python installation failed. - + Python 安裝失敗。 - + Launching Python installer. File: "%1". - + 正在啟動 Python 安裝程式。檔案:「%1」。 - - + + Missing Python Runtime Python 執行庫遺失 - + qBittorrent Update Available 有新版本的 qBittorrent 可用 - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? 使用搜尋引擎需要 Python,但是它似乎尚未安裝。 您想要現在安裝嗎? - + Python is required to use the search engine but it does not seem to be installed. 使用搜尋引擎需要 Python,但是它似乎尚未安裝。 - - + + Old Python Runtime 舊的 Python 執行庫 - + A new version is available. 有新版本可用。 - + Do you want to download %1? 您想要下載 %1 嗎? - + Open changelog... 開啟變更紀錄… - + No updates available. You are already using the latest version. 沒有更新的版本 您已經在用最新的版本了 - + &Check for Updates 檢查更新 (&C) - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? 您的 Python 版本 (%1) 太舊了。最低需求:%2。 您想要現在安裝更新版本嗎? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. 您的 Python 版本 (%1) 太舊了。請升級到最新版本來讓搜尋引擎運作。 最低需求:%2。 - + Paused - 暫停 + 暫停 - + Checking for Updates... 正在檢查更新… - + Already checking for program updates in the background 已經在背景檢查程式更新 - + Python installation in progress... - + Python 安裝進行中…… - + Failed to open Python installer. File: "%1". - + 開啟 Python 安裝程式失敗。檔案:「%1」。 - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python 安裝程式的 MD5 雜湊值檢查失敗。檔案:「%1」。結果雜湊值:「%2」。預期雜湊值:「%3」。 - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Python 安裝程式的 SHA3-512 雜湊值檢查失敗。檔案:「%1」。結果雜湊值:「%2」。預期雜湊值:「%3」。 - + Download error 下載錯誤 - Python setup could not be downloaded, reason: %1. -Please install it manually. - 無法下載 Python 安裝程式。原因:%1。 -請手動安裝。 - - - - + + Invalid password 無效的密碼 - + Filter torrents... 過濾 torrent…… - + Filter by: 過濾條件: - + The password must be at least 3 characters long 密碼長度必須至少有 3 個字元 - - - + + + RSS (%1) RSS (%1) - + The password is invalid 密碼是無效的 - + DL speed: %1 e.g: Download speed: 10 KiB/s 下載速率:%1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s 上傳速率:%1 - + Hide 隱藏 - + Exiting qBittorrent 退出 qBittorrent - + Open Torrent Files 開啟 torrent 檔案 - + Torrent Files Torrent 檔案 @@ -4556,7 +4561,7 @@ Please install it manually. SSL error, URL: "%1", errors: "%2" - + SSL 錯誤,URL:「%1」,錯誤「%2」 @@ -5853,47 +5858,47 @@ Please install it manually. Net::Smtp - + Connection failed, unrecognized reply: %1 連線失敗,無法是別的回覆:%1 - + Authentication failed, msg: %1 驗證失敗,訊息:%1 - + <mail from> was rejected by server, msg: %1 <mail from> 被伺服器拒絕,訊息:%1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to> 被伺服器拒絕,訊息:%1 - + <data> was rejected by server, msg: %1 <data> 被伺服器拒絕,訊息:%1 - + Message was rejected by the server, error: %1 訊息被伺服器拒絕,錯誤:%1 - + Both EHLO and HELO failed, msg: %1 EHLO 與 HELO 皆失敗,訊息:%1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 SMTP 伺服器似乎並不支援任何我們支援的驗證模式 [CRAM-MD5|PLAIN|LOGIN],正在略過驗證,知道其可能會失敗……伺服器驗證模式:%1 - + Email Notification Error: %1 電子郵件通知錯誤:%1 @@ -5935,10 +5940,6 @@ Please install it manually. RSS RSS - - Web UI - Web UI - Advanced @@ -5959,14 +5960,6 @@ Please install it manually. Confirm when deleting torrents 當刪除 torrent 時必須確認 - - Shows a confirmation dialog upon pausing/resuming all the torrents - 暫停/繼續所有 torrent 時顯示確認對話方塊 - - - Confirm "Pause/Resume all" actions - 確認「暫停/繼續全部」動作 - Use alternating row colors @@ -5983,10 +5976,6 @@ Please install it manually. Always 總是 - - Paused torrents only - 僅暫停 torrent - Action on double-click @@ -5997,10 +5986,6 @@ Please install it manually. Downloading torrents: 下載中的 torrent: - - Start / Stop Torrent - 開始╱停止 torrent - @@ -6059,179 +6044,179 @@ Please install it manually. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent 內容佈局: - + Original 原始 - + Create subfolder 建立子資料夾 - + Don't create subfolder 不要建立子資料夾 - + The torrent will be added to the top of the download queue Torrent 將會被新增至下載佇列頂部 - + Add to top of queue The torrent will be added to the top of the download queue 新增至佇列頂部 - + When duplicate torrent is being added 新增重複的 torrent 時 - + Merge trackers to existing torrent 合併追蹤器到既有的 torrent - + Keep unselected files in ".unwanted" folder 將未選取的檔案保留在「.unwanted」資料夾中 - + Add... 新增…… - + Options.. 選項…… - + Remove 移除 - + Email notification &upon download completion 下載完成時使用電子郵件通知 (&U) - + Send test email - + 傳送測試電子郵件 - + Run on torrent added: - + 在 torrent 新增時執行: - + Run on torrent finished: - + 在 torrent 結束時執行: - + Peer connection protocol: 下載者連線協定: - + Any 任何 - + I2P (experimental) I2P(實驗性) - <html><head/><body><p>If &quot;mixed mode&quot; is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>若啟用「混合模式」,I2P torrent 也允許從追蹤者以外的來源取得 peer,並連線到一般 IP,不提供任何匿名化。若使用者對 I2P 的匿名化不感興趣,但仍希望可以連線至 I2P peer,這可能會很有用。</p></body></html> - - - + Mixed mode 混合模式 - Some options are incompatible with the chosen proxy type! - 某些選項與選定的代理伺服器類型不相容! + 某些選項與選定的代理伺服器類型不相容! - + If checked, hostname lookups are done via the proxy 若勾選,主機名稱查詢將會透過代理伺服器完成 - + Perform hostname lookup via proxy 透過代理伺服器執行主機名稱查詢 - + Use proxy for BitTorrent purposes 對 BitTorrent 使用代理伺服器 - + RSS feeds will use proxy RSS feed 將會使用代理伺服器 - + Use proxy for RSS purposes 對 RSS 使用代理伺服器 - + Search engine, software updates or anything else will use proxy 搜尋引擎、軟體更新或其他任何會使用代理伺服器的東西 - + Use proxy for general purposes 對一般目的使用代理伺服器 - + IP Fi&ltering IP 過濾 (&L) - + Schedule &the use of alternative rate limits 預約使用替補速率限制 (&T) - + From: From start time 從: - + To: To end time 到: - + Find peers on the DHT network 在 DHT 網路上尋找 peer - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6240,188 +6225,190 @@ Disable encryption: Only connect to peers without protocol encryption 停用加密:僅連線到沒有協議加密的 peer - + Allow encryption 允許加密 - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">更多資訊</a>) - + Maximum active checking torrents: 最大活躍的正在檢查 torrent 數: - + &Torrent Queueing Torrent 佇列 (&T) - + When total seeding time reaches 當總種子時間達到 - + When inactive seeding time reaches 當不活躍種子時間達到 - A&utomatically add these trackers to new downloads: - 自動新增這些追蹤者到新的下載中:(&U) - - - + RSS Reader RSS 閱讀器 - + Enable fetching RSS feeds 啟用抓取 RSS feed - + Feeds refresh interval: Feed 更新區間: - + Same host request delay: 相同主機請求延遲: - + Maximum number of articles per feed: 每個 feed 的最大文章數: - - - + + + min minutes 分鐘 - + Seeding Limits 種子限制 - Pause torrent - 暫停 torrent - - - + Remove torrent 移除 torrent - + Remove torrent and its files 移除 torrent 與其檔案 - + Enable super seeding for torrent 為 torrent 啟用超級做種 - + When ratio reaches 當分享率達到 - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + 停止 torrent - + A&utomatically append these trackers to new downloads: - + 自動附加這些追蹤器到新下載項目 (&u) - + Automatically append trackers from URL to new downloads: - + 自動將 URL 的 tracker 附加到新下載的檔案: - + URL: - URL: + URL: - + Fetched trackers - + 擷取 tracker - + Search UI - + 搜尋使用者介面 - + Store opened tabs - + 儲存已開啟的分頁 - + Also store search results - + 也儲存搜尋結果 - + History length - + 歷史紀錄長度 - + RSS Torrent Auto Downloader RSS torrent 自動下載器 - + Enable auto downloading of RSS torrents 啟用自動 RSS torrent 下載 - + Edit auto downloading rules... 編輯自動下載規則… - + RSS Smart Episode Filter RSS 智慧型章節過濾器 - + Download REPACK/PROPER episodes 下載 REPACK╱PROPER 章節 - + Filters: 過濾器: - + Web User Interface (Remote control) Web UI(遠端控制) - + IP address: IP 位置: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6430,41 +6417,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv 「::」以配對任何 IPv6 位址,或是「*」以配對任何 IPv4 或 IPv6 位址。 - + Ban client after consecutive failures: 連續失敗後封鎖用戶端: - + Never 永不 - + ban for: 封鎖: - + Session timeout: 工作階段逾時: - + Disabled 已停用 - Enable cookie Secure flag (requires HTTPS) - 啟用 cookie 安全旗標(需要 HTTPS) - - - + Server domains: 伺服器網域: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6477,37 +6460,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP 使用 HTTPS 而不是 HTTP (&U) - + Bypass authentication for clients on localhost 在本機上略過用戶端驗證 - + Bypass authentication for clients in whitelisted IP subnets 讓已在白名單中的 IP 子網路略過驗證 - + IP subnet whitelist... IP 子網白名單… - + Use alternative WebUI - + 使用替補 WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. 指定反向代理 IP(或子網路,例如 0.0.0.0/24)以使用轉送的用戶端位置(X-Forwarded-For 標頭)。使用 ';' 來分隔多個項目。 - + Upda&te my dynamic domain name 更新我的動態領域名稱 (&T) @@ -6519,12 +6502,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search - 搜尋 + 搜尋 WebUI - + WebUI @@ -6539,29 +6522,29 @@ Use ';' to split multiple entries. Can use wildcard '*'. Style: - + 樣式: Color scheme: - + 配色方案: Stopped torrents only - + 僅已停止的 torrent Start / stop torrent - + 開始 / 停止 torrent Open torrent options dialog - + 開啟 torrent 選項對話方塊 @@ -6602,7 +6585,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. &Log Files - + 紀錄檔(&L) @@ -6620,99 +6603,99 @@ Use ';' to split multiple entries. Can use wildcard '*'.只保存備份記錄: - + Show external IP in status bar - + 在狀態列中顯示外部 IP - + When adding a torrent 當增加 torrent 時 - + Bring torrent dialog to the front 以最上層顯示 torrent 對話方塊 - + The torrent will be added to download list in a stopped state - + 這個 torrent 將會以「停止狀態」加入下載清單。 - + Also delete .torrent files whose addition was cancelled 同時也刪除新增時被取消的 .torrent 檔案 - + Also when addition is cancelled 新增時被取消亦同 - + Warning! Data loss possible! 警告!可能遺失資料! - + Saving Management 存檔管理 - + Default Torrent Management Mode: 預設 torrent 管理模式: - + Manual 手動 - + Automatic 自動 - + When Torrent Category changed: 當 Torrent 分類變更時: - + Relocate torrent 重新定位 torrent - + Switch torrent to Manual Mode 切換 torrent 到手動模式 - - + + Relocate affected torrents 重新定位受影響的 torrent - - + + Switch affected torrents to Manual Mode 切換受影響的 torrent 至手動模式 - + Use Subcategories 使用子分類 - + Default Save Path: 預設儲存路徑: - + Copy .torrent files to: 複製 torrent 檔案到: @@ -6722,26 +6705,22 @@ Use ';' to split multiple entries. Can use wildcard '*'.在通知區域顯示 qBittorrent (&Q) - &Log file - 備份記錄檔 (&L) - - - + Display &torrent content and some options 顯示 torrent 內容及其他選項 (&T) - + De&lete .torrent files afterwards 事後刪除 .torrent 檔案 (&L) - + Copy .torrent files for finished downloads to: 複製已完成的 torrent 檔案到: - + Pre-allocate disk space for all files 為所有檔案預先分配磁碟空間 @@ -6771,10 +6750,6 @@ Use ';' to split multiple entries. Can use wildcard '*'.Preview file, otherwise open destination folder 預覽檔案,否則開啟目標資料夾 - - Show torrent options - 顯示 torrent 選項 - Shows a confirmation dialog when exiting with active torrents @@ -6840,69 +6815,65 @@ Use ';' to split multiple entries. Can use wildcard '*'.年 - + Log performance warnings 記錄效能警告 - The torrent will be added to download list in a paused state - Torrent 將以暫停狀態加入到下載清單中 - - - + Do not start the download automatically The torrent will be added to download list in a stopped state 無法自動開始下載 - + Whether the .torrent file should be deleted after adding it 新增後是否應刪除 .torrent 檔案 - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. 開始下載前,在磁碟上預先分配好完整檔案大小的空間以減少空間碎片。僅對 HDD 有用。 - + Append .!qB extension to incomplete files 在未完成檔案加上 .!qB 副檔名 - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it 下載 torrent 時,可以從其中找到的任何 .torrent 檔案新增 torrent - + Enable recursive download dialog 啟用遞迴下載確認對話框 - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually 自動:各種 torrent 屬性(如儲存路徑)將由相關分類來決定 手動:各種 torrent 屬性(如儲存路徑)必須手動分配 - + When Default Save/Incomplete Path changed: 當預設儲存/不完整路徑變更時: - + When Category Save Path changed: 當分類儲存路徑變更: - + Use Category paths in Manual Mode 在手動模式下使用分類路徑 - + Resolve relative Save Path against appropriate Category path instead of Default one 根據適當的分類路徑而非預設路徑解析相對儲存路徑 @@ -6922,50 +6893,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually啟動時的 qBittorrent 視窗狀態 - + Torrent stop condition: Torrent 停止條件: - - + + None - - + + Metadata received 收到的詮釋資料 - - + + Files checked 已檢查的檔案 - + Ask for merging trackers when torrent is being added manually 手動新增 torrent 時詢問是否合併追蹤器 - + Use another path for incomplete torrents: 使用其他路徑取得不完整的 torrents: - + Automatically add torrents from: 自動載入 torrent 檔案: - + Excluded file names 排除的檔案名稱 - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6994,523 +6965,510 @@ readme.txt:過濾精確的檔案名稱。 readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「readme10.txt」。 - + Receiver 接收者 - + To: To receiver 到: - + SMTP server: SMTP 伺服器: - + Sender 傳送者 - + From: From sender 從: - + This server requires a secure connection (SSL) 這個伺服器需要加密連線 (SSL) - - + + Authentication 驗證 - - - - + + + + Username: 使用者名稱: - - - - + + + + Password: 密碼: - + Run external program 執行外部程式 - Run on torrent added - 在 torrent 新增時執行 - - - Run on torrent finished - 在 torrent 結束時執行 - - - + Show console window 顯示終端機視窗 - + TCP and μTP TCP 與 μTP - + Listening Port 監聽埠 - + Port used for incoming connections: 連入連線時使用的埠: - + Set to 0 to let your system pick an unused port 設定為 0 讓您的系統挑選未使用的連接埠 - + Random 隨機 - + Use UPnP / NAT-PMP port forwarding from my router 使用從路由器轉送的 UPnP/NAT-PMP 連接埠 - + Connections Limits 連線限制 - + Maximum number of connections per torrent: 每個 torrent 的最大連線數: - + Global maximum number of connections: 全域最大連線數: - + Maximum number of upload slots per torrent: 每個 torrent 上傳通道的最大數: - + Global maximum number of upload slots: 全域上傳通道的最大數: - + Proxy Server 代理伺服器 - + Type: 類型: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: 主機: - - - + + + Port: 埠: - + Otherwise, the proxy server is only used for tracker connections 除此之外,代理伺服器僅用於追蹤者連線 - + Use proxy for peer connections 使用代理伺服器來連線下載者 - + A&uthentication 驗證 (&U) - Info: The password is saved unencrypted - 資訊:密碼以未加密的形式儲存 + 資訊:密碼以未加密的形式儲存 - + Filter path (.dat, .p2p, .p2b): 過濾路徑 (.dat, .p2p, .p2b): - + Reload the filter 重新載入過濾器 - + Manually banned IP addresses... 手動封鎖 IP 位置… - + Apply to trackers 套用到追蹤者 - + Global Rate Limits 全域速率限制 - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: 上傳: - - + + Download: 下載: - + Alternative Rate Limits 替補速率限制 - + Start time 開始時間 - + End time 結束時間 - + When: 何時: - + Every day 每天 - + Weekdays 平日 - + Weekends 週末 - + Rate Limits Settings 速率限制設定 - + Apply rate limit to peers on LAN 在 LAN 上套用對下載者的速率限制 - + Apply rate limit to transport overhead 套用速率限制至傳輸負載 - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + <html><head/><body><p>若啟用「混合模式」,I2P torrent 也允許從追蹤者以外的來源取得 peer,並連線到一般 IP,不提供任何匿名化。若使用者對 I2P 的匿名化不感興趣,但仍希望可以連線至 I2P peer,這可能會很有用。</p></body></html> - + Apply rate limit to µTP protocol 套用速率限制到 µTP 協定 - + Privacy 隱私 - + Enable DHT (decentralized network) to find more peers 啟用 DHT (分散式網路) 來尋找更多下載者 - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) 與相容的 Bittorrent 客戶端 (µTorrent、Vuze 等) 交換下載者資訊 - + Enable Peer Exchange (PeX) to find more peers 啟用下載者交換 (PeX) 來尋找更多下載者 - + Look for peers on your local network 在本地網路找尋下載者 - + Enable Local Peer Discovery to find more peers 啟用本地下載者搜尋來尋找更多下載者 - + Encryption mode: 加密模式: - + Require encryption 要求加密 - + Disable encryption 停用加密 - + Enable when using a proxy or a VPN connection 當使用代理伺服器或 VPN 連線時啟用 - + Enable anonymous mode 啟用匿名模式 - + Maximum active downloads: 最大活躍的下載數: - + Maximum active uploads: 最大活躍的上傳數: - + Maximum active torrents: 最大活躍的 torrent 數: - + Do not count slow torrents in these limits 在這些限制中不要計算速率慢的 torrent - + Upload rate threshold: 上傳速率閾值: - + Download rate threshold: 下載速率閾值: - - - - + + + + sec seconds - + Torrent inactivity timer: Torrent 不活躍計時器: - + then 然後 - + Use UPnP / NAT-PMP to forward the port from my router 使用 UPnP/NAT-PMP 轉送路由器連接埠 - + Certificate: 憑證: - + Key: 鍵值: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>關於憑證的資訊</a> - + Change current password 變更目前的密碼 - Use alternative Web UI - 使用替補 Web UI - - - + Files location: 檔案位置: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">替代 WebUI 清單</a> - + Security 安全 - + Enable clickjacking protection 啟用點選劫持保護 - + Enable Cross-Site Request Forgery (CSRF) protection 啟用跨站請求偽造 (CSRF) 保護 - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + 啟用 cookie 安全旗標(需要 HTTPS 或 localhost 連線) - + Enable Host header validation 啟用主機檔頭驗證 - + Add custom HTTP headers 新增自訂 HTTP 標頭 - + Header: value pairs, one per line 標頭:鍵值對,一行一個 - + Enable reverse proxy support 啟用反向代理支援 - + Trusted proxies list: 受信任的代理伺服器清單: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>反向代理設定範例</a> - + Service: 服務: - + Register 註冊 - + Domain name: 網域名稱: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! 啟用這些選項,您可能會<strong>無可挽回地失去</strong>您的 .torrent 檔案! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog 若您啟用第二個選項 (新增時被取消亦同),即使您只是按下「新增 torrent」對話方塊中的「<strong>取消</strong>」按鈕,您的 .torrent 檔案<strong>也會被刪除</strong>。 @@ -7520,12 +7478,12 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 選取 qBittorrent UI 佈景主題檔案 - + Choose Alternative UI files location 選擇替補 UI 檔案位置 - + Supported parameters (case sensitive): 支援的參數 (區分大小寫): @@ -7545,183 +7503,183 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 未偵測到系統匣存在而停用 - + No stop condition is set. 未設定停止條件。 - + Torrent will stop after metadata is received. Torrent 將會在收到詮釋資料後停止。 - + Torrent will stop after files are initially checked. 最初檢查檔案後,torrent 將會停止。 - + This will also download metadata if it wasn't there initially. 如果一開始不存在,這也會下載詮釋資料。 - + %N: Torrent name %N:Torrent 名稱 - + %L: Category %L:分類 - + %F: Content path (same as root path for multifile torrent) %F:內容路徑 (與多重 torrent 的根路徑相同) - + %R: Root path (first torrent subdirectory path) %R:根路徑 (第一個 torrent 的子目錄路徑) - + %D: Save path %D:儲存路徑 - + %C: Number of files %C:檔案數 - + %Z: Torrent size (bytes) %Z:Torrent 大小 (位元組) - + %T: Current tracker %T:目前的追蹤者 - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") 提示:把參數以引號包起來以避免被空格切斷 (例如:"%N") - + Test email - + 測試電子郵件 - + Attempted to send email. Check your inbox to confirm success - + 嘗試發送電子郵件。請檢查您的收件匣以確認是否成功 - + (None) (無) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Torrent 若下載與上傳速率在「Torrent 不活躍計時器」秒數內都低於這些值的話就會被認為是太慢了 - + Certificate 憑證 - + Select certificate 選取憑證 - + Private key 私密金鑰 - + Select private key 選取私密金鑰 - + WebUI configuration failed. Reason: %1 WebUI 設定失敗。理由:%1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + 建議使用 %1 以取得對 Windows 深色模式的最佳相容性 - + System System default Qt style - + 系統 - + Let Qt decide the style for this system - + 讓 Qt 決定此系統的樣式 - + Dark Dark color scheme - + 深色 - + Light Light color scheme - + 淺色 - + System System color scheme - + 系統 - + Select folder to monitor 選擇資料夾以監視 - + Adding entry failed 新增項目失敗 - + The WebUI username must be at least 3 characters long. WebUI 使用者名稱必須至少 3 個字元長。 - + The WebUI password must be at least 6 characters long. WebUI 密碼必須至少 6 個字元長。 - + Location Error 位置錯誤 - - + + Choose export directory 選擇輸出目錄 - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well 當這些選項啟用時,qBittorrent 將會在它們成功(第一個選項)或是未(第二個選項)加入其下載佇列時<strong>刪除</strong> .torrent 檔案。這將<strong>不僅是套用於</strong>透過「新增 torrent」選單動作開啟的檔案,也會套用於透過<strong>檔案類型關聯</strong>開啟的檔案。 @@ -7731,69 +7689,69 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read qBittorrent UI 佈景主題檔案 (*.qbtheme config.json) - + %G: Tags (separated by comma) %G:標籤(以逗號分隔) - + %I: Info hash v1 (or '-' if unavailable) %I:資訊雜湊值 v1(如果不可用則為 '-') - + %J: Info hash v2 (or '-' if unavailable) %J:資訊雜湊值 v2(如果不可用則為 '-') - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K:Torrent ID(v1 的 torrent 即為 sha-1 資訊雜湊值,若為 v2 或是混合的 torrent 即為截斷的 sha-256 資訊雜湊值) - - + + Choose a save directory 選擇儲存的目錄 - + Torrents that have metadata initially will be added as stopped. 一開始就有詮釋資料的 torrent 將被新增為已停止。 - + Choose an IP filter file 選擇一個 IP 過濾器檔案 - + All supported filters 所有支援的過濾器 - + The alternative WebUI files location cannot be blank. 替補的 WebUI 檔案位置不應該為空白。 - + Parsing error 解析錯誤 - + Failed to parse the provided IP filter 所提供的 IP 過濾器解析失敗 - + Successfully refreshed 重新更新成功 - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number 成功分析所提供的 IP 過濾器:套用 %1 個規則。 @@ -7804,18 +7762,18 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read 偏好設定 - + Time Error 時間錯誤 - + The start time and the end time can't be the same. 起始時間與終止時間不應該相同。 - - + + Length Error 長度錯誤 @@ -7900,169 +7858,169 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read Peer is using NAT hole punching - + Peer 正在使用 NAT 打洞 PeerListWidget - + Country/Region 國家/區域 - + IP/Address IP/地址 - + Port - + Flags 旗標 - + Connection 連線 - + Client i.e.: Client application 用戶端 - + Peer ID Client i.e.: Client resolved from Peer ID Peer ID 用戶端 - + Progress i.e: % downloaded 進度 - + Down Speed i.e: Download speed 下載速率 - + Up Speed i.e: Upload speed 上傳速率 - + Downloaded i.e: total data downloaded 已下載 - + Uploaded i.e: total data uploaded 已上傳 - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. 關聯 - + Files i.e. files that are being downloaded right now 檔案 - + Column visibility 欄目顯示 - + Resize columns 調整欄大小 - + Resize all non-hidden columns to the size of their contents 調整所有非隱藏欄與其內容的大小 - + Add peers... 新增下載者... - - + + Adding peers 正在新增 peer - + Some peers cannot be added. Check the Log for details. 有些下載者無法被新增。檢查記錄檔以取得更多資訊。 - + Peers are added to this torrent. 下載者已新增到此 torrent 中。 - - + + Ban peer permanently 永遠封鎖下載者 - + Cannot add peers to a private torrent 無法新增下載者至私有 torrent - + Cannot add peers when the torrent is checking 正在檢查 torrent 時無法新增下載者 - + Cannot add peers when the torrent is queued torrent 排入佇列時無法新增下載者 - + No peer was selected 未選取下載者 - + Are you sure you want to permanently ban the selected peers? 您確定要永遠封鎖選定的下載者嗎? - + Peer "%1" is manually banned Peer「%1」已被手動封鎖 - + N/A N/A - + Copy IP:port 複製 IP:埠 @@ -8343,34 +8301,27 @@ Those plugins were disabled. PowerManagement - qBittorrent is active - qBittorrent 正在運作中 + qBittorrent 正在運作中 PowerManagementInhibitor - Power management found suitable D-Bus interface. Interface: %1 - 電源管理找到了合適的 D-Bus 介面。介面:%1 + 電源管理找到了合適的 D-Bus 介面。介面:%1 - Power management error. Did not found suitable D-Bus interface. - 電源管理錯誤。找不到合適的 D-Bus 介面。 + 電源管理錯誤。找不到合適的 D-Bus 介面。 - - - Power management error. Action: %1. Error: %2 - 電源管理錯誤。動作:%1。錯誤:%2 + 電源管理錯誤。動作:%1。錯誤:%2 - Power management unexpected error. State: %1. Error: %2 - 電源管理非預期的錯誤。狀態:%1。錯誤:%2 + 電源管理非預期的錯誤。狀態:%1。錯誤:%2 @@ -8614,12 +8565,12 @@ Those plugins were disabled. Ratio / Time Active (in months), indicates how popular the torrent is - + 比例 / 活躍時間(以月為單位),表示該 torrent 的受歡迎程度 Popularity: - + 人氣: @@ -8654,7 +8605,7 @@ Those plugins were disabled. Private: - + 私人: @@ -8662,153 +8613,124 @@ Those plugins were disabled. 儲存路徑: - + Never 永不 - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (已完成 %3) - - + + %1 (%2 this session) %1 (今期 %2) - - + + N/A N/A - + Yes - + - + No - + - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (已做種 %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (最大 %2) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (總共 %2 個) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (平均 %2) - + Add web seed Add HTTP source - + 新增 web 種子 - + Add web seed: - + 新增 web 種子: - - + + This web seed is already in the list. - + 這 web 種子已經在清單裡了。. - New Web seed - 新網頁種子 - - - Remove Web seed - 移除網頁種子 - - - Copy Web seed URL - 複製網頁種子 URL - - - Edit Web seed URL - 編輯網頁種子 URL - - - + Filter files... 過濾檔案… - + Add web seed... - + 新增 web 種子…… - + Remove web seed - + 移除 web 種子 - + Copy web seed URL - + 複製 web 種子 URL - + Edit web seed URL... - + 編輯 web 種子 URL…… - + Speed graphs are disabled 已停用速度圖 - + You can enable it in Advanced Options 您可以在進階選項中啟用它 - New URL seed - New HTTP source - 新的 URL 種子 - - - New URL seed: - 新的 URL 種子: - - - This URL seed is already in the list. - 這 URL 種子已經在清單裡了。. - - - + Web seed editing 編輯網頁種子中 - + Web seed URL: 網頁種子 URL: @@ -8816,33 +8738,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. 無效的資料格式。 - + Couldn't save RSS AutoDownloader data in %1. Error: %2 無法在 %1 中儲存 RSS 自動下載器資料。錯誤:%2 - + Invalid data format 無效的資料格式 - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... 已接受 RSS 文章「%1」,根據規則「%2」。正在嘗試新增 torrent…… - + Failed to read RSS AutoDownloader rules. %1 讀取 RSS 自動下載程式規則失敗。%1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 無法載入 RSS 自動下載器規則。原因:%1 @@ -8850,22 +8772,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 無法從「%1」下載 RSS feed。原因:%2 - + RSS feed at '%1' updated. Added %2 new articles. 「%1」的 RSS feed 已更新。新增 %2 個文章。 - + Failed to parse RSS feed at '%1'. Reason: %2 無法從「%1」解析 RSS feed。原因:%2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. 在「%1」的 RSS feed 已成功下載。開始解析它。 @@ -8914,12 +8836,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" 無法儲存 RSS 工作階段設定。檔案:「%1」。錯誤:「%2」 - + Couldn't save RSS session data. File: "%1". Error: "%2" 無法儲存 RSS 工作階段資料。檔案:「%1」。錯誤:「%2」 @@ -8941,76 +8863,121 @@ Those plugins were disabled. - + Item doesn't exist: %1. 項目不存在:%1。 - Couldn't move folder into itself. - 無法將資料夾移動到自己裡面。 + 無法將資料夾移動到自己裡面。 - + + Can't move a folder into itself or its subfolders. + + + + Cannot delete root folder. 無法刪除根資料夾。 - + Failed to read RSS session data. %1 讀取 RSS 工作階段資料失敗。%1 - + Failed to parse RSS session data. File: "%1". Error: "%2" 解析 RSS 工作階段資料失敗。檔案:「%1」。錯誤:「%2」 - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." 載入 RSS 工作階段資料失敗。檔案:「%1」。錯誤:「無效的資料格式。」 - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. 無法載入 RSS feed。Feed:「%1」。原因:URL 為必填。 - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. 無法載入 RSS feed。Feed:「%1」。原因:UID 無效。 - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. 找到重複的 RSS feed。UID:「%1」。錯誤:設定似乎已毀損。 - + Couldn't load RSS item. Item: "%1". Invalid data format. 無法載入 RSS 項目。項目:「%1」。無效的資料格式。 - + Corrupted RSS list, not loading it. 毀損的 RSS 清單,無法載入。 - + Incorrect RSS Item path: %1. 不正確的 RSS 項目路徑:%1。 - + RSS item with given path already exists: %1. 已有這路徑的 RSS 項目:%1。 - + Parent folder doesn't exist: %1. 父資料夾不存在:%1。 + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Feed 不存在:%1。 + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + + + + + sec + + + + + Default + 預設 + + RSSWidget @@ -9110,78 +9077,77 @@ Those plugins were disabled. + Feed options... + + + Edit feed URL... - 編輯 feed URL…… + 編輯 feed URL…… - Edit feed URL - 編輯 feed URL + 編輯 feed URL - + Please choose a folder name 請選擇資料夾名稱 - + Folder name: 資料夾名稱: - + New folder 新資料夾 - - Please type a RSS feed URL - 請輸入一個 RSS feed URL + 請輸入一個 RSS feed URL - - Feed URL: - Feed URL: + Feed URL: - + Deletion confirmation 刪除確認 - + Are you sure you want to delete the selected RSS feeds? 您確定要刪除選取的 RSS feed 嗎? - + Please choose a new name for this RSS feed 請為這個 RSS feed 選擇新名稱 - + New feed name: 新 feed 名稱: - + Rename failed 無法重新命名 - + Date: 日期: - + Feed: Feed: - + Author: 作者: @@ -9318,10 +9284,6 @@ Those plugins were disabled. i.e: Number of partial sources 下載者 - - Search engine - 搜尋引擎 - Filter search results... @@ -9411,17 +9373,17 @@ Those plugins were disabled. Engine - + 引擎 Engine URL - + 引擎 URL Published On - + 發佈於 @@ -9442,104 +9404,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. 未知的搜尋引擎附加元件檔案格式。 - + Plugin already at version %1, which is greater than %2 附加元件已經為版本 %1,大於 %2 - + A more recent version of this plugin is already installed. 已安裝此附加元件的較新版本。 - + Plugin %1 is not supported. 不支援附加元件 %1。 - - + + Plugin is not supported. 不支援的附加元件。 - + Plugin %1 has been successfully updated. 已成功更新附加元件 %1。 - + All categories 所有類別 - + Movies 電影 - + TV shows 電視節目 - + Music 音樂 - + Games 遊戲 - + Anime 動畫 - + Software 軟體 - + Pictures 圖片 - + Books 書籍 - + Update server is temporarily unavailable. %1 更新伺服器暫時不可用。%1 - - + + Failed to download the plugin file. %1 無法下載附加元件更新:「%1」 - + Plugin "%1" is outdated, updating to version %2 附加元件「%1」已過期,正在更新到版本 %2 - + Incorrect update info received for %1 out of %2 plugins. %2 個附加元件中的 %1 個收到不正確的更新資訊。 - + Search plugin '%1' contains invalid version string ('%2') 搜尋附加元件「%1」包含了無效的版本字串(「%2」) @@ -9565,137 +9527,129 @@ Click the "Search plugins..." button at the bottom right of the window 搜尋附加元件… - + A phrase to search for. 搜尋的片語: - + Spaces in a search term may be protected by double quotes. 維持搜尋片語的完整,請使用英語雙引號。 - + Example: Search phrase example 範例: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>會搜尋片語<b>foo bar</b> - + All plugins 所有附加元件 - + Only enabled 僅已啟用 - - + + Invalid data format. - 無效的資料格式。 + 無效的資料格式。 - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>:搜尋 <b>foo</b> 與 <b>bar</b> - + Refresh - + 重新整理 - + Close tab 關閉分頁 - + Close all tabs 關閉所有分頁 - + Select... 選擇… - - + + Search Engine 搜尋引擎 - - + + Please install Python to use the Search Engine. 請安裝 Python 以使用搜尋引擎。 - + Empty search pattern 沒有搜尋模式 - + Please type a search pattern first 請先輸入一個搜尋模式 - + Stop 停止 - - Search has finished - 搜尋完成 - - - Search has failed - 搜尋失敗 - SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + 載入搜尋使用者介面已儲存狀態資料失敗。檔案:「%1」。錯誤:「%2」 - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + 載入已儲存的搜尋結果失敗。分頁:「%1」。檔案:「%2」。錯誤:「%3」 - + Failed to save Search UI state. File: "%1". Error: "%2" - + 儲存搜尋使用者介面狀態失敗。檔案:「%1」。錯誤:「%2」 - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + 儲存搜尋結果失敗。分頁:「%1」。檔案:「%2」。錯誤:「%3」 - + Failed to load Search UI history. File: "%1". Error: "%2" - + 載入搜尋使用者介面歷史紀錄失敗。檔案:「%1」。錯誤:「%2」 - + Failed to save search history. File: "%1". Error: "%2" - + 儲存搜尋歷史紀錄失敗。檔案:「%1」。錯誤:「%2」 @@ -10091,67 +10045,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: 連線狀態: - - + + No direct connections. This may indicate network configuration problems. 沒有直接的連線。這表示您的網路設定可能有問題。 - - - External IP: N/A + + Free space: N/A - - + + + External IP: N/A + 外部 IP:N/A + + + + DHT: %1 nodes DHT:%1 個節點 - + qBittorrent needs to be restarted! qBittorrent 需要重新啟動! - - + + Connection Status: 連線狀態: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. 離線。這通常表示 qBittorrent 監聽進來連線的埠失敗。 - + Online 線上 - - - External IPs: %1, %2 - - - External IP: %1%2 + Free space: - + + External IPs: %1, %2 + 外部 IP:%1, %2 + + + + External IP: %1%2 + 外部 IP:%1%2 + + + Click to switch to alternative speed limits 點選來切換至替補速率限制 - + Click to switch to regular speed limits 點選來切換至一般速率限制 @@ -10179,23 +10143,15 @@ Click the "Search plugins..." button at the bottom right of the window Completed (0) 已完成 (0) - - Resumed (0) - 繼續 (0) - - - Paused (0) - 暫停 (0) - Running (0) - + 正在執行 (0) Stopped (0) - + 已停止 (0) @@ -10260,49 +10216,33 @@ Click the "Search plugins..." button at the bottom right of the window Running (%1) - + 正在執行 (%1) Stopped (%1) - + 已停止 (%1) Start torrents - + 啟動 torrent Stop torrents - - - - Paused (%1) - 暫停 (%1) + 停止 torrent Moving (%1) 移動中 (%1) - - Resume torrents - 復原 torrent - - - Pause torrents - 暫停 torrent - Remove torrents 移除 torrents - - Resumed (%1) - 繼續 (%1) - Active (%1) @@ -10374,32 +10314,20 @@ Click the "Search plugins..." button at the bottom right of the window Remove unused tags 移除未使用的標籤 - - Resume torrents - 繼續 torrent - - - Pause torrents - 暫停 torrent - Remove torrents 移除 torrents - - New Tag - 新標籤 - Start torrents - + 啟動 torrent Stop torrents - + 停止 torrent @@ -10409,7 +10337,7 @@ Click the "Search plugins..." button at the bottom right of the window Add tag - + 新增標籤 @@ -10726,17 +10654,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks 太多活躍的工作 - + Torrent creation is still unfinished. Torrent 建立仍未完成。 - + Torrent creation failed. Torrent 建立失敗。 @@ -10988,17 +10916,6 @@ Please choose a different name and try again. 正在監視資料夾:「%1」 - - TorrentInfo - - Failed to allocate memory when reading file. File: "%1". Error: "%2" - 讀取檔案時分配記憶體失敗。檔案:「%1」。錯誤:「%2」 - - - Invalid metadata - 無效的詮釋資料 - - TorrentOptionsDialog @@ -11034,11 +10951,7 @@ Please choose a different name and try again. Torrent Share Limits - - - - Torrent speed limits - Torrent 速率限制 + Torrent 分享限制 @@ -11054,7 +10967,7 @@ Please choose a different name and try again. Torrent Speed Limits - + Torrent 速率限制 @@ -11072,34 +10985,6 @@ Please choose a different name and try again. Upload: 上傳: - - Torrent share limits - Torrent 分享限制 - - - Use global share limit - 使用全域分享限制 - - - Set no share limit - 設定無分享限制 - - - Set share limit to - 設定分享限制為 - - - ratio - 上傳╱下載比率 - - - total minutes - 總分鐘 - - - inactive minutes - 不活躍分鐘 - Disable DHT for this torrent @@ -11141,14 +11026,6 @@ Please choose a different name and try again. Not applicable to private torrents 不適用於私人 torrent - - No share limit method selected - 未選取分享限制方法 - - - Please select a limit method first - 請先選擇限制方式 - TorrentShareLimitsWidget @@ -11198,27 +11075,27 @@ Please choose a different name and try again. Action when the limit is reached: - + 達到限制時要採取的動作: Stop torrent - + 停止 torrent Remove torrent - 移除 torrent + 移除 torrent Remove torrent and its content - + 移除 torrent 與其內容 Enable super seeding for torrent - 為 torrent 啟用超級做種 + 為 torrent 啟用超級做種 @@ -11233,14 +11110,10 @@ Please choose a different name and try again. Torrent Tags Torrent 標籤 - - New Tag - 新標籤 - Add tag - + 新增標籤 @@ -11271,90 +11144,90 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. 錯誤:「%1」不是有效的 torrent 檔案。 - + Priority must be an integer 優先度必須為整數 - + Priority is not valid 優先度無效 - + Torrent's metadata has not yet downloaded 尚未下載 Torrent 的詮釋資料 - + File IDs must be integers 檔案 ID 必須為整數 - + File ID is not valid 檔案 ID 無效 - - - - + + + + Torrent queueing must be enabled Torrent 佇列必須啟用 - - + + Save path cannot be empty 儲存路徑不應該為空白 - - + + Cannot create target directory 無法建立目標目錄 - - + + Category cannot be empty 分類不應該為空白 - + Unable to create category 無法建立分類 - + Unable to edit category 無法編輯分類 - + Unable to export torrent file. Error: %1 無法匯出 Torrent 檔案。錯誤:%1 - + Cannot make save path 無法建立儲存路徑 "%1" is not a valid URL - + 「%1」並非有效的 URL URL scheme must be one of [%1] - + URL 方案必須為 [%1] 之一 @@ -11362,39 +11235,39 @@ Please choose a different name and try again. 「sort」參數無效 - + "%1" is not an existing URL - + 「%1」不是現有的 URL - + "%1" is not a valid file index. 「%1」不是有效的檔案索引。 - + Index %1 is out of bounds. 索引 %1 超出範圍。 - - + + Cannot write to directory 無法寫入目錄 - + WebUI Set location: moving "%1", from "%2" to "%3" WebUI 設定位置:正在移動「%1」,從「%2」到「%3」 - + Incorrect torrent name 不正確的 torrent 名稱 - - + + Incorrect category name 不正確的分類名稱 @@ -11477,45 +11350,33 @@ Please choose a different name and try again. Invalid state! - + 無效的狀態! URL/Announce Endpoint - + URL/公告端點 BT Protocol - + BT 協定 Next Announce - + 下次公告 Min Announce - - - - Invalid status! - 無效的狀態! - - - URL/Announce endpoint - URL/公告端點 + 最小公告 Tier - - Protocol - 協定 - Status @@ -11546,18 +11407,6 @@ Please choose a different name and try again. Message 訊息 - - Next announce - 下次公告 - - - Min announce - 最小公告 - - - v%1 - v%1 - TrackerListWidget @@ -11567,73 +11416,73 @@ Please choose a different name and try again. 這是私有的 torrent - + Tracker editing 編輯追蹤者 - + Tracker URL: 追蹤者 URL: - - + + Tracker editing failed 編輯追蹤者失敗 - + The tracker URL entered is invalid. 輸入的追蹤者 URL 無效。 - + The tracker URL already exists. 已有這 URL 的追蹤者。 - + Edit tracker URL... 編輯追蹤者 URL… - + Remove tracker 移除追蹤者 - + Copy tracker URL 複製追蹤者 URL - + Force reannounce to selected trackers 強制重新宣告到選取的追蹤器 - + Force reannounce to all trackers 強制重新回報到所有追蹤者 - + Resize columns 調整欄大小 - + Resize all non-hidden columns to the size of their contents 調整所有非隱藏欄與其內容的大小 - + Add trackers... 新增追蹤者…… - + Column visibility 欄目顯示 @@ -11716,20 +11565,12 @@ Please choose a different name and try again. Start torrents - + 啟動 torrent Stop torrents - - - - Resume torrents - 繼續 torrent - - - Pause torrents - 暫停 torrent + 停止 torrent @@ -11853,10 +11694,6 @@ Please choose a different name and try again. Used when loading the torrents from disk after qbt is launched. It checks the correctness of the .fastresume file. Normally it is completed in a fraction of a second, unless loading many many torrents. 正在檢查復原資料 - - Paused - 暫停 - Completed @@ -11897,21 +11734,16 @@ Please choose a different name and try again. % Done 進度 - - Status - Torrent status (e.g. downloading, seeding, paused) - 狀態 - Stopped - + 已停止 Status Torrent status (e.g. downloading, seeding, stopped) - 狀態 + 狀態 @@ -11946,7 +11778,7 @@ Please choose a different name and try again. Popularity - + 人氣 @@ -12027,22 +11859,17 @@ Please choose a different name and try again. Time Active Time (duration) the torrent is active (not stopped) - 經過時間 + 經過時間 Yes - + No - - - - Time Active - Time (duration) the torrent is active (not paused) - 經過時間 + @@ -12114,12 +11941,12 @@ Please choose a different name and try again. Private Flags private torrents - + 私人 Ratio / Time Active (in months), indicates how popular the torrent is - + 比例 / 活躍時間(以月為單位),表示該 torrent 的受歡迎程度 @@ -12144,358 +11971,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility 欄目顯示 - + Recheck confirmation 確認重新檢查 - + Are you sure you want to recheck the selected torrent(s)? 您確定要重新檢查選取的 torrent 嗎? - + Rename 重新命名 - + New name: 新名稱: - + Choose save path 選擇儲存路徑 - Confirm pause - 確認暫停 - - - Would you like to pause all torrents? - 您想要暫停所有 torrents 嗎? - - - Confirm resume - 確認繼續 - - - Would you like to resume all torrents? - 您想要繼續所有 torrents 嗎? - - - + Unable to preview 無法預覽 - + The selected torrent "%1" does not contain previewable files 選定的 torrent「%1」不包含可預覽的檔案 - + Resize columns 調整欄大小 - + Resize all non-hidden columns to the size of their contents 調整所有非隱藏欄與其內容的大小 - + Enable automatic torrent management 啟用自動 torrent 管理 - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. 您確定要為選定的 torrent 啟用自動 Torrent 管理嗎?它們可能會被重新安置。 - Add Tags - 新增標籤 - - - + Choose folder to save exported .torrent files 選擇儲存所匯出 .torrent 檔案的資料夾 - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" 無法匯出 .torrent 檔案。Torrent:「%1」。儲存路徑:「%2」。原因:「%3」 - + A file with the same name already exists 已存在同名檔案 - + Export .torrent file error 匯出 .torrent 檔案錯誤 - + Remove All Tags 移除所有標籤 - + Remove all tags from selected torrents? 從選取的 torrent 中移除所有標籤? - + Comma-separated tags: 逗號分隔標籤: - + Invalid tag 無效的標籤 - + Tag name: '%1' is invalid 標籤名稱:「%1」無效 - &Resume - Resume/start the torrent - 繼續(&R) - - - &Pause - Pause the torrent - 暫停(&P) - - - Force Resu&me - Force Resume/start the torrent - 強制繼續(&M) - - - + Pre&view file... 預覽檔案(&V)... - + Torrent &options... Torrent 選項(&O)... - + Open destination &folder 開啟目標資料夾 (&F) - + Move &up i.e. move up in the queue 上移(&U) - + Move &down i.e. Move down in the queue 下移(&D) - + Move to &top i.e. Move to top of the queue 移至頂端(&T) - + Move to &bottom i.e. Move to bottom of the queue 移至底部(&B) - + Set loc&ation... 設定位置(&A)... - + Force rec&heck 強制重新檢查(&H) - + Force r&eannounce 強制重新回報(&E) - + &Magnet link 磁力連結(&M) - + Torrent &ID Torrent ID(&I) - + &Comment 註解(&C) - + &Name 名稱(&N) - + Info &hash v1 資訊雜湊值 v1(&H) - + Info h&ash v2 資訊雜湊值 v2(&A) - + Re&name... 重新命名(&N)... - + Edit trac&kers... 編輯 tracker(&K)... - + E&xport .torrent... 匯出 .torrent(&X)... - + Categor&y 類別(&Y) - + &New... New category... 新增(&N)... - + &Reset Reset category 重設(&R) - + Ta&gs 標籤(&G) - + &Add... Add / assign multiple tags... 加入(&A)... - + &Remove All Remove all tags 全部移除(&R) - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + 如果 torrent 處於「停止」、「排隊」、「錯誤」或「檢查」狀態,則無法強制重新公告 - + &Queue 佇列(&Q) - + &Copy 複製(&C) - + Exported torrent is not necessarily the same as the imported 匯出的 torrent 不一定與匯入的相同 - + Download in sequential order 依順序下載 - + Add tags - + 新增標籤 - + Errors occurred when exporting .torrent files. Check execution log for details. 匯出 .torrent 檔案時發生錯誤。請檢視執行紀錄檔以取得更多資訊。 - + &Start Resume/start the torrent - + 啟動(&S) - + Sto&p Stop the torrent - + 停止(&P) - + Force Star&t Force Resume/start the torrent - + 強制啟動(&T) - + &Remove Remove the torrent 移除(&R) - + Download first and last pieces first 先下載第一和最後一塊 - + Automatic Torrent Management 自動 torrent 管理 - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category 自動模式代表了多個 torrent 屬性(例如儲存路徑)將會由相關的分類來決定 - Can not force reannounce if torrent is Paused/Queued/Errored/Checking - 若 torrent 暫停/排入佇列/錯誤/檢查,則無法強制重新公告 - - - + Super seeding mode 超級種子模式 @@ -12571,7 +12359,7 @@ Please choose a different name and try again. Set app style failed. Unknown style: "%1" - + 設定應用程式樣式失敗。未知樣式:「%1」 @@ -12627,32 +12415,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" 找到 Python 可執行檔。名稱:「%1」。版本:「%2」 - + Failed to find Python executable. Path: "%1". 找不到 Python 可執行檔。路徑:「%1」。 - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" 未在 PATH 環境變數下找到 `python3` 可執行檔。PATH:「%1」 - + Failed to find `python` executable in PATH environment variable. PATH: "%1" 未在 PATH 環境變數下找到 `python` 可執行檔。PATH:「%1」 - + Failed to find `python` executable in Windows Registry. 未在 Windows 登錄檔中發現 `python` 可執行檔。 - + Failed to find Python executable 找不到 Python 可執行檔 @@ -12744,52 +12532,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. 指定了不可接受的工作階段 cookie 名稱:「%1」。將會使用預設值。 - + Unacceptable file type, only regular file is allowed. 無法接受的檔案類型,僅允許一般檔案。 - + Symlinks inside alternative UI folder are forbidden. 在替補 UI 資料夾中的符號連結是被禁止的。 - + Using built-in WebUI. 使用內建的 WebUI。 - + Using custom WebUI. Location: "%1". 使用自訂的 WebUI。位置:「%1」。 - + WebUI translation for selected locale (%1) has been successfully loaded. 成功載入了選定區域設定 (%1) 的 WebUI 翻譯。 - + Couldn't load WebUI translation for selected locale (%1). 無法載入指定語系 (%1) 的 WebUI 翻譯。 - + Missing ':' separator in WebUI custom HTTP header: "%1" WebUI 的自訂 HTTP 標頭遺失 ':' 分隔符號:「%1」 - + Web server error. %1 網路伺服器錯誤。%1 - + Web server error. Unknown error. 網路伺服器錯誤。未知錯誤。 @@ -12847,7 +12635,7 @@ Please choose a different name and try again. Unknown error - 未知的錯誤 + 未知的錯誤 diff --git a/src/webui/www/translations/webui_ar.ts b/src/webui/www/translations/webui_ar.ts index 5b888617f..e1ad51dee 100644 --- a/src/webui/www/translations/webui_ar.ts +++ b/src/webui/www/translations/webui_ar.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + رابط واحد لكل سطر (روابط HTTP ، والروابط الممغنطة ومعلومات التجزئة مدعومة) Add torrent links - + إضافة روابط تورنت Select .torrent files @@ -84,7 +84,7 @@ Torrent options - + خيارات التورنت @@ -112,14 +112,6 @@ Remove unused categories إزالة التصنيفات غير المُستخدمة - - Resume torrents - استئناف التورنتات - - - Pause torrents - إلباث التورنتات - New Category تصنيف جديد @@ -151,10 +143,6 @@ Exit qBittorrent إغلاق كيوبت‎تورنت - - Only one link per line - رابط واحد لكل سطر - Global upload rate limit must be greater than 0 or disabled. مُعدل حد الرفع العام يجب أن يكون أكبر من 0 أو معطل. @@ -228,10 +216,6 @@ Save files to location: حفظ الملفات إلى المجلد: - - Cookie: - ملف تعريف الارتباط: - More information معلومات أكثر @@ -295,10 +279,6 @@ Logout خروج - - Download Torrents from their URLs or Magnet links - تنزيل التورنتات من روابطها أو من الروابط المغناطيسية - Upload local torrent رفع تورنت محلي @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. اسم التصنيف غير صالح:\nالرجاء عدم استخدام أي أحرف خاصة في اسم التصنيف. - - Unable to create category - تعذّر إنشاء التصنيف - Upload rate threshold must be greater than 0. يجب أن يكون حد معدل الرفع أكبر من 0. @@ -383,10 +359,6 @@ Original author المؤلف الأصلي - - Are you sure you want to remove the selected torrents from the transfer list? - هل أنت متأكد من رغبتك بإزالة ملفات التورنت المحدَّدة من قائمة النقل؟ - The port used for the WebUI must be between 1 and 65535. @@ -413,11 +385,11 @@ Remember choice - + تذكر الاختيار Are you sure you want to remove these %1 torrents from the transfer list? - + هل أنت متأكد من رغبتك في إزالة ملفات التورنت %1 هذه من قائمة النقل؟ Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + الرابط External IP: %1%2 @@ -498,10 +470,6 @@ Options... خيارات... - - Resume - استئناف - Top Toolbar شريط الأدوات العلوي @@ -518,10 +486,6 @@ Donate! تبرع! - - Resume All - استئناف الكل - Statistics الإحصاءات @@ -530,14 +494,6 @@ About عن - - Pause - إلباث - - - Pause All - إلباث الكل - Add Torrent File... إضافة ملف تورنت... @@ -678,14 +634,6 @@ Remove إزالة - - Would you like to resume all torrents? - هل ترغب في استئناف جميع ملفات التورنت؟ - - - Would you like to pause all torrents? - هل ترغب في إيقاف جميع ملفات التورنت مؤقتًا؟ - Execution Log السجل @@ -700,15 +648,15 @@ Filter by: - + صنف بواسطة: Save Path - + حفظ المسار Stop - + أوقف Use regular expression @@ -724,7 +672,7 @@ Manage Cookies... - + إدارة الكعكات... Unable to export torrent file @@ -732,7 +680,7 @@ Name - + الاسم Would you like to stop all torrents? @@ -746,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language اللغة - - User Interface Language: - لغة واجهة المستخدم: - Email notification upon download completion إرسال تنبيه عبر البريد الإلكتروني عند اكتمال التنزيل @@ -793,10 +741,6 @@ Torrent Queueing انتظار التورنت - - Automatically add these trackers to new downloads: - إضافة هذه المتتبعات تلقائيًا إلى التنزيلات الجديدة: - Web User Interface (Remote control) واجهة مستخدم الويب (التحكم عن بُعد) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - معلومة: كلمة السر يتم حفظها بشكل غير مشفّر + معلومة: كلمة السر يتم حفظها بشكل غير مشفّر μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload أسرع رفع - - Pause torrent - إلباث التورنت - Remove torrent and its files إزالة التورنت وملفاته @@ -1337,7 +1277,7 @@ s - ث + ث Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: حظر العميل بعد إخفاقات متتالية: - - Enable cookie Secure flag (requires HTTPS) - تمكين علامة تأمين ملفات تعريف الارتباط (يتطلب HTTPS) - Header: value pairs, one per line الرأس: أهمية مزدوجة، واحد لكل سطر @@ -1945,7 +1881,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + التأكيد عند حذف التورنتات Ignore SSL errors: @@ -1957,15 +1893,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Delete files permanently - + حذف الملفات نهائيا Auto - + تلقائي Use alternating row colors - + استخدام ألوان متضادة للأسطر Display full announce URL in the Tracker column @@ -1973,7 +1909,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + الرابط: Transfer list @@ -1993,7 +1929,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + أثناء تنزيل التورنتات: Start / stop torrent @@ -2005,7 +1941,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + التورنتات المكتملة: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2013,11 +1949,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. When duplicate torrent is being added - + عندما يتم إضافة تورنت مكررة Action on double-click - + الإجراء عند النقر المزدوج Save statistics interval: @@ -2025,7 +1961,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + عرض مربع حوار لتأكيد حذف التورنت Run on torrent finished: @@ -2045,7 +1981,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Move files to trash (if possible) - + نقل الملفات إلى سلة المهملات (إذا كان ذلك ممكنا) Stop torrent @@ -2053,7 +1989,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Use Category paths in Manual Mode - + استخدم مسارات الفئات في الوضع اليدوي List of alternative WebUI @@ -2073,7 +2009,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Merge trackers to existing torrent - + دمج المتتبعات في التورنت الموجودة Confirm torrent recheck: @@ -2089,28 +2025,44 @@ Use ';' to split multiple entries. Can use wildcard '*'. Simple pread/pwrite - + pread/pwrite بسيطة Resolve relative Save Path against appropriate Category path instead of Default one - + حل مسار الحفظ النسبي مقابل مسار الفئة المناسب بدلاً من المسار الافتراضي No action - + دون إجراء Auto hide zero status filters - + إخفاء مرشحات الحالة الصفرية تلقائيًا Interface - + الواجهة Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2489,11 +2441,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + رابط القرين عبر الويب: Yes - + نعم Ratio / Time Active (in months), indicates how popular the torrent is @@ -2509,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + لا Remove web seed @@ -2517,7 +2469,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + تعديل القرين عبر الويب Add web seeds... @@ -2655,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) مُكتمل (0) - - Resumed (0) - مُستأنف (0) - - - Paused (0) - مُلبث (0) - Active (0) نشط (0) @@ -2691,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) مكتمل (%1) - - Paused (%1) - مُلبث (%1) - - - Resumed (%1) - مُستأنف (%1) - Active (%1) نشط (%1) @@ -2769,7 +2705,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + إزالة التورنت Start torrents @@ -2795,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size الحجم - - Done - % Done - اكتمل - Status Torrent status (e.g. downloading, seeding, paused) @@ -2941,19 +2872,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + التقدّم Info Hash v2 - + تجزئة المعلومات v2 Info Hash v1 - + تجزئة المعلومات v1 Incomplete Save Path - + مسار الحفظ غير مكتمل Popularity @@ -3097,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago قبل %1 - - Paused - مُلبث - Completed مكتمل @@ -3167,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + متوقف N/A - + لا يوجد @@ -3215,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename تغيير التسمية - - Resume - Resume/start the torrent - استئناف - - - Force Resume - Force Resume/start the torrent - إجبار الاستئناف - - - Pause - Pause the torrent - إلباث - Limit share ratio... حد نسبة المشاركة... @@ -3308,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category تصنيف جديد - - Location - المكان - - - New name - اسم جديد - Set location تحديد المكان @@ -3328,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category تعديل التصنيف - - Save path - مسار الحفظ - Comma-separated tags: وسوم مفصولة بفواصل: - - Add Tags - إضافة وسوم - Tags الوسوم @@ -3406,7 +3302,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + مسار الحفظ: Location: @@ -3414,11 +3310,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + أوقف Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + الوضع التلقائي يعني أن العديد من خصائص التورنت (مسار الحفظ مثلاً) سيتم تحديده عن طريق التصنيف المرتبط به Start @@ -3426,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + الاسم الجديد: Add tags @@ -3434,7 +3330,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + الفئة: @@ -3473,10 +3369,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - أيضًا احذف الملفات نهائيًا - Remove torrent(s) إزالة التورنت (الملفات) @@ -3487,7 +3379,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + إزالة المتتبع @@ -3763,10 +3655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers المحمِّلون - - Search engine - محرّك البحث - Seeders الباذرون @@ -3848,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: الوسم: - - Pause torrents - إلباث التورنتات - - - Resume torrents - استئناف التورنتات - Remove unused tags إزالة الوسوم غير المستخدمة @@ -4022,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + انتهى البحث An error occurred during search... - + حدث خطأ أثناء البحث... Close tab - + إغلاق علامة التبويب Searching... - + يبحث... Search aborted - + تم إلغاء البحث Close all tabs - + أغلق كل علامات التبويب @@ -4156,7 +4036,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + تحرير رابط الموجز... Unable to update URL @@ -4170,6 +4050,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4357,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. إذا كان ترتيب الكلمات مهمًا ، استخدم * بدلاً من المسافات البيضاء. - - Add Paused: - إضافة المُلبث: - Please type the name of the new download rule. الرجاء كتابة اسم قاعدة التنزيل الجديدة. @@ -4434,33 +4318,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - استئناف التورنتات - - - All (%1) - الكل (%1) - - - Trackerless (%1) - بدون متتبعات (%1) - - - Pause torrents - إلباث التورنتات - Remove torrents إزالة التورنت All - + الكل Trackerless - + بدون تتبع Start torrents @@ -4468,7 +4336,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + إزالة المتتبع Stop torrents @@ -4632,15 +4500,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + تعذّر تعديل الفئة OK - + حسنًا Unable to create category - + تعذّر إنشاء الفئة Unable to set category @@ -4651,11 +4519,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + النطاق Manage Cookies - + إدارة الكعكات Add Cookie @@ -4663,52 +4531,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + إزالة Expiration Date - + تاريخ الانتهاء Value - + القيمة Name - + الاسم Path - + المسار confirmAutoTMMDialog Enable automatic torrent management - + تفعيل الإدارة التلقائية للتورنت Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + هل أنت متأكد من أنك تريد تفعيل الإدارة التلقائية للتورنت المحدد؟ قد يتم نقلهم. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + هل أنت متأكد من رغبتك في اعادة التأكد من الملفات المختارة؟ Recheck confirmation - + اعادة التأكد SearchWidget Close tab - + إغلاق علامة التبويب @@ -4719,7 +4587,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + كلمة السر JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4727,7 +4595,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + ولوج Server response: @@ -4739,10 +4607,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + اسم المستخدم Invalid Username or Password. + اسم المستخدم أو كلمة السر غير صالحة. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_az@latin.ts b/src/webui/www/translations/webui_az@latin.ts index a316f3a64..97ed5061c 100644 --- a/src/webui/www/translations/webui_az@latin.ts +++ b/src/webui/www/translations/webui_az@latin.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Hər sətirə bir keçid (HTTP keçidləri, maqnit keçidləri və İnfo-heş'lər dəstəklənir) Add torrent links - + Toorent keçidləri əlavə etmək Select .torrent files - + .torrent fayllarını seçmək Torrent options - + Torrent seçimləri @@ -112,14 +112,6 @@ Remove unused categories İstifadə olunmayan kateqoriyanı silmək - - Resume torrents - Torrentləri davam etdirmək - - - Pause torrents - Torrentlərə fasilə - New Category Yeni kateqriya @@ -138,11 +130,11 @@ Start torrents - + Torrentləri başlatmaq Stop torrents - + Torrentləri dayandırmaq @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent'dən çıxmaq - - Only one link per line - Hər sətirə yalnız bir link - Global upload rate limit must be greater than 0 or disabled. Ümumu göndərmə nisbəti limiti 0-dan böyük olmalı və ya söndürülməlidir. @@ -228,10 +216,6 @@ Save files to location: Faylları burada saxlamaq: - - Cookie: - Kukilər: - More information Daha çox məlumat @@ -295,10 +279,6 @@ Logout Çıxış - - Download Torrents from their URLs or Magnet links - URL ünvanlarından və ya Maqnit keçidlərindən torrentləri endirmək - Upload local torrent Yerli torrenti göndərmək @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Səhv kateqoriya adı:\nLütfən, kateqriya adında xüsusi simvoldan istifadə etməyin. - - Unable to create category - Kateqoriya yaradıla bilmədi - Upload rate threshold must be greater than 0. Göndərmə sürəti həddi 0-dan böyük olmalıdır. @@ -383,10 +359,6 @@ Original author Orijinal müəllifi - - Are you sure you want to remove the selected torrents from the transfer list? - Köçürmə siyahısından seçilmiş torrentləri silmək istədiyinizə əminsiniz? - The port used for the WebUI must be between 1 and 65535. Veb istifadəçi interfeyinin istifadə etdiyi port 1 ilə 65535 arasında olmalıdır. @@ -401,75 +373,75 @@ External IP: N/A - + Xarici İP: Ə/D Reverse proxy setup examples - + Əks proksi ayarları nümunələri Could not contact qBittorrent - + qBitorent ilə əlaqə mümkün olmadı Remember choice - + Seçimi yadda saxlamaq Are you sure you want to remove these %1 torrents from the transfer list? - + %1 torrentlərini köçürmə siyasından silmək istədiyinizə əminsiniz? Unable to delete torrents. - + Torrentləri silmək baş tutmadı. URL - + URL External IP: %1%2 - + Xarici İP: %1%2 Edit web seed - + Veb iştirakçılara düzəliş etmək Are you sure you want to remove %1 from the transfer list? - + Köçürmə siyahısından %1 silmık istədiyinizə əminsiniz? Unable to set Auto Torrent Management for the selected torrents. - + Seçilmiş torrentlər üçün avtomatik torrent idarəetmısini təyin etmək baş tutmadı. Unable to stop torrents. - + Torrentləri dayandırmaq mümkün olmadı. Unable to download file - + Faylı endirmək mümkün olmadı External IPs: %1, %2 - + Xarici İP-lər: %1, %2 Unable to recheck torrents. - + Torrentləri yenidən yoxlamaq mümkün olmadı. List of web seeds to add (one per line): - + Əlavə ediləcək veb iştirakçıların siyahısı (hər sətirdə biri): Unable to start torrents. - + Torrentləri başlatmaq mümkün olmadı. Add web seeds - + Veb iştirakçı əlavə etmək @@ -498,10 +470,6 @@ Options... Seçimlər... - - Resume - Davam etdirmək - Top Toolbar Üst alətlər paneli @@ -518,10 +486,6 @@ Donate! İanə etmək! - - Resume All - Hamısına davam - Statistics Statistikalar @@ -530,14 +494,6 @@ About Haqqında - - Pause - Fasilə - - - Pause All - Hamısına fasilə - Add Torrent File... Torrent faylı əlavə edin... @@ -678,14 +634,6 @@ Remove Silin - - Would you like to resume all torrents? - Bütün torrentlər davam etdirilsin? - - - Would you like to pause all torrents? - Bütün torrenlərə fasilə verilsin? - Execution Log İcra jurnalı @@ -700,50 +648,54 @@ Filter by: - + Buna görə süzgəclə: Save Path - + Yolu saxla Stop - + Dayandırmaq Use regular expression - + Müntəzəm ifadələrdən istifadə etmək Would you like to start all torrents? - + Torrenləri başlatmaq istərdinizmi? Start - + Başlatmaq Manage Cookies... - + Kikilər Meneceri... Unable to export torrent file - + Torrent faylları ixrac etmk mümkün deyil Name - + Adı Would you like to stop all torrents? - + Bütün torrentləri dayandırmaq istərdiniz? Start All - + Hamısını başlatmaq Stop All + Hamısını dayandırmaq + + + Torrent Creator @@ -773,10 +725,6 @@ Language Dil: - - User Interface Language: - İstifadəçi İnterfeysi Dili: - Email notification upon download completion Endirilmə başa çatdıqdan sonra e-poçt bildirişi @@ -793,10 +741,6 @@ Torrent Queueing Torrent növbələnməsi - - Automatically add these trackers to new downloads: - Bu izləyiciləri avtomatik yeni yükləmələrə əlavə edin: - Web User Interface (Remote control) Veb İstifadəçi İnterfeysi (Uzaqdan idarəetmə) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - İnfo: Parol, şifrələnməmiş şəkildə saxlanıldı + İnfo: Parol, şifrələnməmiş şəkildə saxlanıldı μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Ən sürətli yükləmə - - Pause torrent - Torrentə fasilə - Remove torrent and its files Torrenti və fayllarını silmək @@ -1337,7 +1277,7 @@ s - san + san Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Belə ardıcıl xətalardan sonra müştərini bloklamaq: - - Enable cookie Secure flag (requires HTTPS) - Kukilərin təhlükəsizliyini aktiv etmək (HTTPS tələb olunur) - Header: value pairs, one per line Başlıq: hər sətir başına bir dəyər cütləri @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Beynəlxalq domen adı (İDN) dəstəyi: - - Run external program on torrent finished - Torrent tamamlandıqda xarici proqramı açmaq - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Çoxsaylı elementləri bölmək üçün ';' istifadə edin. '*' ümumi nişanından istifadə edə bilərsiniz - - Run external program on torrent added - Torrent əlavə edildikdə xarici proqramı açmaq - HTTPS certificate should not be empty HTTPS sertifikat boş olmamalıdır @@ -1727,10 +1655,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. days gün - - Log file - Jurnal faylı - Behavior Davranış @@ -1945,182 +1869,198 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Color scheme: - + Rəng sxemi: Show external IP in status bar - + Xarici İP-ni vəziyyət çubuğunda göstərmək Fetched trackers - + İzləyicilər alındı Confirm when deleting torrents - + Torrentlərin silinməsinin təsdiq edilməsi Ignore SSL errors: - + SSL xətalarını gözardı etmək: Dark - + Qaranlıq Delete files permanently - + Faylları həmişəlik silmək Auto - + Avtomatik Use alternating row colors - + Alternativ sıra rənglərindən istifadə edin Display full announce URL in the Tracker column - + İzləyicilər siyahısında tam anons ünvanlarını göstərmək URL: - + URL: Transfer list - + Köçürmə siyahısı The announce port must be between 0 and 65535. - + Köçürmə portu 0 ilə 65535 arasında olmalıdır. Light - + İşıqlı Automatically append these trackers to new downloads: - + Bu izləyiciləri yeni endirmələrə a&vtomatik əlavə etmək: Downloading torrents: - + Torrentlər yüklənir: Start / stop torrent - + Torrenti başlatmaq / dayandırmaq Send test email - + Yoxlamaq üçün e-poçt göndərmək Completed torrents: - + Tamamlanmış torrentlər Enable cookie Secure flag (requires HTTPS or localhost connection) - + Kuk təhlükəsizliyi bayrağını aktiv etmək (HTTPS və ya yerli host bağlantısı tələb olunur) When duplicate torrent is being added - + Torrentin təkrar nüsxəsi əlavə olunduqda Action on double-click - + İki dəfə klik əməli Save statistics interval: - + Statistika aralığını saxlamaq: Shows a confirmation dialog upon torrent deletion - + Torrentin silinməsinin təsdiq edilməsi dialoqunu göstərir Run on torrent finished: - + Torrent tmamlandıqda başlatmaq: Attempted to send email. Check your inbox to confirm success - + E-poçt göndərməyə cəhd edildi. Uğurlu olduğunu təsdiqləmək üçün poçtunuzu yoxlayın. Automatically append trackers from URL to new downloads: - + URL-dakı izləyiciləri avtomatik yeni endirmələrə əlavə etmək: Torrent content removing mode: - + Torrent tərkiblırinin silinməsi rejimi: Move files to trash (if possible) - + Faylları səbətə atmaq (mümkün olduqda) Stop torrent - + Torrenti dayandırmaq Use Category paths in Manual Mode - + Kateqoriya yollarını Əl ilə Rejimində istifadə edin List of alternative WebUI - + Alternativ Veb İİ siyahısı Run on torrent added: - + Torrent əlavə edildikdə başlatmaq: Port reported to trackers (requires restart) [0: listening port]: - + Port izləyicilərə məlumat verdi (yenidən başladaılmalı) [0: dinləmə portu] User interface language: - + İstifadəçi interfeysi dili: Merge trackers to existing torrent - + İzləyiciləri mövcud torrentdə birləşdirin Confirm torrent recheck: - + Torrentin yenidən yoxlanılmasını təsdiqləmək: Custom WebUI settings - + Veb İİ ayarlarını dəyişdirmək Following settings are WebUI only - + Yalnız Veb İİ ayarlarını izləmək Simple pread/pwrite - + Sadə oxuma/yazma Resolve relative Save Path against appropriate Category path instead of Default one - + Nisbi saxlama yolunu, standarta yola görə deyil, uyğun kateqriya yoluna görə təyin edin No action - + Əməl yoxdur Auto hide zero status filters - + Sıfır süzgəc nəticələrini avtomatik gizlətmək Interface - + İnterfeys Log Files + Jurnal faylları + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Copy web seed URL - + Veb iştirakçı ünvanını kopyalamaq Replace option - + Seçimi əvəzləmək Edit web seed URL... - + Veb iştirakçı ünvanına düzəliş etmək... Web seed URL: - + Veb göndərim URL-u: Yes - + Bəli Ratio / Time Active (in months), indicates how popular the torrent is - + Nisbət / vaxt aktivliyi (aylar ərzində) torrentlərin nə qədər populyar olduğunu göstərir Popularity: - + Populyarlıq: Apply to which filename part - + Tətbiq edilcək fayl adı hissəsi No - + Xeyr Remove web seed - + Veb iştirakçını silmək Web seed editing - + Veb göndəriminə düzəliş edilir Add web seeds... - + Veb iştirakçılar əlavə etmək... Private: - + Gizli: @@ -2667,14 +2607,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Completed (0) Tamamlanan (0) - - Resumed (0) - Davam etdirilən (0) - - - Paused (0) - Fasilədə (0) - Active (0) Aktiv (0) @@ -2703,14 +2635,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Completed (%1) Başa çatdı (%1) - - Paused (%1) - Fasilədə (%1) - - - Resumed (%1) - Davam etdirilən (%1) - Active (%1) Aktiv (%1) @@ -2765,31 +2689,31 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Running (0) - + Başladılır (0) Stopped (0) - + Dyandırıldı (0) Stopped (%1) - + Dayandırıldı (%1) Running (%1) - + Başlayır (%1) Remove torrents - + Torrentləri silin Start torrents - + Torrentləri başlatmaq Stop torrents - + Torrentləri dayandırmaq @@ -2807,11 +2731,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. i.e: torrent size Ölçü - - Done - % Done - İcra olundu - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Private - + Məxfi Progress - + Gedişat Info Hash v2 - + Məlumat heş-i v2 Info Hash v1 - + Məlumat heş-i v1 Incomplete Save Path - + Tamamlanmayanların saxlama yolu Popularity - + Populyarlıq Status Icon - + Vəziyyət nişanı @@ -3109,10 +3028,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. e.g.: 1h 20m ago %1 əvvəl - - Paused - Fasilədə - Completed Başa çatdı @@ -3179,11 +3094,11 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Stopped - + Dayandırılıb N/A - + Ə/D @@ -3210,7 +3125,7 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Collapse/expand category - + Kateqoriyanı açmaq/yığmaq @@ -3227,21 +3142,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Rename Adını dəyişmək - - Resume - Resume/start the torrent - Davam etdirmək - - - Force Resume - Force Resume/start the torrent - Məcburi davam etdirmək - - - Pause - Pause the torrent - Fasilə - Limit share ratio... Paylaşım nisbəti həddi... @@ -3320,14 +3220,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. New Category Yeni kateqriya - - Location - Məkan - - - New name - Yeni ad - Set location Yer təyin etmək @@ -3340,18 +3232,10 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Edit Category Kateqoriyaya düzəliş etmək - - Save path - Saxlama yolu - Comma-separated tags: Vergüllə ayrılan etiketlər: - - Add Tags - Etiketlər əlavə etmək - Tags Etiketlər @@ -3414,39 +3298,39 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Force Start - + Məcburi başlatmaq Save path: - + Saxlama yolu: Location: - + Məkan: Stop - + Dayandırmaq Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Özü-özünə rejim, kateqoriyalarından asılı olaraq torrent ayarlarını seçir (məs., saxlama yolu) Start - + Başlatmaq New name: - + Yeni ad: Add tags - + Etiket əlavə etmək Category: - + Kateqoriya: @@ -3485,21 +3369,17 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. confirmDeletionDlg - - Also permanently delete the files - Həmçinin bu faylı birdəfəlik silin - Remove torrent(s) Torrent(lər)i silin Also remove the content files - + Həmçinin məzmun fayllarını silmək Remove tracker - + İzləyicini silmək @@ -3703,23 +3583,23 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Select category - + Kateqoriyanı seçmək Min size prefix - + Ən az prefiks sayı Start a search above. - + Yuxarıda axtarış edin Max size prefix - + Ən çox prefiks ölçüsü Select plugins - + Plaqinləri seçmək @@ -3775,25 +3655,21 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Leechers İstismar edənlər - - Search engine - Axtarış vasitəsi - Seeders Göndəricilər Published On - + Yayımlandığı yer Engine URL - + Mühərrikin ünvanı Engine - + Mühərrik @@ -3860,14 +3736,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Tag: Etiket: - - Pause torrents - Torrentlərə fasilə - - - Resume torrents - Torrentləri davam etdirmək - Remove unused tags İstifadəsiz etiketləri silmək @@ -3886,11 +3754,11 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Start torrents - + Torrentləri başlatmaq Stop torrents - + Torrentləri dayandırmaq @@ -4034,27 +3902,27 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Search has finished - + Axtarış sona çatdı An error occurred during search... - + Axtarış zamanı xəta baş verdi... Close tab - + Vərəqi bağlayın Searching... - + Axtarılır... Search aborted - + Axtarış ləğv edildi Close all tabs - + Bütün vərəqləri bağlayın @@ -4168,18 +4036,26 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Edit feed URL... - + Xəbər lenti ünvanına düzəliş et... Unable to update URL - + URL-u yeniləmək mümkün deyil URL is unchanged - + URL dəyişdirilməyib URL cannot be empty + URL boş ola bilməz + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. If word order is important use * instead of whitespace. Əgər sözlərin sıralanmasının istifadəsi vacibdirsə boşluq əvəzinə «*» istifadə edin. - - Add Paused: - Fasilədə, kimi əlavə edin: - Please type the name of the new download rule. Lütfən, yeni endirmə qaydasının adını yazın. @@ -4433,58 +4305,42 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Remove rule - + Qaydanı silmək Add rule - + Qayda əlavə etmək Add Stopped: - + Dayandırılmış kimi əlavə etmək: TrackerFiltersList - - Resume torrents - Torrentləri davam etdirmək - - - All (%1) - Hamısı (%1) - - - Trackerless (%1) - İzləyicilərsiz (%1) - - - Pause torrents - Torrentlərə fasilə - Remove torrents Torrentləri silin All - + Hamısı Trackerless - + İzləyicilərsiz Start torrents - + Torrentləri başlatmaq Remove tracker - + İzləyicini silmək Stop torrents - + Torrentləri dayandırmaq @@ -4637,124 +4493,316 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + %1 izləyicisini bütün torrentlərdən silmək istədiyinizə əminsiniz? Category Unable to edit category - + Kateqoriyaya düzəliş etmək mümkün olmadı OK - + OK Unable to create category - + Kateqoriya yaratmaq mümkün olmadı Unable to set category - + Kateqoriya təyin etmək ümükün olmadı CookiesDialog Domain - + Domen Manage Cookies - + Kukilər Meneceri Add Cookie - + Kuki əlavə etmək Remove - + Silin Expiration Date - + Son istifadə tarixi Value - + Dəyər Name - + Adı Path - + Yol confirmAutoTMMDialog Enable automatic torrent management - + Avtomatik Torrent İdarəetməsini aktiv edin Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Seçilmiş torrent(lər) üçün avtomatik torrent idarəetməsini aktiv etmək istədiyinizə əminsiniz? Torrentlər başqa yerə köçürülə bilər. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Seçilmiş torrent(lər)i yenidən yoxlamaq istədiyinizə əminsiniz? Recheck confirmation - + Yenidən yoxlamanı təsdiq etmək SearchWidget Close tab - + Vərəqi bağlayın Login qBittorrent WebUI - + qBittorrent İİ Password - + Şifrə JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript tələb olunur! Düzgün şəkildə işləməsi üçün Veb istifadəçi interfeysi üçün JavaScript'i aktiv etməlisiniz Login - + Giriş Server response: - + Serverin cavabı: Unable to log in, server is probably unreachable. - + Daxil olmaq mümükn olmadı, ola bilsin server əlçatmazdır. Username - + İstifadəçi adı Invalid Username or Password. + İstifadəçi adı və Şifrə səhvdir. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_be.ts b/src/webui/www/translations/webui_be.ts index 26a82ab79..bbc75e009 100644 --- a/src/webui/www/translations/webui_be.ts +++ b/src/webui/www/translations/webui_be.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Адна на радок (HTTP-спасылкі, Magnet-спасылкі і хэш-сумы) Add torrent links - + Дадаць спасылкі на торэнты Select .torrent files - + Выбраць файлы .torrent Torrent options - + Параметры торэнта @@ -112,14 +112,6 @@ Remove unused categories Выдаліць нявыкарыстаныя катэгорыі - - Resume torrents - Узнавіць торэнты - - - Pause torrents - Спыніць торэнты - New Category Новая катэгорыя @@ -138,11 +130,11 @@ Start torrents - + Запусціць торэнты Stop torrents - + Спыніць торэнты @@ -151,10 +143,6 @@ Exit qBittorrent Выйсці з qBittorrent - - Only one link per line - Адна спасылка на радок - Global upload rate limit must be greater than 0 or disabled. Агульнае абмежаванне хуткасці раздачы павінна быць большым за 0 або адключана. @@ -228,10 +216,6 @@ Save files to location: Захоўваць файлы сюды: - - Cookie: - Кукі: - More information Дадатковая інфармацыя @@ -295,10 +279,6 @@ Logout Выйсці - - Download Torrents from their URLs or Magnet links - Спампоўваць торэнты па іх адрасах або magnet-спасылках - Upload local torrent Зацягнуць лакальны торэнт @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Недапушчальная назва катэгорыі:\nНе ўжывайце спецыяльныя сімвалы ў назве катэгорыі. - - Unable to create category - Не атрымалася стварыць катэгорыю - Upload rate threshold must be greater than 0. Парог хуткасці раздачы павінен быць большым за 0. @@ -383,10 +359,6 @@ Original author Першапачатковы аўтар - - Are you sure you want to remove the selected torrents from the transfer list? - Выдаліць выбраныя торэнты са спіса перадач? - The port used for the WebUI must be between 1 and 65535. Порт вэб-інтэрфейсу павінен трымаць значэнні ад 1 да 65535. @@ -401,7 +373,7 @@ External IP: N/A - + Знешні IP: Н/Д Reverse proxy setup examples @@ -413,11 +385,11 @@ Remember choice - + Запомніць выбар Are you sure you want to remove these %1 torrents from the transfer list? - + Сапраўды выдаліць са спіса %1 торэнты(аў)? Unable to delete torrents. @@ -425,11 +397,11 @@ URL - + Спасылка External IP: %1%2 - + Знешні IP: %1%2 Edit web seed @@ -453,7 +425,7 @@ External IPs: %1, %2 - + Знешнія IP: %1, %2 Unable to recheck torrents. @@ -498,17 +470,13 @@ Options... Параметры... - - Resume - Узнавціь - Top Toolbar Верхняя панэль Status Bar - Панэль статуса + Панэль стану Speed in Title Bar @@ -518,10 +486,6 @@ Donate! Ахвяраваць! - - Resume All - Узнавіць усё - Statistics Статыстыка @@ -530,14 +494,6 @@ About Пра qBittorrent - - Pause - Спыніць - - - Pause All - Спыніць усё - Add Torrent File... Дадаць торэнт-файл... @@ -678,14 +634,6 @@ Remove Выдаліць - - Would you like to resume all torrents? - Сапраўды ўзнавіць усе торэнты? - - - Would you like to pause all torrents? - Сапраўды прыпыніць усе торэнты? - Execution Log Журнал выканання @@ -696,54 +644,58 @@ [D: %1, U: %2] - [С: %1, З: %2] + [С: %1, Р: %2] Filter by: - + Фільтры Save Path - + Шлях захавання Stop - + Стоп Use regular expression - + Выкарыстоўваць рэгулярныя выразы Would you like to start all torrents? - + Сапраўды запусціць усе торэнты? Start - + Запусціць Manage Cookies... - + Кіраванне cookie... Unable to export torrent file - + Немагчыма экспартаваць файл .torrent Name - + Назва Would you like to stop all torrents? - + Сапраўды спыніць усе торэнты? Start All - + Запусціць усе Stop All + Спыніць усе + + + Torrent Creator @@ -773,10 +725,6 @@ Language Мова - - User Interface Language: - Мова інтэрфейсу: - Email notification upon download completion Апавяшчэнне па электроннай пошце пасля завяршэння спампоўвання @@ -793,10 +741,6 @@ Torrent Queueing Чарговасць торэнтаў - - Automatically add these trackers to new downloads: - Аўтаматычна дадаваць гэтыя трэкеры да новых спамповак: - Web User Interface (Remote control) Веб-інтэрфейс (Аддаленае кіраванне) @@ -831,7 +775,7 @@ Copy .torrent files to: - Капіяваць .torrent файлы ў: + Капіяваць файлы .torrent у: Copy .torrent files for finished downloads to: @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Інфармацыя: пароль будзе захаваны ў незашыфраваным выглядзе + Інфармацыя: пароль будзе захаваны ў незашыфраваным выглядзе μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Хутчэйшая раздача - - Pause torrent - Прыпыніць торэнт - Remove torrent and its files Выдаліць торэнт і яго файлы @@ -1305,7 +1245,7 @@ Send buffer watermark factor: - Фактар пазнакі буфера адпраўкі: + Каэфіцыент адзнакі буфера адпраўкі: libtorrent Section @@ -1337,11 +1277,11 @@ s - с + с Send buffer watermark: - Пазнака буфера адпраўкі: + Адзнака буфера адпраўкі: Peer proportional (throttles TCP) @@ -1385,7 +1325,7 @@ Send buffer low watermark: - Ніжняя пазнака буферу адпраўкі: + Ніжняя адзнака буфера адпраўкі: Save resume data interval: @@ -1397,7 +1337,7 @@ Session timeout: - Прыпыніць сувязь на: + Час чакання сеанса: Resolve peer countries: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Блакіраваць кліента пасля чарады збояў: - - Enable cookie Secure flag (requires HTTPS) - Ужываць для cookie пазнаку Secure (патрабуецца HTTPS) - Header: value pairs, one per line Загаловак: пары значэнняў, па адной на радок @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Падтрымка інтэрнацыяналізаваных даменных імёнаў (IDN): - - Run external program on torrent finished - Запускаць знешнюю праграму пры завяршэнні торэнта - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1660,10 +1592,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Выкарыстоўвайце «;», каб раздзяліць некалькі запісаў, даступны шаблоны накшталт «*». - - Run external program on torrent added - Запускаць знешнюю праграму пры дадаванні торэнта - HTTPS certificate should not be empty Сертыфікат HTTPS не павінен быць пустым @@ -1728,10 +1656,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days дні/дзён - - Log file - Файл журнала - Behavior Паводзіны @@ -1946,39 +1870,39 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + Схема колераў: Show external IP in status bar - + Паказваць знешні IP у радку стану Fetched trackers - + Атрыманыя трэкеры Confirm when deleting torrents - + Пацвярджаць выдаленне торэнтаў Ignore SSL errors: - + Ігнараваць памылкі SSL: Dark - + Цёмная Delete files permanently - + Выдаляць файлы незваротна Auto - + Аўта Use alternating row colors - + Выкарыстоўваць чаргаванне колеру радкоў Display full announce URL in the Tracker column @@ -1986,7 +1910,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + Адрас: Transfer list @@ -1998,27 +1922,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Light - + Светлая Automatically append these trackers to new downloads: - + Аўтаматычна дадаваць гэтыя трэкеры ў новыя спампоўванні: Downloading torrents: - + Торэнты, якія спампоўваюцца: Start / stop torrent - + Запусціць / спыніць торэнт Send test email - + Адправіць праверачны ліст Completed torrents: - + Завершаныя торэнты: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2026,11 +1950,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. When duplicate torrent is being added - + Пры паўторным дадаванні торэнта Action on double-click - + Дзеянне для падвойнага націскання Save statistics interval: @@ -2038,35 +1962,35 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Паказвае дыялог пацвярджэння, перш чым выдаліць торэнт Run on torrent finished: - + Запускаць пры завяршэнні торэнта: Attempted to send email. Check your inbox to confirm success - + Выканана спроба адправіць электронны ліст. Праверце ўваходную пошту, каб упэўніцца ў паспяховасці Automatically append trackers from URL to new downloads: - + Аўтаматычна дадаваць трэкеры з URL-адраса ў новыя спампоўванні: Torrent content removing mode: - + Рэжым выдалення змесціва торэнта: Move files to trash (if possible) - + Перамяшчаць файлы ў сметніцу (калі магчыма) Stop torrent - + Спыніць торэнт Use Category paths in Manual Mode - + Выкарыстоўваць шляхі катэгорый у ручным рэжыме List of alternative WebUI @@ -2074,7 +1998,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Run on torrent added: - + Запускаць пры дадаванні торэнта: Port reported to trackers (requires restart) [0: listening port]: @@ -2086,7 +2010,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Merge trackers to existing torrent - + Дадаваць новыя трэкеры ў наяўны торэнт Confirm torrent recheck: @@ -2106,24 +2030,40 @@ Use ';' to split multiple entries. Can use wildcard '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + Resolve relative Save Path against appropriate Category path instead of Default one No action - + Няма дзеяння Auto hide zero status filters - + Аўтаматычна хаваць фільтры стану з нулявым значэннем Interface - + Інтэрфейс Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2193,7 +2133,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy IP:port - Капіяваць IP:порт + Скапіяваць IP:порт Country/Region @@ -2306,7 +2246,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Wasted: - Згублена: + Страчана: Connections: @@ -2371,7 +2311,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1 (%2 this session) - %1 (%2 гэтая сесія) + %1 (%2 за гэты сеанс) %1 (%2 max) @@ -2490,7 +2430,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy web seed URL - + Скапіяваць адрас вэб-сіда Replace option @@ -2498,23 +2438,23 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit web seed URL... - + Змяніць адрас вэб-сіда... Web seed URL: - + Адрас вэб-раздачы: Yes - + Так Ratio / Time Active (in months), indicates how popular the torrent is - + Рэйтынг/ час актыўнасці (у месяцах), паказвае папулярнасць торэнта Popularity: - + Папулярнасць: Apply to which filename part @@ -2522,15 +2462,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Не Remove web seed - + Выдаліць вэб-сід Web seed editing - + Рэдагаванне вэб-раздачы Add web seeds... @@ -2538,14 +2478,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private: - + Прыватны: ScanFoldersModel Monitored Folder - Папка што наглядаецца + Папка для назірання Override Save Location @@ -2553,7 +2493,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Monitored folder - Папка што наглядаецца + Папка для назірання Default save location @@ -2668,14 +2608,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Завершаныя (0) - - Resumed (0) - Узноўленыя (0) - - - Paused (0) - Спыненыя (0) - Active (0) Актыўныя (0) @@ -2702,15 +2634,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) - Скончаныя (%1) - - - Paused (%1) - Спыненыя (%1) - - - Resumed (%1) - Узноўленыя (%1) + Завершаныя (%1) Active (%1) @@ -2766,31 +2690,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + Запушчаны (0) Stopped (0) - + Спынены (0) Stopped (%1) - + Спынены (%1) Running (%1) - + Запушчаны (%1) Remove torrents - + Выдаліць торэнты Start torrents - + Запусціць торэнты Stop torrents - + Спыніць торэнты @@ -2808,11 +2732,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Памер - - Done - % Done - Рух - Status Torrent status (e.g. downloading, seeding, paused) @@ -2873,7 +2792,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Down Limit i.e: Download limit - Абмеж. сцягв. + Абмеж. спампоўвання Up Limit @@ -2893,7 +2812,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Session Download Amount of data downloaded since program open (e.g. in MB) - Сцягнута за сеанс + Спампавана за сеанс Session Upload @@ -2950,31 +2869,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + Прыватны Progress - + Ход выканання Info Hash v2 - + Хэш v2 Info Hash v1 - + Хэш v1 Incomplete Save Path - + Шлях захавання для незавершаных Popularity - + Папулярнасць Status Icon - + Значок стану @@ -3029,7 +2948,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy tracker URL - Капіяваць URL трэкера + Скапіяваць адрас трэкера Edit tracker URL... @@ -3108,11 +3027,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1 ago e.g.: 1h 20m ago - %1 таму - - - Paused - Спынены + %1 таму Completed @@ -3180,11 +3095,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Спынена N/A - + Н/Д @@ -3228,21 +3143,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Пераназваць - - Resume - Resume/start the torrent - Узнавіць - - - Force Resume - Force Resume/start the torrent - Узнавіць прымусова - - - Pause - Pause the torrent - Спыніць - Limit share ratio... Абмежаваць рэйтынг раздачы... @@ -3321,14 +3221,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Новая катэгорыя - - Location - Размяшчэнне - - - New name - Новая назва - Set location Перамясціць @@ -3341,18 +3233,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Рэдагаваць катэгорыю - - Save path - Шлях захавання - Comma-separated tags: Тэгі, падзеленыя коскай: - - Add Tags - Дадаць тэгі - Tags Тэгі @@ -3371,7 +3255,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy - Капіяваць + Скапіяваць Queue @@ -3415,11 +3299,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + Запусціць прымусова Save path: - + Шлях захавання: Location: @@ -3427,27 +3311,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Стоп Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + У аўтаматычным рэжыме пэўныя ўласцівасці торэнта (напр. шлях захавання) вызначаюцца ў залежнасці ад катэгорыі Start - + Запусціць New name: - + Новая назва: Add tags - + Дадаць тэгі Category: - + Катэгорыя: @@ -3486,21 +3370,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Таксама незваротна выдаліць файлы - Remove torrent(s) Выдаліць торэнт(ы) Also remove the content files - + Таксама выдаліць спампаваныя файлы Remove tracker - + Выдаліць трэкер @@ -3563,12 +3443,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1h %2m e.g: 3hours 5minutes - %1 гадз %2 хв + %1 гадз %2 хв %1d %2h e.g: 2days 10hours - %1 дз %2 г + %1 дз %2 г Unknown @@ -3587,7 +3467,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1y %2d - %1 г. %2 дз. + %1 г. %2 дз @@ -3776,25 +3656,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Спампоўваюць - - Search engine - Пошукавая сістэма - Seeders Сіды Published On - + Апублікавана Engine URL - + Адрас пошукавай сістэмы Engine - + Пошукавая сістэма @@ -3861,14 +3737,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Тэг: - - Pause torrents - Прыпыніць торэнты - - - Resume torrents - Узнавіць торэнты - Remove unused tags Выдаліць пустыя тэгі @@ -3887,11 +3755,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + Запусціць торэнты Stop torrents - + Спыніць торэнты @@ -4011,7 +3879,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. SearchJobWidget Copy - Капіяваць + Скапіяваць Download @@ -4035,27 +3903,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Пошук завершаны An error occurred during search... - + Падчас пошуку ўзнікла памылка... Close tab - + Закрыць укладку Searching... - + Ідзе пошук... Search aborted - + Пошук перарваны Close all tabs - + Закрыць усе ўкладкі @@ -4109,7 +3977,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy feed URL - Капіяваць спасылку канала + Скапіяваць спасылку канала Torrents: (double-click to download) @@ -4169,7 +4037,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Змяніць URL канала... Unable to update URL @@ -4183,6 +4051,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4370,10 +4246,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Калі парадак слоў важны, выкарыстоўвайце зорачку * замест прабелаў. - - Add Paused: - Дадаваць спыненым: - Please type the name of the new download rule. Дайце назву новаму правілу спампоўвання. @@ -4442,50 +4314,34 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add Stopped: - + Дадаваць спыненым: TrackerFiltersList - - Resume torrents - Узнавіць торэнты - - - All (%1) - Усе (%1) - - - Trackerless (%1) - Без трэкера (%1) - - - Pause torrents - Прыпыніць торэнты - Remove torrents Выдаліць торэнты All - + Усе Trackerless - + Trackerless Start torrents - + Запусціць торэнты Remove tracker - + Выдаліць трэкер Stop torrents - + Спыніць торэнты @@ -4523,11 +4379,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Copy - Капіяваць + Скапіяваць Select All - Выбраць Усё + Выбраць усе ID @@ -4645,15 +4501,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Не атрымалася змяніць катэгорыю OK - + ОК Unable to create category - + Не атрымалася стварыць катэгорыю Unable to set category @@ -4664,11 +4520,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Дамен Manage Cookies - + Кіраванне Cookie Add Cookie @@ -4676,52 +4532,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Выдаліць Expiration Date - + Дата сканчэння тэрміну Value - + Значэнне Name - + Назва Path - + Шлях confirmAutoTMMDialog Enable automatic torrent management - + Уключыць аўтаматычнае кіраванне торэнтамі Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Сапраўды хочаце ўключыць аўтаматычнае кіраванне для выбраных торэнтаў? Яны могуць перамясціцца. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Сапраўды хочаце пераправерыць выбраныя торэнты? Recheck confirmation - + Пацвярджэнне пераправеркі SearchWidget Close tab - + Закрыць укладку @@ -4732,15 +4588,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Пароль JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Патрэбны JavaScript! Вы павінны актываваць JavaScript для правільнай працы вэб-інтэрфейса Login - + Логін Server response: @@ -4752,10 +4608,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Імя карыстальніка Invalid Username or Password. + Нядзейсныя імя карыстальніка ці пароль. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_bg.ts b/src/webui/www/translations/webui_bg.ts index a635881bd..8be7a0e69 100644 --- a/src/webui/www/translations/webui_bg.ts +++ b/src/webui/www/translations/webui_bg.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + По една връзка на ред (поддържат се HTTP връзки, магнитни връзки и инфо-хешове) Add torrent links - + Добави торент връзки Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Изтриване на неизползваните категории - - Resume torrents - Продължаване на торентите - - - Pause torrents - Пауза на торентите - New Category Нова категория @@ -151,10 +143,6 @@ Exit qBittorrent Изход от qBittorrent - - Only one link per line - Само един линк на реда - Global upload rate limit must be greater than 0 or disabled. Глобалното ограничение за скорост на качване трябва да е по-голямо от 0 или изключено. @@ -228,10 +216,6 @@ Save files to location: Съхрани файловете на място: - - Cookie: - Бисквитка: - More information Повече информация @@ -295,10 +279,6 @@ Logout Излизане - - Download Torrents from their URLs or Magnet links - Сваляне на Торенти от техните URL-ове или Magnet линкове - Upload local torrent Качване на локален торент @@ -320,10 +300,6 @@ Невалидно име на категория: Моля не използвайте никакви специални символи в името на категорията. - - Unable to create category - Не можа да се създаде категория - Upload rate threshold must be greater than 0. Прага за скорост на качване трябва да е по-голям от 0. @@ -384,10 +360,6 @@ Original author Оригинален автор - - Are you sure you want to remove the selected torrents from the transfer list? - Сигурни ли сте, че искате да изтриете избраните торенти от списъка за трансфер? - The port used for the WebUI must be between 1 and 65535. @@ -414,11 +386,11 @@ Remember choice - + Запомни избор Are you sure you want to remove these %1 torrents from the transfer list? - + Сигурни ли сте, че искате да изтриете тези %1 торенти от списъка за трансфер? Unable to delete torrents. @@ -426,7 +398,7 @@ URL - + URL External IP: %1%2 @@ -499,10 +471,6 @@ Options... Опции... - - Resume - Пауза - Top Toolbar Горна Лента с Инструменти @@ -519,10 +487,6 @@ Donate! Дари! - - Resume All - Пауза Всички - Statistics Статистики @@ -531,14 +495,6 @@ About Относно - - Pause - Пауза - - - Pause All - Пауза Всички - Add Torrent File... Добавяне Торент Файл... @@ -679,14 +635,6 @@ Remove Премахни - - Would you like to resume all torrents? - Бихте ли искали да продължите всички торенти? - - - Would you like to pause all torrents? - Бихте ли искали да поставите на пауза всички торенти? - Execution Log Изпълнение на Запис @@ -705,11 +653,11 @@ Save Path - + Път на запазване Stop - + Спиране Use regular expression @@ -725,7 +673,7 @@ Manage Cookies... - + Управление на Бисквитките... Unable to export torrent file @@ -733,7 +681,7 @@ Name - + Име Would you like to stop all torrents? @@ -747,6 +695,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -774,10 +726,6 @@ Language Език - - User Interface Language: - Език на Потребителския Интерфейс: - Email notification upon download completion Уведомяване с имейл при завършване на свалянето @@ -794,10 +742,6 @@ Torrent Queueing Нареждане на Oпашка на Торенти - - Automatically add these trackers to new downloads: - Автоматично добавяне на тези тракери към нови сваляния: - Web User Interface (Remote control) Потребителски Уеб Интерфейс (Отдалечен контрол) @@ -1230,7 +1174,7 @@ Info: The password is saved unencrypted - Информация: Паролата е запазена некриптирана + Информация: Паролата е запазена некриптирана μTP-TCP mixed mode algorithm: @@ -1292,10 +1236,6 @@ Fastest upload Най-бързото качване - - Pause torrent - Пауза на торент - Remove torrent and its files Премахни торент и файловете му @@ -1338,7 +1278,7 @@ s - с + с Send buffer watermark: @@ -1412,10 +1352,6 @@ Ban client after consecutive failures: Банни клиент след последователни провали: - - Enable cookie Secure flag (requires HTTPS) - Разреши флаг за сигурност на бисквитка (изисква HTTPS) - Header: value pairs, one per line Заглавна част: стойностни чифтове, един на ред @@ -1644,10 +1580,6 @@ Support internationalized domain name (IDN): Поддържа интернационализирано домейн име (IDN): - - Run external program on torrent finished - Изпълни външна програма на приключен торент - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1656,10 +1588,6 @@ you should put in domain names used by WebUI server. Use ';' to split multiple entries. Can use wildcard '*'. Списък с разрешени за филтриране стойности на HTTP хост хедъри. За защита срещу атака "ДНС повторно свързване" въведете тук домейните използвани от Уеб ПИ сървъра. Използвайте ';' за разделител. Може да се използва и заместител '*'. - - Run external program on torrent added - Изпълни външна програма на добавен торент - HTTPS certificate should not be empty HTTPS сертификат не бива да бъде празен @@ -1724,10 +1652,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days дни - - Log file - Лог файл - Behavior Поведение @@ -1954,7 +1878,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Потвърждаване при изтриването на торенти Ignore SSL errors: @@ -1970,11 +1894,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Автоматично Use alternating row colors - + Ползвай различно оцветени редове Display full announce URL in the Tracker column @@ -1982,7 +1906,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -2002,7 +1926,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Сваляне на торенти: Start / stop torrent @@ -2014,7 +1938,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + Завършени торенти: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2026,7 +1950,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + Действие при двойно щракване Save statistics interval: @@ -2034,7 +1958,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Показва диалог за потвърждение при изтриването на торента Run on torrent finished: @@ -2062,7 +1986,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Use Category paths in Manual Mode - + Използвай Категория пътища в ръчен режим List of alternative WebUI @@ -2102,11 +2026,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + Решавай относителен път на запазване срещу подходящ път на категория вместо такъв по подразбиране No action - + Без действие Auto hide zero status filters @@ -2114,12 +2038,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + Интерфейс Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2498,11 +2438,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + URL на Web споделяне: Yes - + Да Ratio / Time Active (in months), indicates how popular the torrent is @@ -2518,7 +2458,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Не Remove web seed @@ -2526,7 +2466,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Редактиране на Web споделяне Add web seeds... @@ -2664,14 +2604,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Приключени (0) - - Resumed (0) - Продължени (0) - - - Paused (0) - В Пауза (0) - Active (0) Активни (0) @@ -2700,14 +2632,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Приключени (%1) - - Paused (%1) - В Пауза (%1) - - - Resumed (%1) - Продължени (%1) - Active (%1) Активни (%1) @@ -2778,7 +2702,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + Премахни торенти Start torrents @@ -2804,11 +2728,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Размер - - Done - % Done - Готово - Status Torrent status (e.g. downloading, seeding, paused) @@ -2950,19 +2869,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Напредък Info Hash v2 - + Инфо хеш в2: Info Hash v1 - + Инфо хеш в1 Incomplete Save Path - + Непълен път на запазване Popularity @@ -3106,10 +3025,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 по- рано - - Paused - Пауза - Completed Завършено @@ -3176,11 +3091,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Спрян N/A - + Няма @@ -3224,21 +3139,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Преименувай - - Resume - Resume/start the torrent - Продължи - - - Force Resume - Force Resume/start the torrent - Насилствено Продължение - - - Pause - Pause the torrent - Пауза - Limit share ratio... Ограничение на съотношението за споделяне... @@ -3317,14 +3217,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Нова категория - - Location - Местоположение - - - New name - Ново име - Set location Задаване на местоположение @@ -3337,18 +3229,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Редактиране на категория - - Save path - Път на запазване - Comma-separated tags: Етикети разделени чрез запетаи: - - Add Tags - Добави Етикети - Tags Етикети @@ -3415,7 +3299,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Местоположение за запис: Location: @@ -3423,11 +3307,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Спиране Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Автоматичен режим значи, че различни настройки на торент (н. пр. местоположение) ще бъдат решени от асоциираната категория Start @@ -3435,7 +3319,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Ново име: Add tags @@ -3443,7 +3327,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Категория: @@ -3482,10 +3366,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Също изтрий за постоянно файловете - Remove torrent(s) Премахни торент(и) @@ -3496,7 +3376,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Премахни тракер @@ -3772,10 +3652,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Вземащи - - Search engine - Търсачка - Seeders Даващи @@ -3857,14 +3733,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Етикет: - - Pause torrents - Пауза на торентите - - - Resume torrents - Продължи торентите - Remove unused tags Изтриване на неизползвани етикети @@ -4031,27 +3899,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Търсенето завърши An error occurred during search... - + Грешка възникна при търсене... Close tab - + Затваряне на раздел Searching... - + Търсене... Search aborted - + Търсенето е прекъснато Close all tabs - + Затваряне на всички раздели @@ -4179,6 +4047,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4366,10 +4242,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Ако поредността на думите е важна, използвайте * вместо пауза. - - Add Paused: - Добави поставените на пауза: - Please type the name of the new download rule. Моля, въведете името на новото правило за сваляне. @@ -4443,33 +4315,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Продължи торентите - - - All (%1) - Всички (%1) - - - Trackerless (%1) - Без тракери (%1) - - - Pause torrents - Пауза на торентите - Remove torrents Премахни торенти All - + Всички Trackerless - + Без тракери Start torrents @@ -4477,7 +4333,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Премахни тракер Stop torrents @@ -4641,15 +4497,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Не можа са се редактира категория OK - + ОК Unable to create category - + Не можа да се създаде категория Unable to set category @@ -4660,11 +4516,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Домейн Manage Cookies - + Управление на Бисквитки Add Cookie @@ -4672,52 +4528,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Премахни Expiration Date - + Дата на Изтичане Value - + Стойност Name - + Име Path - + Път confirmAutoTMMDialog Enable automatic torrent management - + Разреши автоматично управление на торент Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Сигурни ли сте, че искате да разрешите автоматично управление на торент за избраният/те торент(и)? Те могат да бъдат преместени. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Сигурни ли сте, че искате повторно да проверите избрания торент(и)? Recheck confirmation - + Потвърждение за повторна проверка SearchWidget Close tab - + Затваряне на раздел @@ -4728,7 +4584,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Парола JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4736,7 +4592,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Вход Server response: @@ -4748,10 +4604,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Потребителско име Invalid Username or Password. + Невалидно потребителско име или парола. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ca.ts b/src/webui/www/translations/webui_ca.ts index c26d812de..e26fe2547 100644 --- a/src/webui/www/translations/webui_ca.ts +++ b/src/webui/www/translations/webui_ca.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Un enllaç per línia (es permeten enllaços d'HTTP, enllaços magnètics i informació de funcions de resum) Add torrent links - + Afegeix enllaços torrent Select .torrent files - + Seleccioneu fitxers .torrent Torrent options - + Opcions del torrent @@ -112,14 +112,6 @@ Remove unused categories Suprimeix les categories no utilitzades - - Resume torrents - Reprèn els torrents - - - Pause torrents - Interromp els torrents - New Category Categoria nova @@ -138,11 +130,11 @@ Start torrents - + Inicia els torrents Stop torrents - + Interromp els torrents @@ -151,10 +143,6 @@ Exit qBittorrent Surt del qBittorrent - - Only one link per line - Només un enllaç per línia - Global upload rate limit must be greater than 0 or disabled. El límit de pujada ha de ser major que 0 o estar inhabilitat. @@ -228,10 +216,6 @@ Save files to location: Desa els fitxers a la ubicació: - - Cookie: - Cookie: - More information Més informació @@ -295,10 +279,6 @@ Logout Tanca la sessió - - Download Torrents from their URLs or Magnet links - Baixa torrents des dels URL o enllaços magnètics - Upload local torrent Puja torrent locals @@ -320,10 +300,6 @@ Nom de categoria no vàlid: Si us plau, no useu cap caràcter especial al nom de la categoria. - - Unable to create category - No es pot crear la categoria - Upload rate threshold must be greater than 0. El llindar de la velocitat de pujada ha de ser superior a 0. @@ -384,10 +360,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Original author Autor original - - Are you sure you want to remove the selected torrents from the transfer list? - Segur que voleu suprimir els torrents seleccionats de la llista de transferència? - The port used for the WebUI must be between 1 and 65535. El port utilitzat per a la interfície d'usuari web ha de ser d'entre 1 i 65535. @@ -402,75 +374,75 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. External IP: N/A - + IP externa: N/A Reverse proxy setup examples - + Exemples de configuració d'intermediari invers Could not contact qBittorrent - + No s'ha pogut contactar amb qBittorrent. Remember choice - + Recorda sempre aquesta tria Are you sure you want to remove these %1 torrents from the transfer list? - + Segur que voleu suprimir aquests %1 torrents de la llista de transferència? Unable to delete torrents. - + No es poden suprimir els torrents. URL - + URL External IP: %1%2 - + IP externa: %1%2 Edit web seed - + Edita la llavor web Are you sure you want to remove %1 from the transfer list? - + Segur que voleu suprimir %1 de la llista de transferències? Unable to set Auto Torrent Management for the selected torrents. - + No es pot establir la gestió automàtica de torrents per als torrents seleccionats. Unable to stop torrents. - + No es poden aturar els torrents. Unable to download file - + No es pot baixar el fitxer. External IPs: %1, %2 - + IP externes: %1, %2 Unable to recheck torrents. - + No es poden tornar a comprovar els torrents. List of web seeds to add (one per line): - + Llista de llavors web per afegir (una per línia): Unable to start torrents. - + No es poden iniciar els torrents. Add web seeds - + Afegeix llavors web @@ -499,10 +471,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Options... Opcions... - - Resume - Reprèn - Top Toolbar Barra d'eines superior @@ -519,10 +487,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Donate! Feu una donació! - - Resume All - Reprèn-ho tot - Statistics Estadístiques @@ -531,14 +495,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. About Quant a - - Pause - Interromp - - - Pause All - Interromp-ho tot - Add Torrent File... Afegeix un fitxer de torrent... @@ -679,14 +635,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Remove Suprimeix - - Would you like to resume all torrents? - Voleu reprendre tots els torrents? - - - Would you like to pause all torrents? - Voleu interrompre tots els torrents? - Execution Log Registre d'execució @@ -701,50 +649,54 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Filter by: - + Filtrar per: Save Path - + Camí on desar-ho Stop - + Atura't Use regular expression - + Usa una expressió regular Would you like to start all torrents? - + Voleu iniciar tots els torrents? Start - + Inicia Manage Cookies... - + Gestió de galetes... Unable to export torrent file - + No es pot exportar el fitxer de torrent. Name - + Nom Would you like to stop all torrents? - + Voleu interrompre tots els torrents? Start All - + Inicia'ls tots Stop All + Interromp-los tots + + + Torrent Creator @@ -774,10 +726,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Language Llengua - - User Interface Language: - Llengua de la interfície d'usuari: - Email notification upon download completion Notificació per correu electrònic de l'acabament de les descàrregues @@ -794,10 +742,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Torrent Queueing Cua de torrents - - Automatically add these trackers to new downloads: - Afegeix automàticament aquests rastrejadors a les baixades noves: - Web User Interface (Remote control) Interfície d'usuari web (control remot) @@ -1230,7 +1174,7 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Info: The password is saved unencrypted - Informació: la contrasenya es desa sense encriptar. + Informació: la contrasenya es desa sense encriptar. μTP-TCP mixed mode algorithm: @@ -1292,10 +1236,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Fastest upload La pujada més ràpida - - Pause torrent - Interromp el torrent - Remove torrent and its files Suprimeix el torrent i els fitxers @@ -1338,7 +1278,7 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. s - s + s Send buffer watermark: @@ -1412,10 +1352,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Ban client after consecutive failures: Prohibeix el client després de fallades consecutives: - - Enable cookie Secure flag (requires HTTPS) - Habilita la galeta de bandera de seguretat (requereix HTTPS) - Header: value pairs, one per line Capçalera: clients de valor, un per línia @@ -1644,10 +1580,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Support internationalized domain name (IDN): Admet el nom de domini internacionalitzat (IDN): - - Run external program on torrent finished - Executa un programa extern en acabar el torrent. - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1660,10 +1592,6 @@ d'introduir noms de domini usats pel servidor d'interfície d'usuari de xarxa. Useu ";" per separar les entrades. Podeu usar el comodí "*". - - Run external program on torrent added - Executa un programa extern en afegir el torrent. - HTTPS certificate should not be empty El certificat HTTPS no ha d'estar buit. @@ -1728,10 +1656,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". days dies - - Log file - Fitxer de registre - Behavior Comportament @@ -1946,182 +1870,198 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Color scheme: - + Esquema de color: Show external IP in status bar - + Mostra l'adreça IP externa a la barra d'estat Fetched trackers - + Rastredors obtinguts Confirm when deleting torrents - + Demana confirmació per suprimir torrents Ignore SSL errors: - + Ignora els errors d'SSL: Dark - + fosc Delete files permanently - + Suprimeix fitxers permanentment Auto - + Auto Use alternating row colors - + Usa colors alterns a les files de la llista Display full announce URL in the Tracker column - + Mostra l'URL d'anunci complet a la columna del rastrejador URL: - + URL: Transfer list - + Llista de transferència The announce port must be between 0 and 65535. - + El port d'anunci ha de ser entre 0 i 65535. Light - + clar Automatically append these trackers to new downloads: - + Afegeix automàticament aquests rastrejadors a les baixades noves: Downloading torrents: - + Torrents de baixada: Start / stop torrent - + Inicia / Atura el torrent Send test email - + Envia un correu electrònic de prova Completed torrents: - + Torrents completats: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Activa la marca de seguretat de la galeta (requereix una connexió HTTPS o d'amfitrió local) When duplicate torrent is being added - + Quan s'afegeix un torrent duplicat Action on double-click - + Acció a fer amb un doble click Save statistics interval: - + Desa l'interval d'estadístiques: Shows a confirmation dialog upon torrent deletion - + Mostra un diàleg de confirmació en suprimir un torrent Run on torrent finished: - + Executa en acabar un torrent: Attempted to send email. Check your inbox to confirm success - + S'ha intentat enviar un correu electrònic. Comproveu la safata d'entrada per confirmar-ho. Automatically append trackers from URL to new downloads: - + Afegeix automàticament els rastrejadors d'URL a les baixades noves: Torrent content removing mode: - + Mode de supressió del contingut del torrent: Move files to trash (if possible) - + Mou els fitxers a la paperera (si és possible) Stop torrent - + Interromp el torrent Use Category paths in Manual Mode - + Usa els camins de la categoria en el mode manual List of alternative WebUI - + Llista de la interfície web alternativa Run on torrent added: - + Executa en afegir un torrent: Port reported to trackers (requires restart) [0: listening port]: - + Port informat als rastrejadors (requereix reinici) [0: port d'escolta]: User interface language: - + Llengua de la interfície d'usuari: Merge trackers to existing torrent - + Fusiona els rastrejadors amb el torrent existent Confirm torrent recheck: - + Confirma la comprovació del torrent: Custom WebUI settings - + Configuració personalitzada de la interfície d'usuari web Following settings are WebUI only - + Els paràmetres següents només són d'interfície d'usuari web Simple pread/pwrite - + Pread/pwrite simple Resolve relative Save Path against appropriate Category path instead of Default one - + Resol el camí on desar-ho relatiu segons el camí de categoria en comptes del predeterminat No action - + Sense acció Auto hide zero status filters - + Auto amagar filtres d'estat zero Interface - + Interfície Log Files + Fitxers de registre + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2490,55 +2430,55 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Copy web seed URL - + Copia l'URL de llavor web Replace option - + Opció de reemplaçament Edit web seed URL... - + Edita l'URL de la llavor web... Web seed URL: - + URL de la llavor web: Yes - + Ratio / Time Active (in months), indicates how popular the torrent is - + La ràtio / el temps d'activitat (en mesos), indica la popularitat del torrent. Popularity: - + Popularitat: Apply to which filename part - + Aplica a una part del nom de fitxer No - + No Remove web seed - + Suprimeix la llavor web Web seed editing - + Edició de la llavor web Add web seeds... - + Afegeix llavors web... Private: - + Privat: @@ -2668,14 +2608,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Completed (0) Completats (0) - - Resumed (0) - Represos (0) - - - Paused (0) - Interromputs (0) - Active (0) Actius (0) @@ -2704,14 +2636,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Completed (%1) Completats (%1) - - Paused (%1) - Interromputs (%1) - - - Resumed (%1) - Represos (%1) - Active (%1) Actius (%1) @@ -2766,31 +2690,31 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Running (0) - + Actius (0) Stopped (0) - + Interromputs (0) Stopped (%1) - + Interromputs (%1) Running (%1) - + Actius (%1) Remove torrents - + Suprimeix els torrents Start torrents - + Inicia els torrents Stop torrents - + Interromp els torrents @@ -2808,11 +2732,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". i.e: torrent size Mida - - Done - % Done - Progrés - Status Torrent status (e.g. downloading, seeding, paused) @@ -2950,31 +2869,31 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Private - + Privat Progress - + Progrés Info Hash v2 - + Informació de la funció resum v2 Info Hash v1 - + Informació de la funció resum v1 Incomplete Save Path - + Camí on desar-ho incomplet Popularity - + Popularitat Status Icon - + Icona d'estat @@ -3110,10 +3029,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". e.g.: 1h 20m ago fa %1 - - Paused - Interromput - Completed Completat @@ -3180,11 +3095,11 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Stopped - + Aturat N/A - + N / D @@ -3211,7 +3126,7 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Collapse/expand category - + Replega / amplia la categoria @@ -3228,21 +3143,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Rename Canvia'n el nom - - Resume - Resume/start the torrent - Reprèn - - - Force Resume - Force Resume/start the torrent - Força la represa - - - Pause - Pause the torrent - Interromp - Limit share ratio... Limita la ràtio de compartició... @@ -3321,14 +3221,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". New Category Categoria nova - - Location - Ubicació - - - New name - Nom nou - Set location Estableix la ubicació @@ -3341,18 +3233,10 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Edit Category Edita la categoria - - Save path - Camí on desar-ho - Comma-separated tags: Etiquetes separades per comes: - - Add Tags - Afegeix etiquetes - Tags Etiquetes @@ -3415,39 +3299,39 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Force Start - + &Força'n l'inici Save path: - + Camí on desar-ho: Location: - + Ubicació: Stop - + Atura't Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + El mode automàtic significa que la categoria associada decidirà diverses propietats del torrent (per exemple, el camí de desament). Start - + Inicia New name: - + Nou nom: Add tags - + Afegeix etiquetes Category: - + Categoria: @@ -3486,21 +3370,17 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". confirmDeletionDlg - - Also permanently delete the files - També suprimeix permanentment els fitxers - Remove torrent(s) Suprimeix el/s torrent/s Also remove the content files - + Suprimeix també els fitxers de contingut Remove tracker - + Suprimeix el rastrejador @@ -3704,23 +3584,23 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Select category - + Seleccioneu la categoria Min size prefix - + Prefix de mida mínima Start a search above. - + Inicia una cerca amunt. Max size prefix - + Prefix de mida màxima Select plugins - + Seleccioneu els connectors @@ -3776,25 +3656,21 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Leechers Sangoneres - - Search engine - Motor de cerca - Seeders Sembradors Published On - + Publicat el Engine URL - + URL del motor Engine - + Motor @@ -3861,14 +3737,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Tag: Etiqueta: - - Pause torrents - Interromp els torrents - - - Resume torrents - Reprèn els torrents - Remove unused tags Suprimeix les etiquetes no usades @@ -3887,11 +3755,11 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Start torrents - + Inicia els torrents Stop torrents - + Interromp els torrents @@ -4035,27 +3903,27 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Search has finished - + La cerca s'ha acabat. An error occurred during search... - + S'ha produït un error durant la cerca... Close tab - + Tanca la pestanya Searching... - + Cercant.. Search aborted - + Cerca avortada Close all tabs - + Tanca totes les pestanyes @@ -4169,18 +4037,26 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Edit feed URL... - + Editar URL de feed... Unable to update URL - + No es pot actualitzar l'URL URL is unchanged - + L'URL no ha canviat. URL cannot be empty + L'URL no pot estar en blanc. + + + Open link + + + + Author: @@ -4370,10 +4246,6 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". If word order is important use * instead of whitespace. Si l'ordre de paraules és important, useu * en comptes de l'espai en blanc. - - Add Paused: - Afegeix els interromputs: - Please type the name of the new download rule. Si us plau, escriviu el nom de la regla de baixada nova. @@ -4434,58 +4306,42 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Remove rule - + Suprimeix la regla Add rule - + Afegeix una regla Add Stopped: - + Afegeix els interromputs: TrackerFiltersList - - Resume torrents - Reprèn els torrents - - - All (%1) - Tots (%1) - - - Trackerless (%1) - Sense rastrejadors (%1) - - - Pause torrents - Interromp els torrents - Remove torrents Suprimeix els torrents All - + Tot Trackerless - + Sense rastrejadors Start torrents - + Inicia els torrents Remove tracker - + Suprimeix el rastrejador Stop torrents - + Interromp els torrents @@ -4638,124 +4494,316 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Segur que voleu suprimir el rastrejador %1 de tots els torrents? Category Unable to edit category - + No s'ha pogut editar la categoria. OK - + D'acord Unable to create category - + No s'ha pogut crear la categoria. Unable to set category - + No es pot establir la categoria. CookiesDialog Domain - + Domini Manage Cookies - + Gestió de galetes Add Cookie - + Afegeix una galeta Remove - + Suprimeix Expiration Date - + Data de caducitat Value - + Valor Name - + Nom Path - + Camí confirmAutoTMMDialog Enable automatic torrent management - + Activa la gestió automàtica dels torrents Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Segur que voleu activar la gestió automàtica dels torrents per als torrents seleccionats? Potser canvien d'ubicació. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Segur que voleu tornar a comprovar els torrents seleccionats? Recheck confirmation - + Confirmació de la verificació SearchWidget Close tab - + Tanca la pestanya Login qBittorrent WebUI - + Interfície d'usuari web del qBittorrent Password - + Contrasenya JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Cal JavaScript! Heu d'habilitar el JavaScript perquè la Interfície web funcioni correctament. Login - + Inicia sessió Server response: - + Resposta del servidor: Unable to log in, server is probably unreachable. - + No es pot iniciar la sessió, és probable que el servidor no sigui accessible. Username - + Nom d'usuari Invalid Username or Password. + Nom d'usuari o contrasenya incorrectes. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_cs.ts b/src/webui/www/translations/webui_cs.ts index 5d5411d27..bdc1e42fe 100644 --- a/src/webui/www/translations/webui_cs.ts +++ b/src/webui/www/translations/webui_cs.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Jeden odkaz na řádek (jsou podporovány odkazy HTTP, Magnet linky odkazy a info-hashes ) Add torrent links - + Přidat odkazy torrentů Select .torrent files - + Vybrat .torrent soubory Torrent options - + Možnosti torrentu @@ -112,14 +112,6 @@ Remove unused categories Odstranit nevyužité kategorie - - Resume torrents - Obnovit torrenty - - - Pause torrents - Pozastavit torrenty - New Category Nová kategorie @@ -138,11 +130,11 @@ Start torrents - + Spustit torrenty Stop torrents - + Zastavit torrenty @@ -151,10 +143,6 @@ Exit qBittorrent Ukončit qBittorrent - - Only one link per line - Pouze jeden odkaz na řádek - Global upload rate limit must be greater than 0 or disabled. Globální limit odesílání musí být větší než 0 nebo vypnut. @@ -228,10 +216,6 @@ Save files to location: Ukládat soubory do umístění: - - Cookie: - Cookie: - More information Více informací @@ -295,10 +279,6 @@ Logout Odhlásit - - Download Torrents from their URLs or Magnet links - Stahovat torrenty z jejich URL nebo Magnet linku - Upload local torrent Nahrát lokální torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Neplatný název kategorie:\nProsím nepoužívejte žádné speciální znaky ani diakritiku v názvu kategorie. - - Unable to create category - Nelze vytvořit kategorii - Upload rate threshold must be greater than 0. Limit odesílání musí být větší než 0. @@ -383,10 +359,6 @@ Original author Původní autor - - Are you sure you want to remove the selected torrents from the transfer list? - Opravdu chcete smazat vybrané torrenty ze seznamu přenosů? - The port used for the WebUI must be between 1 and 65535. Port použitý pro WebUI musí být mezi 1 a 65535. @@ -401,75 +373,75 @@ External IP: N/A - + Externí IP: N/A Reverse proxy setup examples - + Příklady nastavení reverzní proxy Could not contact qBittorrent - + Nepodařilo se kontaktovat qBittorrent Remember choice - + Zapamatovat volbu Are you sure you want to remove these %1 torrents from the transfer list? - + Opravdu chcete odebrat tyto %1 torrenty ze seznamu přenosů? Unable to delete torrents. - + Není možné smazat torrenty. URL - + URL External IP: %1%2 - + Externí IP: %1%2 Edit web seed - + Upravit web seed Are you sure you want to remove %1 from the transfer list? - + Jste si jisti, že chcete odebrat %1 ze seznamu přenosů? Unable to set Auto Torrent Management for the selected torrents. - + Nelze nastavit automatickou správu torrentu pro vybrané torrenty. Unable to stop torrents. - + Nelze zastavit torrenty. Unable to download file - + Nelze stáhnout soubor External IPs: %1, %2 - + Externí IPs: %1, %2 Unable to recheck torrents. - + Nelze překontrolovat torrenty. List of web seeds to add (one per line): - + Seznam web seedů pro přidání (jeden na řádek): Unable to start torrents. - + Nelze spustit torrenty. Add web seeds - + Přidat web seedy @@ -498,10 +470,6 @@ Options... Možnosti... - - Resume - Obnovit - Top Toolbar Horní panel nástrojů @@ -518,10 +486,6 @@ Donate! Darujte! - - Resume All - Obnovit vše - Statistics Statistika @@ -530,14 +494,6 @@ About O aplikaci - - Pause - Pozastavit - - - Pause All - Pozastavit vše - Add Torrent File... Přidat torrent soubor... @@ -678,14 +634,6 @@ Remove Odebrat - - Would you like to resume all torrents? - Přejete si obnovit všechny torrenty? - - - Would you like to pause all torrents? - Přejete si pozastavit všechny torrenty? - Execution Log Záznamy programu (Log) @@ -700,50 +648,54 @@ Filter by: - + Filtrovat podle: Save Path - + Cesta uložení Stop - + Zastavit Use regular expression - + Použít regulární výraz Would you like to start all torrents? - + Chcete spustit všechny torrenty? Start - + Spustit Manage Cookies... - + Spravovat cookies... Unable to export torrent file - + Nelze exportovat soubor torrentu Name - + Název Would you like to stop all torrents? - + Chcete zastavit všechny torrenty? Start All - + Spustit vše Stop All + Zastavit vše + + + Torrent Creator @@ -773,10 +725,6 @@ Language Jazyk - - User Interface Language: - Jazyk uživatelského rozhraní: - Email notification upon download completion Upozornění emailem při dokončení stahování @@ -793,10 +741,6 @@ Torrent Queueing Řazení torrentů do fronty - - Automatically add these trackers to new downloads: - Automaticky přidat tyto trackery k novým stahováním: - Web User Interface (Remote control) Webové uživatelské rozhraní (vzdálená správa) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Heslo je uloženo nešifrované + Info: Heslo je uloženo nešifrované μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Nejrychlejší upload - - Pause torrent - Pozastavit torrent - Remove torrent and its files Odstranit torrent a jeho soubory @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Banovat klienta po sousledných selháních: - - Enable cookie Secure flag (requires HTTPS) - Povolit příznak zabezpečení souborů cookie (vyžaduje HTTPS) - Header: value pairs, one per line Hlavička: páry hodnot, jedna na řádek @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Podporovat domény obsahující speciální znaky (IDN): - - Run external program on torrent finished - Při dokončení torrentu spustit externí program - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ best měli vložit doménové názvy použité pro WebUI server. Použijte ';' pro oddělení více položek. Můžete použít masku '*'. - - Run external program on torrent added - Při přidání torrentu spustit externí program - HTTPS certificate should not be empty HTTPS certifikát nemá být prázdný @@ -1727,10 +1655,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.days dnů - - Log file - Soubor logu - Behavior Vlastnosti @@ -1945,182 +1869,198 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Color scheme: - + Schéma barev: Show external IP in status bar - + Zobrazit externí IP ve stavovém panelu Fetched trackers - + Získané trackery Confirm when deleting torrents - + Potvrdit smazání torrentu Ignore SSL errors: - + Ignorovat chyby SSL: Dark - + Tmavé Delete files permanently - + Smazat soubory trvale Auto - + Auto Use alternating row colors - + Použít střídající se barvu řádků Display full announce URL in the Tracker column - + Zobrazit celou URL announce v kolonce Tracker URL: - + URL: Transfer list - + Seznam přenosů The announce port must be between 0 and 65535. - + Port announce musí být mezi 0 a 65535. Light - + Světlé Automatically append these trackers to new downloads: - + Automaticky přidat tyto trackery k novým torrentům: Downloading torrents: - + Stahování torrentů: Start / stop torrent - + Spustit / zastavit torrent Send test email - + Odeslat testovací e-mail Completed torrents: - + Dokončené torrenty: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Zapnout příznak cookie Secure (vyžaduje HTTPS nebo localhost připojení) When duplicate torrent is being added - + Když je přidáván duplicitní torrent Action on double-click - + Akce po dvojkliku Save statistics interval: - + Interval uložení statistik: Shows a confirmation dialog upon torrent deletion - + Zobrazí dialog pro potvrzení po odstranění torrentu Run on torrent finished: - + Spustit po dokončení torrentu: Attempted to send email. Check your inbox to confirm success - + Proveden pokus o odeslání e-mailu. Zkontrolujte svou doručenou poštu Automatically append trackers from URL to new downloads: - + Automaticky přidat trackery z adresy URL do nových stahování: Torrent content removing mode: - + Režim odebrání obsahu torrentu: Move files to trash (if possible) - + Přesunout soubory do koše (pokud možno): Stop torrent - + Zastavit torrent Use Category paths in Manual Mode - + Použít Kategorie cesty v Ručním módu List of alternative WebUI - + Seznam alternativních WebUI Run on torrent added: - + Spustit po přidání torrentu: Port reported to trackers (requires restart) [0: listening port]: - + Port oznamovaný trackerům (vyžaduje restart) [0: port naslouchání]: User interface language: - + Jazyk uživatelského rozhraní: Merge trackers to existing torrent - + Sloučit trackery do stávajícího torrentu Confirm torrent recheck: - + Potvrdit překontrolování torrentu: Custom WebUI settings - + Vlastní nastavení WebUI Following settings are WebUI only - + Následující nastavení je jen pro WebUI Simple pread/pwrite - + Jednoduché pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Použít relativní cestu pro uložení podle Cesty kategorie namísto Výchozí cesty No action - + Žádná akce Auto hide zero status filters - + Automaticky skrýt filtry s nulovým stavem Interface - + Rozhraní Log Files + Log soubory + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Copy web seed URL - + Kopírovat web seed URL Replace option - + Nahradit volbu Edit web seed URL... - + Upravit web seed URL... Web seed URL: - + URL webového zdroje: Yes - + Ano Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Aktivní po dobu (v měsících), vyjadřuje úroveň popularity torrentu Popularity: - + Popularita: Apply to which filename part - + Použít do které části názvu souboru No - + Ne Remove web seed - + Odebrat web seed Web seed editing - + Úpravy webového zdroje Add web seeds... - + Přidat web seedy... Private: - + Soukromý: @@ -2667,14 +2607,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.Completed (0) Dokončeno (0) - - Resumed (0) - Obnoveno (0) - - - Paused (0) - Pozastaveno (0) - Active (0) Aktivní (0) @@ -2703,14 +2635,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.Completed (%1) Dokončeno (%1) - - Paused (%1) - Pozastaveno (%1) - - - Resumed (%1) - Obnoveno (%1) - Active (%1) Aktivní (%1) @@ -2765,31 +2689,31 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Running (0) - + Běží (0) Stopped (0) - + Zastaveno (0) Stopped (%1) - + Zastaveno (%1) Running (%1) - + Běží (%1) Remove torrents - + Odstranit torrenty Start torrents - + Spustit torrenty Stop torrents - + Zastavit torrenty @@ -2807,11 +2731,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.i.e: torrent size Velikost - - Done - % Done - Hotovo - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Private - + Soukromý Progress - + Průběh Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Cesta uložení nekompletních Popularity - + Popularita Status Icon - + Stavová ikona @@ -3109,10 +3028,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.e.g.: 1h 20m ago před %1 - - Paused - Pozastaveno - Completed Dokončeno @@ -3179,11 +3094,11 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Stopped - + Zastaveno N/A - + Není k dispozici @@ -3210,7 +3125,7 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Collapse/expand category - + Sbalit/rozbalit kategorii @@ -3227,21 +3142,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.Rename Přejmenovat - - Resume - Resume/start the torrent - Obnovit - - - Force Resume - Force Resume/start the torrent - Vynutit obnovení - - - Pause - Pause the torrent - Pozastavit - Limit share ratio... Omezit ratio... @@ -3320,14 +3220,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.New Category Nová kategorie - - Location - Umístění - - - New name - Nový název - Set location Nastavit umístění @@ -3340,18 +3232,10 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.Edit Category Upravit kategorii - - Save path - Cesta pro uložení - Comma-separated tags: Čárkou oddelěné štítky: - - Add Tags - Přidat Štítek - Tags Štítky @@ -3414,39 +3298,39 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Force Start - + Vynutit spuštění Save path: - + Uložit do: Location: - + Umístění: Stop - + Zastavit Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatický režim znamená, že různé vlastnosti torrentu (např. cesta) bude nastavena podle kategorie, do které torrent spadá Start - + Spustit New name: - + Nový název: Add tags - + Přidat štítky Category: - + Kategorie: @@ -3485,21 +3369,17 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. confirmDeletionDlg - - Also permanently delete the files - Též trvale smazat soubory - Remove torrent(s) Odstranit torrent(y) Also remove the content files - + Také odebrat soubory obsahu Remove tracker - + Odstranit tracker @@ -3703,23 +3583,23 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Select category - + Vybrat kategorii Min size prefix - + Min. velikost předpony Start a search above. - + Začněte hledání výše. Max size prefix - + Max. velikost předpony Select plugins - + Vybrat pluginy @@ -3775,25 +3655,21 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.Leechers Leecheři - - Search engine - Vyhledávač - Seeders Seedeři Published On - + Zveřejněno Engine URL - + URL vyhledávače Engine - + Vyhledávač @@ -3860,14 +3736,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.Tag: Štítek: - - Pause torrents - Pozastavení torrentů - - - Resume torrents - Pokračování torrentů - Remove unused tags Odebrat nepoužité štítky @@ -3886,11 +3754,11 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Start torrents - + Spustit torrenty Stop torrents - + Zastavit torrenty @@ -4034,27 +3902,27 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Search has finished - + Hledání dokončeno An error occurred during search... - + Během hledání nastala chyba... Close tab - + Zavřít kartu Searching... - + Hledání... Search aborted - + Hledání zrušeno Close all tabs - + Zavřít všechny karty @@ -4168,18 +4036,26 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Edit feed URL... - + Upravit adresu feedu... Unable to update URL - + Nelze aktualizovat URL URL is unchanged - + URL je nezměněna URL cannot be empty + URL nemůže být prázdná + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'.If word order is important use * instead of whitespace. Je-li důležité pořadí slov, použijte * místo mezery. - - Add Paused: - Přidat pozastavený: - Please type the name of the new download rule. Napište název nového pravidla stahování. @@ -4433,58 +4305,42 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Remove rule - + Odebrat pravidlo Add rule - + Přidat pravidlo Add Stopped: - + Přidat zastavené: TrackerFiltersList - - Resume torrents - Obnovit torrenty - - - All (%1) - Vše (%1) - - - Trackerless (%1) - Bez trackeru (%1) - - - Pause torrents - Pozastavit torrenty - Remove torrents Odstranit torrenty All - + Vše Trackerless - + Bez trackeru Start torrents - + Spustit torrenty Remove tracker - + Odstranit tracker Stop torrents - + Zastavit torrenty @@ -4637,124 +4493,316 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Jste si jisti, že chcete odebrat tracker %1 ze všech torrentů? Category Unable to edit category - + Nelze upravit kategorii OK - + OK Unable to create category - + Nelze vytvořit kategorii Unable to set category - + Nelze nastavit kategorii CookiesDialog Domain - + Doména Manage Cookies - + Spravovat cookies Add Cookie - + Přidat cookie Remove - + Odebrat Expiration Date - + Expirace Value - + Hodnota Name - + Název Path - + Cesta confirmAutoTMMDialog Enable automatic torrent management - + Zapnout automatickou správu torrentů Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Jste si jistí že chcete zapnout Automatickou správu pro vybraný torrent(y)? Jejich data mohou být přemístěna. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Opravdu chcete znovu zkontrolovat označené torrenty? Recheck confirmation - + Zkontrolovat potvrzení SearchWidget Close tab - + Zavřít kartu Login qBittorrent WebUI - + qBittorrent WebUI Password - + Heslo JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript vyžadován! Musíte zapnout JavaScript, aby WebUI správně fungovalo Login - + Přihlášení Server response: - + Odpověď serveru: Unable to log in, server is probably unreachable. - + Nelze se přihlásit, server je pravděpodobně nedostupný. Username - + Uživatelské jméno Invalid Username or Password. + Neplatné jméno nebo heslo + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_da.ts b/src/webui/www/translations/webui_da.ts index 13cb32e79..688711b24 100644 --- a/src/webui/www/translations/webui_da.ts +++ b/src/webui/www/translations/webui_da.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Ét link pr. linje (understøtter HTTP-links, magnet-links og info-hashes) Add torrent links - + Tilføj torrent-links Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Fjern ubrugte kategorier - - Resume torrents - Genoptag torrents - - - Pause torrents - Sæt torrents på pause - New Category Ny kategori @@ -151,10 +143,6 @@ Exit qBittorrent Afslut qBittorrent - - Only one link per line - Kun ét link pr. linje - Global upload rate limit must be greater than 0 or disabled. Global grænse for uploadhastighed skal være større end 0 eller deaktiveret. @@ -228,10 +216,6 @@ Save files to location: Gem filer i: - - Cookie: - Cookie: - More information Mere information @@ -295,10 +279,6 @@ Logout Log ud - - Download Torrents from their URLs or Magnet links - Download torrents fra deres URL'er eller Magnet-links - Upload local torrent Upload lokal torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Ugyldigt kategorinavn:\nBrug venligst ikke nogen specialtegn i kategorinavnet. - - Unable to create category - Kan ikke oprette kategori - Upload rate threshold must be greater than 0. Grænse for uploadhastighed skal være større end 0. @@ -409,7 +385,7 @@ Remember choice - + Husk valg Are you sure you want to remove these %1 torrents from the transfer list? @@ -421,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -494,10 +470,6 @@ Options... Indstillinger... - - Resume - Genoptag - Top Toolbar Øverste værktøjslinje @@ -514,10 +486,6 @@ Donate! Donér! - - Resume All - Genoptag alle - Statistics Statistik @@ -526,14 +494,6 @@ About Om - - Pause - Sæt på pause - - - Pause All - Sæt alle på pause - Add Torrent File... Tilføj torrent-fil... @@ -696,7 +656,7 @@ Stop - + Stop Use regular expression @@ -712,7 +672,7 @@ Manage Cookies... - + Håndter cookies... Unable to export torrent file @@ -720,7 +680,7 @@ Name - + Navn Would you like to stop all torrents? @@ -734,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -761,10 +725,6 @@ Language Sprog - - User Interface Language: - Brugerfladens sprog: - Email notification upon download completion Notifikation via e-mail når download er færdig @@ -781,10 +741,6 @@ Torrent Queueing Torrent sat i kø - - Automatically add these trackers to new downloads: - Tilføj automatisk disse trackere til nye downloads: - Web User Interface (Remote control) Webgrænseflade (fjernstyring) @@ -1217,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Adgangskoden gemmes ukrypteret + Info: Adgangskoden gemmes ukrypteret μTP-TCP mixed mode algorithm: @@ -1279,10 +1235,6 @@ Fastest upload Hurtigste upload - - Pause torrent - Sæt torrent på pause - Remove torrent and its files Fjern torrenten og dens filer @@ -1325,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1703,10 +1655,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.days dage - - Log file - Log fil - Behavior Opførsel @@ -1933,7 +1881,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Confirm when deleting torrents - + Bekræft ved sletning af torrents Ignore SSL errors: @@ -1949,11 +1897,11 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Auto - + Auto Use alternating row colors - + Brug alternative farver for rækker Display full announce URL in the Tracker column @@ -1961,7 +1909,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. URL: - + URL: Transfer list @@ -1981,7 +1929,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Downloading torrents: - + Downloader torrents: Start / stop torrent @@ -1993,7 +1941,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Completed torrents: - + Færdige torrents: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2005,7 +1953,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Action on double-click - + Handling ved dobbeltklik Save statistics interval: @@ -2085,7 +2033,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. No action - + Ingen handling Auto hide zero status filters @@ -2093,12 +2041,28 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Interface - + Grænseflade Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2477,11 +2441,11 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Web seed URL: - + Webseed-URL: Yes - + Ja Ratio / Time Active (in months), indicates how popular the torrent is @@ -2497,7 +2461,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. No - + Nej Remove web seed @@ -2505,7 +2469,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Web seed editing - + Redigering af webseed Add web seeds... @@ -2643,14 +2607,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.Completed (0) Færdige (0) - - Resumed (0) - Genoptaget (0) - - - Paused (0) - Sat på pause (0) - Active (0) Aktive (0) @@ -2679,14 +2635,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.Completed (%1) Færdige (%1) - - Paused (%1) - Sat på pause (%1) - - - Resumed (%1) - Genoptaget (%1) - Active (%1) Aktive (%1) @@ -2783,11 +2731,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.i.e: torrent size Størrelse - - Done - % Done - Færdig - Status Torrent status (e.g. downloading, seeding, paused) @@ -2929,7 +2872,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Progress - + Forløb Info Hash v2 @@ -3085,10 +3028,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.e.g.: 1h 20m ago %1 siden - - Paused - Sat på pause - Completed Færdige @@ -3155,11 +3094,11 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Stopped - + Stoppet N/A - + - @@ -3203,21 +3142,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.Rename Omdøb - - Resume - Resume/start the torrent - Genoptag - - - Force Resume - Force Resume/start the torrent - Tving genoptag - - - Pause - Pause the torrent - Sæt på pause - Limit share ratio... Begræns deleforhold... @@ -3296,14 +3220,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.New Category Ny kategori - - Location - Placering - - - New name - Nyt navn - Set location Sæt placering @@ -3316,18 +3232,10 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.Edit Category Rediger kategori - - Save path - Gemmesti - Comma-separated tags: Kommasepareret mærkater: - - Add Tags - Tilføj mærkater - Tags Mærkater @@ -3394,7 +3302,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Save path: - + Gemmesti: Location: @@ -3402,11 +3310,11 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Stop - + Stop Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatisk tilstand betyder at diverse torrent-egenskaber (f.eks. gemmesti) vil blive besluttet af den tilknyttede kategori Start @@ -3414,7 +3322,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. New name: - + Nyt navn: Add tags @@ -3422,7 +3330,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Category: - + Kategori: @@ -3471,7 +3379,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Remove tracker - + Fjern tracker @@ -3747,10 +3655,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.Leechers Leechere - - Search engine - Søgemotor - Seeders Seedere @@ -3832,14 +3736,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.Tag: Mærkat: - - Pause torrents - Sæt torrents på pause - - - Resume torrents - Genoptag torrents - Remove unused tags Fjern ubrugte mærkater @@ -4006,27 +3902,27 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Search has finished - + Søgningen er færdig An error occurred during search... - + Der opstod en fejl under søgningen... Close tab - + Luk faneblad Searching... - + Søger... Search aborted - + Søgning afbrudt Close all tabs - + Luk alle faneblade @@ -4154,6 +4050,14 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4341,10 +4245,6 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges.If word order is important use * instead of whitespace. Hvis rækkefølgen på ord er vigtig, så brug * i stedet for blanktegn. - - Add Paused: - Tilføj sat på pause: - Please type the name of the new download rule. Skriv venligst navnet på den nye downloadregel. @@ -4417,29 +4317,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Genoptag torrents - - - All (%1) - Alle (%1) - - - Trackerless (%1) - Trackerløs (%1) - - - Pause torrents - Sæt torrents på pause - Remove torrents All - + Alle Trackerless @@ -4451,7 +4335,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Fjern tracker Stop torrents @@ -4615,15 +4499,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Kan ikke redigere kategori OK - + OK Unable to create category - + Kan ikke oprette kategori Unable to set category @@ -4634,11 +4518,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Domæne Manage Cookies - + Håndter cookies Add Cookie @@ -4646,23 +4530,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Fjern Expiration Date - + Udløbsdato Value - + Værdi Name - + Navn Path - + Sti @@ -4680,18 +4564,18 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Er du sikker på, at du vil gentjekke den valgte torrent(s)? Recheck confirmation - + Bekræftelse for gentjek SearchWidget Close tab - + Luk faneblad @@ -4702,7 +4586,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Adgangskode JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4710,7 +4594,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Login Server response: @@ -4722,10 +4606,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Brugernavn Invalid Username or Password. + Ugyldigt brugernavn eller adgangskode. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_de.ts b/src/webui/www/translations/webui_de.ts index 90b05bc5d..8c5305a8b 100644 --- a/src/webui/www/translations/webui_de.ts +++ b/src/webui/www/translations/webui_de.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Ein Link pro Zeile (HTTP-Links, Magnet-Links und Info-Hashes werden unterstützt) Add torrent links - + Torrent-Links hinzufügen Select .torrent files - + Wähle .torrent-Dateien Torrent options - + Torrent-Optionen @@ -112,14 +112,6 @@ Remove unused categories Unbenutzte Kategorien entfernen - - Resume torrents - Torrents fortsetzen - - - Pause torrents - Torrents pausieren - New Category Neue Kategorie @@ -138,11 +130,11 @@ Start torrents - + Torrents starten Stop torrents - + Torrents anhalten @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent beenden - - Only one link per line - Nur ein Link pro Zeile - Global upload rate limit must be greater than 0 or disabled. Die globale Begrenzung der Uploadrate muss größer als 0 sein oder deaktiviert werden. @@ -228,10 +216,6 @@ Save files to location: Datei(en) hierhin speichern: - - Cookie: - Cookie: - More information Mehr Informationen @@ -295,10 +279,6 @@ Logout Abmelden - - Download Torrents from their URLs or Magnet links - Torrents von URL oder Magnet-Link herunterladen - Upload local torrent Lokalen Torrent hochladen @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Ungültiger Kategoriename:\nBitte keine Sonderzeichen im Kategorienamen verwenden. - - Unable to create category - Kategorie konnte nicht erstellt werden - Upload rate threshold must be greater than 0. Der UL-Schwellenwert muss größer als 0 sein. @@ -357,7 +333,7 @@ Unable to add peers. Please ensure you are adhering to the IP:port format. - Konnte Peers nicht hinzufügen. Bitte sicherstellen daß das IP:Port-Format eingehalten wird. + Konnte Peers nicht hinzufügen. Bitte sicherstellen, dass das IP:Port-Format eingehalten wird. Name cannot be empty @@ -383,10 +359,6 @@ Original author Ursprünglicher Entwickler - - Are you sure you want to remove the selected torrents from the transfer list? - Sollen die gewählten Torrents wirklich aus der Transfer-Liste gelöscht werden? - The port used for the WebUI must be between 1 and 65535. Der Port für das Webinterface muss zwischen 1 und 65535 liegen. @@ -397,79 +369,79 @@ JavaScript Required! You must enable JavaScript for the WebUI to work properly - JavaScript erforderlich! Für das Web-Interface muss JavaScript erlaubt werden um zu funktionieren. + JavaScript erforderlich! Für das Webinterface muss JavaScript erlaubt werden, um zu funktionieren. External IP: N/A - + Externe IP: nicht verfügbar Reverse proxy setup examples - + Beispiele für die Einrichtung eines Reverse-Proxys Could not contact qBittorrent - + Kein Kontakt mit qBittorrent möglich Remember choice - + Auswahl merken Are you sure you want to remove these %1 torrents from the transfer list? - + Sollen diese %1 Torrents wirklich von der Transfer-Liste gelöscht werden? Unable to delete torrents. - + Konnte Torrents nicht löschen. URL - + URL External IP: %1%2 - + Externe IP: %1%2 Edit web seed - + Webseed editieren Are you sure you want to remove %1 from the transfer list? - + Soll %1 wirklich von der Transfer-Liste gelöscht werden? Unable to set Auto Torrent Management for the selected torrents. - + Konnte das automatische Torrent-Managment für die gewählten Torrents nicht einstellen. Unable to stop torrents. - + Konnte Torrents nicht anhalten. Unable to download file - + Konnte Datei nicht herunterladen. External IPs: %1, %2 - + Externe IPs: %1, %2 Unable to recheck torrents. - + Konnte Torrents nicht überprüfen. List of web seeds to add (one per line): - + Liste der hinzuzufügenden Webseeds (einer pro Zeile): Unable to start torrents. - + Konnte Torrents nicht starten. Add web seeds - + Webseeds hinzufügen @@ -498,10 +470,6 @@ Options... Optionen ... - - Resume - Fortsetzen - Top Toolbar Obere Werkzeugleiste @@ -518,10 +486,6 @@ Donate! Entwicklung unterstützen! - - Resume All - Alle fortsetzen - Statistics Statistiken @@ -530,17 +494,9 @@ About Über - - Pause - Pausieren - - - Pause All - Alle anhalten - Add Torrent File... - Torrent-Datei hinzufügen... + Torrent-Datei hinzufügen ... Documentation @@ -548,7 +504,7 @@ Add Torrent Link... - Torrent-Link hinzufügen... + Torrent-Link hinzufügen ... Yes @@ -628,7 +584,7 @@ To use this feature, the WebUI needs to be accessed over HTTPS - Um diese Funktion zu nutzen muss das Webinterface über HTTPS aufgerufen werden + Um diese Funktion zu nutzen, muss das Webinterface über HTTPS aufgerufen werden Connection status: Firewalled @@ -678,14 +634,6 @@ Remove Entfernen - - Would you like to resume all torrents? - Sollen alle Torrents fortgesetzt werden? - - - Would you like to pause all torrents? - Sollen alle Torrents angehalten werden? - Execution Log Ausführungs-Log @@ -700,50 +648,54 @@ Filter by: - + Filtern nach: Save Path - + Speicherpfad Stop - + Stopp Use regular expression - + Regulären Ausdruck verwenden Would you like to start all torrents? - + Sollen alle Torrents gestartet werden? Start - + Start Manage Cookies... - + Cookies verwalten ... Unable to export torrent file - + Konnte Torrentdatei nicht exportieren Name - + Name Would you like to stop all torrents? - + Sollen alle Torrents angehalten werden? Start All - + Alle starten Stop All + Alle anhalten + + + Torrent Creator @@ -773,10 +725,6 @@ Language Sprache - - User Interface Language: - Benutzeroberflächensprache: - Email notification upon download completion Benachrichtigen, wenn der Download fertig ist @@ -793,10 +741,6 @@ Torrent Queueing Warteschlange für Torrents - - Automatically add these trackers to new downloads: - Diese Tracker automatisch zu neuen Downloads hinzufügen: - Web User Interface (Remote control) Webuser-Interface (Fernbedienung) @@ -943,7 +887,7 @@ Manually banned IP addresses... - Manuell gebannte IP-Adressen... + Manuell gebannte IP-Adressen ... Apply to trackers @@ -1017,7 +961,7 @@ Enable Local Peer Discovery to find more peers - Lokale Peer Auffindung (LPD) aktivieren um mehr Peers zu finden + Lokale Peer Auffindung (LPD) aktivieren, um mehr Peers zu finden Encryption mode: @@ -1057,7 +1001,7 @@ Use UPnP / NAT-PMP to forward the port from my router - UPnP / NAT-PMP um den Port des Routers weiterzuleiten + UPnP / NAT-PMP, um den Port des Routers weiterzuleiten Certificate: @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Das Passwort wird unverschlüsselt gespeichert! + Info: Das Passwort wird unverschlüsselt gespeichert! μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Schnellster Upload - - Pause torrent - Torrent pausieren - Remove torrent and its files Entferne Torrent und seine Dateien @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Programm nach aufeinanderfolgenden Fehlern sperren: - - Enable cookie Secure flag (requires HTTPS) - Cookie Sicheres Flag aktivieren (erfordert HTTPS) - Header: value pairs, one per line Header: Wertepaare, eines pro Zeile @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Internationalisierten Domain-Namen (IDN) verwenden: - - Run external program on torrent finished - Externes Programm aufrufen, wenn der Torrent fertig ist - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1658,20 +1590,16 @@ Um sich vor DNS-Rebinding-Attacken zu schützen, sollten hier Domain-Namen eingetragen weden, die vom Webinterface-Server verwendet werden. -Verwende ';' um mehrere Einträge zu trennen. +Verwende ';', um mehrere Einträge zu trennen. Platzhalter '*' kann verwendet werden. - - Run external program on torrent added - Externes Programm aufrufen, wenn ein Torrent hinzugefügt wird - HTTPS certificate should not be empty Das HTTPS-Zertifkat sollte nicht leer sein Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - Geben Sie Reverse-Proxy-IPs an (oder Subnetze, z.B. 0.0.0.0/24), um weitergeleitete Client-Adressen zu verwenden (Attribut X-Forwarded-For), verwenden Sie ';' um mehrere Einträge aufzuteilen. + Geben Sie Reverse-Proxy-IPs an (oder Subnetze, z.B. 0.0.0.0/24), um weitergeleitete Client-Adressen zu verwenden (Attribut X-Forwarded-For), verwenden Sie ';', um mehrere Einträge aufzuteilen. HTTPS key should not be empty @@ -1729,10 +1657,6 @@ Platzhalter '*' kann verwendet werden. days Tage - - Log file - Protokolldatei - Behavior Verhalten @@ -1823,7 +1747,7 @@ Platzhalter '*' kann verwendet werden. Resets to default if empty - Standardeinstellung wenn leer + Standardeinstellung, wenn leer Perform hostname lookup via proxy @@ -1851,7 +1775,7 @@ Platzhalter '*' kann verwendet werden. (Auto detect if empty) - (Automatische Erkennung wenn leer) + (Automatische Erkennung, wenn leer) Keep unselected files in ".unwanted" folder @@ -1863,7 +1787,7 @@ Platzhalter '*' kann verwendet werden. sec - Sek. + Sek. I2P outbound quantity: @@ -1947,182 +1871,198 @@ Platzhalter '*' kann verwendet werden. Color scheme: - + Farbschema: Show external IP in status bar - + Externe IP in der Titelleiste anzeigen Fetched trackers - + Abgerufene Tracker Confirm when deleting torrents - + Löschen von Torrents bestätigen Ignore SSL errors: - + SSL-Fehler ignorieren: Dark - + Dunkel Delete files permanently - + Dateien dauerhaft löschen Auto - + Automatisch Use alternating row colors - + Abwechselnde Reihenfarben verwenden Display full announce URL in the Tracker column - + Anzeige der vollständigen Ankündigungs-URL in der Tracker-Spalte URL: - + URL: Transfer list - + Übertragungs-Liste The announce port must be between 0 and 65535. - + Der Port für die Anmeldung muss zwischen 0 und 65535 liegen. Light - + Hell Automatically append these trackers to new downloads: - + Diese Tracker automatisch zu neuen Downloads hinzufügen: Downloading torrents: - + Herunterladende Torrents: Start / stop torrent - + Torrent starten / anhalten Send test email - + Test-Email senden Completed torrents: - + Abgeschlossene Torrents: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Cookie Sicheres Flag aktivieren (erfordert HTTPS oder Localhost-Verbindung) When duplicate torrent is being added - + Wenn ein doppelter Torrent hinzugefügt wird Action on double-click - + Aktion bei Doppelklick Save statistics interval: - + Speicherintervall für Statistiken: Shows a confirmation dialog upon torrent deletion - + Zeigt ein Bestätigungsfenster beim Löschen von Torrents Run on torrent finished: - + Ausführen, wenn Torrent fertiggestellt: Attempted to send email. Check your inbox to confirm success - + Es wurde versucht, eine E-Mail zu senden. Prüfen Sie Ihren Posteingang, um den Erfolg zu bestätigen Automatically append trackers from URL to new downloads: - + Tracker dieser URL automatisch zu neuen Downloads hinzufügen: Torrent content removing mode: - + Lösch-Modus für Torrent-Inhalte: Move files to trash (if possible) - + (Wenn möglich) Dateien in den Papierkorb löschen Stop torrent - + Torrent anhalten Use Category paths in Manual Mode - + Kategoriepfade im manuellen Modus verwenden List of alternative WebUI - + Liste alternativer Webinterfaces Run on torrent added: - + Ausführen, wenn Torrent hinzugefügt: Port reported to trackers (requires restart) [0: listening port]: - + Port, der an die Tracker gemeldet wird (Neustart erforderlich) [0: Port, auf dem gelauscht wird]: User interface language: - + Benutzeroberflächensprache: Merge trackers to existing torrent - + Tracker zu bestehendem Torrent zusammenführen Confirm torrent recheck: - + Überprüfung des Torrents bestätigen: Custom WebUI settings - + Benutzerdefinierter Webinterface-Einstellungen Following settings are WebUI only - + Folgende Einstellungen nur für das Webinterface Simple pread/pwrite - + Einfaches pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Auflösen des relativen Speicherpfads gegen den entsprechenden Kategoriepfad anstelle des Standardpfads. No action - + Keine Aktion Auto hide zero status filters - + Automatisches Ausblenden von Null-Status-Filtern Interface - + Interface Log Files + Protokolldateien + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2491,55 +2431,55 @@ Platzhalter '*' kann verwendet werden. Copy web seed URL - + Webseed-URL kopieren Replace option - + Option für Ersetzen Edit web seed URL... - + Webseed-URL editieren ... Web seed URL: - + Webseed-URL: Yes - + Ja Ratio / Time Active (in months), indicates how popular the torrent is - + Rate / aktive Zeit (in Monaten) - zeigt, wie populär der Torrent ist Popularity: - + Popularität Apply to which filename part - + Auf welche Teile des Dateinamen anwenden No - + Nein Remove web seed - + Webseed entfernen Web seed editing - + Webseed editieren Add web seeds... - + Webseeds hinzufügen ... Private: - + Privat: @@ -2669,14 +2609,6 @@ Platzhalter '*' kann verwendet werden. Completed (0) Abgeschlossen (0) - - Resumed (0) - Fortgesetzt (0) - - - Paused (0) - Pausiert (0) - Active (0) Aktiv (0) @@ -2705,14 +2637,6 @@ Platzhalter '*' kann verwendet werden. Completed (%1) Abgeschlossen (%1) - - Paused (%1) - Pausiert (%1) - - - Resumed (%1) - Fortgesetzt (%1) - Active (%1) Aktiv (%1) @@ -2767,31 +2691,31 @@ Platzhalter '*' kann verwendet werden. Running (0) - + Läuft (0) Stopped (0) - + Angehalten (0) Stopped (%1) - + Angehalten (%1) Running (%1) - + Läuft (%1) Remove torrents - + Torrents entfernen Start torrents - + Torrents starten Stop torrents - + Torrents anhalten @@ -2809,11 +2733,6 @@ Platzhalter '*' kann verwendet werden. i.e: torrent size Größe - - Done - % Done - Fertig - Status Torrent status (e.g. downloading, seeding, paused) @@ -2951,31 +2870,31 @@ Platzhalter '*' kann verwendet werden. Private - + Privat Progress - + Fortschritt Info Hash v2 - + Info-Hash v2 Info Hash v1 - + Info-Hash v1 Incomplete Save Path - + Unvollständiger Speicherpfad Popularity - + Popularität Status Icon - + Status Icon @@ -3111,10 +3030,6 @@ Platzhalter '*' kann verwendet werden. e.g.: 1h 20m ago vor %1 - - Paused - Angehalten - Completed Abgeschlossen @@ -3181,11 +3096,11 @@ Platzhalter '*' kann verwendet werden. Stopped - + Angehalten N/A - + N/V @@ -3212,7 +3127,7 @@ Platzhalter '*' kann verwendet werden. Collapse/expand category - + Kategorie zuklappen/erweitern @@ -3229,21 +3144,6 @@ Platzhalter '*' kann verwendet werden. Rename Umbenennen - - Resume - Resume/start the torrent - Fortsetzen - - - Force Resume - Force Resume/start the torrent - Fortsetzen erzwingen - - - Pause - Pause the torrent - Anhalten - Limit share ratio... Shareverhältnis begrenzen ... @@ -3322,14 +3222,6 @@ Platzhalter '*' kann verwendet werden. New Category Neue Kategorie - - Location - Speicherort - - - New name - Neuer Name - Set location Speicherort setzen @@ -3342,18 +3234,10 @@ Platzhalter '*' kann verwendet werden. Edit Category Kategorie ändern - - Save path - Speicherpfad - Comma-separated tags: Labels, mit Komma getrennt: - - Add Tags - Label hinzufügen - Tags Label @@ -3416,39 +3300,39 @@ Platzhalter '*' kann verwendet werden. Force Start - + Start erzwingen Save path: - + Speicherpfad: Location: - + Speicherort: Stop - + Stopp Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatischer Modus bedeutet, dass diverse Torrent-Eigenschaften (z.B. der Speicherpfad) durch die gewählte Kategorie vorgegeben werden. Start - + Start New name: - + Neuer Name: Add tags - + Label hinzufügen Category: - + Kategorie: @@ -3487,21 +3371,17 @@ Platzhalter '*' kann verwendet werden. confirmDeletionDlg - - Also permanently delete the files - Die Dateien auch dauerhaft löschen - Remove torrent(s) Torrent(s) entfernen Also remove the content files - + Auch die Inhaltsdateien dauerhaft löschen Remove tracker - + Tracker entfernen @@ -3544,7 +3424,7 @@ Platzhalter '*' kann verwendet werden. TiB tebibytes (1024 gibibytes) - TB + TiB PiB @@ -3681,7 +3561,7 @@ Platzhalter '*' kann verwendet werden. Increase window width to display additional filters - Fenstergröße erhöhen um zusätzliche Filter anzuzeigen + Fenstergröße erhöhen, um zusätzliche Filter anzuzeigen to @@ -3697,7 +3577,7 @@ Platzhalter '*' kann verwendet werden. Click the "Search plugins..." button at the bottom right of the window to install some. - Klicke den "Such-Plugins ..."-Knopf unten rechts um welche zu installieren. + Klicke den "Such-Plugins ..."-Knopf unten rechts, um welche zu installieren. There aren't any search plugins installed. @@ -3705,23 +3585,23 @@ Platzhalter '*' kann verwendet werden. Select category - + Kategorie auswählen Min size prefix - + Minimalgröße Präfix Start a search above. - + Oberhalb eine Suche starten. Max size prefix - + Maximalgröße Präfix Select plugins - + Plugins auswählen @@ -3777,25 +3657,21 @@ Platzhalter '*' kann verwendet werden. Leechers Leecher - - Search engine - Suchmaschine - Seeders Seeder Published On - + Veröffentlicht am Engine URL - + Engine-URL Engine - + Engine @@ -3862,14 +3738,6 @@ Platzhalter '*' kann verwendet werden. Tag: Label: - - Pause torrents - Torrents pausieren - - - Resume torrents - Torrents fortsetzen - Remove unused tags Unbenutzte Label entfernen @@ -3888,11 +3756,11 @@ Platzhalter '*' kann verwendet werden. Start torrents - + Torrents starten Stop torrents - + Torrents anhalten @@ -4036,27 +3904,27 @@ Platzhalter '*' kann verwendet werden. Search has finished - + Suche abgeschlossen An error occurred during search... - + Während der Suche ist ein Fehler aufgetreten ... Close tab - + Registerkarte schließen Searching... - + Suche ... Search aborted - + Suche abgebrochen Close all tabs - + Alle Registerkarten schließen @@ -4170,18 +4038,26 @@ Platzhalter '*' kann verwendet werden. Edit feed URL... - + Feed-URL editieren ... Unable to update URL - + Konnte die URL nicht aktualisieren URL is unchanged - + URL hat sich nicht geändert URL cannot be empty + URL kann nicht leer sein + + + Open link + + + + Author: @@ -4369,11 +4245,7 @@ Platzhalter '*' kann verwendet werden. If word order is important use * instead of whitespace. - Wenn die Wortreihenfolge wichtig ist * anstelle von Leerzeichen verwenden - - - Add Paused: - Pausiert hinzufügen: + Wenn die Wortreihenfolge wichtig ist, * anstelle von Leerzeichen verwenden Please type the name of the new download rule. @@ -4405,12 +4277,12 @@ Platzhalter '*' kann verwendet werden. Clear downloaded episodes... - Entferne bereits heruntergeladene Folgen... + Entferne bereits heruntergeladene Folgen ... Smart Episode Filter will check the episode number to prevent downloading of duplicates. Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also support - as a separator) - Der Smart-Folgenfilter überprüft die Folgennummer um das doppelte Herunterladen zu vermeiden. + Der Smart-Folgenfilter überprüft die Folgennummer, um das doppelte Herunterladen zu vermeiden. Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Formate werden auch unterstützt, allerdings als Trennung) @@ -4435,58 +4307,42 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Remove rule - + Regel entfernen Add rule - + Regel hinzufügen Add Stopped: - + Angehaltene hinzufügen: TrackerFiltersList - - Resume torrents - Torrents fortsetzen - - - All (%1) - Alle (%1) - - - Trackerless (%1) - Ohne Tracker (%1) - - - Pause torrents - Torrents pausieren - Remove torrents Torrents entfernen All - + Alle Trackerless - + Ohne Tracker Start torrents - + Torrents starten Remove tracker - + Tracker entfernen Stop torrents - + Torrents anhalten @@ -4632,131 +4488,323 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Choose a log level... - Wähle ein Log Level... + Wähle ein Log Level ... TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Soll der Tracker %1 wirklich von allen Torrents entfernt werden? Category Unable to edit category - + Kategorie kann nicht geändert werden OK - + OK Unable to create category - + Kategorie konnte nicht erstellt werden Unable to set category - + Kategorie konnte nicht erstellt werden CookiesDialog Domain - + Domain Manage Cookies - + Cookies verwalten Add Cookie - + Cookie hinzufügen Remove - + Entfernen Expiration Date - + Ablaufdatum Value - + Wert Name - + Name Path - + Pfad confirmAutoTMMDialog Enable automatic torrent management - + Automatisches Torrent-Management aktivieren Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Soll wirklich das automatische Torrent-Managment für die gewählten Torrents aktiviert werden? Diese könnten verschoben werden. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Sollen die gewählten Torrents wirklich nochmals überprüft werden? Recheck confirmation - + Überprüfe Bestätigung SearchWidget Close tab - + Registerkarte schließen Login qBittorrent WebUI - + qBittorrent Webinterface Password - + Passwort JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript erforderlich! Für das Webinterface muss JavaScript erlaubt werden, um zu funktionieren. Login - + Anmelden Server response: - + Server-Antwort: Unable to log in, server is probably unreachable. - + Fehler beim Einloggen – vermutlich ist der Server nicht erreichbar. Username - + Benutzername Invalid Username or Password. + Ungültiger Benutzername oder Passwort. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_el.ts b/src/webui/www/translations/webui_el.ts index 0e969dd3e..041b24cb9 100644 --- a/src/webui/www/translations/webui_el.ts +++ b/src/webui/www/translations/webui_el.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Ένας σύνδεσμος ανά γραμμή (υποστηρίζονται σύνδεσμοι HTTP, σύνδεσμοι Magnet και info-hashes) Add torrent links - + Προσθήκη συνδέσμων torrent Select .torrent files @@ -84,7 +84,7 @@ Torrent options - + Επιλογές Torrent @@ -112,14 +112,6 @@ Remove unused categories Αφαίρεση αχρησιμοποίητων κατηγοριών - - Resume torrents - Συνέχιση torrents - - - Pause torrents - Παύση των torrents - New Category Νέα κατηγορία @@ -138,11 +130,11 @@ Start torrents - + Έναρξη torrents Stop torrents - + Παύση torrents @@ -151,10 +143,6 @@ Exit qBittorrent Έξοδος qBittorrent - - Only one link per line - Μόνο ένας σύνδεσμος ανά γραμμή - Global upload rate limit must be greater than 0 or disabled. Το όριο του γενικού ρυθμού αποστολής πρέπει να είναι μεγαλύτερο από 0 ή απενεργοποιημένο. @@ -228,10 +216,6 @@ Save files to location: Αποθήκευση αρχείων στην τοποθεσία: - - Cookie: - Cookie: - More information Περισσότερες πληροφορίες @@ -295,10 +279,6 @@ Logout Αποσύνδεση - - Download Torrents from their URLs or Magnet links - Λήψη των Torrents από τα URLs ή τους συνδέσμους Magnet τους - Upload local torrent Μεταφόρτωση τοπικού torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Μη έγκυρο όνομα κατηγορίας:\nΠαρακαλώ μην χρησιμοποιείτε ειδικούς χαρακτήρες στο όνομα της κατηγορίας. - - Unable to create category - Αδυναμία δημιουργίας κατηγορίας - Upload rate threshold must be greater than 0. Το όριο ρυθμού αποστολής πρέπει να είναι μεγαλύτερο του 0. @@ -383,10 +359,6 @@ Original author Αρχικός δημιουργός - - Are you sure you want to remove the selected torrents from the transfer list? - Είστε βέβαιοι ότι θέλετε να διαγράψετε τα επιλεγμένα torrents από τη λίστα μεταφοράς; - The port used for the WebUI must be between 1 and 65535. Η θύρα που χρησιμοποιείται για το Web UI πρέπει να είναι μεταξύ 1 και 65535. @@ -409,15 +381,15 @@ Could not contact qBittorrent - + Αδυναμία επικοινωνίας με qBittorrent Remember choice - + Απομνημόνευση επιλογής Are you sure you want to remove these %1 torrents from the transfer list? - + Είστε σίγουροι πως θέλετε να διαγράψετε αυτά τα "%1" torrents από τη λίστα μεταφορών; Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -498,10 +470,6 @@ Options... Επιλογές… - - Resume - Συνέχιση - Top Toolbar Πάνω Γραμμή εργαλείων @@ -518,10 +486,6 @@ Donate! Δωρεά! - - Resume All - Συνέχιση Όλων - Statistics Στατιστικά @@ -530,14 +494,6 @@ About Σχετικά - - Pause - Παύση - - - Pause All - Παύση Όλων - Add Torrent File... Προσθήκη Αρχείου Torrent… @@ -678,14 +634,6 @@ Remove Αφαίρεση - - Would you like to resume all torrents? - Θέλετε σίγουρα να θέσετε σε συνέχιση όλα τα torrent; - - - Would you like to pause all torrents? - Θέλετε σίγουρα να θέσετε σε παύση όλα τα torrent; - Execution Log Καταγραφή Εκτέλεσης @@ -700,15 +648,15 @@ Filter by: - + Φίλτρο κατά: Save Path - + Διαδρομή Aποθήκευσης Stop - + Διακοπή Use regular expression @@ -716,15 +664,15 @@ Would you like to start all torrents? - + Θα θέλατε να εκκινήσετε όλα τα torrents; Start - + Εκκίνηση Manage Cookies... - + Διαχείριση Cookies... Unable to export torrent file @@ -732,18 +680,22 @@ Name - + Όνομα Would you like to stop all torrents? - + Θα θέλατε να διακόψετε όλα τα torrents; Start All - + Εκκίνηση Όλων Stop All + Διακοπή Όλων + + + Torrent Creator @@ -773,10 +725,6 @@ Language Γλώσσα - - User Interface Language: - Γλώσσα Διεπαφής Χρήστη: - Email notification upon download completion Ειδοποίηση ηλεκτρονικού ταχυδρομείου με την ολοκλήρωση της λήψης @@ -793,10 +741,6 @@ Torrent Queueing Torrent σε Ουρά - - Automatically add these trackers to new downloads: - Αυτόματη προσθήκη αυτών των trackers σε νέες λήψεις: - Web User Interface (Remote control) Web UI (Απομακρυσμένος έλεγχος) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Πληροφορία: Ο κωδικός πρόσβασης αποθηκεύτηκε μη κρυπτογραφημένος + Πληροφορία: Ο κωδικός πρόσβασης αποθηκεύτηκε μη κρυπτογραφημένος μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Γρηγορότερη αποστολή - - Pause torrent - Παύση torrent - Remove torrent and its files Αφαίρεση του torrent και των αρχείων του @@ -1337,7 +1277,7 @@ s - δ + δ Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Αποκλεισμός client μετά από συνεχόμενες αποτυχίες: - - Enable cookie Secure flag (requires HTTPS) - Ενεργοποίηση σήμανσης Secure cookie (απαιτεί HTTPS) - Header: value pairs, one per line Κεφαλίδα: ζευγάρια τιμών, ένα ανά γραμμή @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Υποστήριξη διεθνοποιημένου ονόματος τομέα (IDN) - - Run external program on torrent finished - Εκτέλεση εξωτερικού προγράμματος μετά την ολοκλήρωση ενός torrent - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Χρησιμοποιήστε «;» για να χωρίσετε πολλαπλές καταχωρήσεις. Μπορείτε να χρησιμοποιήσετε και wildcard «*». - - Run external program on torrent added - Εκτέλεση εξωτερικού προγράμματος μετά την προσθήκη ενός torrent - HTTPS certificate should not be empty Το πιστοποιητικό HTTPS δεν πρέπει να είναι κενό @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days ημέρες - - Log file - Αρχείο καταγραφής - Behavior Συμπεριφορά @@ -1945,7 +1869,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + Σχέδιο χρωμάτων: Show external IP in status bar @@ -1957,27 +1881,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Επιβεβαίωση κατά την διαγραφή των torrent Ignore SSL errors: - + Αγνόηση σφαλμάτων SSL: Dark - + Σκοτεινό Delete files permanently - + Μόνιμη διαγραφή αρχείων Auto - + Αυτόματο Use alternating row colors - + Χρήση εναλλασσόμενων χρωμάτων σειράς Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -1997,15 +1921,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Light - + Φωτεινό Automatically append these trackers to new downloads: - + Αυτόματη προσάρτηση αυτών των trackers σε νέες λήψεις: Downloading torrents: - + Λήψη torrents: Start / stop torrent @@ -2013,11 +1937,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Send test email - + Αποστολή δοκιμαστικού email Completed torrents: - + Ολοκληρωμένα torrents: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. When duplicate torrent is being added - + Όταν προστίθεται διπλό torrent Action on double-click - + Ενέργεια στο διπλό κλικ Save statistics interval: @@ -2037,7 +1961,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Εμφανίζει ένα παράθυρο διαλόγου επιβεβαίωσης κατά τη διαγραφή torrent Run on torrent finished: @@ -2045,7 +1969,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Attempted to send email. Check your inbox to confirm success - + Προσπάθεια αποστολής email. Ελέγξτε τα εισερχόμενά σας για να επιβεβαιώσετε την επιτυχία Automatically append trackers from URL to new downloads: @@ -2053,19 +1977,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Torrent content removing mode: - + Λειτουργία αφαίρεσης περιεχομένου του torrent: Move files to trash (if possible) - + Μετακίνηση αρχείων στον κάδο (αν είναι δυνατό) Stop torrent - + Διακοπή torrent Use Category paths in Manual Mode - + Χρήση διαδρομών Κατηγορίας κατά τη Χειροκίνητη Λειτουργία List of alternative WebUI @@ -2085,7 +2009,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Merge trackers to existing torrent - + Συγχώνευση trackers στο υπάρχον torrent Confirm torrent recheck: @@ -2101,28 +2025,44 @@ Use ';' to split multiple entries. Can use wildcard '*'. Simple pread/pwrite - + Απλό pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Επιλύστε τη σχετική Διαδρομή Αποθήκευσης έναντι της κατάλληλης διαδρομής Κατηγορίας, αντί για την Προεπιλεγμένη No action - + Καμία ενέργεια Auto hide zero status filters - + Αυτόματη απόκρυψη φίλτρων μηδενικής κατάστασης Interface - + Διεπαφή Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,19 +2441,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + URL του Web seed: Yes - + Ναι Ratio / Time Active (in months), indicates how popular the torrent is - + Αναλογία / Ενεργός Χρόνος (σε μήνες), δείχνει πόσο δημοφιλές είναι το torrent Popularity: - + Δημοτικότητα: Apply to which filename part @@ -2521,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Όχι Remove web seed @@ -2529,7 +2469,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Επεξεργασία Web seed Add web seeds... @@ -2537,7 +2477,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private: - + Ιδιωτικά: @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Ολοκληρωμένα (0) - - Resumed (0) - Σε Συνέχιση (0) - - - Paused (0) - Σε Παύση (0) - Active (0) Ενεργά (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Ολοκληρωμένα (%1) - - Paused (%1) - Σε Παύση (%1) - - - Resumed (%1) - Σε Συνέχιση (%1) - Active (%1) Ενεργά (%1) @@ -2765,31 +2689,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + Εκτελούνται (0) Stopped (0) - + Σταματημένα (0) Stopped (%1) - + Σταματημένα (%1) Running (%1) - + Εκτελούνται (%1) Remove torrents - + Αφαίρεση torrent Start torrents - + Έναρξη torrents Stop torrents - + Παύση torrents @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Μέγεθος - - Done - % Done - Ολοκληρώθηκε - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,27 +2868,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + Ιδιωτικά Progress - + Πρόοδος Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Μη συμπληρωμένη Διαδρομή Αποθήκευσης Popularity - + Δημοτικότητα Status Icon @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago πριν από %1 - - Paused - Σε Παύση - Completed Ολοκληρωμένα @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Σταματημένο N/A - + Δ/Υ @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Μετονομασία - - Resume - Resume/start the torrent - Συνέχιση - - - Force Resume - Force Resume/start the torrent - Εξαναγκαστική Συνέχιση - - - Pause - Pause the torrent - Παύση - Limit share ratio... Περιορισμός αναλογίας διαμοιρασμού… @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Νέα Κατηγορία - - Location - Τοποθεσία - - - New name - Νέο όνομα - Set location Ρύθμιση τοποθεσίας @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Επεξεργασία Κατηγορίας - - Save path - Διαδρομή αποθήκευσης - Comma-separated tags: Ετικέτες διαχωρισμένες με κόμμα: - - Add Tags - Προσθήκη Ετικετών - Tags Ετικέτες @@ -3414,11 +3298,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + Εξαναγκαστική Εκκίνηση Save path: - + Διαδρομή αποθήκευσης: Location: @@ -3426,19 +3310,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Διακοπή Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Η Αυτόματη λειτουργία σημαίνει ότι διάφορες ιδιότητες του torrent (π.χ. διαδρομή αποθήκευσης) θα αποφασιστούν από την συσχετισμένη κατηγορία. Start - + Εκκίνηση New name: - + Νέο όνομα: Add tags @@ -3446,7 +3330,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Κατηγορία: @@ -3485,21 +3369,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Διαγραφή και των αρχείων - Remove torrent(s) Αφαίρεση torrent Also remove the content files - + Αφαίρεση επίσης και τα αρχεία περιεχομένου Remove tracker - + Αφαίρεση tracker @@ -3711,7 +3591,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start a search above. - + Ξεκινήστε μια αναζήτηση παραπάνω. Max size prefix @@ -3775,25 +3655,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Leechers - - Search engine - Μηχανή αναζήτησης - Seeders Seeders Published On - + Δημοσιεύτηκε Στις Engine URL - + Engine URL Engine - + Engine @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Ετικέτα: - - Pause torrents - Παύση των torrents - - - Resume torrents - Συνέχιση των torrents - Remove unused tags Αφαίρεση αχρησιμοποίητων ετικετών @@ -3886,11 +3754,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + Έναρξη torrents Stop torrents - + Διακοπή torrents @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Η αναζήτηση ολοκληρώθηκε An error occurred during search... - + Προέκυψε ένα σφάλμα κατά την αναζήτηση... Close tab - + Κλείσιμο καρτέλας Searching... - + Αναζήτηση... Search aborted - + Η αναζήτηση διακόπηκε Close all tabs - + Κλείσιμο όλων των καρτελών @@ -4168,7 +4036,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Επεξεργασία URL ροής... Unable to update URL @@ -4182,6 +4050,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Εάν η σειρά λέξεων είναι σημαντική, χρησιμοποιήστε * αντί για κενά. - - Add Paused: - Προσθήκη Σε Παύση: - Please type the name of the new download rule. Παρακαλώ πληκτρολογήστε το όνομα του νέου κανόνα λήψης. @@ -4441,50 +4313,34 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Add Stopped: - + Προσθήκη Σε Διακοπή: TrackerFiltersList - - Resume torrents - Συνέχιση των torrents - - - All (%1) - Όλα (%1) - - - Trackerless (%1) - Χωρίς Tracker (%1) - - - Pause torrents - Παύση των torrents - Remove torrents Αφαίρεση torrent All - + Όλα Trackerless - + Χωρίς Tracker Start torrents - + Εκκίνηση torrents Remove tracker - + Αφαίρεση tracker Stop torrents - + Διακοπή torrents @@ -4644,15 +4500,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Δεν ήταν δυνατή η επεξεργασία της κατηγορίας OK - + OK Unable to create category - + Δεν ήταν δυνατή η δημιουργία της κατηγορίας Unable to set category @@ -4663,11 +4519,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Τομέας Manage Cookies - + Διαχείριση Cookies Add Cookie @@ -4675,52 +4531,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Αφαίρεση Expiration Date - + Ημερομηνία Λήξης Value - + Τιμή Name - + Όνομα Path - + Διαδρομή confirmAutoTMMDialog Enable automatic torrent management - + Ενεργοποίηση αυτόματης διαχείρισης torrent Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Είστε βέβαιοι πως θέλετε να ενεργοποιήσετε την Αυτόματη Διαχείριση Torrent για τα επιλεγμένα torrent(s); Μπορεί να μετεγκατασταθούν. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Είστε σίγουροι πως θέλετε να επανελέγξετε τα επιλεγμένα torrent(s); Recheck confirmation - + Επιβεβαίωση επανέλεγχου SearchWidget Close tab - + Κλείσιμο καρτέλας @@ -4731,15 +4587,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Κωδικός Πρόσβασης JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Απαιτείται JavaScript! Πρέπει να ενεργοποιήσετε τη JavaScript για να λειτουργήσει σωστά το Web UI Login - + Σύνδεση Server response: @@ -4751,10 +4607,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Όνομα χρήστη Invalid Username or Password. + Μη έγκυρο Όνομα Χρήστη ή Κωδικός Πρόσβασης. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_en.ts b/src/webui/www/translations/webui_en.ts index 1ec75c3dd..8e337f14e 100644 --- a/src/webui/www/translations/webui_en.ts +++ b/src/webui/www/translations/webui_en.ts @@ -694,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -1167,10 +1171,6 @@ When adding a torrent - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1271,10 +1271,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -2039,6 +2035,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -4026,6 +4038,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4581,4 +4601,196 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent + + + \ No newline at end of file diff --git a/src/webui/www/translations/webui_en_AU.ts b/src/webui/www/translations/webui_en_AU.ts index a310ff0bd..4a68b783d 100644 --- a/src/webui/www/translations/webui_en_AU.ts +++ b/src/webui/www/translations/webui_en_AU.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + One link per line (HTTP links, Magnet links and info-hashes are supported) Add torrent links - + Add torrent links Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Remove unused categories - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - New Category New Category @@ -151,10 +143,6 @@ Exit qBittorrent Exit qBittorrent - - Only one link per line - Only one link per line - Global upload rate limit must be greater than 0 or disabled. Global upload rate limit must be greater than 0 or disabled. @@ -228,10 +216,6 @@ Save files to location: Save files to location: - - Cookie: - Cookie: - More information More information @@ -295,10 +279,6 @@ Logout Logout - - Download Torrents from their URLs or Magnet links - Download Torrents from their URLs or Magnet links - Upload local torrent Upload local torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - Unable to create category - Upload rate threshold must be greater than 0. Upload rate threshold must be greater than 0. @@ -383,10 +359,6 @@ Original author Original author - - Are you sure you want to remove the selected torrents from the transfer list? - Are you sure you want to remove the selected torrents from the transfer list? - The port used for the WebUI must be between 1 and 65535. @@ -413,11 +385,11 @@ Remember choice - + Remember choice Are you sure you want to remove these %1 torrents from the transfer list? - + Are you sure you want to remove these %1 torrents from the transfer list? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -498,10 +470,6 @@ Options... Options... - - Resume - Resume - Top Toolbar Top Toolbar @@ -518,10 +486,6 @@ Donate! Donate! - - Resume All - Resume All - Statistics Statistics @@ -530,14 +494,6 @@ About About - - Pause - Pause - - - Pause All - Pause All - Add Torrent File... Add Torrent File... @@ -678,14 +634,6 @@ Remove Remove - - Would you like to resume all torrents? - Would you like to resume all torrents? - - - Would you like to pause all torrents? - Would you like to pause all torrents? - Execution Log Execution Log @@ -700,15 +648,15 @@ Filter by: - + Filter by: Save Path - + Save Path Stop - + Stop Use regular expression @@ -724,7 +672,7 @@ Manage Cookies... - + Manage Cookies... Unable to export torrent file @@ -732,7 +680,7 @@ Name - + Name Would you like to stop all torrents? @@ -746,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language Language - - User Interface Language: - User Interface Language: - Email notification upon download completion E-mail notification upon download completion @@ -793,10 +741,6 @@ Torrent Queueing Torrent Queueing - - Automatically add these trackers to new downloads: - Automatically add these trackers to new downloads: - Web User Interface (Remote control) Web User Interface (Remote control) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: The password is saved unencrypted + Info: The password is saved unencrypted μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Fastest upload - - Pause torrent - Pause torrent - Remove torrent and its files Remove torrent and its files @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Ban client after consecutive failures: - - Enable cookie Secure flag (requires HTTPS) - Enable cookie Secure flag (requires HTTPS) - Header: value pairs, one per line Header: value pairs, one per line @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Support internationalised domain name (IDN): - - Run external program on torrent finished - Run external program on torrent finished - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ you should put in domain names used by Web UI server. Use ';' to split multiple entries. Can use wildcard '*'. - - Run external program on torrent added - Run external program on torrent added - HTTPS certificate should not be empty HTTPS certificate should not be empty @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days days - - Log file - Log file - Behavior Behaviour @@ -1957,7 +1881,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Confirm when deleting torrents Ignore SSL errors: @@ -1973,11 +1897,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Auto Use alternating row colors - + Use alternating row colours Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -2005,7 +1929,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Downloading torrents: Start / stop torrent @@ -2017,7 +1941,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + Completed torrents: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. When duplicate torrent is being added - + When duplicate torrent is being added Action on double-click - + Action on double-click Save statistics interval: @@ -2037,7 +1961,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Shows a confirmation dialog upon torrent deletion Run on torrent finished: @@ -2065,7 +1989,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Use Category paths in Manual Mode - + Use Category paths in Manual Mode List of alternative WebUI @@ -2085,7 +2009,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Merge trackers to existing torrent - + Merge trackers to existing torrent Confirm torrent recheck: @@ -2105,24 +2029,40 @@ Use ';' to split multiple entries. Can use wildcard '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + Resolve relative Save Path against appropriate Category path instead of Default one No action - + No action Auto hide zero status filters - + Auto hide zero status filters Interface - + Interface Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,11 +2441,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + Web seed URL: Yes - + Yes Ratio / Time Active (in months), indicates how popular the torrent is @@ -2521,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + No Remove web seed @@ -2529,7 +2469,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Web seed editing Add web seeds... @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Completed (0) - - Resumed (0) - Resumed (0) - - - Paused (0) - Paused (0) - Active (0) Active (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Completed (%1) - - Paused (%1) - Paused (%1) - - - Resumed (%1) - Resumed (%1) - Active (%1) Active (%1) @@ -2781,7 +2705,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + Remove torrents Start torrents @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Size - - Done - % Done - Done - Status Torrent status (e.g. downloading, seeding, paused) @@ -2953,19 +2872,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Progress Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Incomplete Save Path Popularity @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 ago - - Paused - Paused - Completed Completed @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Stopped N/A - + N/A @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Rename - - Resume - Resume/start the torrent - Resume - - - Force Resume - Force Resume/start the torrent - Force Resume - - - Pause - Pause the torrent - Pause - Limit share ratio... Limit share ratio... @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category New Category - - Location - Location - - - New name - New name - Set location Set location @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Edit Category - - Save path - Save path - Comma-separated tags: Comma-separated tags: - - Add Tags - Add Tags - Tags Tags @@ -3418,7 +3302,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Save path: Location: @@ -3426,11 +3310,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Stop Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatic mode means that various torrent properties(eg save path) will be decided by the associated category Start @@ -3438,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + New name: Add tags @@ -3446,7 +3330,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Category: @@ -3485,10 +3369,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Also permanently delete the files - Remove torrent(s) Remove torrent(s) @@ -3499,7 +3379,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Remove tracker @@ -3775,10 +3655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Leechers - - Search engine - Search engine - Seeders Seeders @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Tag: - - Pause torrents - Pause torrents - - - Resume torrents - Resume torrents - Remove unused tags Remove unused tags @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Search has finished An error occurred during search... - + An error occurred during search... Close tab - + Close tab Searching... - + Searching... Search aborted - + Search aborted Close all tabs - + Close all tabs @@ -4168,7 +4036,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Edit feed URL... Unable to update URL @@ -4182,6 +4050,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. If word order is important use * instead of white-space. - - Add Paused: - Add Paused: - Please type the name of the new download rule. Please type the name of the new download rule. @@ -4446,33 +4318,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Resume torrents - - - All (%1) - All (%1) - - - Trackerless (%1) - Tracker-less (%1) - - - Pause torrents - Pause torrents - Remove torrents Remove torrents All - + All Trackerless - + Trackerless Start torrents @@ -4480,7 +4336,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Remove tracker Stop torrents @@ -4644,15 +4500,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Unable to edit category OK - + OK Unable to create category - + Unable to create category Unable to set category @@ -4663,11 +4519,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Domain Manage Cookies - + Manage Cookies Add Cookie @@ -4675,52 +4531,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Remove Expiration Date - + Expiration Date Value - + Value Name - + Name Path - + Path confirmAutoTMMDialog Enable automatic torrent management - + Enable automatic torrent management Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Are you sure you want to recheck the selected torrent(s)? Recheck confirmation - + Recheck confirmation SearchWidget Close tab - + Close tab @@ -4731,7 +4587,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Password JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4739,7 +4595,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Login Server response: @@ -4751,10 +4607,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Username Invalid Username or Password. + Invalid Username or Password. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_en_GB.ts b/src/webui/www/translations/webui_en_GB.ts index 9edb77f84..4ab758aee 100644 --- a/src/webui/www/translations/webui_en_GB.ts +++ b/src/webui/www/translations/webui_en_GB.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + One link per line (HTTP links, Magnet links and info-hashes are supported) Add torrent links - + Add torrent links Select .torrent files - + Select .torrent files Torrent options - + Torrent options @@ -112,14 +112,6 @@ Remove unused categories Remove unused categories - - Resume torrents - Resume torrents - - - Pause torrents - Pause torrents - New Category New Category @@ -138,11 +130,11 @@ Start torrents - + Start torrents Stop torrents - + Stop torrents @@ -151,10 +143,6 @@ Exit qBittorrent Exit qBittorrent - - Only one link per line - Only one link per line - Global upload rate limit must be greater than 0 or disabled. Global upload rate limit must be greater than 0 or disabled. @@ -228,10 +216,6 @@ Save files to location: Save files to location: - - Cookie: - Cookie: - More information More information @@ -295,10 +279,6 @@ Logout Logout - - Download Torrents from their URLs or Magnet links - Download Torrents from their URLs or Magnet links - Upload local torrent Upload local torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - Unable to create category - Upload rate threshold must be greater than 0. Upload rate threshold must be greater than 0. @@ -383,10 +359,6 @@ Original author Original author - - Are you sure you want to remove the selected torrents from the transfer list? - Are you sure you want to remove the selected torrents from the transfer list? - The port used for the WebUI must be between 1 and 65535. The port used for the WebUI must be between 1 and 65535. @@ -401,75 +373,75 @@ External IP: N/A - + External IP: N/A Reverse proxy setup examples - + Reverse proxy setup examples Could not contact qBittorrent - + Could not contact qBittorrent Remember choice - + Remember choice Are you sure you want to remove these %1 torrents from the transfer list? - + Are you sure you want to remove these %1 torrents from the transfer list? Unable to delete torrents. - + Unable to delete torrents. URL - + URL External IP: %1%2 - + External IP: %1%2 Edit web seed - + Edit web seed Are you sure you want to remove %1 from the transfer list? - + Are you sure you want to remove %1 from the transfer list? Unable to set Auto Torrent Management for the selected torrents. - + Unable to set Auto Torrent Management for the selected torrents. Unable to stop torrents. - + Unable to stop torrents. Unable to download file - + Unable to download file External IPs: %1, %2 - + External IPs: %1, %2 Unable to recheck torrents. - + Unable to recheck torrents. List of web seeds to add (one per line): - + List of web seeds to add (one per line): Unable to start torrents. - + Unable to start torrents. Add web seeds - + Add web seeds @@ -498,10 +470,6 @@ Options... Options... - - Resume - Resume - Top Toolbar Top Toolbar @@ -518,10 +486,6 @@ Donate! Donate! - - Resume All - Resume All - Statistics Statistics @@ -530,14 +494,6 @@ About About - - Pause - Pause - - - Pause All - Pause All - Add Torrent File... Add Torrent File... @@ -678,14 +634,6 @@ Remove Remove - - Would you like to resume all torrents? - Would you like to resume all torrents? - - - Would you like to pause all torrents? - Would you like to pause all torrents? - Execution Log Execution Log @@ -700,50 +648,54 @@ Filter by: - + Filter by: Save Path - + Save Path Stop - + Stop Use regular expression - + Use regular expression Would you like to start all torrents? - + Would you like to start all torrents? Start - + Start Manage Cookies... - + Manage Cookies... Unable to export torrent file - + Unable to export torrent file Name - + Name Would you like to stop all torrents? - + Would you like to stop all torrents? Start All - + Start All Stop All + Stop All + + + Torrent Creator @@ -773,10 +725,6 @@ Language Language - - User Interface Language: - User Interface Language: - Email notification upon download completion E-mail notification upon download completion @@ -793,10 +741,6 @@ Torrent Queueing Torrent Queueing - - Automatically add these trackers to new downloads: - Automatically add these trackers to new downloads: - Web User Interface (Remote control) Web User Interface (Remote control) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: The password is saved unencrypted + Info: The password is saved unencrypted μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Fastest upload - - Pause torrent - Pause torrent - Remove torrent and its files Remove torrent and its files @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Ban client after consecutive failures: - - Enable cookie Secure flag (requires HTTPS) - Enable cookie Secure flag (requires HTTPS) - Header: value pairs, one per line Header: value pairs, one per line @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Support Internationalised Domain Name (IDN): - - Run external program on torrent finished - Run external program on Torrent finished - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ you should put in domain names used by Web UI server. Use ';' to split multiple entries. Can use wildcard '*'. - - Run external program on torrent added - Run external program on Torrent added - HTTPS certificate should not be empty HTTPS certificate should not be empty @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days days - - Log file - Log file - Behavior Behaviour @@ -1945,182 +1869,198 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + Color scheme: Show external IP in status bar - + Show external IP in status bar Fetched trackers - + Fetched trackers Confirm when deleting torrents - + Confirm when deleting torrents Ignore SSL errors: - + Ignore SSL errors: Dark - + Dark Delete files permanently - + Delete files permanently Auto - + Auto Use alternating row colors - + Use alternating row colours Display full announce URL in the Tracker column - + Display full announce URL in the Tracker column URL: - + URL: Transfer list - + Transfer list The announce port must be between 0 and 65535. - + The announce port must be between 0 and 65535. Light - + Light Automatically append these trackers to new downloads: - + Automatically append these trackers to new downloads: Downloading torrents: - + Downloading torrents: Start / stop torrent - + Start / stop torrent Send test email - + Send test email Completed torrents: - + Completed torrents: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable cookie Secure flag (requires HTTPS or localhost connection) When duplicate torrent is being added - + When duplicate torrent is being added Action on double-click - + Action on double-click Save statistics interval: - + Save statistics interval: Shows a confirmation dialog upon torrent deletion - + Shows a confirmation dialogue upon torrent deletion Run on torrent finished: - + Run on torrent finished: Attempted to send email. Check your inbox to confirm success - + Attempted to send email. Check your inbox to confirm success Automatically append trackers from URL to new downloads: - + Automatically append trackers from URL to new downloads: Torrent content removing mode: - + Torrent content removing mode: Move files to trash (if possible) - + Move files to Wastebasket (if possible) Stop torrent - + Stop torrent Use Category paths in Manual Mode - + Use Category paths in Manual Mode List of alternative WebUI - + List of alternative WebUI Run on torrent added: - + Run on torrent added: Port reported to trackers (requires restart) [0: listening port]: - + Port reported to trackers (requires restart) [0: listening port]: User interface language: - + User interface language: Merge trackers to existing torrent - + Merge trackers to existing torrent Confirm torrent recheck: - + Confirm torrent recheck: Custom WebUI settings - + Custom WebUI settings Following settings are WebUI only - + Following settings are WebUI only Simple pread/pwrite - + Simple pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Resolve relative Save Path against appropriate Category path instead of Default one No action - + No action Auto hide zero status filters - + Auto hide zero status filters Interface - + Interface Log Files + Log Files + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy web seed URL - + Copy web seed URL Replace option - + Replace option Edit web seed URL... - + Edit web seed URL... Web seed URL: - + Web seed URL: Yes - + Yes Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Time Active (in months), indicates how popular the torrent is Popularity: - + Popularity: Apply to which filename part - + Apply to which filename part No - + No Remove web seed - + Remove web seed Web seed editing - + Web seed editing Add web seeds... - + Add web seeds... Private: - + Private: @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Completed (0) - - Resumed (0) - Resumed (0) - - - Paused (0) - Paused (0) - Active (0) Active (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Completed (%1) - - Paused (%1) - Paused (%1) - - - Resumed (%1) - Resumed (%1) - Active (%1) Active (%1) @@ -2765,31 +2689,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + Running (0) Stopped (0) - + Stopped (0) Stopped (%1) - + Stopped (%1) Running (%1) - + Running (%1) Remove torrents - + Remove torrents Start torrents - + Start torrents Stop torrents - + Stop torrents @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Size - - Done - % Done - Done - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + Private Progress - + Progress Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Incomplete Save Path Popularity - + Popularity Status Icon - + Status Icon @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 ago - - Paused - Paused - Completed Completed @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Stopped N/A - + N/A @@ -3210,7 +3125,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Collapse/expand category - + Collapse/expand category @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Rename - - Resume - Resume/start the torrent - Resume - - - Force Resume - Force Resume/start the torrent - Force Resume - - - Pause - Pause the torrent - Pause - Limit share ratio... Limit share ratio... @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category New Category - - Location - Location - - - New name - New name - Set location Set location @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Edit Category - - Save path - Save path - Comma-separated tags: Comma-separated tags: - - Add Tags - Add Tags - Tags Tags @@ -3414,39 +3298,39 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + Force Start Save path: - + Save path: Location: - + Location: Stop - + Stop Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatic mode means that various torrent properties(eg save path) will be decided by the associated category Start - + Start New name: - + New name: Add tags - + Add tags Category: - + Category: @@ -3485,21 +3369,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Also permanently delete the files - Remove torrent(s) Remove torrent(s) Also remove the content files - + Also remove the content files Remove tracker - + Remove tracker @@ -3703,23 +3583,23 @@ Use ';' to split multiple entries. Can use wildcard '*'. Select category - + Select category Min size prefix - + Min size prefix Start a search above. - + Start a search above. Max size prefix - + Max size prefix Select plugins - + Select plugins @@ -3775,25 +3655,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Leechers - - Search engine - Search engine - Seeders Seeders Published On - + Published On Engine URL - + Engine URL Engine - + Engine @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Tag: - - Pause torrents - Pause torrents - - - Resume torrents - Resume torrents - Remove unused tags Remove unused tags @@ -3886,11 +3754,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + Start torrents Stop torrents - + Stop torrents @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Search has finished An error occurred during search... - + An error occurred during search... Close tab - + Close tab Searching... - + Searching... Search aborted - + Search aborted Close all tabs - + Close all tabs @@ -4168,18 +4036,26 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Edit feed URL... Unable to update URL - + Unable to update URL URL is unchanged - + URL is unchanged URL cannot be empty + URL cannot be empty + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. If word order is important use * instead of white-space. - - Add Paused: - Add Paused: - Please type the name of the new download rule. Please type the name of the new download rule. @@ -4433,58 +4305,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + Remove rule Add rule - + Add rule Add Stopped: - + Add Stopped: TrackerFiltersList - - Resume torrents - Resume torrents - - - All (%1) - All (%1) - - - Trackerless (%1) - Tracker-less (%1) - - - Pause torrents - Pause torrents - Remove torrents Remove torrents All - + All Trackerless - + Trackerless Start torrents - + Start torrents Remove tracker - + Remove tracker Stop torrents - + Stop torrents @@ -4637,124 +4493,316 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Are you sure you want to remove tracker %1 from all torrents? Category Unable to edit category - + Unable to edit category OK - + OK Unable to create category - + Unable to create category Unable to set category - + Unable to set category CookiesDialog Domain - + Domain Manage Cookies - + Manage Cookies Add Cookie - + Add Cookie Remove - + Remove Expiration Date - + Expiration Date Value - + Value Name - + Name Path - + Path confirmAutoTMMDialog Enable automatic torrent management - + Enable automatic torrent management Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Are you sure you want to recheck the selected torrent(s)? Recheck confirmation - + Recheck confirmation SearchWidget Close tab - + Close tab Login qBittorrent WebUI - + qBittorrent WebUI Password - + Password JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript Required! You must enable JavaScript for the WebUI to work properly Login - + Login Server response: - + Server response: Unable to log in, server is probably unreachable. - + Unable to log in, server is probably unreachable. Username - + Username Invalid Username or Password. + Invalid Username or Password. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_eo.ts b/src/webui/www/translations/webui_eo.ts index 0f99a219c..091716fba 100644 --- a/src/webui/www/translations/webui_eo.ts +++ b/src/webui/www/translations/webui_eo.ts @@ -28,7 +28,7 @@ Content layout: - + Enhava aranĝo: Original @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Po unu ligilo linie (HTTP-ligiloj, Magnet-ligiloj kaj info-haketoj estas subtenitaj) Add torrent links - + Aldoni torent-ligiloj Select .torrent files @@ -95,7 +95,7 @@ Uncategorized - + Senkategoriaj @@ -112,21 +112,13 @@ Remove unused categories Forigi neuzatajn kategoriojn - - Resume torrents - Reaktivigi la torentojn - - - Pause torrents - Paŭzigi la torentojn - New Category Edit category... - + Redakti kategorion... Remove torrents @@ -151,10 +143,6 @@ Exit qBittorrent Ĉesigi la qBittorrent-klienton - - Only one link per line - Nur po unu ligilo por linio - Global upload rate limit must be greater than 0 or disabled. La malloka alŝutrapidlimo nepras esti aŭ pli ol 0 aŭ malebligita. @@ -228,10 +216,6 @@ Save files to location: Konservi dosierojn al la loko: - - Cookie: - Kuketo: - More information Pli informoj @@ -401,11 +385,11 @@ Remember choice - + Memori elekton Are you sure you want to remove these %1 torrents from the transfer list? - + Ĉu vi vere volas forigi tiujn %1 torentojn de la transmetlisto? Unable to delete torrents. @@ -413,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -486,10 +470,6 @@ Options... Opcioj - - Resume - Reaktivigi - Top Toolbar @@ -506,10 +486,6 @@ Donate! Donacu! - - Resume All - Reaktivigu Ĉion - Statistics Statistikoj @@ -518,14 +494,6 @@ About Pri - - Pause - Paŭzigu - - - Pause All - Paŭzigu Ĉion - Add Torrent File... Aldonu Torentdosieron... @@ -648,11 +616,11 @@ RSS Reader - + RSS-legilo RSS - + RSS Filters Sidebar @@ -688,7 +656,7 @@ Stop - + Halti Use regular expression @@ -712,7 +680,7 @@ Name - + Nomo Would you like to stop all torrents? @@ -726,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -753,10 +725,6 @@ Language Lingvo - - User Interface Language: - Fasada Lingvo: - Email notification upon download completion @@ -773,17 +741,13 @@ Torrent Queueing Torent-envicigado - - Automatically add these trackers to new downloads: - Aŭtomate aldoni tiujn spurilojn al novaj elŝutoj: - Web User Interface (Remote control) IP address: - + IP-adreso: Server domains: @@ -1209,7 +1173,7 @@ Info: The password is saved unencrypted - Informo: La pasvorto estas konservita senĉifrite + Informo: La pasvorto estas konservita senĉifrite μTP-TCP mixed mode algorithm: @@ -1311,10 +1275,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -1341,7 +1301,7 @@ Seeding Limits - + Fontsendaj limoj KiB @@ -1413,7 +1373,7 @@ RSS - + RSS Network interface: @@ -1421,7 +1381,7 @@ RSS Reader - + RSS-legilo Edit auto downloading rules... @@ -1637,7 +1597,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Run external program - + Lanĉi eksteran programon Files checked @@ -1665,7 +1625,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Example: 172.17.32.0/24, fdff:ffff:c8::/40 - + Ekzemple: 172.17.32.0/24, fdff:ffff:c8::/40 SQLite database (experimental) @@ -1685,7 +1645,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. days - + tagoj Behavior @@ -1701,7 +1661,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. years - + jaroj Save path: @@ -1709,7 +1669,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. months - + monatoj Remember Multi-Rename settings @@ -1817,7 +1777,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. sec - + sek I2P outbound quantity: @@ -1929,11 +1889,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Aŭtomate Use alternating row colors - + Uzi alternajn vicokolorojn Display full announce URL in the Tracker column @@ -1941,7 +1901,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL-adreso: Transfer list @@ -1961,7 +1921,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Elŝutante torentojn: Start / stop torrent @@ -1973,7 +1933,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + Finitaj torentoj: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -1985,7 +1945,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + Duoble-klaka ago Save statistics interval: @@ -2065,7 +2025,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + Neniu ago Auto hide zero status filters @@ -2079,6 +2039,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2457,11 +2433,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + URL-adreso de la TTT-fonto: Yes - + Jes Ratio / Time Active (in months), indicates how popular the torrent is @@ -2477,7 +2453,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Ne Remove web seed @@ -2485,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + TTT-fonta redaktado Add web seeds... @@ -2623,14 +2599,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Finite (0) - - Resumed (0) - Reaktiviĝita (0) - - - Paused (0) - Paŭzinta (0) - Active (0) Aktiva (0) @@ -2659,14 +2627,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Finite (%1) - - Paused (%1) - Paŭzinta (%1) - - - Resumed (%1) - Reaktiviĝita (%1) - Active (%1) Aktiva (%1) @@ -2681,35 +2641,35 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stalled Uploading (%1) - + Nevivaj alŝutataj (%1) Stalled Downloading (%1) - + Nevivaj elŝutataj (%1) Stalled Downloading (0) - + Nevivaj elŝutataj (0) Stalled (0) - + Nevivaj (0) Stalled Uploading (0) - + Nevivaj alŝutataj (0) Stalled (%1) - + Nevivaj (%1) Checking (%1) - + Kontrolataj (%1) Checking (0) - + Kontrolataj (0) Moving (%1) @@ -2737,7 +2697,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + Forigi torentojn Start torrents @@ -2763,11 +2723,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Grando - - Done - % Done - Finita - Status Torrent status (e.g. downloading, seeding, paused) @@ -2909,7 +2864,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Progreso Info Hash v2 @@ -3065,21 +3020,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago antaŭ %1 - - Paused - Paŭzinta - Completed Finita Moving - + Translokigata [F] Seeding - + [F] Fontsendata Seeding @@ -3135,11 +3086,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Haltinta N/A - + N/A @@ -3183,21 +3134,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Renomi... - - Resume - Resume/start the torrent - Reaktivigi - - - Force Resume - Force Resume/start the torrent - Devigi reaktivigado - - - Pause - Pause the torrent - Paŭzigi - Limit share ratio... Limigi kunhavan proporcion... @@ -3288,18 +3224,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category - - Save path - Konserva dosierindiko - Comma-separated tags: - - Add Tags - Aldoni Etikedojn - Tags Etikedoj @@ -3326,7 +3254,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Add... - + Aldoni... Info hash v1 @@ -3354,7 +3282,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Renaming - + Alinomado Comment @@ -3366,7 +3294,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Konserva dosierindiko: Location: @@ -3374,11 +3302,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Halti Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + La signifo de aŭtomata modo estas diversaj torentaj ecoj(ek. konserva indiko) decidos per la elektita kategorio. Start @@ -3386,7 +3314,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Nova nomo: Add tags @@ -3394,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Kategorio: @@ -3443,14 +3371,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Forigi la spurilon downloadFromURL Download from URLs - + Elŝuti el URL-oj Download @@ -3619,7 +3547,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Warning - + Averto Increase window width to display additional filters @@ -3719,10 +3647,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Ricevantoj - - Search engine - Serĉilo - Seeders Fontoj @@ -3798,20 +3722,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. Add tag... - + Aldoni etikedon... Tag: Etikedo - - Pause torrents - Paŭzigi la torentojn - - - Resume torrents - Reaktivigi la torentojn - Remove unused tags Forigi neuzitajn etikedojn @@ -3845,7 +3761,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Untagged - + Senetikedaj @@ -3978,11 +3894,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Serĉo finiĝis An error occurred during search... - + Eraro okazis dum la serĉo... Close tab @@ -3990,11 +3906,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Searching... - + Serĉante... Search aborted - + Serĉo ĉesiĝis Close all tabs @@ -4005,7 +3921,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. TorrentContentTreeView Renaming - + Alinomado New name: @@ -4126,6 +4042,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4313,10 +4237,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. - - Add Paused: - Aldoni Paŭzinte: - Please type the name of the new download rule. Bonvolu tajpi la nomon de la nova elŝutregulo. @@ -4389,29 +4309,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Reaktivigi la torentojn - - - All (%1) - Ĉio (%1) - - - Trackerless (%1) - Senspurila (%1) - - - Pause torrents - Paŭzigi la torentojn - Remove torrents Forigi torentojn All - + Ĉio Trackerless @@ -4423,7 +4327,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Forigi la spurilon Stop torrents @@ -4485,7 +4389,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Warning - + Averto Information Messages @@ -4591,7 +4495,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also OK - + Bone Unable to create category @@ -4606,11 +4510,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Domajno Manage Cookies - + Administri kuketojn Add Cookie @@ -4618,23 +4522,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Forigi Expiration Date - + Eksvalidiĝa dato Value - + Valoro Name - + Nomo Path - + Vojo @@ -4652,7 +4556,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Ĉu vi certas, ke vi volas rekontroli la elektita(j)n torento(j)n? Recheck confirmation @@ -4674,7 +4578,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Pasvorto JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4682,7 +4586,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Ensaluti Server response: @@ -4698,6 +4602,198 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Invalid Username or Password. + Malvalida uzantnomo aŭ pasvorto. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_es.ts b/src/webui/www/translations/webui_es.ts index a5f4b0d61..3ec5d2d17 100644 --- a/src/webui/www/translations/webui_es.ts +++ b/src/webui/www/translations/webui_es.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Un enlace por línea (pueden ser enlaces HTTP, enlaces magnet o info-hashes) Add torrent links - + Agregar enlaces torrent Select .torrent files - + Seleccionar archivos .torrent Torrent options - + Opciones de Torrent @@ -112,14 +112,6 @@ Remove unused categories Eliminar categorías sin utilizar - - Resume torrents - Continuar torrents - - - Pause torrents - Pausar torrents - New Category Nueva categoría @@ -138,11 +130,11 @@ Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -151,10 +143,6 @@ Exit qBittorrent Salir de qBittorrent - - Only one link per line - Solamente un enlace por línea - Global upload rate limit must be greater than 0 or disabled. El límite de la tasa de subida debe ser mayor que 0 o estar inhabilitado. @@ -228,10 +216,6 @@ Save files to location: Guardar los archivos en: - - Cookie: - Cookie: - More information Más Información @@ -295,10 +279,6 @@ Logout Salir - - Download Torrents from their URLs or Magnet links - Descargar torrents desde sus URL o enlaces magnet - Upload local torrent Subir torrent local @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nombre de categoría invalido:\nPor favor no use caracteres especiales para el nombre de la categoría. - - Unable to create category - No se pudo crear la categoría - Upload rate threshold must be greater than 0. El límite de la tasa de subida debe ser mayor que 0. @@ -383,10 +359,6 @@ Original author Autor original - - Are you sure you want to remove the selected torrents from the transfer list? - ¿Está seguro de que desea eliminar los torrents seleccionados de la lista de transferencias? - The port used for the WebUI must be between 1 and 65535. El puerto usado para la interfaz Web debe estar comprendido entre 1 y 65535. @@ -401,75 +373,75 @@ External IP: N/A - + IP externa: N/A Reverse proxy setup examples - + Ejemplos de configuración de proxy inverso Could not contact qBittorrent - + No se pudo contactar con qBittorrent Remember choice - + Recordar esta elección Are you sure you want to remove these %1 torrents from the transfer list? - + ¿Seguro que desea eliminar estos %1 torrents de la lista de transferencias? Unable to delete torrents. - + No se pudo eliminar torrents. URL - + URL External IP: %1%2 - + IP externa: %1%2 Edit web seed - + Editar semilla web Are you sure you want to remove %1 from the transfer list? - + ¿Seguro que desea eliminar '%1' de la lista de transferencias? Unable to set Auto Torrent Management for the selected torrents. - + No se puede configurar la gestión automática de torrents para los torrents seleccionados. Unable to stop torrents. - + No se pueden detener los torrents. Unable to download file - + No se puede descargar el archivo External IPs: %1, %2 - + IP externas: %1, %2 Unable to recheck torrents. - + No se pueden volver a verificar los torrents. List of web seeds to add (one per line): - + Lista de semillas web para añadir (una por línea): Unable to start torrents. - + No se pueden iniciar los torrents. Add web seeds - + Añadir semillas web @@ -498,10 +470,6 @@ Options... Opciones... - - Resume - Continuar - Top Toolbar Barra de herramientas @@ -518,10 +486,6 @@ Donate! Donar! - - Resume All - Reanudar todos - Statistics Estadísticas @@ -530,14 +494,6 @@ About Acerca de - - Pause - Pausar - - - Pause All - Pausar todos - Add Torrent File... Agregar archivo torrent... @@ -678,14 +634,6 @@ Remove Eliminar - - Would you like to resume all torrents? - ¿Le gustaría reanudar todos los torrents? - - - Would you like to pause all torrents? - ¿Le gustaría pausar todos los torrents? - Execution Log Registro de ejecución @@ -700,50 +648,54 @@ Filter by: - + Filtrar por: Save Path - + Ruta de Destino Stop - + Detener Use regular expression - + Usar expresion regular Would you like to start all torrents? - + ¿Quieres iniciar todos los torrents? Start - + Empezar Manage Cookies... - + Administrar Cookies... Unable to export torrent file - + No se puede exportar el archivo torrent. Name - + Nombre Would you like to stop all torrents? - + ¿Quieres detener todos los torrents? Start All - + Empezar todo Stop All + Detener todo + + + Torrent Creator @@ -773,10 +725,6 @@ Language Idioma - - User Interface Language: - Idioma de la interfaz: - Email notification upon download completion Notificarme por correo electrónico de la finalización de las descargas @@ -793,10 +741,6 @@ Torrent Queueing Torrents en cola - - Automatically add these trackers to new downloads: - Agregar automáticamente estos trackers a las descargas: - Web User Interface (Remote control) interfaz Web (Control remoto) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: La contraseña se guarda sin cifrar + Info: La contraseña se guarda sin cifrar μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Subida más rápida - - Pause torrent - Pausar torrent - Remove torrent and its files Eliminar el torrent y sus archivos @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Vetar el cliente después de fracasos consecutivos: - - Enable cookie Secure flag (requires HTTPS) - Habilitar el indicador de seguridad de cookies (requiere HTTPS) - Header: value pairs, one per line Encabezado: valores de pares, uno por línea @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Admite nombre de dominio internacionalizado (IDN): - - Run external program on torrent finished - Ejecutar programa externo en torrent terminado - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ no debería utilizar nombres de dominio utilizados por el servidor de la interfa Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. - - Run external program on torrent added - Ejecutar programa externo en torrent añadido - HTTPS certificate should not be empty El certificado HTTPS no debe estar vacío @@ -1727,10 +1655,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.days días - - Log file - Archivo de Registro - Behavior Comportamiento @@ -1945,135 +1869,135 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Color scheme: - + Esquema de colores: Show external IP in status bar - + Mostrar IP externa en la barra de estado Fetched trackers - + Rastreadores obtenidos Confirm when deleting torrents - + Confirmar al eliminar torrents Ignore SSL errors: - + Ignorar errores SSL: Dark - + Oscuro Delete files permanently - + Eliminar archivos permanentemente Auto - + Auto Use alternating row colors - + Alternar colores en la lista de transferencias Display full announce URL in the Tracker column - + Mostrar la URL completa del anuncio en la columna Rastreador URL: - + URL: Transfer list - + Lista de transferencias The announce port must be between 0 and 65535. - + El puerto de anuncio debe estar entre 0 y 65535. Light - + Claro Automatically append these trackers to new downloads: - + Agregar automáticamente estos trackers a las descargas: Downloading torrents: - + Torrents descargando: Start / stop torrent - + Iniciar / Parar torrent Send test email - + Enviar correo electrónico de prueba Completed torrents: - + Torrents completados: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Habilitar la bandera segura de cookies (requiere conexión HTTPS o localhost) When duplicate torrent is being added - + Cuando se añade un torrent duplicado Action on double-click - + Acción a realizar con un doble-click Save statistics interval: - + Intervalo de guardado de estadísticas: Shows a confirmation dialog upon torrent deletion - + Muestra una ventana de confirmación al borrar torrents Run on torrent finished: - + Finalizada ejecución en torrent: Attempted to send email. Check your inbox to confirm success - + Se intentó enviar un correo electrónico. Revisa tu bandeja de entrada para confirmar el éxito Automatically append trackers from URL to new downloads: - + Añadir automáticamente rastreadores desde la URL a las nuevas descargas: Torrent content removing mode: - + Modo de eliminación de contenido de torrent: Move files to trash (if possible) - + Mover los archivos a la papelera (si es posible) Stop torrent - + Parar torrents Use Category paths in Manual Mode - + Usar directorios de Categoría en Modo Manual List of alternative WebUI - + Lista de interfaz Web alternativa Run on torrent added: - + Añadida ejecución en torrent: Port reported to trackers (requires restart) [0: listening port]: @@ -2085,7 +2009,7 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Merge trackers to existing torrent - + Fusionar rastreadores a un torrent existente Confirm torrent recheck: @@ -2101,28 +2025,44 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Simple pread/pwrite - + Prelectura/prescritura simple Resolve relative Save Path against appropriate Category path instead of Default one - + Resolver la ruta de ubicación relativa contra la ruta de categoría apropiada en lugar de la predeterminada. No action - + Sin acción Auto hide zero status filters - + Auto ocultar filtros de estado cero Interface - + Interfaz Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2489,7 +2429,7 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Copy web seed URL - + Copiar URL de la semilla Web Replace option @@ -2497,23 +2437,23 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Edit web seed URL... - + Editar URL de la semilla Web Web seed URL: - + URL de la semilla Web: Yes - + Si Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio/Tiempo Activo (en meses), indica qué tan popular es el torrent Popularity: - + Popularidad: Apply to which filename part @@ -2521,15 +2461,15 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. No - + No Remove web seed - + Eliminar semilla Web Web seed editing - + Editando semilla Web Add web seeds... @@ -2537,7 +2477,7 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Private: - + Privado: @@ -2667,14 +2607,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.Completed (0) Completados (0) - - Resumed (0) - Continuados (0) - - - Paused (0) - Pausados (0) - Active (0) Activos (0) @@ -2703,14 +2635,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.Completed (%1) Completados (%1) - - Paused (%1) - Pausados (%1) - - - Resumed (%1) - Continuados (%1) - Active (%1) Activos (%1) @@ -2765,31 +2689,31 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Running (0) - + En ejecución (0) Stopped (0) - + Detenido (0) Stopped (%1) - + Detenido (%1) Running (%1) - + En ejecución (%1) Remove torrents - + Eliminar torrents Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -2807,11 +2731,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.i.e: torrent size Tamaño - - Done - % Done - Progreso - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,27 +2868,27 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Private - + Privado Progress - + Progreso Info Hash v2 - + Informacion Hash v2 Info Hash v1 - + Informacion Hash v1 Incomplete Save Path - + Ruta de destino incompleta Popularity - + Popularidad Status Icon @@ -3109,10 +3028,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.e.g.: 1h 20m ago hace %1 - - Paused - Pausados - Completed Completado @@ -3179,11 +3094,11 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Stopped - + Detenido N/A - + N/A @@ -3227,21 +3142,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.Rename Renombrar - - Resume - Resume/start the torrent - Continuar - - - Force Resume - Force Resume/start the torrent - Forzar continuación - - - Pause - Pause the torrent - Pausar - Limit share ratio... Límitar ratio de compartición... @@ -3320,14 +3220,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.New Category Nueva categoría - - Location - Ubicación - - - New name - Nuevo nombre - Set location Establecer destino @@ -3340,18 +3232,10 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.Edit Category Editar categoría - - Save path - Ruta de destino - Comma-separated tags: Etiquetas separadas por comas: - - Add Tags - Agregar etiquetas - Tags Etiquetas @@ -3414,11 +3298,11 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Force Start - + Forzar inicio Save path: - + Ruta de destino: Location: @@ -3426,27 +3310,27 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Stop - + Detener Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + El modo automático significa que varias propiedades del torrent (por ejemplo, guardar ruta) serán decididas por la categoría asociada Start - + Empezar New name: - + Nuevo nombre: Add tags - + Añadir etiquetas Category: - + Categoría: @@ -3485,21 +3369,17 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. confirmDeletionDlg - - Also permanently delete the files - También eliminar permanentemente los archivos. - Remove torrent(s) Eliminar torrent(s) Also remove the content files - + Elimina también los archivos de contenido. Remove tracker - + Eliminar tracker @@ -3711,7 +3591,7 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Start a search above. - + Inicie una búsqueda arriba. Max size prefix @@ -3775,25 +3655,21 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.Leechers Pares - - Search engine - Motor de búsqueda - Seeders Semillas Published On - + Publicado el Engine URL - + URL del motor Engine - + Motor @@ -3860,14 +3736,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.Tag: Etiqueta: - - Pause torrents - Pausar torrents - - - Resume torrents - Reanudar torrents - Remove unused tags Eliminar etiquetas sin usar @@ -3886,11 +3754,11 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -4034,27 +3902,27 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Search has finished - + La búsqueda ha finalizado An error occurred during search... - + Ha ocurrido un error durante la búsqueda... Close tab - + Cerrar pestaña Searching... - + Buscando... Search aborted - + Búsqueda abortada Close all tabs - + Cerrar todas las pestañas @@ -4168,7 +4036,7 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Edit feed URL... - + Guardar URL de feed... Unable to update URL @@ -4182,6 +4050,14 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'.If word order is important use * instead of whitespace. Si el orden de las palabras es importante use * en vez de espacios. - - Add Paused: - Añadir pausado: - Please type the name of the new download rule. Por favor, escriba el nombre de la nueva regla de descarga. @@ -4441,50 +4313,34 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Add Stopped: - + Agregar detenido: TrackerFiltersList - - Resume torrents - Reanudar torrents - - - All (%1) - Todos (%1) - - - Trackerless (%1) - Sin tracker (%1) - - - Pause torrents - Pausar torrents - Remove torrents Eliminar torrents All - + Todos Trackerless - + Sin tracker Start torrents - + Iniciar torrents Remove tracker - + Eliminar tracker Stop torrents - + Parar torrents @@ -4644,15 +4500,15 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Category Unable to edit category - + No se pudo editar la categoría OK - + OK Unable to create category - + No se pudo crear la categoría Unable to set category @@ -4663,11 +4519,11 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha CookiesDialog Domain - + Dominio Manage Cookies - + Administrar Cookies Add Cookie @@ -4675,52 +4531,52 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Remove - + Eliminar Expiration Date - + Fecha de caducidad Value - + Valor Name - + Nombre Path - + Ruta confirmAutoTMMDialog Enable automatic torrent management - + Habilitar administración de torrent automática. Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + ¿Está seguro de que desea activar la administración automática de Torrent para el/los Torrent(s) seleccionados? Pueden que sean reubicados. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + ¿Esta seguro que desea comprobar los torrents seleccionados? Recheck confirmation - + Confirmación de comprobación SearchWidget Close tab - + Cerrar pestaña @@ -4731,15 +4587,15 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Password - + Contraseña JavaScript Required! You must enable JavaScript for the WebUI to work properly - + ¡Se requiere JavaScript! Debe habilitar JavaScript para que la Interfaz de Usuario de la Web funcione correctamente Login - + Iniciar sesión Server response: @@ -4751,10 +4607,202 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Username - + Nombre de usuario Invalid Username or Password. + Nombre de usuario o contraseña inválidos. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_et.ts b/src/webui/www/translations/webui_et.ts index f5aa775c7..1f32eea40 100644 --- a/src/webui/www/translations/webui_et.ts +++ b/src/webui/www/translations/webui_et.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Üks link ühe rea kohta (HTTP lingid, Magnet lingid ja info-räsid on toetatud) Add torrent links - + Lisa torrenti lingid Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Eemalda kasutamata kategooriad - - Resume torrents - Jätka torrentitega - - - Pause torrents - Pausi torrentid - New Category Uus Kategooria @@ -138,11 +130,11 @@ Start torrents - + Käivita torrentid Stop torrents - + Peata torrentid @@ -151,10 +143,6 @@ Exit qBittorrent Sule qBittorrent - - Only one link per line - Ainult üks link rea kohta - Global upload rate limit must be greater than 0 or disabled. Üleüldine üleslaadimise limiit peab olema enam kui 0 või väljalülitatud. @@ -228,10 +216,6 @@ Save files to location: Salvesta failid asukohta: - - Cookie: - Küpsis: - More information Rohkem informatsiooni @@ -295,10 +279,6 @@ Logout Logi välja - - Download Torrents from their URLs or Magnet links - Lae alla Torrentid nende URL'idest või Magnet linkidest - Upload local torrent Lae üles lokaalne torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Sobimatu kategooria nimi:/nPalun ärge kasutage erilisi tähemärke kategooria nimes. - - Unable to create category - Ei saanud luua kategooriat - Upload rate threshold must be greater than 0. @@ -383,10 +359,6 @@ Original author Algne autor - - Are you sure you want to remove the selected torrents from the transfer list? - Kindel, et soovite eemaldada valitud torrentid ülekanneteloendist? - The port used for the WebUI must be between 1 and 65535. Port WebUI jaoks peab olema vahemikus 1 kuni 65535. @@ -413,11 +385,11 @@ Remember choice - + Mäleta valik Are you sure you want to remove these %1 torrents from the transfer list? - + Kindel, et soovite eemaldada %1 torrentid edastuste nimekirjast? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -498,10 +470,6 @@ Options... Valikud... - - Resume - Jätka - Top Toolbar Ülemine Tööriistariba @@ -518,10 +486,6 @@ Donate! Anneta! - - Resume All - Jätka Kõikidega - Statistics Statistika @@ -530,14 +494,6 @@ About Teave - - Pause - Paus - - - Pause All - Pausi Kõik - Add Torrent File... Lisa Torrenti Fail... @@ -678,14 +634,6 @@ Remove Eemalda - - Would you like to resume all torrents? - Kas soovite jätkata kõikide torrentitega? - - - Would you like to pause all torrents? - Kas soovite pausile panna kõik torrentid? - Execution Log Toimingute logi @@ -700,7 +648,7 @@ Filter by: - + Filtreering: Save Path @@ -708,7 +656,7 @@ Stop - + Stop Use regular expression @@ -716,15 +664,15 @@ Would you like to start all torrents? - + Kas soovite käivitada kõik torrentid? Start - + Käivita Manage Cookies... - + Halda Küpsiseid... Unable to export torrent file @@ -732,18 +680,22 @@ Name - + Nimi Would you like to stop all torrents? - + Kas soovite peatada kõik torrentid? Start All - + Käivita kõik Stop All + Peata kõik + + + Torrent Creator @@ -773,10 +725,6 @@ Language Keel - - User Interface Language: - Kasutajaliidese Keel: - Email notification upon download completion E-mailile teavitused pärast allalaadimise lõpetamist @@ -793,10 +741,6 @@ Torrent Queueing - - Automatically add these trackers to new downloads: - Automaatselt lisa need jälitajad uutele allalaadimistele: - Web User Interface (Remote control) Veebi kasutajaliides (kaughaldus) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: See parool on salvestatud krüpteeringuta + Info: See parool on salvestatud krüpteeringuta μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Kiireim üleslaadimine - - Pause torrent - Pausi torrent - Remove torrent and its files Eemalda torrent ja selle failid @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1639,10 +1579,6 @@ Support internationalized domain name (IDN): - - Run external program on torrent finished - Käivita väline programm, pärast torrenti lõpetamist - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1651,10 +1587,6 @@ you should put in domain names used by WebUI server. Use ';' to split multiple entries. Can use wildcard '*'. - - Run external program on torrent added - Käivita väline programm, pärast torrenti lisamist - HTTPS certificate should not be empty HTTPS sertifikaat ei tohiks olla tühi @@ -1719,10 +1651,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days päeva - - Log file - Logi fail - Behavior Käitumine @@ -1949,7 +1877,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Kinnita enne torrentite kustutamist Ignore SSL errors: @@ -1957,19 +1885,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Dark - + Tume Delete files permanently - + Kustuta failid lõplikult Auto - + Automaatne Use alternating row colors - + Kasuta vahelduvaid rea värve Display full announce URL in the Tracker column @@ -1977,7 +1905,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL Transfer list @@ -1989,7 +1917,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Light - + Hele Automatically append these trackers to new downloads: @@ -1997,7 +1925,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Allalaadimisel torrentid: Start / stop torrent @@ -2005,11 +1933,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Send test email - + Saada test e-kiri Completed torrents: - + Lõpetatud torrentid: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2017,11 +1945,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. When duplicate torrent is being added - + Kui lisatakse juba olemasolev torrent Action on double-click - + Toiming pärast topeltklõpsu Save statistics interval: @@ -2029,7 +1957,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Kuvab kinnitamiseks dialoogi enne torrenti kustutamist Run on torrent finished: @@ -2037,7 +1965,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Attempted to send email. Check your inbox to confirm success - + Prooviti saata e-kiri. Kontrollige postkasti, et kas saabus edukalt Automatically append trackers from URL to new downloads: @@ -2049,15 +1977,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Move files to trash (if possible) - + Pane failid prügikasti (kui on võimalik) Stop torrent - + Peata torrent Use Category paths in Manual Mode - + Kasuta kategooria asukohti manuaalses režiimis List of alternative WebUI @@ -2077,7 +2005,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Merge trackers to existing torrent - + Liida jälitajad olemasolevale torrentile Confirm torrent recheck: @@ -2101,20 +2029,36 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + Ei tehta midagi Auto hide zero status filters - + Automaatselt peida null olekufiltrid Interface - + Kasutajaliides Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2493,11 +2437,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + Veebi-seemne URL: Yes - + Jah Ratio / Time Active (in months), indicates how popular the torrent is @@ -2505,7 +2449,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Popularity: - + Populaarsus: Apply to which filename part @@ -2513,7 +2457,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Ei Remove web seed @@ -2521,7 +2465,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Veebi-seemne muutmine Add web seeds... @@ -2529,7 +2473,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private: - + Privaatne: @@ -2659,10 +2603,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Lõpetatud (0) - - Paused (0) - Pausitud (0) - Active (0) Aktiivsed (0) @@ -2691,10 +2631,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Lõpetatud (%1) - - Paused (%1) - Pausitud (%1) - Active (%1) Aktiivsed (%1) @@ -2765,15 +2701,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + Eemalda torrentid Start torrents - + Käivita torrentid Stop torrents - + Peata torrentid @@ -2791,11 +2727,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Suurus - - Done - % Done - Lõpetatud - Status Torrent status (e.g. downloading, seeding, paused) @@ -2933,11 +2864,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + Privaatne Progress - + Edenemine Info Hash v2 @@ -2953,7 +2884,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Popularity - + Populaarsus Status Icon @@ -3093,10 +3024,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 tagasi - - Paused - Pausitud - Completed Lõpetatud @@ -3167,7 +3094,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. N/A - + Puudub @@ -3211,21 +3138,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Ümbernimeta - - Resume - Resume/start the torrent - Jätka - - - Force Resume - Force Resume/start the torrent - Sunni Jätkama - - - Pause - Pause the torrent - Paus - Limit share ratio... Piira jagamise suhet... @@ -3304,14 +3216,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Uus Kategooria - - Location - Asukoht - - - New name - Uus nimi - Set location Määra asukoht @@ -3324,18 +3228,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Muuda Kategooriat - - Save path - Salvestamise asukoht - Comma-separated tags: Komaga eraldatud sildid: - - Add Tags - Lisa silte - Tags Sildid @@ -3398,11 +3294,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + Sunni käivituma Save path: - + Salvestamise asukoht: Location: @@ -3410,19 +3306,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Stop Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automaatne režiim tähendab, et mitmed torrenti omadused (sh salvestamise koht) määratakse seostatud kategooriaga Start - + Käivita New name: - + Uus nimi: Add tags @@ -3430,7 +3326,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Kategooria: @@ -3469,10 +3365,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Samuti kustuta lõplikult ka failid - Remove torrent(s) Eemalda torrent('eid) @@ -3483,7 +3375,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Eemalda jälitaja @@ -3759,10 +3651,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Kaanid - - Search engine - Otsingu mootor - Seeders Jagajaid @@ -3844,14 +3732,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Silt: - - Pause torrents - Pausi torrentid - - - Resume torrents - Jätka torrentitega - Remove unused tags Eemalda kasutamata sildid @@ -3870,11 +3750,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + Käivita torrentid Stop torrents - + Peata torrentid @@ -4018,27 +3898,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Otsing on lõpetatud An error occurred during search... - + Viga ilmnes otsinguga... Close tab - + Sulge sakk Searching... - + Otsin... Search aborted - + Otsing tühistati Close all tabs - + Sulge kõik sakid @@ -4152,7 +4032,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Muuda voogu URLi... Unable to update URL @@ -4166,6 +4046,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4353,10 +4241,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Kui sõnade järjekord on oluline, siis kasuta * tühimiku asemel. - - Add Paused: - Lisa Pausitud: - Please type the name of the new download rule. Palun sisesta nimi, allalaadimise uuele reeglile. @@ -4430,45 +4314,29 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe TrackerFiltersList - - Resume torrents - Jätka torrentitega - - - All (%1) - Kõik (%1) - - - Trackerless (%1) - Jälitajateta (%1) - - - Pause torrents - Pausi torrentid - Remove torrents Eemalda torrentid All - + Kõik Trackerless - + Jälitajateta Start torrents - + Käivita torrentid Remove tracker - + Eemalda jälitaja Stop torrents - + Peata torrentid @@ -4628,15 +4496,15 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Category Unable to edit category - + Ei saanud muuta kategooriat OK - + OK Unable to create category - + Ei saanud luua kategooriat Unable to set category @@ -4647,11 +4515,11 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe CookiesDialog Domain - + Domeen Manage Cookies - + Halda Küpsiseid Add Cookie @@ -4659,52 +4527,52 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Remove - + Eemalda Expiration Date - + Aegumise Kuupäev Value - + Väärtus Name - + Nimi Path - + Asukoht confirmAutoTMMDialog Enable automatic torrent management - + Lülita sisse automaatne torrentite haldamine Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Oled kindel, et soovid sisselülitada automaatse torrenti halduse valitud torrenti(tele)? Nende torrentite asukohti võidakse muuta. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Kindel, et soovid üle kontrollida valitud torrent(eid)? Recheck confirmation - + Ülekontrollimise kinnitamine SearchWidget Close tab - + Sulge sakk @@ -4715,15 +4583,15 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Password - + Parool JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript Vajalik! Peate sisselülitama JavaScript'i, et WebUI toimiks korrektselt Login - + Logi sisse Server response: @@ -4735,10 +4603,202 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Username - + Kasutajanimi Invalid Username or Password. + Sobimatu Kasutajanimi või Parool + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_eu.ts b/src/webui/www/translations/webui_eu.ts index 020d0314f..8e1cd3d6f 100644 --- a/src/webui/www/translations/webui_eu.ts +++ b/src/webui/www/translations/webui_eu.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Lotura bat lerroko (HTTP loturak, Magnet loturak eta info-hashak daude sostengatuta) Add torrent links - + Gehitu torrent loturak Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Kendu erabiligabeko kategoriak - - Resume torrents - Berrekin torrentak - - - Pause torrents - Pausatu torrentak - New Category Kategoria Berria @@ -138,11 +130,11 @@ Start torrents - + Hasi torrentak Stop torrents - + Gelditu torrentak @@ -151,10 +143,6 @@ Exit qBittorrent Irten qBittorrent-etik - - Only one link per line - Lotura bakar bat lerroko - Global upload rate limit must be greater than 0 or disabled. Igoera neurri muga 0 baino handiagoa edo ezgaituta izan behar da. @@ -228,10 +216,6 @@ Save files to location: Gorde agiriak kokaleku honetan: - - Cookie: - Cookiea: - More information Argibide gehiago @@ -295,10 +279,6 @@ Logout Amaitu saioa - - Download Torrents from their URLs or Magnet links - Jeitsi Torrentak beren URL edo Magnet loturatik - Upload local torrent Igo tokiko torrenta @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Kategoria izen baliogabea:\nMesedez ez erabili hizki berezirik kategoriaren izenean. - - Unable to create category - Ezinezkoa kategoria sortzea - Upload rate threshold must be greater than 0. Igoera neurri muga 0 baino handiagoa izan behar da.. @@ -383,10 +359,6 @@ Original author Jatorrizko egilea - - Are you sure you want to remove the selected torrents from the transfer list? - Ziur hautatutako torrentak transferentzia zerrendatik kendu nahi dituzula? - The port used for the WebUI must be between 1 and 65535. WebUI-ak erabilitako ataka 1 eta 65535 artekoa izan behar da. @@ -409,15 +381,15 @@ Could not contact qBittorrent - + Ezin izan da qBittorrent-ekin harremanetan jarri Remember choice - + Gogoratu aukera Are you sure you want to remove these %1 torrents from the transfer list? - + Ziur %1 torrent hauek transferentzia zerrendatik kendu nahi dituzula? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL-a External IP: %1%2 @@ -498,10 +470,6 @@ Options... Aukerak... - - Resume - Berrekin - Top Toolbar Goiko Tresnabarra @@ -518,10 +486,6 @@ Donate! Eman Dirulaguntza! - - Resume All - Berrekin Denak - Statistics Estatistikak @@ -530,14 +494,6 @@ About Honi buruz - - Pause - Pausatu - - - Pause All - Pasatu Denak - Add Torrent File... Gehitu Torrent Agiria... @@ -678,14 +634,6 @@ Remove Kendu - - Would you like to resume all torrents? - Torrent guztiak berrekin nahi dituzu? - - - Would you like to pause all torrents? - Torrent guztiak pausatu nahi dituzu? - Execution Log Ekintza Oharra @@ -700,15 +648,15 @@ Filter by: - + Iragazi honekin: Save Path - + Gordetze bide-izena Stop - + Gelditu Use regular expression @@ -716,15 +664,15 @@ Would you like to start all torrents? - + Torrent guztiak abiarazi nahi dituzu? Start - + Hasi Manage Cookies... - + Kudeatu Cookieak... Unable to export torrent file @@ -732,18 +680,22 @@ Name - + Izena Would you like to stop all torrents? - + Torrent guztiak gelditu nahi dituzu? Start All - + Hasi dena Stop All + Gelditu dena + + + Torrent Creator @@ -773,10 +725,6 @@ Language Hizkuntza - - User Interface Language: - Erabiltzaile Interfaze Hizkuntza: - Email notification upon download completion Post@ jakinarazpena jeitsiera osatutakoan @@ -793,10 +741,6 @@ Torrent Queueing Torrent Lerrokapena - - Automatically add these trackers to new downloads: - Berezgaitasunez gehitu aztarnari hauek jeitsiera berriei: - Web User Interface (Remote control) Web Erabiltzaile Interfazea (Hurruneko agintea) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: pasahitza zifratu gabe gordetzen da + Info: pasahitza zifratu gabe gordetzen da μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Karga azkarrena - - Pause torrent - Pausatu torrenta - Remove torrent and its files Kendu torrenta eta bere fitxategiak @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Kanporatu bezeroa hutsegite jarraien ondoren: - - Enable cookie Secure flag (requires HTTPS) - Gaitu cookie Secure ikurra (HTTPS behar du) - Header: value pairs, one per line Goiburua: balio pareak, bat lerroko @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Nazioarteturiko domeinu izena (IDN) onartu: - - Run external program on torrent finished - Exekutatu kanpoko programa torrenta osatzerakoan - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ WebEI zerbitzariak erabiltzen dituen domeinu izenetan jarri behar duzu. Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. - - Run external program on torrent added - Exekutatu kanpoko programa torrenta gehitzerakoan - HTTPS certificate should not be empty HTTPS ziurtagiria ez da hutsik egon behar @@ -1727,10 +1655,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.days egun - - Log file - Ohar agiria - Behavior Jokabidea @@ -1945,7 +1869,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Color scheme: - + Kolore-eskema: Show external IP in status bar @@ -1957,27 +1881,27 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Confirm when deleting torrents - + Baieztatu torrenten ezabapena Ignore SSL errors: - + Ezikusi SSL erroreak: Dark - + Iluna Delete files permanently - + Ezabatu fitxategiak betirako Auto - + Berez Use alternating row colors - + Erabili lerro margo ezberdinak Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. URL: - + URL-a: Transfer list @@ -1997,15 +1921,15 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Light - + Argia Automatically append these trackers to new downloads: - + Erantsi automatikoki aztarnari hauek deskarga berrietan: Downloading torrents: - + Torrentak jeisterakoan: Start / stop torrent @@ -2013,11 +1937,11 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Send test email - + Bidali proba posta Completed torrents: - + Osatutako torrentak: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. When duplicate torrent is being added - + Torrent bikoiztua gehitzen ari denean Action on double-click - + Klik-bikoitzaren ekintza Save statistics interval: @@ -2037,7 +1961,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Shows a confirmation dialog upon torrent deletion - + Erakutsi baieztapen elkarrizketa bat torrenta ezabatzean Run on torrent finished: @@ -2045,7 +1969,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Attempted to send email. Check your inbox to confirm success - + Posta elektronikoa bidaltzen saiatu da. Egiaztatu sarrera-ontzia arrakasta berresteko Automatically append trackers from URL to new downloads: @@ -2053,19 +1977,19 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Torrent content removing mode: - + Torrent edukiaren kentze modua: Move files to trash (if possible) - + Mugitu fitxategiak zakarrontzira (posible bada) Stop torrent - + Gelditu torrenta Use Category paths in Manual Mode - + Erabili kategorien bide-izenak eskuzko moduan List of alternative WebUI @@ -2085,7 +2009,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Merge trackers to existing torrent - + Batu aztarnariak lehendik dagoen torrentarekin Confirm torrent recheck: @@ -2101,28 +2025,44 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Simple pread/pwrite - + pread/pwrite sinplea Resolve relative Save Path against appropriate Category path instead of Default one - + Ebatzi gordetze bide-izen erlatiboa kategoriaren bide egokiaren aurka lehenetsitako baten ordez No action - + Ekintzarik ez Auto hide zero status filters - + Ezkutatu automatikoki zero egoera iragazkiak Interface - + Interfazea Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,19 +2441,19 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Web seed URL: - + Web emaritza URL-a: Yes - + Bai Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Denbora aktiboa (hilabetetan), torrenta zein ezaguna den adierazten du Popularity: - + Ospea: Apply to which filename part @@ -2521,7 +2461,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. No - + Ez Remove web seed @@ -2529,7 +2469,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Web seed editing - + Web emaritza editatzen Add web seeds... @@ -2537,7 +2477,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Private: - + Pribatua: @@ -2667,14 +2607,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.Completed (0) Osatuta (0) - - Resumed (0) - Berrekinda (0) - - - Paused (0) - Pausatuta (0) - Active (0) Jardunean (0) @@ -2703,14 +2635,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.Completed (%1) Osatuta (%1) - - Paused (%1) - Pausatuta (%1) - - - Resumed (%1) - Berrekinda (%1) - Active (%1) Jardunean (%1) @@ -2765,31 +2689,31 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Running (0) - + Aktibo (0) Stopped (0) - + Geldituta (0) Stopped (%1) - + Geldituta (%1) Running (%1) - + Aktibo (%1) Remove torrents - + Kendu torrentak Start torrents - + Hasi torrentak Stop torrents - + Gelditu torrentak @@ -2807,11 +2731,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.i.e: torrent size Neurria - - Done - % Done - Eginda - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,27 +2868,27 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Private - + Pribatua Progress - + Garapena Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Gordetze helburu osatugabea Popularity - + Ospea Status Icon @@ -3109,10 +3028,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.e.g.: 1h 20m ago duela %1 - - Paused - Pausatuta - Completed Osatuta @@ -3179,11 +3094,11 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Stopped - + Geldituta N/A - + E/G @@ -3227,21 +3142,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.Rename Berrizendatu - - Resume - Resume/start the torrent - Berrekin - - - Force Resume - Force Resume/start the torrent - Behartu Berrekitea - - - Pause - Pause the torrent - Pausatu - Limit share ratio... Mugatu elkarbanatze maila... @@ -3320,14 +3220,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.New Category Kategoria Berria - - Location - Kokalekua - - - New name - Izen berria - Set location Ezarri kokalekua @@ -3340,18 +3232,10 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.Edit Category Editatu Kategoria - - Save path - Gordetze helburua - Comma-separated tags: Komaz banandutako etiketak: - - Add Tags - Gehitu etiketak - Tags Etiketak @@ -3414,11 +3298,11 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Force Start - + Behartu hasiera Save path: - + Gordetze helburua: Location: @@ -3426,19 +3310,19 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Stop - + Gelditu Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Berezgaitasunezko moduak esanahi du torrent ezaugarri ugari (adib. gordetze helburua) elkartutako kategoriaren arabera erabakiko direla Start - + Hasi New name: - + Izen berria: Add tags @@ -3446,7 +3330,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Category: - + Kategoria: @@ -3485,21 +3369,17 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. confirmDeletionDlg - - Also permanently delete the files - Fitxategiak ere betirako ezabatu - Remove torrent(s) Kendu torrenta(k) Also remove the content files - + Eduki fitxategiak ere kendu Remove tracker - + Kendu aztarnaria @@ -3711,7 +3591,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Start a search above. - + Hasi bilaketa bat goian. Max size prefix @@ -3775,25 +3655,21 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.Leechers Izainak - - Search engine - Bilaketa gailua - Seeders Emaleak Published On - + Hemen argitaratuta Engine URL - + Motorraten URL-a Engine - + Motorra @@ -3860,14 +3736,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.Tag: Etiketa: - - Pause torrents - Pausatu torrentak - - - Resume torrents - Berrekin torrentak - Remove unused tags Kendu erabili gabeko etiketak @@ -3886,11 +3754,11 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Start torrents - + Hasi torrentak Stop torrents - + Gelditu torrentak @@ -4034,27 +3902,27 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Search has finished - + Bilaketa amaitu da An error occurred during search... - + Akats bat gertatu da bilaketan... Close tab - + Itxi erlaitza Searching... - + Bilatzen... Search aborted - + Bilaketa utzita Close all tabs - + Itxi erlaitz guztiak @@ -4168,7 +4036,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Edit feed URL... - + Editatu jarioaren URL-a... Unable to update URL @@ -4182,6 +4050,14 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke.If word order is important use * instead of whitespace. Hitzen ordena garrantzitsua bada erabili * zuriunearen ordez. - - Add Paused: - Gehitu pausatuta: - Please type the name of the new download rule. Mesedez idatzi deskarga-arau berriaren izena. @@ -4441,50 +4313,34 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Add Stopped: - + Gehitu geldituta: TrackerFiltersList - - Resume torrents - Berrekin torrentak - - - All (%1) - Denak (%1) - - - Trackerless (%1) - Jarraitzailerik gabe (%1) - - - Pause torrents - Pausatu torrentak - Remove torrents Kendu torrentak All - + Guztiak Trackerless - + Aztarnarigabea Start torrents - + Hasi torrentak Remove tracker - + Kendu aztarnaria Stop torrents - + Gelditu torrentak @@ -4644,15 +4500,15 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Category Unable to edit category - + Ezinezkoa kategoria editatzea OK - + Ados Unable to create category - + Ezinezkoa kategoria sortzea Unable to set category @@ -4663,11 +4519,11 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar CookiesDialog Domain - + Domeinua Manage Cookies - + Kudeatu Cookieak Add Cookie @@ -4675,52 +4531,52 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Remove - + Kendu Expiration Date - + Epemuga Eguna Value - + Balioa Name - + Izena Path - + Helburua confirmAutoTMMDialog Enable automatic torrent management - + Gaitu torrent kudeaketa automatikoa Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Ziur torrent kudeaketa automatikoa gaitu nahi duzula hautatutako torrente(t)an? Lekuz alda daitezke. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Zihur zaude hautaturiko torrenta(k) berregiaztatzea nahi d(it)uzula? Recheck confirmation - + Berregiaztatu baieztapena SearchWidget Close tab - + Itxi erlaitza @@ -4731,15 +4587,15 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Password - + Sarhitza JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript beharrezkoa da! JavaScript gaitu behar duzu WebUI-ak behar bezala funtziona dezan Login - + Hasi Saioa Server response: @@ -4751,10 +4607,202 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Username - + Erabiltzaile-izena Invalid Username or Password. + Erabiltzaile-izen edo Sarhitz baliogabea. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_fa.ts b/src/webui/www/translations/webui_fa.ts index 03a41c05e..c6bace50f 100644 --- a/src/webui/www/translations/webui_fa.ts +++ b/src/webui/www/translations/webui_fa.ts @@ -76,7 +76,7 @@ Add torrent links - + افزودن لینک های تورنت Select .torrent files @@ -84,7 +84,7 @@ Torrent options - + گزینه‌های تورنت @@ -112,14 +112,6 @@ Remove unused categories حذف دسته استفاده نشده - - Resume torrents - ادامه دانلود تورنتها - - - Pause torrents - توقف دانلود تورنتها - New Category دسته بندی جدید @@ -138,11 +130,11 @@ Start torrents - + شروع تورنت‌ها Stop torrents - + توقف تورنت‌ها @@ -151,45 +143,41 @@ Exit qBittorrent خروج از کیوبیت‌تورنت - - Only one link per line - فقط یک لینک در هر خط - Global upload rate limit must be greater than 0 or disabled. - + محدودیت نرخ بارگذاری جهانی باید بیشتر از 0 باشد یا غیرفعال باشد. Global download rate limit must be greater than 0 or disabled. - + محدودیت نرخ دانلود جهانی باید بیشتر از 0 باشد یا غیرفعال باشد. Alternative upload rate limit must be greater than 0 or disabled. - + محدودیت نرخ آپلود جایگزین باید بیشتر از 0 باشد یا غیرفعال باشد. Alternative download rate limit must be greater than 0 or disabled. - + محدودیت نرخ دانلود جایگزین باید بیشتر از 0 باشد یا غیرفعال باشد. Maximum active downloads must be greater than -1. - + حداکثر دانلودهای فعال باید بیشتر از -1 باشد. Maximum active uploads must be greater than -1. - + حداکثر آپلود‌های فعال باید بیشتر از -1 باشد. Maximum active torrents must be greater than -1. - + حداکثر تورنت فعال باید بیشتر از -1 باشد. Maximum number of connections limit must be greater than 0 or disabled. - + حداکثر تعداد محدودیت اتصال باید بیشتر از 0 باشد یا غیرفعال باشد. Maximum number of connections per torrent limit must be greater than 0 or disabled. - + حداکثر تعداد اتصالات در هر محدودیت تورنت باید بیشتر از 0 باشد یا غیرفعال باشد. Maximum number of upload slots per torrent limit must be greater than 0 or disabled. @@ -222,16 +210,12 @@ Upload Torrents Upload torrent files to qBittorent using WebUI - + آپلود تورنت Save files to location: ذخیره فایل ها در مسیر: - - Cookie: - کوکی: - More information اطلاعات بیشتر @@ -254,7 +238,7 @@ Rename torrent - + تغییرنام تورنت Monday @@ -315,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - نمی‌توان دسته بندی را ایجاد کرد - Upload rate threshold must be greater than 0. @@ -417,7 +397,7 @@ URL - + آدرس External IP: %1%2 @@ -490,10 +470,6 @@ Options... تنظیمات... - - Resume - ادامه - Top Toolbar نوار ابزار بالا @@ -510,10 +486,6 @@ Donate! حمایت مالی! - - Resume All - ادامه همه - Statistics آمار @@ -522,14 +494,6 @@ About درباره - - Pause - توقف - - - Pause All - توقف همه - Add Torrent File... افزودن فایل تورنت @@ -688,11 +652,11 @@ Save Path - + مسیر ذخیره Stop - + توقف Use regular expression @@ -704,11 +668,11 @@ Start - + شروع Manage Cookies... - + مدیریت کوکی‌ها... Unable to export torrent file @@ -716,7 +680,7 @@ Name - + نام Would you like to stop all torrents? @@ -724,10 +688,14 @@ Start All - + شروع همه Stop All + توقف همه + + + Torrent Creator @@ -757,17 +725,13 @@ Language زبان - - User Interface Language: - زبان رابط کاربری: - Email notification upon download completion IP Filtering - + فیلتر آی‌پی Schedule the use of alternative rate limits @@ -855,7 +819,7 @@ Listening Port - + پورت گوش‌دادن Port used for incoming connections: @@ -1065,7 +1029,7 @@ %L: Category - + %L: دسته %F: Content path (same as root path for multifile torrent) @@ -1077,19 +1041,19 @@ %D: Save path - + %D: مسیر ذخیره %C: Number of files - + %C: تعداد فایلها %Z: Torrent size (bytes) - + %Z: اندازه تورنت (بایت) %T: Current tracker - + %T: ردیاب فعلی Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") @@ -1117,11 +1081,11 @@ Download rate threshold: - + آستانه نرخ دانلود: Upload rate threshold: - + آستانه نرخ آپلود: Change current password @@ -1161,7 +1125,7 @@ Relocate torrent - + جابجایی تورنت When Default Save Path changed: @@ -1209,7 +1173,7 @@ Info: The password is saved unencrypted - اطلاعات: کلمه عبور بدون رمزگذاری ذخیره شده + اطلاعات: کلمه عبور بدون رمزگذاری ذخیره شده μTP-TCP mixed mode algorithm: @@ -1271,10 +1235,6 @@ Fastest upload سریعترین بارگذاری - - Pause torrent - توقف تورنت - Remove torrent and its files تورنت و فایل‌های مرتبط همگی پاک شوند @@ -1317,7 +1277,7 @@ s - + ث Send buffer watermark: @@ -1377,7 +1337,7 @@ Session timeout: - + پایان زمان جلسه: Resolve peer countries: @@ -1509,7 +1469,7 @@ %K: Torrent ID - + %K: شناسه تورنت Reannounce to all trackers when IP or port changed: @@ -1525,11 +1485,11 @@ %J: Info hash v2 - + %J: هش اطلاعات ن2 %I: Info hash v1 - + %I: هش اطلاعات ن1 IP address reported to trackers (requires restart): @@ -1545,7 +1505,7 @@ Disk queue size: - + اندازه صف دیسک: Log performance warnings @@ -1605,7 +1565,7 @@ Refresh interval: - + فاصله بازخوانی: ms @@ -1681,7 +1641,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Fastresume files - + فایل های شروع‌سریع Backup the log file after: @@ -1741,7 +1701,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Use Subcategories - + استفاده از زیر شاخه‌ها Add to top of queue @@ -1801,7 +1761,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Mixed mode - + حالت ترکیبی .torrent file size limit: @@ -1809,7 +1769,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. (Auto detect if empty) - + (تشخیص خودکار خالی بودن) Keep unselected files in ".unwanted" folder @@ -1929,11 +1889,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Delete files permanently - + حذف دائمی پرونده‌ها Auto - + خودکار Use alternating row colors @@ -1945,7 +1905,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + آدرس: Transfer list @@ -1977,7 +1937,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + تورنت‌های به پایان رسیده: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2017,11 +1977,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Move files to trash (if possible) - + انتقال فایل ها به سطل زباله (در صورت امکان) Stop torrent - + توقف تورنت Use Category paths in Manual Mode @@ -2083,6 +2043,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2156,15 +2132,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Country/Region - + کشور/منطقه Add peers... - + افزودن همتایان... Peer ID Client - + مشتری شناسه همتا @@ -2253,7 +2229,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Peers: - + همتایان: Download Limit: @@ -2326,34 +2302,34 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - + %1 در %2 (%3 دارد) %1 (%2 this session) - + %1 (%2 در این جلسه) %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) - + %1 (حداکثر %2) %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) - + %1 (مجموع %2) %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - + %1 (میانگین %2) Download limit: - + محدودیت دانلود: Upload limit: - + محدودیت آپلود: Priority @@ -2369,15 +2345,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1 (seeded for %2) - + % 1 (سید برای %2) Info Hash v2: - + هش اطلاعات ن2 Info Hash v1: - + هش اطلاعات ن1: N/A @@ -2417,15 +2393,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Replace - + جایگزینی Extension - + پسوند Replace All - + جایگزین‌کردن همه Include files @@ -2437,7 +2413,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search Files - + جستجوی فایل‌ها Case sensitive @@ -2465,7 +2441,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Yes - + بله Ratio / Time Active (in months), indicates how popular the torrent is @@ -2481,7 +2457,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + نه Remove web seed @@ -2574,15 +2550,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. All-time upload: - + بارگذاری تمام وقت: Total buffer size: - + اندازه کل بافر: Performance statistics - + آمار عملکرد Queued I/O jobs: @@ -2655,14 +2631,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) کامل شده (%1) - - Paused (%1) - متوقف شده (%1) - - - Resumed (%1) - ادامه دانلود (%1) - Active (%1) فعال (%1) @@ -2673,19 +2641,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Errored (%1) - + خطا (%1) Stalled Uploading (%1) - + بارگذاری متوقف‌شده (%1) Stalled Downloading (%1) - + بارگیری متوقف‌شده (%1) Stalled Downloading (0) - + بارگیری متوقف شده (0) Stalled (0) @@ -2693,7 +2661,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stalled Uploading (0) - + بارگذاری متوقف شده (0) Stalled (%1) @@ -2701,47 +2669,47 @@ Use ';' to split multiple entries. Can use wildcard '*'. Checking (%1) - + بررسی (%1) Checking (0) - + بررسی (0) Moving (%1) - + انتقال (%1) Moving (0) - + انتقال دادن (0) Running (0) - + در‌حال اجرا (0) Stopped (0) - + متوقف (0) Stopped (%1) - + متوقف (%1) Running (%1) - + در‌حال اجرا (%1) Remove torrents - + حذف تورنت‌‌ها Start torrents - + شروع تورنت‌ها Stop torrents - + توقف تورنت‌ها @@ -2896,11 +2864,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + خصوصی Progress - + پیشرفت Info Hash v2 @@ -2916,7 +2884,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Popularity - + محبوبیت Status Icon @@ -3003,7 +2971,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tier - + ردیف Download Priority @@ -3023,15 +2991,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Times Downloaded - + بار دانلود شده Add trackers... - + افزودن ردیاب‌ها... Renamed - + تغییرنام داد Original @@ -3046,7 +3014,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Add trackers - + اضافه کردن ردیاب @@ -3054,11 +3022,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1 ago e.g.: 1h 20m ago - - - - Paused - متوقف شده + %1 قبل Completed @@ -3102,7 +3066,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Queued for checking - + در صف بررسی Downloading @@ -3110,7 +3074,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Checking resume data - + بررسی داده های رزومه Stalled @@ -3118,19 +3082,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1 (seeded for %2) - + % 1 (سید برای %2) [F] Downloading metadata - + [F] در حال بارگیری فراداده Stopped - + متوقف شده N/A - + در دسترس نیست @@ -3153,7 +3117,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Collapse/expand - + جمع/گسترش Collapse/expand category @@ -3174,21 +3138,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename تغییر نام - - Resume - Resume/start the torrent - ادامه - - - Force Resume - Force Resume/start the torrent - اجبار به ادامه - - - Pause - Pause the torrent - توقف - Limit share ratio... نسبت محدودیت اشتراک گذاری... @@ -3223,7 +3172,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Set location... - + تنظیم محل... Download first and last pieces first @@ -3273,23 +3222,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force reannounce - + مجبور به اعلام مجدد Edit Category - - - - Save path - مسیر ذخیره + ویرایش دسته‌بندی Comma-separated tags: - - - - Add Tags - افزودن تگ + برچسب‌های جدا شده با کاما: Tags @@ -3321,11 +3262,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Info hash v1 - + هش اطلاعات ن1 Info hash v2 - + هش اطلاعات ن2 Torrent ID @@ -3333,7 +3274,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Export .torrent - + صادرکردن .torrent Remove @@ -3341,7 +3282,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Files... - + تغییر نام فایلها... Renaming @@ -3357,7 +3298,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + مسیر ذخیره سازی: Location: @@ -3365,27 +3306,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + توقف Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + حالت خودکار به این معناست که ویژگی های مختلف تورنت (مانند محل ذخیره) بر اساس دسته بندی مربوطه انتخاب خواهد شد Start - + شروع New name: - + نام جدید: Add tags - + افزودن برچسب Category: - + دسته بندی: @@ -3396,11 +3337,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Use global share limit - + استفاده از محدودیت جهانی Set no share limit - + بدون استفاده از محدودیت جهانی Set share limit to @@ -3412,11 +3353,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. total minutes - + کل دقیقه inactive minutes - + دقایق غیرفعال @@ -3426,7 +3367,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg Remove torrent(s) - + حذف تورنت(ها) Also remove the content files @@ -3434,14 +3375,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + پاک کردن ترکر downloadFromURL Download from URLs - + دانلود از آدرس‌ها Download @@ -3449,7 +3390,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Add Torrent Links - + افزودن پیوند تورنت @@ -3497,12 +3438,12 @@ Use ';' to split multiple entries. Can use wildcard '*'. %1h %2m e.g: 3hours 5minutes - + %1س %2د %1d %2h e.g: 2days 10hours - + %1ر %2س Unknown @@ -3512,23 +3453,23 @@ Use ';' to split multiple entries. Can use wildcard '*'. < 1m < 1 minute - + < 1د %1m e.g: 10minutes - + %1م %1y %2d - + %1س %2ر TorrentsController Save path is empty - + محل ذخیره خالی است @@ -3539,19 +3480,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Plugin path: - + مسیر افزونه: URL or local directory - + آدرس یا فهرست محلی Install plugin - + نصب افزونه Ok - + قبول @@ -3590,7 +3531,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Filter - + فیلتر Torrent names only @@ -3665,7 +3606,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Install new plugin - + نصب افزونه جدید You can get new search engine plugins here: @@ -3708,15 +3649,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers - - - - Search engine - موتور جستجو + زالوها Seeders - + سیدر‌ها Published On @@ -3766,7 +3703,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Add Peers - + افزودن همتایان List of peers to add (one IP per line): @@ -3774,7 +3711,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Ok - + قبول Format: IPv4:port / [IPv6]:port @@ -3795,14 +3732,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: برچسب‌: - - Pause torrents - توقف دانلود تورنتها - - - Resume torrents - ادامه دانلود تورنتها - Remove unused tags حذف برچسب‌های استفاده نشده @@ -3821,11 +3750,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + شروع تورنت‌ها Stop torrents - + توقف تورنت‌ها @@ -3969,27 +3898,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + جستجو به پایان رسید An error occurred during search... - + جستجو با یک خطا مواجه شد... Close tab - + بستن زبانه Searching... - + در حال جستجو... Search aborted - + جستجو به پایان نرسید Close all tabs - + بستن همه زبانه‌ها @@ -4117,6 +4046,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4278,7 +4215,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rss Downloader - + دانلود کننده خوراک‌‌وب Season number is a mandatory non-zero value @@ -4304,10 +4241,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. - - Add Paused: - افزودن در حالت متوقف شده: - Please type the name of the new download rule. لطفا نام قانون جدید دانلود را بنویسید. @@ -4380,29 +4313,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - ادامه دانلود تورنتها - - - All (%1) - همه (%1) - - - Trackerless (%1) - بدون ترکر (%1) - - - Pause torrents - توقف دانلود تورنتها - Remove torrents حذف تورنت‌‌ها All - + همه Trackerless @@ -4410,26 +4327,26 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + شروع تورنت‌ها Remove tracker - + پاک کردن ترکر Stop torrents - + توقف تورنت‌ها FeedListWidget RSS feeds - + خوراک‌‌های وب Unread - + خوانده‌نشده @@ -4440,7 +4357,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Blocked - + مسدود Unknown @@ -4464,11 +4381,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also ID - + شناسه Log Type - + نوع گزارش Clear @@ -4480,15 +4397,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Information Messages - + پیغام‌های اطلاعاتی Warning Messages - + پیغام‌های هشدار Filter logs - + فیلتر گزارشات Blocked IPs @@ -4504,11 +4421,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Timestamp - + برچسب زمان Clear All - + پاک کردن همه Message @@ -4516,7 +4433,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Log Levels: - + سطح گزارش: Reason @@ -4564,7 +4481,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Choose a log level... - + انتخاب سطح گزارش... @@ -4578,15 +4495,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + نمی‌توان دسته بندی را ویرایش کرد OK - + باشه Unable to create category - + نمی‌توان دسته بندی را ایجاد کرد Unable to set category @@ -4597,11 +4514,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + دامنه Manage Cookies - + مدیریت کوکی‌ها Add Cookie @@ -4609,23 +4526,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + حذف Expiration Date - + تاریخ انقضا Value - + مقدار Name - + نام Path - + مسیر @@ -4654,7 +4571,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also SearchWidget Close tab - + بستن زبانه @@ -4665,7 +4582,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + کلمه عبور JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4673,7 +4590,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + ورود Server response: @@ -4685,10 +4602,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + نام کاربری Invalid Username or Password. + نام کاربری یا کلمه عبور نامعتبر + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_fi.ts b/src/webui/www/translations/webui_fi.ts index f5cc67c38..4cc2ee783 100644 --- a/src/webui/www/translations/webui_fi.ts +++ b/src/webui/www/translations/webui_fi.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Yksi linkki riviä kohden (tuetaan HTTP-linkkejä, Magnet-linkkejä ja infotarkistussummia) Add torrent links - + Lisää torrent-linkit Select .torrent files - + Valitse .torrent-tiedostot Torrent options - + Torrentin asetukset @@ -112,14 +112,6 @@ Remove unused categories Poista käyttämättömät kategoriat - - Resume torrents - Jatka torrentteja - - - Pause torrents - Pysäytä torrentit - New Category Uusi kategoria @@ -138,11 +130,11 @@ Start torrents - + Käynnistä torrentit Stop torrents - + Pysäytä torrentit @@ -151,10 +143,6 @@ Exit qBittorrent Sulje qBittorrent - - Only one link per line - Vain yksi linkki riviä kohden - Global upload rate limit must be greater than 0 or disabled. Yleisen lähetysnopeusrajoituksen täytyy olla suurempi kuin 0, tai poissa käytöstä. @@ -228,10 +216,6 @@ Save files to location: Latauskansio: - - Cookie: - Eväste: - More information Lisää tietoa @@ -295,10 +279,6 @@ Logout Kirjaudu ulos - - Download Torrents from their URLs or Magnet links - Lataa torrentteja niiden URL-osoitteista tai Magnet-linkeistä - Upload local torrent Lähetä paikallinen torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - Kategorian luominen ei onnistu - Upload rate threshold must be greater than 0. @@ -389,11 +365,11 @@ %1 has been shutdown - + %1 on sammutettu JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript vaaditaan! Ota JavaScript käyttöön, jotta WebUI toimii oikein External IP: N/A @@ -409,11 +385,11 @@ Remember choice - + Muista valinta Are you sure you want to remove these %1 torrents from the transfer list? - + Haluatko varmasti poistaa nämä %1 torrentia siirtolistalta? Unable to delete torrents. @@ -421,11 +397,11 @@ URL - + Verkko-osoite External IP: %1%2 - + Ulkoinen IP: %1%2 Edit web seed @@ -445,11 +421,11 @@ Unable to download file - + Tiedostoa ei voi ladata External IPs: %1, %2 - + Ulkoiset IP:t: %1, %2 Unable to recheck torrents. @@ -494,10 +470,6 @@ Options... Asetukset... - - Resume - Jatka - Top Toolbar Työkalupalkki @@ -514,10 +486,6 @@ Donate! Lahjoita! - - Resume All - Jatka kaikkia - Statistics Tilastot @@ -526,14 +494,6 @@ About Tietoja - - Pause - Pysäytä - - - Pause All - Pysäytä kaikki - Add Torrent File... Lisää torrent... @@ -674,14 +634,6 @@ Remove Poista - - Would you like to resume all torrents? - Haluatko jatkaa kaikkia torrenteja? - - - Would you like to pause all torrents? - Haluatko keskeyttää kaikki torrentit? - Execution Log Suoritusloki @@ -696,23 +648,23 @@ Filter by: - + Suodatin: Save Path - + Tallennussijainti Stop - + Pysäytä Use regular expression - + Käytä säännöllistä lauseketta Would you like to start all torrents? - + Haluatko käynnistää kaikki torrentit? Start @@ -720,7 +672,7 @@ Manage Cookies... - + Evästeiden hallinta... Unable to export torrent file @@ -728,18 +680,22 @@ Name - + Nimi Would you like to stop all torrents? - + Haluatko pysäyttää kaikki torrentit? Start All - + Käynnistä kaikki Stop All + Pysäytä kaikki + + + Torrent Creator @@ -769,10 +725,6 @@ Language Kieli - - User Interface Language: - Käyttöliittymän kieli: - Email notification upon download completion Sähköposti-ilmoitus latauksen valmistuttua @@ -789,10 +741,6 @@ Torrent Queueing Torrentien jonotus - - Automatically add these trackers to new downloads: - Lisää nämä seurantapalvelimet automaattisesti uusiin latauksiin: - Web User Interface (Remote control) Web-käyttöliittymä (Etäohjaus) @@ -1225,7 +1173,7 @@ Info: The password is saved unencrypted - Tärkeää: Salasana tallennetaan salaamattomana + Tärkeää: Salasana tallennetaan salaamattomana μTP-TCP mixed mode algorithm: @@ -1287,10 +1235,6 @@ Fastest upload Nopein lähetys - - Pause torrent - Pysäytä torrent - Remove torrent and its files Poista torrent ja sen tiedostot @@ -1331,10 +1275,6 @@ Asynchronous I/O threads: Asynkroniset I/O-säikeet: - - s - - Send buffer watermark: @@ -1407,10 +1347,6 @@ Ban client after consecutive failures: Estä asiakas, kun perättäisiä epäonnistumisia: - - Enable cookie Secure flag (requires HTTPS) - Käytä evästeen Secure-lippua (vaatii HTTPS:n) - Header: value pairs, one per line @@ -1625,11 +1561,11 @@ Refresh interval: - + Päivitystiheys: ms - + ms Excluded file names @@ -1711,10 +1647,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days päivää - - Log file - Lokitiedosto - Behavior Toiminta @@ -1877,7 +1809,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. I2P (Experimental) - + I2P (kokeellinen) Disk IO type (requires restart): @@ -1929,11 +1861,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + Väriteema: Show external IP in status bar - + Näytä ulkoinen IP tilarivillä Fetched trackers @@ -1941,27 +1873,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Vahvista torrentin poisto Ignore SSL errors: - + Ohita SSL-virheet: Dark - + Tumma Delete files permanently - + Poista tiedostot pysyvästi Auto - + Automaattinen Use alternating row colors - + Käytä vaihtelevia rivivärejä Display full announce URL in the Tracker column @@ -1969,7 +1901,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -1981,7 +1913,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Light - + Vaalea Automatically append these trackers to new downloads: @@ -1989,19 +1921,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Torrentteja ladatessa: Start / stop torrent - + Käynnistä/pysäytä torrent Send test email - + Lähetä testisähköposti Completed torrents: - + Valmistuneet torrentit: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2013,7 +1945,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + Toiminta kaksoisnapsautuksella Save statistics interval: @@ -2021,7 +1953,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Näyttää vahvistusikkunan torrentia poistaessa Run on torrent finished: @@ -2041,11 +1973,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Move files to trash (if possible) - + Siirrä tiedostot roskakoriin (jos mahdollista) Stop torrent - + Pysäytä torrent Use Category paths in Manual Mode @@ -2065,7 +1997,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. User interface language: - + Käyttöliittymän kieli: Merge trackers to existing torrent @@ -2089,11 +2021,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + Selvitä suhteellinen tallennussijainti tallennuksen oletussijainnin sijaan sopivan kategorian sijainnilla No action - + Ei toimintoa Auto hide zero status filters @@ -2101,12 +2033,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + Käyttöliittymä Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2417,11 +2365,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Filename - + Tiedostonimi Filename + Extension - + Tiedostonimi + pääte Enumerate Files @@ -2441,7 +2389,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Replace - + Korvaa Extension @@ -2449,7 +2397,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Replace All - + Korvaa kaikki Include files @@ -2465,7 +2413,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Case sensitive - + Huomioi kirjainkoko Match all occurrences @@ -2485,11 +2433,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + Web-jaon URL-osoite Yes - + Kyllä Ratio / Time Active (in months), indicates how popular the torrent is @@ -2497,7 +2445,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Popularity: - + Suosio: Apply to which filename part @@ -2505,15 +2453,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Ei Remove web seed - + Poista web-jako Web seed editing - + Web-jaon muokkaus Add web seeds... @@ -2521,7 +2469,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private: - + Yksityinen: @@ -2651,14 +2599,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Valmiina (0) - - Resumed (0) - Jatkettu (0) - - - Paused (0) - Pysäytetty (0) - Active (0) Aktiivisena (0) @@ -2687,14 +2627,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Valmiina (%1) - - Paused (%1) - Pysäytetty (%1) - - - Resumed (%1) - Jatkettu (%1) - Active (%1) Aktiivisena (%1) @@ -2749,31 +2681,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + Käynnissä (0) Stopped (0) - + Pysäytetty (0) Stopped (%1) - + Pysäytetty (%1) Running (%1) - + Käynnissä (%1) Remove torrents - + Poista torrentit Start torrents - + Käynnistä torrentit Stop torrents - + Pysäytä torrentit @@ -2791,11 +2723,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Koko - - Done - % Done - Valmis - Status Torrent status (e.g. downloading, seeding, paused) @@ -2933,11 +2860,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + Yksityinen Progress - + Edistyminen Info Hash v2 @@ -2949,11 +2876,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Incomplete Save Path - + Keskeneräisen tallennussijainti Popularity - + Suosio Status Icon @@ -3093,10 +3020,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 sitten - - Paused - Pysäytetty - Completed Valmistunut @@ -3163,11 +3086,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Pysäytetty N/A - + Ei saatavilla @@ -3194,7 +3117,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Collapse/expand category - + Supista/laajenna kategoria @@ -3211,21 +3134,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Nimeä uudelleen - - Resume - Resume/start the torrent - Jatka - - - Force Resume - Force Resume/start the torrent - Pakota jatkaminen - - - Pause - Pause the torrent - Pysäytä - Limit share ratio... Rajoita jakosuhdetta... @@ -3304,14 +3212,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Uusi kategoria - - Location - Sijainti - - - New name - Uusi nimi - Set location Aseta sijainti @@ -3324,18 +3224,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Muokkaa kategoriaa - - Save path - Tallennussijainti - Comma-separated tags: Pilkulla erotetut tunnisteet: - - Add Tags - Lisää tunnisteita - Tags Tunnisteet @@ -3378,7 +3270,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Export .torrent - + Vie .torrent Remove @@ -3386,7 +3278,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Files... - + Nimeä tiedostot uudelleen... Renaming @@ -3394,7 +3286,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Comment - + Kommentti Force Start @@ -3402,19 +3294,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Tallennussijainti: Location: - + Sijainti: Stop - + Pysäytä Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automaattisessa tilassa monet torrenttien määritykset, kuten tallennussijainti, asetetaan liitetyn kategorian perusteella Start @@ -3422,15 +3314,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Uusi nimi: Add tags - + Lisää tunnisteita Category: - + Kategoria: @@ -3469,21 +3361,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Poista myös tiedostot pysyvästi - Remove torrent(s) Poista torrenteja Also remove the content files - + Poista myös sisältötiedostot Remove tracker - + Poista seurantapalvelin @@ -3687,7 +3575,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Select category - + Valitse kategoria Min size prefix @@ -3703,7 +3591,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Select plugins - + Valitse liitännäiset @@ -3759,17 +3647,13 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Lataajia - - Search engine - Hakukone - Seeders Jakoja Published On - + Julkaistu Engine URL @@ -3844,14 +3728,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Tunniste: - - Pause torrents - Pysäytä torrentit - - - Resume torrents - Jatka torrentteja - Remove unused tags Poista käyttämättömät tunnisteet @@ -3870,11 +3746,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + Käynnistä torrentit Stop torrents - + Pysäytä torrentit @@ -4018,27 +3894,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Haku on päättynyt An error occurred during search... - + Haun aikana tapahtui virhe... Close tab - + Sulje välilehti Searching... - + Haetaan... Search aborted - + Haku keskeytettiin Close all tabs - + Sulje kaikki välilehdet @@ -4152,7 +4028,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Muokkaa syötteen osoitetta... Unable to update URL @@ -4164,6 +4040,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + URL-osoite ei voi olla tyhjä + + + Open link + + + + Author: @@ -4353,10 +4237,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Jos sanajärjestys on tärkeä, käytä * välilyönnin sijaan. - - Add Paused: - Lisää pysäytettynä: - Please type the name of the new download rule. Anna uuden lataussäännön nimi. @@ -4417,11 +4297,11 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Remove rule - + Poista sääntö Add rule - + Lisää sääntö Add Stopped: @@ -4430,29 +4310,13 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo TrackerFiltersList - - Resume torrents - Jatka torrentteja - - - All (%1) - Kaikki (%1) - - - Trackerless (%1) - Ei seurantapalvelinta (%1) - - - Pause torrents - Pysäytä torrentit - Remove torrents Poista torrentit All - + Kaikki Trackerless @@ -4460,15 +4324,15 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Start torrents - + Käynnistä torrentit Remove tracker - + Poista seurantapalvelin Stop torrents - + Pysäytä torrentit @@ -4554,11 +4418,11 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Timestamp - + Aikaleima Clear All - + Tyhjennä kaikki Message @@ -4614,7 +4478,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Choose a log level... - + Valitse lokitaso... @@ -4628,15 +4492,15 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Category Unable to edit category - + Kategorian muokkaaminen ei onnistu OK - + OK Unable to create category - + Kategorian luominen ei onnistu Unable to set category @@ -4647,11 +4511,11 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo CookiesDialog Domain - + Verkkotunnus Manage Cookies - + Evästeiden hallinta Add Cookie @@ -4659,30 +4523,30 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Remove - + Poista Expiration Date - + Vanhenemispäivä Value - + Arvo Name - + Nimi Path - + Polku confirmAutoTMMDialog Enable automatic torrent management - + Käytä torrentien automaattista hallintaa Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. @@ -4693,41 +4557,41 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Haluatko varmasti tarkistaa uudelleen valitut torrentit? Recheck confirmation - + Uudelleentarkistuksen vahvistus SearchWidget Close tab - + Sulje välilehti Login qBittorrent WebUI - + qBittorrentin WebUI Password - + Salasana JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript vaaditaan! Ota JavaScript käyttöön, jotta WebUI toimii oikein Login - + Kirjaudu Server response: - + Palvelimen vastaus: Unable to log in, server is probably unreachable. @@ -4735,10 +4599,202 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Username - + Käyttäjänimi Invalid Username or Password. + Virheellinen käyttäjätunnus tai salasana. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_fr.ts b/src/webui/www/translations/webui_fr.ts index dfad719df..952f26191 100644 --- a/src/webui/www/translations/webui_fr.ts +++ b/src/webui/www/translations/webui_fr.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Un lien par ligne (les liens HTTP, les liens magnet et les info-hashes sont supportés) Add torrent links - + Ajouter des liens torrents Select .torrent files - + Sélectionner les fichiers .torrent Torrent options - + Options du torrent @@ -112,14 +112,6 @@ Remove unused categories Retirer les catégories inutilisées - - Resume torrents - Reprendre les torrents - - - Pause torrents - Mettre en pause les torrents - New Category Nouvelle catégorie @@ -138,11 +130,11 @@ Start torrents - + Démarrer les torrents Stop torrents - + Arrêter les torrents @@ -151,10 +143,6 @@ Exit qBittorrent Quitter qBittorrent - - Only one link per line - Un seul lien par ligne - Global upload rate limit must be greater than 0 or disabled. La limite globale pour la vitesse d'envoi doit être supérieure à 0 ou désactivée. @@ -228,10 +216,6 @@ Save files to location: Enregistrer les fichiers à l'emplacement : - - Cookie: - Cookie : - More information Plus d'informations @@ -295,10 +279,6 @@ Logout Se déconnecter - - Download Torrents from their URLs or Magnet links - Télécharger les torrents depuis leurs URL ou liens magnet - Upload local torrent Envoyer un torrent local @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nom de catégorie invalide :\nVeuillez ne pas utiliser de caractères spéciaux dans le nom de catégorie. - - Unable to create category - Impossible de créer la catégorie - Upload rate threshold must be greater than 0. La limite de vitesse d'envoi doit être supérieure à 0. @@ -383,10 +359,6 @@ Original author Auteur original - - Are you sure you want to remove the selected torrents from the transfer list? - Êtes-vous sûr de vouloir retirer les torrents sélectionnés de la liste des transferts ? - The port used for the WebUI must be between 1 and 65535. Le port utilisé pour l'IU Web doit être compris entre 1024 et 65535. @@ -401,75 +373,75 @@ External IP: N/A - + IP externe : N/A Reverse proxy setup examples - + Exemples de configuration de proxy inverse Could not contact qBittorrent - + Ne peux pas contacter qBittorrent Remember choice - + Se souvenir du choix Are you sure you want to remove these %1 torrents from the transfer list? - + Êtes-vous sûr de vouloir retirer ces %1 torrents de la liste des transferts ? Unable to delete torrents. - + Impossible de supprimer les torrents. URL - + URL External IP: %1%2 - + IP externe : %1%2 Edit web seed - + Modifier la source web Are you sure you want to remove %1 from the transfer list? - + Êtes-vous sûr de vouloir supprimer %1 de la liste de transfert ? Unable to set Auto Torrent Management for the selected torrents. - + Impossible de définir la gestion automatique des torrents pour les torrents sélectionnés. Unable to stop torrents. - + Impossible d'arrêter les torrents. Unable to download file - + Impossible de télécharger le fichier External IPs: %1, %2 - + IPs externes : %1, %2 Unable to recheck torrents. - + Impossible de revérifier les torrents. List of web seeds to add (one per line): - + Liste des seed Web à ajouter (un par ligne) : Unable to start torrents. - + Impossible de démarrer les torrents. Add web seeds - + Ajouter des seeds Web @@ -498,10 +470,6 @@ Options... Options… - - Resume - Reprendre - Top Toolbar Barre d'outils @@ -518,10 +486,6 @@ Donate! Faire un don ! - - Resume All - Tout reprendre - Statistics Statistiques @@ -530,14 +494,6 @@ About À propos - - Pause - Mettre en pause - - - Pause All - Tout mettre en pause - Add Torrent File... Ajouter un fichier torrent… @@ -678,14 +634,6 @@ Remove Retirer - - Would you like to resume all torrents? - Souhaitez-vous reprendre tous les torrents ? - - - Would you like to pause all torrents? - Souhaitez-vous mettre en pause tous les torrents ? - Execution Log Journal d'exécution @@ -700,50 +648,55 @@ Filter by: - + Filtrer par: Save Path - + Répertoire de destination Stop - + Arrêter Use regular expression - + Utiliser une expression régulière Would you like to start all torrents? - + Voulez-vous démarrer tous les torrents ? Start - + Démarrer Manage Cookies... - + Gérer les cookies… Unable to export torrent file - + Impossible d'exporter le fichier torrent + Name - + Nom Would you like to stop all torrents? - + Voulez-vous arrêter tous les torrents ? Start All - + Démarrer tout Stop All + Arrêter tout + + + Torrent Creator @@ -773,10 +726,6 @@ Language Langue - - User Interface Language: - Langue de l'interface utilisateur : - Email notification upon download completion Notifier par courriel une fois le téléchargement complété @@ -793,10 +742,6 @@ Torrent Queueing File d'attente des torrents - - Automatically add these trackers to new downloads: - Ajouter automatiquement ces trackers aux nouveaux téléchargements : - Web User Interface (Remote control) Activer l'interface utilisateur Web (contrôle distant) @@ -1229,7 +1174,7 @@ Info: The password is saved unencrypted - Info : le mot de passe est enregistré en texte clair + Info : le mot de passe est enregistré en texte clair μTP-TCP mixed mode algorithm: @@ -1291,10 +1236,6 @@ Fastest upload Envoi le plus rapide - - Pause torrent - Mettre en pause le torrent - Remove torrent and its files Retirer le torrent et ses fichiers @@ -1337,7 +1278,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1352,6 @@ Ban client after consecutive failures: Bannir le client suite à des échecs consécutifs : - - Enable cookie Secure flag (requires HTTPS) - Activer l'indicateur de sécurité des cookies (nécessite HTTPS) - Header: value pairs, one per line En-tête : valeur pairs, une par ligne @@ -1643,10 +1580,6 @@ Support internationalized domain name (IDN): Prendre en charge les noms de domaine internationalisés (IDN) : - - Run external program on torrent finished - Exécuter un programme externe lorsqu'un torrent est terminé - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1658,10 +1591,6 @@ Afin de se défendre contre les attaques par DNS rebinding, vous devez consigner Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut être utilisé. - - Run external program on torrent added - Exécuter un programme externe lorsqu'un torrent est ajouté - HTTPS certificate should not be empty Le certificat HTTPS ne devrait pas être vide @@ -1726,10 +1655,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut days jours - - Log file - Fichier journal - Behavior Comportement @@ -1944,182 +1869,198 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Color scheme: - + Modèle de couleur : Show external IP in status bar - + Afficher l'adresse IP externe dans la barre d'état Fetched trackers - + Trackeurs récupérés Confirm when deleting torrents - + Confirmer la suppression des torrents Ignore SSL errors: - + Ignorer les erreurs SSL : Dark - + Sombre Delete files permanently - + Supprimer les fichiers définitivement Auto - + Auto Use alternating row colors - + Utiliser des couleurs de ligne alternées Display full announce URL in the Tracker column - + Afficher l'URL d'annonce complète dans la colonne Trackeur URL: - + URL : Transfer list - + Liste des transferts The announce port must be between 0 and 65535. - + Le port d'annonce doit être compris entre 0 et 65535. Light - + Clair Automatically append these trackers to new downloads: - + Ajouter automatiquement ces trackers aux nouveaux téléchargements : Downloading torrents: - + Torrents en téléchargement : Start / stop torrent - + Démarrer / Arrêter le torrent Send test email - + Envoyer un courriel test Completed torrents: - + Torrents téléchargés: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Activer le cookie "Secure flag" (nécessite une connexion HTTPS ou Localhost) When duplicate torrent is being added - + Lorsqu'un torrent doublon est ajouté Action on double-click - + Action du double-clic Save statistics interval: - + Intervalle d'enregistrement des statistiques : Shows a confirmation dialog upon torrent deletion - + Afficher une fenêtre de confirmation lors de la suppression d'un torrent Run on torrent finished: - + Exécuter à la complétion d'un torrent: Attempted to send email. Check your inbox to confirm success - + Tentative d'envoi d'un courriel. Vérifiez votre boîte de réception pour confirmer la réussite Automatically append trackers from URL to new downloads: - + Ajouter automatiquement les trackeurs de l'URL aux nouveaux téléchargements : Torrent content removing mode: - + Mode de retrait de contenu du torrent : Move files to trash (if possible) - + Déplacer dans la corbeille (si possible) Stop torrent - + Arrêter les torrents Use Category paths in Manual Mode - + Utiliser les chemins des catégories en mode manuel List of alternative WebUI - + Liste des interfaces Web alternatives Run on torrent added: - + Exécution sur torrent ajoutée : Port reported to trackers (requires restart) [0: listening port]: - + Port signalé aux trackeurs (nécessite un redémarrage) [0 : port d'écoute] : User interface language: - + Langue de l'interface utilisateur : Merge trackers to existing torrent - + Fusionner les trackers avec le torrent existant Confirm torrent recheck: - + Confirmer la vérification du torrent : Custom WebUI settings - + Paramètres d'interface Web personnalisés Following settings are WebUI only - + Les paramètres suivants sont uniquement disponibles sur l'interface Web Simple pread/pwrite - + Pread/pwrite simple Resolve relative Save Path against appropriate Category path instead of Default one - + Résoudre le répertoire de destination relatif par rapport au chemin de la catégorie approprié au lieu de celui par défaut No action - + Aucune action Auto hide zero status filters - + Cacher automatiquement les filtres dont le résultat est zéro Interface - + Interface Log Files + Fichier journal + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2488,55 +2429,55 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Copy web seed URL - + Copier l'URL de la source web Replace option - + Option de remplacement Edit web seed URL... - + Modifier l'URL de la source web Web seed URL: - + URL de la source web : Yes - + Oui Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Temps Actif (en mois), indique la popularité du torrent Popularity: - + Popularité : Apply to which filename part - + Appliquer à quelle partie du nom de fichier No - + Non Remove web seed - + Supprimer la source web Web seed editing - + Modification de la source web Add web seeds... - + Ajouter les seeds Web... Private: - + Privé : @@ -2666,14 +2607,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Completed (0) Complétés (0) - - Resumed (0) - Repris (0) - - - Paused (0) - En pause (0) - Active (0) Actifs (0) @@ -2702,14 +2635,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Completed (%1) Complétés (%1) - - Paused (%1) - En pause (%1) - - - Resumed (%1) - Repris (%1) - Active (%1) Actifs (%1) @@ -2764,31 +2689,31 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Running (0) - + En cours (0) Stopped (0) - + Arrêtés (0) Stopped (%1) - + Arrêtés (%1) Running (%1) - + En cours (%1) Remove torrents - + Retirer les torrents Start torrents - + Démarrer les torrents Stop torrents - + Arrêter les torrents @@ -2806,11 +2731,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut i.e: torrent size Taille - - Done - % Done - Terminé - Status Torrent status (e.g. downloading, seeding, paused) @@ -2948,31 +2868,31 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Private - + Privé Progress - + Progression Info Hash v2 - + Info hash v2 Info Hash v1 - + Info hash v1 Incomplete Save Path - + Répertoire de destination incomplet Popularity - + Popularité Status Icon - + Icône de status @@ -3108,10 +3028,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut e.g.: 1h 20m ago Il y a %1 - - Paused - En pause - Completed Complété @@ -3178,11 +3094,11 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Stopped - + Arrêté N/A - + N/D @@ -3209,7 +3125,7 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Collapse/expand category - + Réduire/développer la catégorie @@ -3226,21 +3142,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Rename Renommer - - Resume - Resume/start the torrent - Reprendre - - - Force Resume - Force Resume/start the torrent - Forcer la reprise - - - Pause - Pause the torrent - Mettre en pause - Limit share ratio... Limiter le ratio de partage… @@ -3319,14 +3220,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut New Category Nouvelle catégorie - - Location - Emplacement - - - New name - Nouveau nom - Set location Définir l'emplacement @@ -3339,18 +3232,10 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Edit Category Modifier la catégorie - - Save path - Répertoire de destination - Comma-separated tags: Étiquettes séparées par une virgule : - - Add Tags - Ajouter des étiquettes - Tags Étiquettes @@ -3413,39 +3298,39 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Force Start - + Forcer le démarrage Save path: - + Répertoire de destination : Location: - + Emplacement: Stop - + Arrêter Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Le mode automatique signifie que certaines propriétés du torrent (p. ex. le répertoire de destination) seront décidés via la catégorie associée Start - + Démarrer New name: - + Nouveau nom : Add tags - + Ajouter des étiquettes Category: - + Catégorie : @@ -3484,21 +3369,17 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut confirmDeletionDlg - - Also permanently delete the files - Supprimer également les fichiers de manière définitive - Remove torrent(s) Retirer le(s) torrent(s) Also remove the content files - + Retirer également les fichiers de contenu Remove tracker - + Retirer le tracker @@ -3702,23 +3583,24 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Select category - + Sélectionner la catégorie + Min size prefix - + Taille mini de préfixe Start a search above. - + Démarrer une recherche ci-dessous. Max size prefix - + Taille maxi de préfixe Select plugins - + Sélectionner les plugins @@ -3774,25 +3656,21 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Leechers Téléchargeurs - - Search engine - Moteur de recherche - Seeders Partageurs Published On - + Publié sur Engine URL - + URL du moteur Engine - + Moteur @@ -3859,14 +3737,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Tag: Étiquette : - - Pause torrents - Mettre en pause les torrents - - - Resume torrents - Reprendre les torrents - Remove unused tags Retirer les étiquettes inutilisées @@ -3885,11 +3755,11 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Start torrents - + Démarrer les torrents Stop torrents - + Arrêter les torrents @@ -4033,27 +3903,27 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Search has finished - + La recherche est terminée An error occurred during search... - + Une erreur s'est produite lors de la recherche… Close tab - + Fermer l'onglet Searching... - + Recherche en cours… Search aborted - + Recherche annulée Close all tabs - + Fermer tous les onglets @@ -4167,18 +4037,26 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Edit feed URL... - + Éditer l'URL du flux… Unable to update URL - + Impossible de mettre à jour l'URL URL is unchanged - + l'URL est inchangée URL cannot be empty + L'URL ne peut pas être vide + + + Open link + + + + Author: @@ -4368,10 +4246,6 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut If word order is important use * instead of whitespace. Si l'ordre des mots est important, utilisez * au lieu d'un espace. - - Add Paused: - Ajouter en pause : - Please type the name of the new download rule. Veuillez entrer le nom de la nouvelle règle de téléchargement. @@ -4432,58 +4306,42 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Remove rule - + Enlever une règle Add rule - + Ajouter une règle Add Stopped: - + Ajouter arrêté : TrackerFiltersList - - Resume torrents - Reprendre les torrents - - - All (%1) - Tous (%1) - - - Trackerless (%1) - Sans tracker (%1) - - - Pause torrents - Mettre en pause les torrents - Remove torrents Retirer les torrents All - + Tous Trackerless - + Sans tracker Start torrents - + Démarrer les torrents Remove tracker - + Retirer le tracker Stop torrents - + Arrêter les torrents @@ -4636,124 +4494,316 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Êtes-vous sûr de vouloir supprimer le trackeur %1 de tous les torrents ? Category Unable to edit category - + Impossible d'éditer la catégorie OK - + OK Unable to create category - + Impossible de créer la catégorie Unable to set category - + Impossible de définir la catégorie CookiesDialog Domain - + Domaine Manage Cookies - + Gérer les cookies Add Cookie - + Ajouter un cookie Remove - + Retirer Expiration Date - + Date d'expiration Value - + Valeur Name - + Nom Path - + Chemin confirmAutoTMMDialog Enable automatic torrent management - + Activer la gestion de torrent automatique Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Êtes-vous certain de vouloir activer la gestion de torrent automatique pour le(s) torrent(s) sélectionné(s) ? Ils pourraient être déplacés. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Êtes-vous sur de vouloir revérifier le ou les torrent(s) sélectionné(s) ? Recheck confirmation - + Revérifier la confirmation SearchWidget Close tab - + Fermer l'onglet Login qBittorrent WebUI - + WebUI qBitTorrent Password - + Mot de passe JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript est requis ! Vous devez activer JavaScript pour que l'IU Web fonctionne correctement Login - + Se connecter Server response: - + Réponse du serveur: Unable to log in, server is probably unreachable. - + Impossible de se connecter, le serveur est probablement inaccessible. Username - + Nom d'utilisateur Invalid Username or Password. + Nom d'utilisateur ou mot de passe invalide. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_gl.ts b/src/webui/www/translations/webui_gl.ts index 40ed759b0..d15671cdc 100644 --- a/src/webui/www/translations/webui_gl.ts +++ b/src/webui/www/translations/webui_gl.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Unha ligazón por liña (acepta ligazóns HTTP, magnet e info-hashes) Add torrent links - + Engadir ligazóns torrent Select .torrent files - + Seleccione ficheiros .torrent Torrent options - + Opcións de torrent @@ -112,14 +112,6 @@ Remove unused categories Eliminar as categorías sen usar - - Resume torrents - Continuar os torrents - - - Pause torrents - Deter os torrents - New Category Nova categoría @@ -138,11 +130,11 @@ Start torrents - + Iniciar torrents Stop torrents - + Deter torrents @@ -151,10 +143,6 @@ Exit qBittorrent Saír do qBittorrent - - Only one link per line - Só unha ligazón por liña - Global upload rate limit must be greater than 0 or disabled. O límite da velocidade global de envío debe ser superior a 0 ou non funcionará. @@ -228,10 +216,6 @@ Save files to location: Gardar os ficheiros na localización: - - Cookie: - Cookie: - More information Máis información @@ -295,10 +279,6 @@ Logout Saír da sesión - - Download Torrents from their URLs or Magnet links - Descargar os torrents desde as URL ou ligazóns Magnet - Upload local torrent Enviar torrent local @@ -320,10 +300,6 @@ Nome de categoría incorrecto: Non use caracteres especiais no nome da categoría. - - Unable to create category - Non é posíbel crear unha categoría - Upload rate threshold must be greater than 0. O límite da velocidade de envío ten que ser superior a 0. @@ -384,10 +360,6 @@ Non use caracteres especiais no nome da categoría. Original author Autor orixinal - - Are you sure you want to remove the selected torrents from the transfer list? - Estás seguro de que queres eliminar os torrents seleccionados da lista de transferencias? - The port used for the WebUI must be between 1 and 65535. O porto usado para a WebUI debe estar entre 1 e 65535. @@ -402,63 +374,63 @@ Non use caracteres especiais no nome da categoría. External IP: N/A - + IP externa: N/A Reverse proxy setup examples - + Exemplos de configuración de proxy inverso Could not contact qBittorrent - + Non se puido contactar con qBittorrent Remember choice - + Lembrar a elección Are you sure you want to remove these %1 torrents from the transfer list? - + Estás seguro de que queres eliminar estes %1 torrents da lista de transferencias? Unable to delete torrents. - + Non se poden eliminar torrents. URL - + URL External IP: %1%2 - + IP externa: % 1% 2 Edit web seed - + Editar semente web Are you sure you want to remove %1 from the transfer list? - + Estás certo de que queres eliminar %1 da lista de transferencias? Unable to set Auto Torrent Management for the selected torrents. - + Non se puido configurar a xestión automática de torrents para os torrents seleccionados. Unable to stop torrents. - + Non se poden deter os torrents. Unable to download file - + Non se puido descargar o ficheiro External IPs: %1, %2 - + IPs externos: % 1, % 2 Unable to recheck torrents. - + Non se pode volver comprobar os torrents. List of web seeds to add (one per line): @@ -499,10 +471,6 @@ Non use caracteres especiais no nome da categoría. Options... Opcións... - - Resume - Continuar - Top Toolbar Barra superior @@ -519,10 +487,6 @@ Non use caracteres especiais no nome da categoría. Donate! Doar! - - Resume All - Continuar todo - Statistics Estadísticas @@ -531,14 +495,6 @@ Non use caracteres especiais no nome da categoría. About Sobre - - Pause - Deter - - - Pause All - Pausar todo - Add Torrent File... Engadir un ficheiro torrent... @@ -679,14 +635,6 @@ Non use caracteres especiais no nome da categoría. Remove Eliminar - - Would you like to resume all torrents? - Queres retomar todos os torrents? - - - Would you like to pause all torrents? - Queres poñer en pausa todos os torrents? - Execution Log Rexistro de execución @@ -701,15 +649,15 @@ Non use caracteres especiais no nome da categoría. Filter by: - + Filtrar por: Save Path - + Gardar camiño Stop - + Parar Use regular expression @@ -717,15 +665,15 @@ Non use caracteres especiais no nome da categoría. Would you like to start all torrents? - + Queres comezar todos os torrents? Start - + Comezar Manage Cookies... - + Xestión das cookies... Unable to export torrent file @@ -733,18 +681,22 @@ Non use caracteres especiais no nome da categoría. Name - + Nome Would you like to stop all torrents? - + Queres parar todos os torrents? Start All - + Comezar todos Stop All + Parar todos + + + Torrent Creator @@ -774,10 +726,6 @@ Non use caracteres especiais no nome da categoría. Language Idioma - - User Interface Language: - Idioma da interface do usuario: - Email notification upon download completion Enviar unha notificación por correo-e ao rematar a descarga @@ -794,10 +742,6 @@ Non use caracteres especiais no nome da categoría. Torrent Queueing Cola de torrents - - Automatically add these trackers to new downloads: - Engadir automaticamente estes localizadores ás novas descargas: - Web User Interface (Remote control) Interface de usuario web (control remoto) @@ -1230,7 +1174,7 @@ Non use caracteres especiais no nome da categoría. Info: The password is saved unencrypted - Información: o contrasinal gárdase sen cifrar + Información: o contrasinal gárdase sen cifrar μTP-TCP mixed mode algorithm: @@ -1292,10 +1236,6 @@ Non use caracteres especiais no nome da categoría. Fastest upload Envío máis rápido - - Pause torrent - Deter o torrent - Remove torrent and its files Eliminar o torrent e os ficheiros @@ -1338,7 +1278,7 @@ Non use caracteres especiais no nome da categoría. s - s + s Send buffer watermark: @@ -1412,10 +1352,6 @@ Non use caracteres especiais no nome da categoría. Ban client after consecutive failures: Prohibir clientes despois de fallos sucesivos: - - Enable cookie Secure flag (requires HTTPS) - Activar o indicador de seguranza para cookies (require HTTPS) - Header: value pairs, one per line Cabeceira: pares de valores, un por liña @@ -1644,10 +1580,6 @@ Non use caracteres especiais no nome da categoría. Support internationalized domain name (IDN): Admite nomes de dominio internacionalizados (IDN): - - Run external program on torrent finished - Executar programa externo en torrent rematado - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1660,10 +1592,6 @@ deberia poñer nomes de dominios usados polo servidor WebUI. Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». - - Run external program on torrent added - Executar programa externo ao engadir o torrent - HTTPS certificate should not be empty O certificado HTTPS non debe estar baleiro @@ -1728,10 +1656,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».days días - - Log file - Ficheiro do rexistro - Behavior Comportamento @@ -1946,39 +1870,39 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Color scheme: - + Esquema de cores: Show external IP in status bar - + Mostra a IP externa na barra de estado Fetched trackers - + Rastrexadores obtidos Confirm when deleting torrents - + Confirmar a eliminación dos torrents Ignore SSL errors: - + Ignorar erros SSL: Dark - + Escuro Delete files permanently - + Eliminar ficheiros permanentemente Auto - + Automático Use alternating row colors - + Alternar as cores das filas Display full announce URL in the Tracker column @@ -1986,7 +1910,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». URL: - + URL: Transfer list @@ -1998,39 +1922,39 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Light - + Claro Automatically append these trackers to new downloads: - + Engadir automaticamente estes rastrexadores a novas descargas: Downloading torrents: - + Descargando os torrents: Start / stop torrent - + Iniciar/deter o torrent Send test email - + Enviar correo electrónico de proba Completed torrents: - + Torrents completados: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Activar a marca de cookies segura (require HTTPS ou conexión localhost) When duplicate torrent is being added - + Cando se engade torrent duplicado Action on double-click - + Acción co dobre clic Save statistics interval: @@ -2038,35 +1962,35 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Shows a confirmation dialog upon torrent deletion - + Mostra unha pregunta de confirmación para eliminar un torrent Run on torrent finished: - + Execucutar no torrent rematado: Attempted to send email. Check your inbox to confirm success - + Tentouse enviar correo electrónico. Comprobe a súa caixa de entrada para confirmar o éxito Automatically append trackers from URL to new downloads: - + Engadir automaticamente os rastreadores desde a URL ás novas descargas: Torrent content removing mode: - + Modo de eliminación de contido de torrents: Move files to trash (if possible) - + Mover ficheiros á papeleira (se é posible) Stop torrent - + Deter torrent Use Category paths in Manual Mode - + Usar as rutas de Categoría no modo manual List of alternative WebUI @@ -2074,7 +1998,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Run on torrent added: - + Executar no torrent engadido: Port reported to trackers (requires restart) [0: listening port]: @@ -2086,7 +2010,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Merge trackers to existing torrent - + Combina rastrexadores co torrent existente Confirm torrent recheck: @@ -2102,28 +2026,44 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Simple pread/pwrite - + pread/pwrite simple Resolve relative Save Path against appropriate Category path instead of Default one - + Determinar a Ruta Onde Gardar relativa segundo a ruta da Categoría apropiada no canto da predeterminada. No action - + Sen acción Auto hide zero status filters - + Ocultar automaticamente filtros de estado cero Interface - + Interface Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2490,7 +2430,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Copy web seed URL - + Copiar o URL de semente web Replace option @@ -2498,23 +2438,23 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Edit web seed URL... - + Editar URL de semente web... Web seed URL: - + URL da semente web: Yes - + Si Ratio / Time Active (in months), indicates how popular the torrent is - + Ratio / Tempo activo (en meses), indica a popularidade do torrent Popularity: - + Popularidade: Apply to which filename part @@ -2522,15 +2462,15 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». No - + Non Remove web seed - + Elimina a semente web Web seed editing - + Edición da semente web Add web seeds... @@ -2538,7 +2478,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Private: - + Privado: @@ -2668,14 +2608,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Completed (0) Completados (0) - - Resumed (0) - Comezados (0) - - - Paused (0) - Detidos (0) - Active (0) Activos (0) @@ -2704,14 +2636,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Completed (%1) Completados (%1) - - Paused (%1) - Detidos (%1) - - - Resumed (%1) - Comezados (%1) - Active (%1) Activos (%1) @@ -2766,31 +2690,31 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Running (0) - + En execución (0) Stopped (0) - + Detido (0) Stopped (%1) - + Detido (%1) Running (%1) - + En execución (%1) Remove torrents - + Eliminar torrents Start torrents - + Iniciar torrents Stop torrents - + Deter torrents @@ -2808,11 +2732,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».i.e: torrent size Tamaño - - Done - % Done - Feito - Status Torrent status (e.g. downloading, seeding, paused) @@ -2950,27 +2869,27 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Private - + Privado Progress - + Progreso Info Hash v2 - + Hash de información v2 Info Hash v1 - + Hash de información v1 Incomplete Save Path - + Ruta de gardado incompleta Popularity - + Popularidade Status Icon @@ -3110,10 +3029,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».e.g.: 1h 20m ago Hai %1 - - Paused - Detido - Completed Completados @@ -3180,11 +3095,11 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Stopped - + Parado N/A - + N/D @@ -3228,21 +3143,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Rename Cambiar o nome - - Resume - Resume/start the torrent - Continuar - - - Force Resume - Force Resume/start the torrent - Forzar continuación - - - Pause - Pause the torrent - Deter - Limit share ratio... Límite da taxa de compartición... @@ -3321,14 +3221,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».New Category Nova categoría - - Location - Localización - - - New name - Nome novo - Set location Estabelecer a localización @@ -3341,18 +3233,10 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Edit Category Editar categoría - - Save path - Gardar a ruta - Comma-separated tags: Etiquetas separadas por comas: - - Add Tags - Engadir etiquetas - Tags Etiquetas @@ -3415,11 +3299,11 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Force Start - + Forzar inicio Save path: - + Ruta onde gardar: Location: @@ -3427,27 +3311,27 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Stop - + Parar Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + O modo automático significa que varias propiedades dos torrents (p.e: ruta onde gardar) decidiraas a categoría asociada Start - + Comezar New name: - + Nome novo: Add tags - + Engadir etiquetas Category: - + Categoría: @@ -3486,21 +3370,17 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». confirmDeletionDlg - - Also permanently delete the files - Tamén elimina permanentemente os ficheiros - Remove torrent(s) Eliminar torrent(s) Also remove the content files - + Elimina tamén os ficheiros de contido Remove tracker - + Eliminar o localizador @@ -3712,7 +3592,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Start a search above. - + Comeza unha busca arriba. Max size prefix @@ -3776,25 +3656,21 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Leechers Pares incompletos - - Search engine - Motor de busca - Seeders Sementadores Published On - + Publicado o Engine URL - + URL do motor Engine - + Motor @@ -3861,14 +3737,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».Tag: Etiqueta: - - Pause torrents - Deter os torrents - - - Resume torrents - Continuar os torrents - Remove unused tags Eliminar as etiquetas non usadas @@ -3887,11 +3755,11 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Start torrents - + Iniciar torrents Stop torrents - + Deter torrents @@ -4035,27 +3903,27 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Search has finished - + A busca rematou An error occurred during search... - + Produciuse un erro durante a busca... Close tab - + Pechar lapela Searching... - + Buscando... Search aborted - + Busca cancelada Close all tabs - + Pechar todas as lapelas @@ -4169,7 +4037,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Edit feed URL... - + Editar URL do feed... Unable to update URL @@ -4183,6 +4051,14 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4370,10 +4246,6 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*».If word order is important use * instead of whitespace. Se a orde das palabras importa, use * no canto dun espazo en branco. - - Add Paused: - Engadir como detidos: - Please type the name of the new download rule. Escriba o nome da regra de descarga nova. @@ -4442,50 +4314,34 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Add Stopped: - + Engadir detido: TrackerFiltersList - - Resume torrents - Continuar os torrents - - - All (%1) - Todo (%1) - - - Trackerless (%1) - Sen localizador (%1) - - - Pause torrents - Deter os torrents - Remove torrents Eliminar torrents All - + Todos Trackerless - + Sen rastrexador Start torrents - + Iniciar torrents Remove tracker - + Eliminar o localizador Stop torrents - + Deter torrents @@ -4645,15 +4501,15 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Category Unable to edit category - + Non é posíbel editar a categoría OK - + Aceptar Unable to create category - + Non é posíbel crear unha categoría Unable to set category @@ -4664,11 +4520,11 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d CookiesDialog Domain - + Dominio Manage Cookies - + Xestión das cookies Add Cookie @@ -4676,52 +4532,52 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Remove - + Eliminar Expiration Date - + Data de caducidade Value - + Valor Name - + Nome Path - + Ruta confirmAutoTMMDialog Enable automatic torrent management - + Activar a xestión automática dos torrents Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Confirma a activación do Xestor Automático de Torrents para os torrents seleccionado(s)? Poden ser resituados. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Desexa unha nova comprobación dos torrents seleccionados? Recheck confirmation - + Confirmación da nova comprobación SearchWidget Close tab - + Pechar lapela @@ -4732,15 +4588,15 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Password - + Contrasinal JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Requírese JavaScript! Debes activar JavaScript para que a WebUI funcione correctamente Login - + Iniciar sesión Server response: @@ -4748,14 +4604,206 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Unable to log in, server is probably unreachable. - + Non se pode iniciar sesión, é probable que o servidor non sexa accesible. Username - + Nome do usuario Invalid Username or Password. + O usuario ou o contrasinal son incorrectos. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_he.ts b/src/webui/www/translations/webui_he.ts index 18e59f79c..da8ca0a85 100644 --- a/src/webui/www/translations/webui_he.ts +++ b/src/webui/www/translations/webui_he.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + קישור אחד לשורה (קישורי HTTP, קישורי מגנט ומידע־גיבובים נתמכים). Add torrent links - + הוסף קישורי טורנט Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories הסר קטגוריות שאינן בשימוש - - Resume torrents - המשך טורנטים - - - Pause torrents - השהה טורנטים - New Category קטגוריה חדשה @@ -138,11 +130,11 @@ Start torrents - + התחל טורנטים Stop torrents - + עצור טורנטים @@ -151,10 +143,6 @@ Exit qBittorrent צא מ-qBittorrent - - Only one link per line - קישור אחד בלבד לכל שורה - Global upload rate limit must be greater than 0 or disabled. מגבלה כללית של קצב העלאה חייבת להיות גדולה מ־0 או מושבתת. @@ -228,10 +216,6 @@ Save files to location: שמור קבצים במיקום: - - Cookie: - עוגייה: - More information עוד מידע @@ -295,10 +279,6 @@ Logout התנתק - - Download Torrents from their URLs or Magnet links - הורד טורנטים מהכתובות או מקישורי המגנט שלהם - Upload local torrent העלה טורנט מקומי @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. שם קטגוריה בלתי תקף:\nאנא אל תשתמש בתווים מיוחדים כלשהם בשם הקטגוריה. - - Unable to create category - לא היה ניתן ליצור קטגוריה - Upload rate threshold must be greater than 0. סף קצב העלאה חייב להיות גדול מ־0. @@ -383,10 +359,6 @@ Original author מחבר מקורי - - Are you sure you want to remove the selected torrents from the transfer list? - האם אתה בטוח שאתה רוצה להסיר את הטורנטים הנבחרים מרשימת ההעברות? - The port used for the WebUI must be between 1 and 65535. @@ -413,11 +385,11 @@ Remember choice - + זכור בחירה Are you sure you want to remove these %1 torrents from the transfer list? - + האם אתה בטוח שאתה רוצה להסיר %1 טורנטים אלו מרשימת ההעברות? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + כתובת External IP: %1%2 @@ -498,10 +470,6 @@ Options... אפשרויות… - - Resume - המשך - Top Toolbar סרגל כלים עליון @@ -518,10 +486,6 @@ Donate! תרום! - - Resume All - המשך הכול - Statistics סטטיסטיקה @@ -530,14 +494,6 @@ About אודות - - Pause - השהה - - - Pause All - השהה הכול - Add Torrent File... הוסף קובץ טורנט… @@ -678,14 +634,6 @@ Remove הסר - - Would you like to resume all torrents? - האם אתה רוצה להמשיך את כל הטורנטים ? - - - Would you like to pause all torrents? - האם אתה רוצה לעצור את כל הטורנטים ? - Execution Log דוח ביצוע @@ -700,15 +648,15 @@ Filter by: - + סנן לפי: Save Path - + נתיב שמירה Stop - + עצור Use regular expression @@ -724,7 +672,7 @@ Manage Cookies... - + נהל עוגיות… Unable to export torrent file @@ -732,7 +680,7 @@ Name - + שם Would you like to stop all torrents? @@ -746,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language שפה - - User Interface Language: - שפת ממשק משתמש: - Email notification upon download completion התראת דוא״ל בעת השלמת הורדה @@ -793,10 +741,6 @@ Torrent Queueing תור טורנטים - - Automatically add these trackers to new downloads: - הוסף באופן אוטומטי גששים אלו אל הורדות חדשות: - Web User Interface (Remote control) ממשק משתמש של רשת (שלט רחוק) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - מידע: הסיסמה נשמרת באופן בלתי מוצפן + מידע: הסיסמה נשמרת באופן בלתי מוצפן μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload ההעלאה הכי מהירה - - Pause torrent - השהה טורנט - Remove torrent and its files הסר טורנט ואת קבציו @@ -1337,7 +1277,7 @@ s - ש' + ש' Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: החרם לקוח לאחר כישלונות רצופים: - - Enable cookie Secure flag (requires HTTPS) - אפשר דגל של עוגייה מאובטחת (דורש HTTPS) - Header: value pairs, one per line כותרת: זוגות ערכים, אחד לשורה @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): - - Run external program on torrent finished - הרצת תוכנית בעת סיום טורנט - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. השתמש ב־';' כדי לפצל כניסות רבות. ניתן להשתמש בתו כללי '*'. - - Run external program on torrent added - הרצת תוכנית בעת הוספת טורנט - HTTPS certificate should not be empty @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days ימים - - Log file - קובץ יומן אירועים - Behavior התנהגות @@ -1957,7 +1881,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + אשר בעת מחיקת טורנטים Ignore SSL errors: @@ -1969,15 +1893,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Delete files permanently - + מחק קבצים לצמיתות Auto - + אוטומטי Use alternating row colors - + השתמש בצבעי שורות לסירוגין Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + כתובת: Transfer list @@ -2005,7 +1929,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + טורנטים בהורדה: Start / stop torrent @@ -2013,11 +1937,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Send test email - + שלח דוא״ל בחינה Completed torrents: - + טורנטים שלמים: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2029,7 +1953,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + פעולה בלחיצה כפולה Save statistics interval: @@ -2037,7 +1961,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + מראה דו־שיח אימות בעת מחיקת טורנט Run on torrent finished: @@ -2057,15 +1981,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Move files to trash (if possible) - + העבר קבצים אל סל המיחזור (אם אפשרי) Stop torrent - + עצור טורנט Use Category paths in Manual Mode - + השתמש בנתיבי קטגוריה במצב ידני List of alternative WebUI @@ -2105,11 +2029,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + פתור נתיב שמירה קשור משפחה כנגד נתיב קטגוריה הולם במקום נתיב ברירת המחדל No action - + ללא פעולה Auto hide zero status filters @@ -2117,12 +2041,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + ממשק Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,11 +2441,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + כתובת זורע רשת: Yes - + כן Ratio / Time Active (in months), indicates how popular the torrent is @@ -2513,7 +2453,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Popularity: - + פופולריות: Apply to which filename part @@ -2521,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + לא Remove web seed @@ -2529,7 +2469,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + עריכת זורע רשת Add web seeds... @@ -2537,7 +2477,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private: - + פרטי: @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) הושלם (0) - - Resumed (0) - מומשך (0) - - - Paused (0) - מושהה (0) - Active (0) פעיל (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) הושלם (%1) - - Paused (%1) - מושהה (%1) - - - Resumed (%1) - מומשך (%1) - Active (%1) פעיל (%1) @@ -2765,31 +2689,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + רץ (0) Stopped (0) - + נעצר (0) Stopped (%1) - + נעצר (%1) Running (%1) - + רץ (%1) Remove torrents - + הסר טורנטים Start torrents - + התחל טורנטים Stop torrents - + עצור טורנטים @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size גודל - - Done - % Done - בוצע - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,11 +2868,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + פרטי Progress - + התקדמות Info Hash v2 @@ -2969,7 +2888,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Popularity - + פופולריות Status Icon @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 קודם לכן - - Paused - מושהה - Completed הושלם @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + נעצר N/A - + לא זמין @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename שינוי שם - - Resume - Resume/start the torrent - המשך - - - Force Resume - Force Resume/start the torrent - אלץ המשכה - - - Pause - Pause the torrent - השהה - Limit share ratio... הגבל יחס שיתוף… @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category קטגוריה חדשה - - Location - מיקום - - - New name - שם חדש - Set location קבע מיקום @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category ערוך קטגוריה - - Save path - נתיב שמירה - Comma-separated tags: תגיות מופרדות פסיקים: - - Add Tags - הוסף תגיות - Tags תגיות @@ -3418,7 +3302,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + נתיב שמירה: Location: @@ -3426,11 +3310,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + עצור Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + מצב אוטומטי אומר שמאפייני טורנט שונים (למשל, נתיב שמירה) יוחלטו ע״י הקטגוריה המשויכת Start @@ -3438,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + שם חדש: Add tags @@ -3446,7 +3330,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + מדור: @@ -3485,21 +3369,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - בנוסף מחק את הקבצים לצמיתות - Remove torrent(s) הסר טורנט(ים) Also remove the content files - + הסר גם את קבצי התוכן Remove tracker - + הסר עוקבן @@ -3775,25 +3655,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers עלוקות - - Search engine - מנוע חיפוש - Seeders זורעים Published On - + פורסם Engine URL - + כתובת מנוע Engine - + מנוע @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: תגית: - - Pause torrents - השהה טורנטים - - - Resume torrents - המשך טורנטים - Remove unused tags הסר תגיות שאינן בשימוש @@ -3886,11 +3754,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + התחל טורנטים Stop torrents - + עצור טורנטים @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + החיפוש הסתיים An error occurred during search... - + שגיאה התרחשה במהלך החיפוש… Close tab - + סגור לשונית Searching... - + מחפש… Search aborted - + החיפוש בוטל Close all tabs - + סגור את כל הלשוניות @@ -4168,7 +4036,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + ערוך כתובת הזנה… Unable to update URL @@ -4182,6 +4050,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. אם סדר מילים חשוב, השתמש ב־* במקום רווח לבן. - - Add Paused: - הוסף מושהים: - Please type the name of the new download rule. אנא הקלד את השם של כלל ההורדה החדש. @@ -4446,45 +4318,29 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - המשך טורנטים - - - All (%1) - הכול (%1) - - - Trackerless (%1) - חסר־גששים (%1) - - - Pause torrents - השהה טורנטים - Remove torrents הסר טורנטים All - + הכול Trackerless - + חסר־עוקבנים Start torrents - + התחל טורנטים Remove tracker - + הסר עוקבן Stop torrents - + עצור טורנטים @@ -4644,15 +4500,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + לא היה ניתן לערוך קטגוריה OK - + אשר Unable to create category - + לא היה ניתן ליצור קטגוריה Unable to set category @@ -4663,11 +4519,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + תחום Manage Cookies - + נהל עוגיות Add Cookie @@ -4675,52 +4531,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + הסר Expiration Date - + תאריך תפוגה Value - + ערך Name - + שם Path - + נתיב confirmAutoTMMDialog Enable automatic torrent management - + אפשר ניהול טורנטים אוטומטי Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + האם אתה בטוח שאתה רוצה לאפשר ניהול טורנטים אוטומטי עבור הטורנטים הנבחרים? ייתכן שהם ימוקמו מחדש. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + האם אתה בטוח שאתה רוצה לבדוק מחדש את הטורנטים הנבחרים? Recheck confirmation - + אישור בדיקה מחדש SearchWidget Close tab - + סגור לשונית @@ -4731,7 +4587,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + סיסמה JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4739,7 +4595,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + היכנס Server response: @@ -4751,10 +4607,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + שם משתמש Invalid Username or Password. + שם משתמש או סיסמה בלתי תקפים. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_hi_IN.ts b/src/webui/www/translations/webui_hi_IN.ts index 4cf2e3718..918b68cfb 100644 --- a/src/webui/www/translations/webui_hi_IN.ts +++ b/src/webui/www/translations/webui_hi_IN.ts @@ -76,7 +76,7 @@ Add torrent links - + टौरेंट लिंकों को जोड़ें Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories अप्रयुक्त श्रेणियाँ हटाएँ - - Resume torrents - टौरेंटो को प्रारम्भ करें - - - Pause torrents - टौरेंटो को विराम दें - New Category नई श्रेणी @@ -151,10 +143,6 @@ Exit qBittorrent क्यूबिटटोरेंट बंद करें - - Only one link per line - एक पंक्ति में केवल एक लिंक - Global upload rate limit must be greater than 0 or disabled. सार्वभौम अपलोड दर 0 से अधिक या अक्षम हो। @@ -228,10 +216,6 @@ Save files to location: फाइलों को इस स्थान पर सहेंजे: - - Cookie: - कुकी : - More information अधिक जानकारी @@ -295,10 +279,6 @@ Logout लॉगआउट - - Download Torrents from their URLs or Magnet links - टौरेंटो को उनके यूआरएल या मैगनेट लिंक से डाउनलोड करें - Upload local torrent स्थानीय टाॅरेंट अपलोड करें @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. श्रेणी का नाम अमान्य है:\nश्रेणी के नाम में विशिष्ट अक्षरों का प्रयोग न करें। - - Unable to create category - श्रेणी बनाने में अक्षम - Upload rate threshold must be greater than 0. अपलोड दर की सीमा 0 से अधिक होनी चाहिए। @@ -409,11 +385,11 @@ Remember choice - + पसन्द याद रखें Are you sure you want to remove these %1 torrents from the transfer list? - + क्या आप निश्चित ही इन %1 टाॅरेंटों को स्थानान्तरण सूची से हटाना चाहते हैं? Unable to delete torrents. @@ -421,7 +397,7 @@ URL - + यूआरएल External IP: %1%2 @@ -494,10 +470,6 @@ Options... विकल्प... - - Resume - प्रारम्भ करें - Top Toolbar शीर्ष उपकरण पट्टी @@ -514,10 +486,6 @@ Donate! दान करें! - - Resume All - सभी को प्रारम्भ करें - Statistics आंकड़े @@ -526,14 +494,6 @@ About बारे मेॅ - - Pause - विराम दें - - - Pause All - सभी को विराम दें - Add Torrent File... टौरेंट फाइल जोड़ें... @@ -688,7 +648,7 @@ Filter by: - + से छानें: Save Path @@ -696,7 +656,7 @@ Stop - + रोकें Use regular expression @@ -712,7 +672,7 @@ Manage Cookies... - + कुकी प्रबन्धित करें... Unable to export torrent file @@ -720,7 +680,7 @@ Name - + नाम Would you like to stop all torrents? @@ -734,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -761,10 +725,6 @@ Language भाषा - - User Interface Language: - यूजर इन्टरफेस की भाषा: - Email notification upon download completion डाउनलोड पूरा होने पर ईमेल अधिसूचना @@ -781,10 +741,6 @@ Torrent Queueing टौरेंट पंक्तिबद्धीकरण - - Automatically add these trackers to new downloads: - इन ट्रैकरों को नए डाउनलोडों में स्वतः जोड़ दें: - Web User Interface (Remote control) वेब यूजर इन्टरफेस (रिमोट कण्ट्रोल) @@ -1217,7 +1173,7 @@ Info: The password is saved unencrypted - सूचना: पासवर्ड गोपनीय नहीं है + सूचना: पासवर्ड गोपनीय नहीं है μTP-TCP mixed mode algorithm: @@ -1279,10 +1235,6 @@ Fastest upload तीव्रतम अपलोड - - Pause torrent - टौरेंट को विराम दें - Remove torrent and its files टौरेंट और उसकी फाइलों को हटायें @@ -1325,7 +1277,7 @@ s - से० + से० Send buffer watermark: @@ -1925,7 +1877,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + टाॅरेंट मिटाते समय पुष्टि करें Ignore SSL errors: @@ -1941,11 +1893,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + स्वतः Use alternating row colors - + पंक्तियों में एकांतरित रंगों का प्रयोग करें Display full announce URL in the Tracker column @@ -1953,7 +1905,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -1973,7 +1925,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + डाउनलोड हो रहे टाॅरेंट: Start / stop torrent @@ -1985,7 +1937,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + पूर्ण हो चुके टाॅरेंट: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -1997,7 +1949,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + डबल-क्लिक पर क्रिया Save statistics interval: @@ -2005,7 +1957,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + टाॅरेंट को मिटाने पर पुष्टि करने का डायलॉग दिखाता है Run on torrent finished: @@ -2077,7 +2029,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + कोई कार्यवाही नहीं Auto hide zero status filters @@ -2085,12 +2037,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + पद्धति Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2172,7 +2140,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Peer ID Client - + पीयर ID क्लाइंट @@ -2469,11 +2437,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + वेब स्रोत URL : Yes - + हाँ Ratio / Time Active (in months), indicates how popular the torrent is @@ -2489,7 +2457,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + नहीं Remove web seed @@ -2497,7 +2465,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + वेब स्रोत का संपादन Add web seeds... @@ -2635,14 +2603,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) पूर्ण (0) - - Resumed (0) - प्रारम्भित(0) - - - Paused (0) - विरामित (0) - Active (0) सक्रिय (0) @@ -2671,14 +2631,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) पूर्ण (%1) - - Paused (%1) - विरामित (%1) - - - Resumed (%1) - प्रारम्भित(%1) - Active (%1) सक्रिय (%1) @@ -2749,7 +2701,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + टौरेंटो को हटायें Start torrents @@ -2775,11 +2727,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size साईज - - Done - % Done - पूर्ण - Status Torrent status (e.g. downloading, seeding, paused) @@ -2921,7 +2868,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + प्रगति Info Hash v2 @@ -3077,10 +3024,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 पहले - - Paused - विरामित - Completed पूर्ण @@ -3147,11 +3090,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + रुका हुआ N/A - + लागू नहीं @@ -3195,21 +3138,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename नाम बदलें - - Resume - Resume/start the torrent - प्रारम्भ करें - - - Force Resume - Force Resume/start the torrent - बलपूर्वक प्रारम्भ करें - - - Pause - Pause the torrent - विराम दें - Limit share ratio... शेयर अनुपात की सीमा... @@ -3288,14 +3216,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category नई श्रेणी - - Location - स्थान - - - New name - नया नाम - Set location स्थान चुनें @@ -3308,18 +3228,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category श्रेणी संशोधित करें... - - Save path - संचय पथ - Comma-separated tags: अल्पविराम द्वारा विभाजित उपनाम: - - Add Tags - उपनाम जोड़ें - Tags उपनाम @@ -3386,7 +3298,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + संचय पथ: Location: @@ -3394,11 +3306,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + रोकें Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + स्वतः मोड यानि टॉरेंट विशेषताएँ (संचय पथ आदि) संबंधित श्रेणी द्वारा निर्धारित होगी Start @@ -3406,7 +3318,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + नया नाम : Add tags @@ -3414,7 +3326,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + श्रेणी : @@ -3453,10 +3365,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - फाइलों को भी मिटा दें - Remove torrent(s) टौरेंट(ओं) को हटायें @@ -3467,7 +3375,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + ट्रैकर हटाएँ @@ -3743,10 +3651,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers जोंके - - Search engine - खोज इन्जन - Seeders स्रोतस्वामी @@ -3828,14 +3732,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: उपनाम: - - Pause torrents - टौरेंटो को विराम दें - - - Resume torrents - टौरेंटो को प्रारम्भ करें - Remove unused tags अनुपयोगी उपनामों को हटायें @@ -4002,27 +3898,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + खोज समाप्त हुई An error occurred during search... - + खोज के दौरान एक त्रुटि घटी... Close tab - + टैब बंद करें Searching... - + खोज रहे हैं... Search aborted - + खोज रोक दी गयी Close all tabs - + सभी टैबें बंद करें @@ -4150,6 +4046,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4337,10 +4241,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. यदि शब्द क्रम महत्त्वपूर्ण है तो रिक्तताओं के स्थान पर * का प्रयोग कीजिये। - - Add Paused: - विरामित जोड़ें: - Please type the name of the new download rule. नए डाउनलोड नियम का नाम टाइप करें। @@ -4414,29 +4314,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - टौरेंटो को प्रारम्भ करें - - - All (%1) - सभी (%1) - - - Trackerless (%1) - ट्रैकर रहित (%1) - - - Pause torrents - टौरेंटो को विराम दें - Remove torrents टौरेंटो को हटायें All - + सभी Trackerless @@ -4448,7 +4332,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + ट्रैकर हटाएँ Stop torrents @@ -4612,15 +4496,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + श्रेणी संशोधित करने में अक्षम OK - + ठीक है Unable to create category - + श्रेणी बनाने में अक्षम Unable to set category @@ -4631,11 +4515,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + डोमेन Manage Cookies - + कुकी प्रबन्धित करें Add Cookie @@ -4643,23 +4527,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + हटायें Expiration Date - + समाप्ति तिथि Value - + मान Name - + नाम Path - + पथ @@ -4677,18 +4561,18 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + क्या आप निश्चित ही चयनित टोरेंट(ओं) को पुनः जाँचना चाहते हैं? Recheck confirmation - + पुन: जाँच हेतु पु‍ष्टि SearchWidget Close tab - + टैब बंद करें @@ -4699,7 +4583,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + पासवर्ड JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4707,7 +4591,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + लॉगिन Server response: @@ -4719,10 +4603,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + यूजरनेम Invalid Username or Password. + यूजरनेम व पासवर्ड अमान्य हैं। + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_hr.ts b/src/webui/www/translations/webui_hr.ts index ba0b80dae..3c9a2717a 100644 --- a/src/webui/www/translations/webui_hr.ts +++ b/src/webui/www/translations/webui_hr.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Jedna veza po retku (podržani su HTTP linkovi, Magnet linkovi i info-hashovi) Add torrent links - + Dodajte torrent linkove Select .torrent files - + Odaberi .torrent datoteke Torrent options - + Mogućnosti Torrenta @@ -112,14 +112,6 @@ Remove unused categories Uklonite kategorije koje se ne koriste - - Resume torrents - Nastavi torrente - - - Pause torrents - Pauziraj torrente - New Category Nova kategorija @@ -138,11 +130,11 @@ Start torrents - + Pokreni torrente Stop torrents - + Zaustavi torrente @@ -151,10 +143,6 @@ Exit qBittorrent Zatvorite qBittorrent - - Only one link per line - Samo jedna poveznica po liniji - Global upload rate limit must be greater than 0 or disabled. Globalno ograničenje brzine slanja mora biti veće od 0 ili onemogućeno. @@ -228,10 +216,6 @@ Save files to location: Spremi datoteke na lokaciju: - - Cookie: - Kolačić: - More information Više informacija @@ -295,10 +279,6 @@ Logout Odjava - - Download Torrents from their URLs or Magnet links - Preuzmi torrente sa njegovih URLova ili Magnet linkova - Upload local torrent Slanje lokalnog torrenta @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Neispravno ime kategorije:\nNe koristite posebne znakove u imenu kategorije. - - Unable to create category - Nije moguće stvoriti kategoriju - Upload rate threshold must be greater than 0. Prag brzine slanja mora biti veći od 0. @@ -383,10 +359,6 @@ Original author Izvorni autor - - Are you sure you want to remove the selected torrents from the transfer list? - Jeste li sigurni da želite ukloniti odabrane torrente s popisa prijenosa? - The port used for the WebUI must be between 1 and 65535. Port koji se koristi za WebUI mora biti između 1 i 65535. @@ -401,39 +373,39 @@ External IP: N/A - + Vanjski IP: N/A Reverse proxy setup examples - + Obrnuti primjeri postavljanja proxyja Could not contact qBittorrent - + Nije moguće kontaktirati qBittorrent Remember choice - + Zapamti izbor Are you sure you want to remove these %1 torrents from the transfer list? - + Jeste li sigurni da želite ukloniti ove %1 torrente s popisa prijenosa? Unable to delete torrents. - + Nije moguće izbrisati torrente. URL - + URL External IP: %1%2 - + Vanjski IP: %1%2 Edit web seed - + Uredi web seed Are you sure you want to remove %1 from the transfer list? @@ -445,19 +417,19 @@ Unable to stop torrents. - + Nije moguće zaustaviti torrente. Unable to download file - + Nije moguće preuzeti datoteku External IPs: %1, %2 - + Vanjski IP-jevi: %1, %2 Unable to recheck torrents. - + Nije moguće ponovno provjertiti torrente. List of web seeds to add (one per line): @@ -465,11 +437,11 @@ Unable to start torrents. - + Nije moguće pokrenuti torrente. Add web seeds - + Dodaj web seedove @@ -498,10 +470,6 @@ Options... Opcije... - - Resume - Nastavi - Top Toolbar Gornja alatna traka @@ -518,10 +486,6 @@ Donate! Doniraj! - - Resume All - Nastavi sve - Statistics Statistika @@ -530,14 +494,6 @@ About O programu - - Pause - Pauziraj - - - Pause All - Pauziraj sve - Add Torrent File... Dodaj torrent datoteku... @@ -678,14 +634,6 @@ Remove Ukloni - - Would you like to resume all torrents? - Želite li nastaviti sa svim torrentima? - - - Would you like to pause all torrents? - Želite li pauzirati sve torrente? - Execution Log Dnevnik izvršavanja @@ -700,50 +648,54 @@ Filter by: - + Filtrirati po: Save Path - + Putanja za spremanje Stop - + Zaustavi Use regular expression - + Koristi regularni izraz Would you like to start all torrents? - + Želite li pokrenuti sve torrente? Start - + Start Manage Cookies... - + Upravljaj kolačićima... Unable to export torrent file - + Nije moguće izvesti torrent datoteku Name - + Naziv Would you like to stop all torrents? - + Želite li zaustaviti sve torrente? Start All - + Pokreni sve Stop All + Zaustavi sve + + + Torrent Creator @@ -773,10 +725,6 @@ Language Jezik - - User Interface Language: - Jezik korisničkog sučelja: - Email notification upon download completion Obavijesti e-poštom prilikom završetka preuzimanja @@ -793,10 +741,6 @@ Torrent Queueing Red čekanja torrenta - - Automatically add these trackers to new downloads: - Automatski dodaj ove trackere za nova preuzimanja: - Web User Interface (Remote control) Web korisničko sučelje (daljinsko upravljanje) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Lozinka je spremljena nekriptirana + Info: Lozinka je spremljena nekriptirana μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Najbrže učitavanje - - Pause torrent - Pauziraj torrente - Remove torrent and its files Ukloni torrent i njegove datoteke @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Ban klijenta nakon uzastopnih neuspjeha: - - Enable cookie Secure flag (requires HTTPS) - Omogući sigurnu oznaku kolačića (zahtijeva HTTPS) - Header: value pairs, one per line Zaglavlje: parovi vrijednosti, jedan po retku @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Podrška internacionaliziranom nazivu domene (IDN): - - Run external program on torrent finished - Pokretanje vanjskog programa kod završenog torrenta - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ trebali biste unijeti nazive domena koje koristi WebUI poslužitelj. Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. - - Run external program on torrent added - Pokretanje vanjskog programa kod dodanog torrenta - HTTPS certificate should not be empty HTTPS certifikat ne smije biti prazan @@ -1727,10 +1655,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.days dana - - Log file - Datoteka zapisa - Behavior Ponašanje @@ -1945,39 +1869,39 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Color scheme: - + Tema: Show external IP in status bar - + Pokaži eksternalni IP u traci statusa Fetched trackers - + Dohvaćeni trackeri Confirm when deleting torrents - + Potvrdi prilikom brisanja torrenta Ignore SSL errors: - + Ignoriraj SSL pogreške: Dark - + Tamna Delete files permanently - + Trajno brisanje datoteka Auto - + Auto Use alternating row colors - + Koristi alternativne boje redova Display full announce URL in the Tracker column @@ -1985,39 +1909,39 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. URL: - + URL: Transfer list - + Popis prijenosa The announce port must be between 0 and 65535. - + Port za najavu mora biti između 0 i 65535. Light - + Svijetla Automatically append these trackers to new downloads: - + Automatski dodajte ove alate za praćenje novim preuzimanjima: Downloading torrents: - + Preuzimanje torrenta: Start / stop torrent - + Započni / zaustavi torrent Send test email - + Pošalji probnu e-poštu Completed torrents: - + Dovršeni torrenti: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. When duplicate torrent is being added - + Kada se dodaje dvostruki torrent Action on double-click - + Radnja na dvostruki klik Save statistics interval: @@ -2037,39 +1961,39 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Shows a confirmation dialog upon torrent deletion - + Prikazuje dijaloški okvir za potvrdu nakon brisanja torrenta Run on torrent finished: - + Pokreni kad torrent završi: Attempted to send email. Check your inbox to confirm success - + Pokušano slanje e-pošte. Provjerite svoju pristiglu poštu kako biste potvrdili uspjeh Automatically append trackers from URL to new downloads: - + Automatski dodaj trackere iz poveznice novim preuzimanjima: Torrent content removing mode: - + Način uklanjanja torrent sadržaja: Move files to trash (if possible) - + Premjestite datoteke u smeće (ako je moguće) Stop torrent - + Zaustavi torrent Use Category paths in Manual Mode - + Koristite putanje kategorija u ručnom načinu rada List of alternative WebUI - + Popis alternativnih WebUI-jeva Run on torrent added: @@ -2085,7 +2009,7 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Merge trackers to existing torrent - + Spojite trackere na postojeći torrent Confirm torrent recheck: @@ -2101,28 +2025,44 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Simple pread/pwrite - + Jednostavno pčitanje/ppisanje Resolve relative Save Path against appropriate Category path instead of Default one - + Razriješi relativnu putanju spremanja s odgovarajućom putanjom kategorije umjesto zadane No action - + Bez radnje Auto hide zero status filters - + Automatsko skrivanje filtera nultog statusa Interface - + Sučelje Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2493,7 +2433,7 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Replace option - + Zamijeni opciju Edit web seed URL... @@ -2501,19 +2441,19 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Web seed URL: - + URL web seeda: Yes - + Da Ratio / Time Active (in months), indicates how popular the torrent is - + Omjer / vrijeme aktivnosti (u mjesecima), pokazuje koliko je torrent popularan Popularity: - + Popularnost: Apply to which filename part @@ -2521,7 +2461,7 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. No - + Ne Remove web seed @@ -2529,7 +2469,7 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Web seed editing - + Uređivanje web seeda Add web seeds... @@ -2537,7 +2477,7 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Private: - + Privatno: @@ -2667,14 +2607,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.Completed (0) Završeno (0) - - Resumed (0) - Nastavljeno (0) - - - Paused (0) - Pauzirano (0) - Active (0) Aktivno (0) @@ -2703,14 +2635,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.Completed (%1) Završeno (%1) - - Paused (%1) - Pauzirano (%1) - - - Resumed (%1) - Nastavljeno (%1) - Active (%1) Aktivno (%1) @@ -2765,31 +2689,31 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Running (0) - + Pokrenuto (0) Stopped (0) - + Zaustavljeno (0) Stopped (%1) - + Zaustavljeno (%1) Running (%1) - + Pokrenuto (%1) Remove torrents - + Ukloni torrente Start torrents - + Pokreni torrente Stop torrents - + Zaustavi torrente @@ -2807,11 +2731,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.i.e: torrent size Veličina - - Done - % Done - Napredak - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Private - + Privatno Progress - + Napredak Info Hash v2 - + Info hash v2 Info Hash v1 - + Info hash v1 Incomplete Save Path - + Nepotpuna putanja spremanja Popularity - + Popularnost Status Icon - + Status ikona @@ -3109,10 +3028,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.e.g.: 1h 20m ago prije %1 - - Paused - Pauzirano - Completed Završeno @@ -3179,11 +3094,11 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Stopped - + Zaustavljeno N/A - + N/A @@ -3227,21 +3142,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.Rename Preimenovanje - - Resume - Resume/start the torrent - Nastavi - - - Force Resume - Force Resume/start the torrent - Prisili nastavak - - - Pause - Pause the torrent - Pauziraj - Limit share ratio... Ograničenje omjera djeljenja @@ -3320,14 +3220,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.New Category Nove kategorije - - Location - Lokacija - - - New name - Novi naziv - Set location Postavi lokaciju @@ -3340,18 +3232,10 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.Edit Category Uredi kategoriju - - Save path - Putanja za spremanje - Comma-separated tags: Oznake odvojene zarezima: - - Add Tags - Dodaj oznake - Tags Oznake @@ -3414,39 +3298,39 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Force Start - + Prisilni start Save path: - + Putanja spremanja: Location: - + Lokacija: Stop - + Zaustavi Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatski način rada znači da će različita svojstva torrenta (npr. putanja spremanja) biti određena pridruženom kategorijom Start - + Start New name: - + Novi naziv: Add tags - + Dodaj oznake Category: - + Kategorija: @@ -3485,21 +3369,17 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. confirmDeletionDlg - - Also permanently delete the files - Također trajno izbrišite datoteke - Remove torrent(s) Ukloni torrent(e) Also remove the content files - + Također uklonite datoteke sadržaja Remove tracker - + Ukloni trackera @@ -3711,7 +3591,7 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Start a search above. - + Započnite pretragu iznad. Max size prefix @@ -3775,25 +3655,21 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.Leechers Leecheri - - Search engine - Pretraživač - Seeders Seederi Published On - + Objavljeno dana Engine URL - + URL pogona Engine - + Pogon @@ -3860,14 +3736,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.Tag: Oznaka: - - Pause torrents - Pauziraj torrente - - - Resume torrents - Nastavi torrente - Remove unused tags Ukloni nekorištene oznake @@ -3886,11 +3754,11 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Start torrents - + Pokreni torrente Stop torrents - + Zaustavi torrente @@ -4034,27 +3902,27 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Search has finished - + Pretraga je završila An error occurred during search... - + Greška prilikom pretrage... Close tab - + Zatvori karticu Searching... - + Pretraživanje... Search aborted - + Pretraga prekinuta Close all tabs - + Zatvori sve kartice @@ -4168,18 +4036,26 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Edit feed URL... - + Uredi URL feeda... Unable to update URL - + Nije moguće ažurirati URL URL is unchanged - + URL nije promijenjen URL cannot be empty + URL ne može biti prazan + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'.If word order is important use * instead of whitespace. Ako je redoslijed riječi važan, koristite * umjesto razmaka. - - Add Paused: - Dodaj pauzirano: - Please type the name of the new download rule. Upišite naziv novog pravila preuzimanja. @@ -4432,58 +4304,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + Ukloni pravilo Add rule - + Dodaj pravilo Add Stopped: - + Dodaj zaustavljeno: TrackerFiltersList - - Resume torrents - Nastavi torrente - - - All (%1) - Sve (%1) - - - Trackerless (%1) - Bez trackera (%1) - - - Pause torrents - Pauziraj torrente - Remove torrents Ukloni torrente All - + Sve Trackerless - + Bez trackera Start torrents - + Pokreni torrente Remove tracker - + Ukloni trackera Stop torrents - + Zaustavi torrente @@ -4643,117 +4499,309 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Nije moguće urediti kategoriju OK - + U redu Unable to create category - + Nije moguće stvoriti kategoriju Unable to set category - + Nije moguće postaviti kategoriju CookiesDialog Domain - + Domena Manage Cookies - + Upravljaj kolačićima Add Cookie - + Dodaj kolačić Remove - + Ukloni Expiration Date - + Rok trajanja Value - + Vrijednost Name - + Naziv Path - + Putanja confirmAutoTMMDialog Enable automatic torrent management - + Omogući automatsko upravljanje torrentima Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Jeste li sigurni da želite omogućiti automatsko upravljanje torrentima za odabrani torrent(e)? Mogu biti premješteni. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Jeste li sigurni da želite ponovno provjeriti odabrani/e torrent(e)? Recheck confirmation - + Ponovno provjeri potvrđivanje SearchWidget Close tab - + Zatvori karticu Login qBittorrent WebUI - + qBittorrent WebUI Password - + Lozinka JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Potreban je JavaScript! Morate omogućiti JavaScript kako bi WebUI ispravno radio Login - + Prijava Server response: - + Odgovor poslužitelja: Unable to log in, server is probably unreachable. - + Nije se moguće prijaviti, poslužitelj je vjerojatno nedostupan. Username - + Korisničko ime Invalid Username or Password. + Neispravno korisničko ime ili lozinka + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_hu.ts b/src/webui/www/translations/webui_hu.ts index 218e3a517..3fca6d296 100644 --- a/src/webui/www/translations/webui_hu.ts +++ b/src/webui/www/translations/webui_hu.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Soronként egy link (HTTP linkek, mágnes linkek és az info hashek támogatottak) Add torrent links - + Torrent linkek hozzáadás Select .torrent files - + .torrent fájlok kiválasztása Torrent options - + Torrent beállítások @@ -112,14 +112,6 @@ Remove unused categories Nem használt kategóriák eltávolítása - - Resume torrents - Torrentek folytatása - - - Pause torrents - Torrentek szüneteltetése - New Category Új kategória @@ -138,11 +130,11 @@ Start torrents - + Torrentek indítása Stop torrents - + Torrentek leállítása @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent bezárása - - Only one link per line - Soronként csak egy link - Global upload rate limit must be greater than 0 or disabled. Globális feltöltési sebességkorlátnak 0-nál nagyobbnak, vagy kikapcsoltnak kell lennie. @@ -228,10 +216,6 @@ Save files to location: Fájlok mentési helye: - - Cookie: - Süti: - More information További információ @@ -295,10 +279,6 @@ Logout Kijelentkezés - - Download Torrents from their URLs or Magnet links - Torrent letöltése URL-ről vagy Magnet linkről - Upload local torrent Helyi torrent feltöltése @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Érvénytelen kategórianév:\nNe használjon különleges karaktereket a kategórianévben. - - Unable to create category - Kategória nem hozható létre - Upload rate threshold must be greater than 0. Feltöltési sebességnek nagyobbnak kell lennie, mint 0. @@ -383,10 +359,6 @@ Original author Eredeti szerző - - Are you sure you want to remove the selected torrents from the transfer list? - Egészen biztos, hogy törlöd a kiválasztott torrenteket az átviteli listáról? - The port used for the WebUI must be between 1 and 65535. Web UI-hoz használt portnak 1 és 65535 közé kell esnie. @@ -401,75 +373,75 @@ External IP: N/A - + Külső IP: N/A Reverse proxy setup examples - + Reverse proxy beállítási példák Could not contact qBittorrent - + Nem sikerült kapcsolatba lépni a qBittorrenttel Remember choice - + Válasz megjegyzése Are you sure you want to remove these %1 torrents from the transfer list? - + Biztosan eltávolítja a következő %1 torrentet az átviteli listából? Unable to delete torrents. - + Torrentek törlése nem lehetséges. URL - + URL External IP: %1%2 - + Külső IP: %1%2 Edit web seed - + Web seed szerkesztése Are you sure you want to remove %1 from the transfer list? - + Biztosan el szeretné távolítani a(z) %1 torrentet az átviteli listából? Unable to set Auto Torrent Management for the selected torrents. - + Az automatikus torrent kezelés beállítása nem lehetséges a kiválasztott torrentekhez. Unable to stop torrents. - + Torrentek megállítása nem lehetséges. Unable to download file - + A fájl letöltése nem lehetséges. External IPs: %1, %2 - + Külső IP-k: %1, %2 Unable to recheck torrents. - + A torrentek újraellenőrzése nem lehetséges. List of web seeds to add (one per line): - + Hozzáadandó web seedek listája (soronként egy): Unable to start torrents. - + Nem lehet elindítani a torrenteket. Add web seeds - + Web seedek hozzáadása @@ -498,10 +470,6 @@ Options... Beállítások... - - Resume - Folytatás - Top Toolbar Felső eszköztár @@ -518,10 +486,6 @@ Donate! Adományozz! - - Resume All - Összes folytatása - Statistics Statisztika @@ -530,14 +494,6 @@ About Névjegy - - Pause - Szünet - - - Pause All - Összes szüneteltetése - Add Torrent File... Torrent fájl hozzáadása... @@ -678,14 +634,6 @@ Remove Eltávolítás - - Would you like to resume all torrents? - Folytatja az összes torrentet? - - - Would you like to pause all torrents? - Szünetelteti az összes torrentet? - Execution Log Napló @@ -700,50 +648,54 @@ Filter by: - + Szűrés erre: Save Path - + Mentés helye Stop - + Leállítás Use regular expression - + Reguláris kifejezések használata Would you like to start all torrents? - + Szeretné elindítani az összes torrentet? Start - + Start Manage Cookies... - + &Sütik kezelése… Unable to export torrent file - + Nem sikerült a torrent fájl exportálása Name - + Név Would you like to stop all torrents? - + Szeretné leállítani az összes torrentet? Start All - + Összes indítása Stop All + Összes leállítása + + + Torrent Creator @@ -773,10 +725,6 @@ Language Nyelv - - User Interface Language: - Felhasználói felület nyelve: - Email notification upon download completion E-mail értesítés letöltés végeztével @@ -793,10 +741,6 @@ Torrent Queueing Torrent ütemezés - - Automatically add these trackers to new downloads: - Ezen trackerek automatikus hozzáadása az új letöltésekhez: - Web User Interface (Remote control) Webes felhasználói felület (Távoli elérés) @@ -851,11 +795,11 @@ SMTP server: - SMTP-kiszolgáló: + SMTP-szerver: This server requires a secure connection (SSL) - Ez a kiszolgáló biztonságos kapcsolatot (SSL) igényel + Ez a szerver biztonságos kapcsolatot (SSL) igényel Authentication @@ -907,7 +851,7 @@ Proxy Server - Proxy kiszolgáló + Proxy szerver Type: @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Infó: A jelszó titkosítás nélkül kerül elmentésre + Infó: A jelszó titkosítás nélkül kerül elmentésre μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Leggyorsabb feltöltés - - Pause torrent - Torrent szüneteltetése - Remove torrent and its files Torrent és fájljai eltávolítása @@ -1337,7 +1277,7 @@ s - mp + mp Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Kliens tiltása egymást követő hibák után: - - Enable cookie Secure flag (requires HTTPS) - A Secure jelző engedélyezése a sütiknél (HTTPS szükséges) - Header: value pairs, one per line Fejléc : értékpárok, soronként egy @@ -1565,7 +1501,7 @@ Server-side request forgery (SSRF) mitigation: - Védekezés a kiszolgálóoldali kéréshamisítás (SSRF) ellen: + Védekezés a szerver-oldali kéréshamisítás (SSRF) ellen: Disk queue size: @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Nemzetköziesített domain nevek (IDN) támogatása: - - Run external program on torrent finished - Külső program futtatása torrent letöltése után - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1655,14 +1587,10 @@ you should put in domain names used by WebUI server. Use ';' to split multiple entries. Can use wildcard '*'. Fehérlista a HTTP Kiszolgáló fejléc értékek szűrésére. A DNS újrakötési támadások ellen, -írja be a WebUI kiszolgáló domain neveit. +írja be a WebUI szerver domain neveit. Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettesítő karakter is használható. - - Run external program on torrent added - Külső program futtatása torrent hozzáadáskor - HTTPS certificate should not be empty A HTTPS-tanúsítvány mezője nem lehet üres @@ -1727,10 +1655,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes days nap - - Log file - Naplófájl - Behavior Működés @@ -1945,182 +1869,198 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Color scheme: - + Színséma: Show external IP in status bar - + Külső IP megjelenítése az állapotsoron Fetched trackers - + Lekért trackerek Confirm when deleting torrents - + Torrentek törlésének megerősítése Ignore SSL errors: - + SSL hibák figyelmen kívül hagyása: Dark - + Sötét Delete files permanently - + Fájlok végleges törlése Auto - + Auto Use alternating row colors - + Váltakozó sorszínezés használata Display full announce URL in the Tracker column - + A teljes bejelentési URL megjelenítése a Tracker oszlopban URL: - + URL: Transfer list - + Átviteli lista The announce port must be between 0 and 65535. - + A bejelentési portnak 0 és 65535 között kell lennie. Light - + Világos Automatically append these trackers to new downloads: - + Ezen trackerek automatikus hozzáadása az új letöltésekhez: Downloading torrents: - + Letöltés alatt lévő torrenteknél: Start / stop torrent - + Torrent elindítása / leállítása Send test email - + Teszt email küldése Completed torrents: - + Letöltött torrenteknél: Enable cookie Secure flag (requires HTTPS or localhost connection) - + A Secure jelző engedélyezése a sütiknél (HTTPS vagy helyi kapcsolat szükséges) When duplicate torrent is being added - + Amikor duplikált torrent kerül hozzáadásra Action on double-click - + Művelet dupla-kattintás esetén Save statistics interval: - + Statisztika mentési intervallum: Shows a confirmation dialog upon torrent deletion - + Torrent törlésekor megerősítő párbeszédpanel megjelenítése Run on torrent finished: - + Futtatás torrent befejezésekor: Attempted to send email. Check your inbox to confirm success - + Email küldés megkísérelve. Ellenőrizze a megadott email fiókot a sikeres küldés megerősítéséhez. Automatically append trackers from URL to new downloads: - + Az URL-en található trackerek automatikus hozzáadása az új letöltésekhez: Torrent content removing mode: - + Torrent tartalom eltávolítási mód: Move files to trash (if possible) - + Fájlok áthelyezése a kukába (ha lehetséges) Stop torrent - + Torrent leállítása Use Category paths in Manual Mode - + Használja a kategória elérési útjait kézi módban List of alternative WebUI - + Alternatív WebUI-k listája Run on torrent added: - + Futtatás torrent hozzáadásakor: Port reported to trackers (requires restart) [0: listening port]: - + Trackerek felé jelentett port (újraindítást igényel) [0: használt port] User interface language: - + Felhasználói felület nyelve: Merge trackers to existing torrent - + Trackerek egyesítése meglévő torrenthez Confirm torrent recheck: - + Torrent újraellenőrzés megerősítése: Custom WebUI settings - + Egyéni WebUI beállítások Following settings are WebUI only - + A következő beállítások csak WebUI-ra vonatkoznak Simple pread/pwrite - + Simple pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Oldja fel a relatív mentési útvonalat a megfelelő kategória elérési útjával az alapértelmezett helyett No action - + Nincs művelet Auto hide zero status filters - + Üres szűrők automatikus elrejtése Interface - + Felület Log Files + Napló Fájlok + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Copy web seed URL - + Web seed URL másolása Replace option - + Átnevezési opciók Edit web seed URL... - + Web seed URL szerkesztése... Web seed URL: - + Web seed URL: Yes - + Igen Ratio / Time Active (in months), indicates how popular the torrent is - + Arány / Aktív idő (hónapokban), jelzi, mennyire népszerű a torrent Popularity: - + Népszerűség: Apply to which filename part - + Melyik fájlnévrészre alkalmazza No - + Nem Remove web seed - + Web seed eltávolítása Web seed editing - + Web seed szerkesztés Add web seeds... - + Web seedek hozzáadása... Private: - + Privát @@ -2667,14 +2607,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Completed (0) Kész (0) - - Resumed (0) - Folytatott (0) - - - Paused (0) - Szüneteltetett (0) - Active (0) Aktív (0) @@ -2703,14 +2635,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Completed (%1) Kész (%1) - - Paused (%1) - Szüneteltetett (%1) - - - Resumed (%1) - Folytatott (%1) - Active (%1) Aktív (%1) @@ -2765,31 +2689,31 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Running (0) - + Folyamatban (0) Stopped (0) - + Megállítva (0) Stopped (%1) - + Megállítva (%1) Running (%1) - + Folyamatban (%1) Remove torrents - + Torrentek eltávolítása Start torrents - + Torrentek indítása Stop torrents - + Torrentek leállítása @@ -2807,11 +2731,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes i.e: torrent size Méret - - Done - % Done - Elkészült - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Private - + Privát Progress - + Folyamat Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Befejezetlen mentés helye Popularity - + Népszerűség Status Icon - + Állapot ikon @@ -3109,10 +3028,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes e.g.: 1h 20m ago %1 ideje - - Paused - Szüneteltetett - Completed Befejezett @@ -3179,11 +3094,11 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Stopped - + Megállítva N/A - + N/A @@ -3210,7 +3125,7 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Collapse/expand category - + Kategória összecsukása/kinyitása @@ -3227,21 +3142,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Rename Átnevezés - - Resume - Resume/start the torrent - Folytatás - - - Force Resume - Force Resume/start the torrent - Kényszerített folytatás - - - Pause - Pause the torrent - Szünet - Limit share ratio... Megosztási arány korlát... @@ -3320,14 +3220,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes New Category Új kategória - - Location - Hely - - - New name - Új név - Set location Hely megadása @@ -3340,18 +3232,10 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Edit Category Kategória Szerkesztése - - Save path - Mentés helye - Comma-separated tags: Vesszővel elválasztott címkék: - - Add Tags - Címkék hozzáadása - Tags Címkék @@ -3414,39 +3298,39 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Force Start - + Kényszerített indítás Save path: - + Mentési útvonal: Location: - + Hely: Stop - + Leállítás Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Az automatikus mód azt jelenti, hogy a különböző torrenttulajdonságok (pl. a mentési útvonal) a hozzátartozó kategória alapján kerülnek eldöntésre Start - + Start New name: - + Új név: Add tags - + Címkék hozzáadása Category: - + Kategória: @@ -3485,21 +3369,17 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes confirmDeletionDlg - - Also permanently delete the files - Törölje véglegesen a fájlokat is - Remove torrent(s) Torrent(ek) eltávolítása Also remove the content files - + Tartalom fájlokat is távolítsa el Remove tracker - + Tracker eltávolítása @@ -3703,23 +3583,23 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Select category - + Kategória kiválasztása Min size prefix - + Min méret prefix Start a search above. - + Indítson keresést fent. Max size prefix - + Max méret prefix Select plugins - + Bővítmények kiválasztása @@ -3775,25 +3655,21 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Leechers Leecherek - - Search engine - Keresőmotor - Seeders Seederek Published On - + Közzétéve Engine URL - + Motor URL Engine - + Motor @@ -3860,14 +3736,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Tag: Címke: - - Pause torrents - Torrentek szüneteltetése - - - Resume torrents - Torrentek folytatása - Remove unused tags Nem használt címkék eltávolítása @@ -3886,11 +3754,11 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Start torrents - + Torrentek indítása Stop torrents - + Torrentek leállítása @@ -4034,27 +3902,27 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Search has finished - + A keresés befejeződött An error occurred during search... - + Hiba történt a keresés közben… Close tab - + Fül bezárása Searching... - + Keresés… Search aborted - + Keresés megszakítva Close all tabs - + Az összes fül bezárása @@ -4168,18 +4036,26 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Edit feed URL... - + Csatorna URL szerkesztése... Unable to update URL - + URL frissítése nem sikerült URL is unchanged - + URL változatlan URL cannot be empty + URL nem lehet üres + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes If word order is important use * instead of whitespace. Ha a szósorrend fontos, akkor használjon *-ot üres karakter helyett - - Add Paused: - Hozzáad szüneteltetve: - Please type the name of the new download rule. Kérlek add meg az új letöltési szabály nevét. @@ -4433,58 +4305,42 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Remove rule - + Szabály eltávolítása Add rule - + Szabály hozzáadása Add Stopped: - + Hozzáad megállítva: TrackerFiltersList - - Resume torrents - Torrentek folytatása - - - All (%1) - Összes (%1) - - - Trackerless (%1) - Tracker nélküli (%1) - - - Pause torrents - Torrentek szüneteltetése - Remove torrents Torrentek eltávolítása All - + Összes Trackerless - + Tracker nélküli Start torrents - + Torrentek indítása Remove tracker - + Tracker eltávolítása Stop torrents - + Torrentek leállítása @@ -4637,124 +4493,316 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Biztos, hogy el akarja távolítani a "%1" trackert az összes torrentről? Category Unable to edit category - + Nem sikerült szerkeszteni a kategóriát OK - + OK Unable to create category - + Kategória nem hozható létre Unable to set category - + Nem sikerült a kategória beállítása CookiesDialog Domain - + Domain Manage Cookies - + Sütik kezelése Add Cookie - + Cookie hozzáadása Remove - + Eltávolítás Expiration Date - + Lejárati dátum Value - + Érték Name - + Név Path - + Útvonal confirmAutoTMMDialog Enable automatic torrent management - + Automatikus torrentkezelés engedélyezése Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Biztos benne, hogy engedélyezi az automatikus torrentkezelést a kiválasztott torrent(ek) számára? Lehetséges, hogy át lesznek helyezve. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Biztos benne, hogy újraellenőrzi a kiválasztott torrenteket? Recheck confirmation - + Újraellenőrzés megerősítése SearchWidget Close tab - + Fül bezárása Login qBittorrent WebUI - + qBittorrent WebUI Password - + Jelszó JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript szükséges! A WebUI megfelelő működéséhez engedélyeznie kell a JavaScriptet. Login - + Bejelentkezés Server response: - + Szerver válasza: Unable to log in, server is probably unreachable. - + Nem sikerült bejelentkezni, a szerver talán elérhetetlen. Username - + Felhasználónév Invalid Username or Password. + Érvénytelen felhasználónév vagy Jelszó. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_hy.ts b/src/webui/www/translations/webui_hy.ts index 6429dae34..8981ba1e2 100644 --- a/src/webui/www/translations/webui_hy.ts +++ b/src/webui/www/translations/webui_hy.ts @@ -76,7 +76,7 @@ Add torrent links - + Ավելացնել torrent հղումներ Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Հեռացնել չօգտագործվող անվանակարգերը - - Resume torrents - Շարունակել torrent-ները - - - Pause torrents - Դադարեցնել torrent-ները - New Category Նոր անվանակարգ @@ -151,10 +143,6 @@ Exit qBittorrent Ելք qBittorrent-ից - - Only one link per line - Մեկ հղում տողի համար - Global upload rate limit must be greater than 0 or disabled. @@ -311,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - Չհաջողվեց ստեղծել անվանակարգ - Upload rate threshold must be greater than 0. @@ -401,7 +385,7 @@ Remember choice - + Հիշել ընտրանքը Are you sure you want to remove these %1 torrents from the transfer list? @@ -413,7 +397,7 @@ URL - + Հղումը External IP: %1%2 @@ -486,10 +470,6 @@ Options... Ընտրանքներ... - - Resume - Շարունակել - Top Toolbar Վերևի գործիքագոտի @@ -506,10 +486,6 @@ Donate! Նվիրաբերե՜լ - - Resume All - Շարունակել բոլորը - Statistics Վիճակագրություն @@ -518,14 +494,6 @@ About Ծրագրի մասին - - Pause - Դադար - - - Pause All - Դադարեցնել բոլորը - Add Torrent File... Ավելացնել torrent նիշք... @@ -688,7 +656,7 @@ Stop - + Կանգնեցնել Use regular expression @@ -704,7 +672,7 @@ Manage Cookies... - + Կառավարել թխուկները... Unable to export torrent file @@ -712,7 +680,7 @@ Name - + Անվանում Would you like to stop all torrents? @@ -726,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -753,10 +725,6 @@ Language Լեզու - - User Interface Language: - Միջերեսի լեզուն՝ - Email notification upon download completion Բեռնումները ավարտելիս տեղեկացնել էլ. փոստով @@ -1203,10 +1171,6 @@ When adding a torrent Torrent ավելացնելիս - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1267,10 +1231,6 @@ Fastest upload - - Pause torrent - Դադարեցնել torrent-ը - Remove torrent and its files Հեռացնել torrent-ը և իր նիշքերը @@ -1311,10 +1271,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -1913,7 +1869,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Հաստատել torrent-ները ջնջելիս Ignore SSL errors: @@ -1929,11 +1885,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Ինքնաշխատ Use alternating row colors - + Տարբեր գույների տողեր կիրառել Display full announce URL in the Tracker column @@ -1941,7 +1897,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL՝ Transfer list @@ -1961,7 +1917,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Ներբեռնվող torrent-ներ՝ Start / stop torrent @@ -1973,7 +1929,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + Ավարտված torrent-ները՝ Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -1985,7 +1941,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + Երկկտտոցի գործողությունը Save statistics interval: @@ -2065,7 +2021,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + Առանց գործողության Auto hide zero status filters @@ -2073,12 +2029,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + Միջերես Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2457,11 +2429,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + Վեբ հատիկի URL-ը՝ Yes - + Այո Ratio / Time Active (in months), indicates how popular the torrent is @@ -2477,7 +2449,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Ոչ Remove web seed @@ -2485,7 +2457,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Վեբ շղթայի խմբագրում Add web seeds... @@ -2623,14 +2595,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Ավարտված (0) - - Resumed (0) - Վերսկսված (0) - - - Paused (0) - Դադարի մեջ (0) - Active (0) Ակտիվ (0) @@ -2659,14 +2623,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Ավարտված (%1) - - Paused (%1) - Դադարի մեջ (%1) - - - Resumed (%1) - Վերսկսված (%1) - Active (%1) Ակտիվ (%1) @@ -2737,7 +2693,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + Հեռացնել torrent-ները Start torrents @@ -2763,11 +2719,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Չափը - - Done - % Done - -ը բեռնվել է - Status Torrent status (e.g. downloading, seeding, paused) @@ -2909,7 +2860,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Ընթացք Info Hash v2 @@ -3065,10 +3016,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 առաջ - - Paused - Դադարի մեջ է - Completed Ավարտված է @@ -3135,7 +3082,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Կանգնեցված N/A @@ -3183,21 +3130,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Անվանափոխել - - Resume - Resume/start the torrent - Վերսկսել - - - Force Resume - Force Resume/start the torrent - Ստիպողաբար շարունակել - - - Pause - Pause the torrent - Դադար - Limit share ratio... Արագ-ան սահ-ներ... @@ -3288,18 +3220,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category - - Save path - Պահպանելու ճ-ը - Comma-separated tags: Ստորակետով բաժանված պիտակներ՝ - - Add Tags - Ավելացնել պիտակներ - Tags Պիտակներ @@ -3366,7 +3290,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Պահելու ուղին՝ Location: @@ -3374,7 +3298,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Կանգնեցնել Automatic mode means that various torrent properties(eg save path) will be decided by the associated category @@ -3386,7 +3310,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Նոր անվանում՝ Add tags @@ -3394,7 +3318,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Անվանակարգ՝ @@ -3443,7 +3367,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Ջնջել ուղղորդիչը @@ -3719,10 +3643,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Քաշողներ - - Search engine - Որոնիչ - Seeders Բաժանողներ @@ -3804,14 +3724,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Պիտակ՝ - - Pause torrents - Դադարեցնել torrent-ները - - - Resume torrents - Շարունակել torrent-ները - Remove unused tags Հեռացնել չօգտագործվող պիտակները @@ -3978,27 +3890,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Որոնումը ավարտվել է An error occurred during search... - + Սխալ՝ փնտրելիս… Close tab - + Փակել ներդիրը Searching... - + Որոնվում է... Search aborted - + Որոնումը ընդհատվեց Close all tabs - + Փակել բոլոր ներդիրները @@ -4126,6 +4038,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4385,29 +4305,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Շարունակել torrent-ները - - - All (%1) - Բոլորը (%1) - - - Trackerless (%1) - Անգրանցորդ (%1) - - - Pause torrents - Դադարեցնել torrent-ները - Remove torrents Հեռացնել torrent-ները All - + Բոլորը Trackerless @@ -4419,7 +4323,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Ջնջել ուղղորդիչը Stop torrents @@ -4583,15 +4487,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Չհաջողվեց խմբագրել անվանակարգը OK - + ԼԱՎ Unable to create category - + Չհաջողվեց ստեղծել անվանակարգ Unable to set category @@ -4602,11 +4506,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Տիրույթ Manage Cookies - + Կառավարել թխուկները Add Cookie @@ -4618,19 +4522,19 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expiration Date - + Սպառման ժամկետ Value - + Արժեք Name - + Անվանում Path - + Ուղի @@ -4648,18 +4552,18 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Վստա՞հ եք, որ ուզում եք վերստուգել ընտրված torrent-(ներ)ը: Recheck confirmation - + Վերստուգման հաստատում SearchWidget Close tab - + Փակել ներդիրը @@ -4670,7 +4574,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Գաղտնաբառ JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4678,7 +4582,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Օգտանուն Server response: @@ -4690,11 +4594,203 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Մուտքանուն Invalid Username or Password. + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent + + + \ No newline at end of file diff --git a/src/webui/www/translations/webui_id.ts b/src/webui/www/translations/webui_id.ts index 2045e4a13..1b1aa71eb 100644 --- a/src/webui/www/translations/webui_id.ts +++ b/src/webui/www/translations/webui_id.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Satu link per barisan (Link HTTP, Link Magnet dan infor-hash didukung) Add torrent links - + Tambah link torrent Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Buang kategori yang tidak digunakan - - Resume torrents - Lanjutkan torrent - - - Pause torrents - Jeda torrent - New Category Kategori Baru @@ -151,10 +143,6 @@ Exit qBittorrent Keluar qBittorrent - - Only one link per line - Hanya satu tautan per baris - Global upload rate limit must be greater than 0 or disabled. Batas laju unggah global harus lebih besar dari 0 atau nonaktif. @@ -228,10 +216,6 @@ Save files to location: Simpan berkas ke lokasi: - - Cookie: - Kuki: - More information Informasi lainnya @@ -295,10 +279,6 @@ Logout Keluar - - Download Torrents from their URLs or Magnet links - Unduh Torrent dari URL atau tautan Magnet-nya - Upload local torrent Unggah torrent lokal @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nama kategori tidak valid:\nJangan gunakan karakter spesial dalam nama kategori. - - Unable to create category - Tidak bisa membuat kategori - Upload rate threshold must be greater than 0. @@ -409,11 +385,11 @@ Remember choice - + Ingat pilihan Are you sure you want to remove these %1 torrents from the transfer list? - + Apakah Anda yakin ingin menghapus torrent %1 dari daftar transfer? Unable to delete torrents. @@ -421,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -494,10 +470,6 @@ Options... Opsi... - - Resume - Lanjutkan - Top Toolbar Bilah Alat Atas @@ -514,10 +486,6 @@ Donate! Donasi! - - Resume All - Lanjutkan Semua - Statistics Statistik @@ -526,14 +494,6 @@ About Tentang - - Pause - Tangguhkan - - - Pause All - Jeda Semua - Add Torrent File... Tambah Berkas Torrent... @@ -674,14 +634,6 @@ Remove Buang - - Would you like to resume all torrents? - Ingin lanjutkan semua torrents? - - - Would you like to pause all torrents? - Ingin tunda semua torrents? - Execution Log Log Eksekusi @@ -696,7 +648,7 @@ Filter by: - + Saring berdasarkan: Save Path @@ -704,7 +656,7 @@ Stop - + Hentikan Use regular expression @@ -720,7 +672,7 @@ Manage Cookies... - + Kelola Kuk... Unable to export torrent file @@ -728,7 +680,7 @@ Name - + Nama Would you like to stop all torrents? @@ -742,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -769,10 +725,6 @@ Language Bahasa - - User Interface Language: - Bahasa Antarmuka Pengguna: - Email notification upon download completion Notifikasi surel saat unduhan selesai @@ -789,10 +741,6 @@ Torrent Queueing Antrean Torrent - - Automatically add these trackers to new downloads: - Otomatis tambahkan tracker berikut ke unduhan baru: - Web User Interface (Remote control) Antarmuka Pengguna Web (Pengendali jarak jauh) @@ -1225,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Sandi disimpan tanpa enkripsi + Info: Sandi disimpan tanpa enkripsi μTP-TCP mixed mode algorithm: @@ -1287,10 +1235,6 @@ Fastest upload Unggahan tercepat - - Pause torrent - Jeda torrent - Remove torrent and its files Buang torrent dan berkasnya @@ -1331,10 +1275,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -1407,10 +1347,6 @@ Ban client after consecutive failures: Blokir klien setelah kegagalan berturut-turut: - - Enable cookie Secure flag (requires HTTPS) - Aktifkan tanda kuki Aman (membutuhkan HTTPS) - Header: value pairs, one per line @@ -1715,10 +1651,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.days hari - - Log file - Berkas catatan - Behavior Perilaku @@ -1945,7 +1877,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Confirm when deleting torrents - + Konfirmasi ketika menghapus torrent Ignore SSL errors: @@ -1957,15 +1889,15 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Delete files permanently - + Menghapus file secara permanen Auto - + Otomatis Use alternating row colors - + Gunakan warna baris belang Display full announce URL in the Tracker column @@ -1973,7 +1905,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. URL: - + URL: Transfer list @@ -1993,7 +1925,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Downloading torrents: - + Mengunduh torrent: Start / stop torrent @@ -2005,7 +1937,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Completed torrents: - + Torrent komplet: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2013,11 +1945,11 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. When duplicate torrent is being added - + Saat torrent duplikat ditambahkan Action on double-click - + Tindakan klik ganda Save statistics interval: @@ -2025,7 +1957,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Tampilkan dialog konfirmasi saat menghapus torrent Run on torrent finished: @@ -2045,7 +1977,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Move files to trash (if possible) - + Pindahkan file ke tempat sampah (jika memungkinkan) Stop torrent @@ -2073,7 +2005,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Merge trackers to existing torrent - + Gabungkan pelacak ke torrent yang sudah ada Confirm torrent recheck: @@ -2097,7 +2029,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. No action - + Tidak ada tindakan Auto hide zero status filters @@ -2105,12 +2037,28 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Interface - + Antarmuka Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2489,11 +2437,11 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Web seed URL: - + URL bibit web: Yes - + Ya Ratio / Time Active (in months), indicates how popular the torrent is @@ -2509,7 +2457,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. No - + Tidak Remove web seed @@ -2517,7 +2465,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Web seed editing - + Penyuntingan bibit web Add web seeds... @@ -2655,14 +2603,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.Completed (0) Komplet (0) - - Resumed (0) - Dilanjutkan (0) - - - Paused (0) - Ditangguhkan (0) - Active (0) Aktif (0) @@ -2691,14 +2631,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.Completed (%1) Komplet (%1) - - Paused (%1) - Ditangguhkan (%1) - - - Resumed (%1) - Dilanjutkan (%1) - Active (%1) Aktif (%1) @@ -2769,7 +2701,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Remove torrents - + Hilangkan Torrent Start torrents @@ -2795,11 +2727,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.i.e: torrent size Ukuran - - Done - % Done - Selesai - Status Torrent status (e.g. downloading, seeding, paused) @@ -2941,15 +2868,15 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Progress - + Progres Info Hash v2 - + Informasi Hash v2 Info Hash v1 - + Informasi Hash v1 Incomplete Save Path @@ -3097,10 +3024,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.e.g.: 1h 20m ago %1 yang lalu - - Paused - Ditangguhkan - Completed Komplet @@ -3167,11 +3090,11 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Stopped - + Dihentikan N/A - + N/A @@ -3215,21 +3138,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.Rename Ubah nama - - Resume - Resume/start the torrent - Lanjutkan - - - Force Resume - Force Resume/start the torrent - Paksa Lanjutkan - - - Pause - Pause the torrent - Tangguhkan - Limit share ratio... Batasi rasio berbagi... @@ -3308,14 +3216,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.New Category Kategori Baru - - Location - Lokasi - - - New name - Nama Baru - Set location Atur lokasi @@ -3328,18 +3228,10 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.Edit Category Sunting Kategori - - Save path - Jalur simpan - Comma-separated tags: Koma-pemisah tag: - - Add Tags - Tambah Tag - Tags Tag @@ -3406,7 +3298,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Save path: - + Jalur simpan: Location: @@ -3414,11 +3306,11 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Stop - + Hentikan Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Mode otomatis berarti aneka properti torrent (misal tempat penyimpanan) akan diatur dengan kategori terhubung. Start @@ -3426,7 +3318,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. New name: - + Nama baru: Add tags @@ -3434,7 +3326,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Category: - + Kategori: @@ -3473,10 +3365,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Hapus juga fail secara permanen - Remove torrent(s) @@ -3487,7 +3375,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Remove tracker - + Hapus pencari @@ -3763,10 +3651,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.Leechers Lintah - - Search engine - Mesin pencari - Seeders Benih @@ -3848,14 +3732,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.Tag: Tag: - - Pause torrents - Jeda torrent - - - Resume torrents - Lanjutkan torrent - Remove unused tags Buang tag yang tidak digunakan @@ -4022,27 +3898,27 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Search has finished - + Pencarian sudah selesai An error occurred during search... - + Ada terjadi galat saat pencarian... Close tab - + Tutup tab Searching... - + Mencari... Search aborted - + Pencarian dibatalkan Close all tabs - + Tutup seluruh tab @@ -4170,6 +4046,14 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4357,10 +4241,6 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'.If word order is important use * instead of whitespace. Jika urutan kata sangat penting gunakan * daripada ruang putih. - - Add Paused: - Tambah Jeda: - Please type the name of the new download rule. Mohon ketik nama dari aturan unduh baru. @@ -4433,29 +4313,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Lanjutkan torrent - - - All (%1) - Semua (%1) - - - Trackerless (%1) - Nirpelacak (%1) - - - Pause torrents - Tangguhkan torrent - Remove torrents Hilangkan Torrent All - + Semua Trackerless @@ -4467,7 +4331,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Hapus pencari Stop torrents @@ -4631,15 +4495,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Tidak bisa mengedit kategori OK - + OKE Unable to create category - + Tidak bisa membuat kategori Unable to set category @@ -4650,11 +4514,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Domain Manage Cookies - + Kelola Kuki Add Cookie @@ -4662,23 +4526,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Buang Expiration Date - + Tanggal Kedaluwarsa Value - + Nilai Name - + Nama Path - + Jalur @@ -4696,18 +4560,18 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Apakah Anda yakin ingin memeriksa ulang torrent yang dipilih? Recheck confirmation - + Komfirmasi pemeriksaan ulang SearchWidget Close tab - + Tutup tab @@ -4718,7 +4582,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Sandi JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4726,7 +4590,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Masuk Server response: @@ -4738,10 +4602,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Nama pengguna Invalid Username or Password. + Nama Pengguna atau Sandi tidak valid. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_is.ts b/src/webui/www/translations/webui_is.ts index 9eb43749f..b1662454d 100644 --- a/src/webui/www/translations/webui_is.ts +++ b/src/webui/www/translations/webui_is.ts @@ -143,10 +143,6 @@ Exit qBittorrent Hætta qBittorrent - - Only one link per line - Aðeins eins vefslóð í hverja línu - Global upload rate limit must be greater than 0 or disabled. @@ -303,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - Gat ekki búið til flokk - Upload rate threshold must be greater than 0. @@ -405,7 +397,7 @@ URL - + Vefslóð External IP: %1%2 @@ -688,7 +680,7 @@ Name - + Nafn Would you like to stop all torrents? @@ -702,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -1175,10 +1171,6 @@ When adding a torrent - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1279,10 +1271,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -1897,7 +1885,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Sjálfgefið Use alternating row colors @@ -1909,7 +1897,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + Slóð: Transfer list @@ -2047,6 +2035,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2429,7 +2433,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Yes - + Ratio / Time Active (in months), indicates how popular the torrent is @@ -2445,7 +2449,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Nei Remove web seed @@ -2715,11 +2719,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Stærð - - Done - % Done - Lokið - Status Torrent status (e.g. downloading, seeding, paused) @@ -2861,7 +2860,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Framför Info Hash v2 @@ -3303,7 +3302,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Sjálfvirkur stjórnunarhamur þýðir að sumir eiginleikar torrenta (t.d. vistunarslóð) verða stilltir útfrá völdum flokki Start @@ -3311,7 +3310,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Nýtt nafn: Add tags @@ -3319,7 +3318,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Flokkur: @@ -3644,10 +3643,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers - - Search engine - Leitarvél - Seeders @@ -3895,7 +3890,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Leit lokið An error occurred during search... @@ -3907,7 +3902,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Searching... - + Leitar... Search aborted @@ -4043,6 +4038,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4302,17 +4305,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - All (%1) - Allt (%1) - Remove torrents All - + Allt Trackerless @@ -4488,15 +4487,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Gat ekki breytt flokk OK - + Allt í lagi Unable to create category - + Gat ekki búið til flokk Unable to set category @@ -4527,11 +4526,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Value - + Gildi Name - + Nafn Path @@ -4542,11 +4541,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmAutoTMMDialog Enable automatic torrent management - + Virkja sjálfvirkan stjórnunarham Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Ertu viss um að þú viljir kveikja á sjálfvirkum stjórnunarham fyrir valin torrent? Þau gætu verið færð @@ -4575,7 +4574,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Lykilorð JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4583,7 +4582,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Skrá inn Server response: @@ -4599,6 +4598,198 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Invalid Username or Password. + Rangt notandanafn eða lykilorð. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_it.ts b/src/webui/www/translations/webui_it.ts index e6a67a5d8..24696ef59 100644 --- a/src/webui/www/translations/webui_it.ts +++ b/src/webui/www/translations/webui_it.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Un collegamento per riga (collegamento HTTP, Magnet o info hash) Add torrent links - + Aggiungi collegamenti torrent Select .torrent files - + Seleziona file .torrent Torrent options - + Opzioni torrent @@ -112,14 +112,6 @@ Remove unused categories Rimuovi categorie inutilizzate - - Resume torrents - Riprendi torrent - - - Pause torrents - Metti in pausa torrent - New Category Nuova Categoria @@ -138,11 +130,11 @@ Start torrents - + Avvia torrent Stop torrents - + Ferma torrent @@ -151,10 +143,6 @@ Exit qBittorrent Chiudi qBittorrent - - Only one link per line - Solo un collegamento per riga - Global upload rate limit must be greater than 0 or disabled. Il limite globale di velocità di invio deve essere maggiore di 0 o disattivato. @@ -228,10 +216,6 @@ Save files to location: Salva file nel percorso: - - Cookie: - Cookie: - More information Più informazioni @@ -295,10 +279,6 @@ Logout Disconnessione - - Download Torrents from their URLs or Magnet links - Scarica torrent dal loro URL o da collegamento magnet - Upload local torrent Carica torrent locale @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nome categoria non valido.\nNon usare nessun carattere speciale nel nome categoria. - - Unable to create category - Impossibile creare la categoria - Upload rate threshold must be greater than 0. La soglia tasso upload deve essere maggiore di 0. @@ -383,10 +359,6 @@ Original author Autore originale - - Are you sure you want to remove the selected torrents from the transfer list? - Sei sicuro di voler rimuovere i torrent selezionati dall'elenco di trasferimento? - The port used for the WebUI must be between 1 and 65535. La porta usata per l'interfaccia web deve essere compresa tra 1 e 65535. @@ -402,75 +374,75 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. External IP: N/A - + IP esterno: n/d Reverse proxy setup examples - + Esempi di configurazione proxy inverso Could not contact qBittorrent - + Impossibile contattare qBittorrent Remember choice - + Ricorda scelta Are you sure you want to remove these %1 torrents from the transfer list? - + Vuoi rimuovere questi %1 torrent dall'elenco di trasferimento? Unable to delete torrents. - + Impossibile eliminare torrent. URL - + URL External IP: %1%2 - + IP esterno: %1, %2 Edit web seed - + Modifica seed web Are you sure you want to remove %1 from the transfer list? - + Vuoi rimuovere %1 dall'elenco di trasferimento? Unable to set Auto Torrent Management for the selected torrents. - + Impossibile impostare la gestione automatica del torrent per i torrent selezionati. Unable to stop torrents. - + Impossibile fermare i torrent. Unable to download file - + Impossibile scaricare il file External IPs: %1, %2 - + IP esterni: %1, %2 Unable to recheck torrents. - + Impossibile ricontrollare i torrent. List of web seeds to add (one per line): - + Elenco seed web da aggiungere (uno per linea): Unable to start torrents. - + Impossibile avviare i torrent. Add web seeds - + Aggiungi seed web @@ -499,10 +471,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Options... Impostazioni... - - Resume - Riprendi - Top Toolbar Barra strumenti superiore @@ -519,10 +487,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Donate! Fai una donazione! - - Resume All - Riprendi tutti - Statistics Statistiche @@ -531,14 +495,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. About Informazioni - - Pause - Metti in pausa - - - Pause All - Metti in pausa tutti - Add Torrent File... Aggiungi file torrent... @@ -679,14 +635,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Remove Rimuovi - - Would you like to resume all torrents? - Vuoi riprendere tutti i torrent? - - - Would you like to pause all torrents? - Vuoi mettere in pausa tutti i torrent? - Execution Log Registro eventi esecuzione @@ -701,50 +649,54 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Filter by: - + Filtra per: Save Path - + Percorso salvataggio Stop - + Ferma Use regular expression - + Usa espressione regolare Would you like to start all torrents? - + Vuoi avviare tutti i torrent? Start - + Avvia Manage Cookies... - + Gestisci cookie... Unable to export torrent file - + Impossibile esportare il file torrent Name - + Nome Would you like to stop all torrents? - + Vuoi fermare tutti i torrent? Start All - + Avvia tutto Stop All + Ferma tutto + + + Torrent Creator @@ -774,10 +726,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Language Lingua - - User Interface Language: - Lingua Interfaccia Utente: - Email notification upon download completion Notifica email a download completato @@ -794,10 +742,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Torrent Queueing Accodamento torrent - - Automatically add these trackers to new downloads: - Aggiungi automaticamente questi server traccia ai nuovi download: - Web User Interface (Remote control) Interfaccia utente web (Controllo remoto) @@ -1230,7 +1174,7 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Info: The password is saved unencrypted - Info: la password è salvata non criptata + Info: la password è salvata non criptata μTP-TCP mixed mode algorithm: @@ -1292,10 +1236,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Fastest upload Upload veloce - - Pause torrent - Pausa torrent - Remove torrent and its files Rimuovi torrent e file relativi @@ -1338,7 +1278,7 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. s - s + s Send buffer watermark: @@ -1412,10 +1352,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Ban client after consecutive failures: Ban client dopo fallimenti consecutivi: - - Enable cookie Secure flag (requires HTTPS) - Abilita flag cookie sicuro (richiede HTTPS) - Header: value pairs, one per line Intestazione: coppia valori, uno per linea @@ -1644,10 +1580,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Support internationalized domain name (IDN): Supporto nome dominio internazionalizzato (IDN): - - Run external program on torrent finished - Esegui programma esterno a torrent completato - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1661,10 +1593,6 @@ i nomi dominio usati dal server dell'interfaccia web. Usa ';' per dividere voci multiple. Si può usare il carattere jolly '*'. - - Run external program on torrent added - Esegui programma esterno a torrent aggiunto - HTTPS certificate should not be empty Il certificato HTTPS non può essere vuoto @@ -1730,10 +1658,6 @@ Usa ';' per dividere più voci. days giorni - - Log file - File registro - Behavior Comportamento @@ -1949,182 +1873,199 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Color scheme: - + Schema colori: Show external IP in status bar - + Visualizza IP esterno nella barra di stato Fetched trackers - + Tracker recuperati Confirm when deleting torrents - + Conferma eliminazione torrent Ignore SSL errors: - + Ignora errori SSL: Dark - + Scuro Delete files permanently - + Elimina permanentemente i file Auto - + Automatico Use alternating row colors - + Usa colori riga alternati Display full announce URL in the Tracker column - + Visualizza URL annuncio completo nella colonna Tracker URL: - + URL: Transfer list - + Elenco trasferimento The announce port must be between 0 and 65535. - + La porta di annuncio deve essere compresa tra 0 e 65535. Light - + Chiaro Automatically append these trackers to new downloads: - + Aggiungi automaticamente ai nuovi download questi tracker: Downloading torrents: - + Download torrent: Start / stop torrent - + Avvia/ferma torrent Send test email - + Invia email di test Completed torrents: - + Torrent completati: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Abilita flag di sicurezza cookie (richiede HTTPS o connessione LocalHost) When duplicate torrent is being added - + Quando viene aggiunto torrent duplicato Action on double-click - + Azioni con doppio clic Save statistics interval: - + Intervallo salvataggio statistiche: Shows a confirmation dialog upon torrent deletion - + Visualizza una finestra di conferma dopo l'eliminazione del torrent Run on torrent finished: - + Esegui al completamento del torrent: Attempted to send email. Check your inbox to confirm success - + Tentativo di invio email. +Controlla la posta in arrivo per confermare la ricezione Automatically append trackers from URL to new downloads: - + Aggiungi automaticamente ai nuovi download i tracker dall'URL: Torrent content removing mode: - + Modalità di rimozione contenuto torrent: Move files to trash (if possible) - + Sposta i file nel cestino (se possibile) Stop torrent - + Ferma torrent Use Category paths in Manual Mode - + Usa percorsi categorie in modalità manuale List of alternative WebUI - + Elenco WebUI alternative Run on torrent added: - + Esegui all'aggiunta del torrent. Port reported to trackers (requires restart) [0: listening port]: - + Porta segnalata ai tracker (richiede il riavvio) [0: porta di ascolto]: User interface language: - + Lingua interfaccia utente: Merge trackers to existing torrent - + Unisci i tracker al torrent esistente Confirm torrent recheck: - + Conferma ricontrollo torrent: Custom WebUI settings - + Impostazioni WebUI personalizzata Following settings are WebUI only - + Le seguenti impostazioni sono solo per WebUI Simple pread/pwrite - + Lettura/scrittura semplice Resolve relative Save Path against appropriate Category path instead of Default one - + Risolvi il percorso di salvataggio relativo rispetto al percorso di categoria appropriato invece di quello predefinito No action - + Nessuna azione Auto hide zero status filters - + Nascondi automaticamente filtri stato zero Interface - + Interfaccia Log Files + File registro eventi + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2493,55 +2434,55 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Copy web seed URL - + Copia URL seed web Replace option - + Opzioni sostituzione Edit web seed URL... - + Modifica URL seed web Web seed URL: - + URL seed web: Yes - + Ratio / Time Active (in months), indicates how popular the torrent is - + Rapporto/tempo attivo (in mesi), indica quanto è popolare il torrent Popularity: - + Popolarità: Apply to which filename part - + Applica a quale parte del nome file No - + No Remove web seed - + Rimuovi seed web Web seed editing - + Modifica seed web Add web seeds... - + Aggiungi seed web... Private: - + Privato: @@ -2671,14 +2612,6 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Completed (0) Completati (0) - - Resumed (0) - Ripresi (0) - - - Paused (0) - In pausa (0) - Active (0) Attivi (0) @@ -2707,14 +2640,6 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Completed (%1) Completati (%1) - - Paused (%1) - In pausa (%1) - - - Resumed (%1) - Ripresi (%1) - Active (%1) Attivi (%1) @@ -2769,31 +2694,31 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Running (0) - + Avviati (0) Stopped (0) - + Fermati (0) Stopped (%1) - + Fermati (%1) Running (%1) - + Avviati (%1) Remove torrents - + Rimuovi torrent Start torrents - + Avvia torrent Stop torrents - + Ferma torrent @@ -2811,11 +2736,6 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P i.e: torrent size Dimensione - - Done - % Done - Avanzamento - Status Torrent status (e.g. downloading, seeding, paused) @@ -2953,31 +2873,31 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Private - + Privato Progress - + Avanzamento Info Hash v2 - + Info hash v2 Info Hash v1 - + Info hash v1 Incomplete Save Path - + Percorso salvataggio non completo Popularity - + Popolarità Status Icon - + Icona di stato @@ -3113,10 +3033,6 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P e.g.: 1h 20m ago %1 fa - - Paused - In pausa - Completed Completato @@ -3183,11 +3099,11 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Stopped - + Fermato N/A - + N/D @@ -3214,7 +3130,7 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Collapse/expand category - + Espandi/riduci categoria @@ -3231,21 +3147,6 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Rename Rinomina - - Resume - Resume/start the torrent - Riprendi - - - Force Resume - Force Resume/start the torrent - Forza avvio - - - Pause - Pause the torrent - Metti in pausa - Limit share ratio... Limita rapporto di condivione... @@ -3324,14 +3225,6 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P New Category Nuova categoria - - Location - Percorso - - - New name - Nuovo nome - Set location Imposta percorso @@ -3344,18 +3237,10 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Edit Category Modifica categoria - - Save path - Percorso salvataggio - Comma-separated tags: Tag separati da virgole: - - Add Tags - Aggiungi tag - Tags Tag @@ -3418,39 +3303,39 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Force Start - + Forza avvio Save path: - + Percorso salvataggio: Location: - + Percorso Stop - + Ferma Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Nella modalità automatica varie proprietà del torrent (per esempio il percorso di salvataggio) verranno decise in base alla categoria associata Start - + Avvia New name: - + Nuovo nome: Add tags - + Aggiungi etichetta Category: - + Categoria: @@ -3489,21 +3374,17 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P confirmDeletionDlg - - Also permanently delete the files - Elimina anche permanentemente i file - Remove torrent(s) Rimuovi torrent Also remove the content files - + Rimuovi anche i file dei contenuti Remove tracker - + Rimuovi tracker @@ -3707,23 +3588,23 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Select category - + Seleziona categoria Min size prefix - + Dim. minima prefisso Start a search above. - + Avvia una ricerca qui sopra. Max size prefix - + Dim. massima prefisso Select plugins - + Seleziona plugin @@ -3779,25 +3660,21 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Leechers Leech - - Search engine - Motore di ricerca - Seeders Autori seed Published On - + Pubblicato il Engine URL - + URL engine Engine - + Engine @@ -3864,14 +3741,6 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Tag: Tag: - - Pause torrents - Pausa torrent - - - Resume torrents - Riprendi torrent - Remove unused tags Rimuovi tag non usati @@ -3890,11 +3759,11 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P Start torrents - + Avvia torrent Stop torrents - + Ferma torrent @@ -4039,27 +3908,27 @@ Il database è concesso in licenza con la licenza internazionale Creative Common Search has finished - + Riecrca completata An error occurred during search... - + Durante la ricerca si è verificato un errore... Close tab - + Chiudi scheda Searching... - + Ricerca... Search aborted - + Ricerca annullata Close all tabs - + Chiudi tutte le schede @@ -4174,18 +4043,26 @@ Puoi abilitarlo nelle impostazioni dell'applicazione. Edit feed URL... - + Modifica URL feed... Unable to update URL - + Impossibile aggiornare URL URL is unchanged - + La URL non è stata modificata. URL cannot be empty + La URL non può essere vuota. + + + Open link + + + + Author: @@ -4376,10 +4253,6 @@ Puoi abilitarlo nelle impostazioni dell'applicazione. If word order is important use * instead of whitespace. Se l'ordine delle parole è importante, usa * al posto degli spazi. - - Add Paused: - Aggiungi in pausa: - Please type the name of the new download rule. Inserisci il nome della nuova regola di download. @@ -4439,58 +4312,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + Rimuovi regola Add rule - + Aggiungi regola Add Stopped: - + Aggiungi Fermato: TrackerFiltersList - - Resume torrents - Riprendi torrent - - - All (%1) - Tutti (%1) - - - Trackerless (%1) - Senza tracker (%1) - - - Pause torrents - Pausa torrent - Remove torrents Rimuovi torrent All - + Tutti Trackerless - + Senza tracker Start torrents - + Avvia torrent Remove tracker - + Rimuovi tracker Stop torrents - + Ferma torrent @@ -4643,124 +4500,318 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Vuoi rimuovere il tracker %1 da tutti i torrent? Category Unable to edit category - + Impossibile modificare la categoria OK - + OK Unable to create category - + Impossibile creare la categoria Unable to set category - + Impossibile impostare la categoria CookiesDialog Domain - + Dominio Manage Cookies - + Gestisci cookie Add Cookie - + Aggiungi cookie Remove - + Rimuovi Expiration Date - + Data di scadenza Value - + Valore Name - + Nome Path - + Percorso confirmAutoTMMDialog Enable automatic torrent management - + Abilita gestione automatica torrent Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Vuoi abilitare la gestione automatica torrent per i torrent selezionati? +I torrent potranno essere spostati. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Vuoi ricontrollare i torrent selezionati? Recheck confirmation - + Conferma ricontrollo SearchWidget Close tab - + Chiudi scheda Login qBittorrent WebUI - + WebUI qBittorrent Password - + Password JavaScript Required! You must enable JavaScript for the WebUI to work properly - + È richiesto JavaScript! +Per un funzionamento corretto della WebUI va abilitato JavaScript. Login - + Login Server response: - + Risposta del server: Unable to log in, server is probably unreachable. - + Impossibile accedere, il server è probabilmente non raggiungibile. Username - + Nome utente Invalid Username or Password. + Nome utente o password errati. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ja.ts b/src/webui/www/translations/webui_ja.ts index 121138823..a6002b205 100644 --- a/src/webui/www/translations/webui_ja.ts +++ b/src/webui/www/translations/webui_ja.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + 1行に1リンク(HTTPリンク、マグネットリンク、infoハッシュに対応) Add torrent links - + Torrentリンクを追加する Select .torrent files @@ -84,7 +84,7 @@ Torrent options - + Torrentのオプション @@ -112,14 +112,6 @@ Remove unused categories 未使用のカテゴリを削除 - - Resume torrents - Torrentの再開 - - - Pause torrents - Torrentの停止 - New Category 新規カテゴリ @@ -138,11 +130,11 @@ Start torrents - + Torrentを開始する Stop torrents - + Torrentを停止する @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrentの終了 - - Only one link per line - 1行に1リンクを入力してください - Global upload rate limit must be greater than 0 or disabled. 全体のアップロード速度制限は0より大きいか無効にしなければなりません。 @@ -228,10 +216,6 @@ Save files to location: ファイルの保存場所: - - Cookie: - Cookie: - More information 詳しい情報 @@ -295,10 +279,6 @@ Logout ログアウト - - Download Torrents from their URLs or Magnet links - TorrentをURLまたはマグネットリンクからダウンロードします - Upload local torrent ローカルのTorrentをアップロード @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. 不正なカテゴリ名:\nカテゴリ名に特殊文字は使用しないでください。 - - Unable to create category - カテゴリを作成できません - Upload rate threshold must be greater than 0. アップロード速度のしきい値は0より大きい必要があります。 @@ -383,10 +359,6 @@ Original author オリジナルの作者 - - Are you sure you want to remove the selected torrents from the transfer list? - 選択したTorrentを転送リストから削除しますか? - The port used for the WebUI must be between 1 and 65535. @@ -401,7 +373,7 @@ External IP: N/A - + 外部 IP: N/A Reverse proxy setup examples @@ -413,11 +385,11 @@ Remember choice - + 選択状態を保存 Are you sure you want to remove these %1 torrents from the transfer list? - + これらのTorrent(%1)を転送リストから削除してもよろしいですか? Unable to delete torrents. @@ -425,11 +397,11 @@ URL - + URL External IP: %1%2 - + 外部 IP: %1%2 Edit web seed @@ -453,7 +425,7 @@ External IPs: %1, %2 - + 外部 IP: %1, %2 Unable to recheck torrents. @@ -498,10 +470,6 @@ Options... オプション... - - Resume - 再開 - Top Toolbar トップツールバー @@ -518,10 +486,6 @@ Donate! 寄付! - - Resume All - すべて再開 - Statistics 統計情報 @@ -530,14 +494,6 @@ About 詳細情報 - - Pause - 停止 - - - Pause All - すべて停止 - Add Torrent File... Torrentファイルの追加... @@ -678,14 +634,6 @@ Remove 削除 - - Would you like to resume all torrents? - すべてのTorrentを再開しますか? - - - Would you like to pause all torrents? - すべてのTorrentを一時停止しますか? - Execution Log 実行ログ @@ -700,15 +648,15 @@ Filter by: - + フィルター: Save Path - + 保存パス Stop - + 停止 Use regular expression @@ -724,7 +672,7 @@ Manage Cookies... - + クッキーを管理... Unable to export torrent file @@ -732,7 +680,7 @@ Name - + 名前 Would you like to stop all torrents? @@ -746,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language 言語 - - User Interface Language: - ユーザーインターフェースの言語: - Email notification upon download completion ダウンロード完了時にメールで通知する @@ -793,10 +741,6 @@ Torrent Queueing Torrentキュー - - Automatically add these trackers to new downloads: - 新しいダウンロードに以下のトラッカーを自動追加する: - Web User Interface (Remote control) ウェブユーザーインターフェース(遠隔操作) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - 情報: パスワードは暗号化されずに保存されます + 情報: パスワードは暗号化されずに保存されます μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload 最速アップロード - - Pause torrent - Torrent停止 - Remove torrent and its files Torrentとそのファイルを削除 @@ -1337,7 +1277,7 @@ s - + Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: 続けて失敗した場合、クライアントをアクセス禁止: - - Enable cookie Secure flag (requires HTTPS) - CookieのSecureフラグを有効にする(HTTPSが必要) - Header: value pairs, one per line ヘッダー: 値のペア、1行に1つ @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): 国際化ドメイン名(IDN)に対応する: - - Run external program on torrent finished - Torrent完了時に外部プログラムを実行する - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 複数のエントリに分けるには';'を使用します。ワイルドカード'*'を使用できます。 - - Run external program on torrent added - Torrent追加時に外部プログラムを実行する - HTTPS certificate should not be empty HTTPS用の証明書を追加してください @@ -1727,10 +1655,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 days - - Log file - ログファイル - Behavior 動作 @@ -1881,7 +1805,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Use alternative WebUI - + 別のWebUIを使用する Disk cache expiry interval: @@ -1913,7 +1837,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 WebUI - + WebUI The WebUI password must be at least 6 characters long. @@ -1945,19 +1869,19 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Color scheme: - + 配色: Show external IP in status bar - + ステータスバーに外部IPを表示する Fetched trackers - + 取得されたトラッカー Confirm when deleting torrents - + Torrentを削除するときは確認する Ignore SSL errors: @@ -1965,19 +1889,19 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Dark - + ダーク Delete files permanently - + ファイルを完全に削除する Auto - + 自動 Use alternating row colors - + 1行おきに色をつける Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 URL: - + URL: Transfer list @@ -1997,7 +1921,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Light - + ライト Automatically append these trackers to new downloads: @@ -2005,31 +1929,31 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Downloading torrents: - + ダウンロード中のTorrent: Start / stop torrent - + Torrentの開始/停止 Send test email - + テストメールを送信 Completed torrents: - + 完了したTorrent: Enable cookie Secure flag (requires HTTPS or localhost connection) - + クッキーのSecure属性を有効にする(HTTPSまたはローカルホスト接続が必要) When duplicate torrent is being added - + 重複したTorrentの追加時 Action on double-click - + ダブルクリック時の動作 Save statistics interval: @@ -2037,19 +1961,19 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Shows a confirmation dialog upon torrent deletion - + Torrentの削除時に確認ダイアログを表示します Run on torrent finished: - + Torrentの完了時に実行: Attempted to send email. Check your inbox to confirm success - + メールを送信しました。受信箱を確認してください。 Automatically append trackers from URL to new downloads: - + 新しいダウンロードにURLから自動的にトラッカーを追加する: Torrent content removing mode: @@ -2057,15 +1981,15 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Move files to trash (if possible) - + ファイルをゴミ箱に移動する (可能な場合) Stop torrent - + Torrentを停止する Use Category paths in Manual Mode - + 手動モードでカテゴリーのパスを使用する List of alternative WebUI @@ -2073,7 +1997,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Run on torrent added: - + Torrentの追加時に実行: Port reported to trackers (requires restart) [0: listening port]: @@ -2085,7 +2009,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Merge trackers to existing torrent - + 既存のTorrentにトラッカーをマージする Confirm torrent recheck: @@ -2101,28 +2025,44 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Simple pread/pwrite - + シンプルなpread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + 相対的な保存パスを、デフォルトのパスではなく適切なカテゴリーのパスで解決します No action - + 何もしない Auto hide zero status filters - + 状況がゼロのフィルターを自動的に非表示にする Interface - + インターフェース Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2489,7 +2429,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Copy web seed URL - + ウェブシードURLのコピー Replace option @@ -2497,23 +2437,23 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Edit web seed URL... - + ウェブシードURLを編集... Web seed URL: - + ウェブシードURL: Yes - + はい Ratio / Time Active (in months), indicates how popular the torrent is - + Torrentの人気度を示す、比率/稼働時間(月単位) Popularity: - + 人気: Apply to which filename part @@ -2521,15 +2461,15 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 No - + いいえ Remove web seed - + ウェブシードの削除 Web seed editing - + ウェブシードの編集 Add web seeds... @@ -2537,7 +2477,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Private: - + プライベート: @@ -2667,14 +2607,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Completed (0) 完了 (0) - - Resumed (0) - 再開 (0) - - - Paused (0) - 停止中 (0) - Active (0) 稼働中 (0) @@ -2703,14 +2635,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Completed (%1) 完了 (%1) - - Paused (%1) - 停止中 (%1) - - - Resumed (%1) - 再開 (%1) - Active (%1) 稼働中 (%1) @@ -2765,31 +2689,31 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Running (0) - + 実行中 (0) Stopped (0) - + 停止中 (0) Stopped (%1) - + 停止中 (%1) Running (%1) - + 実行中 (%1) Remove torrents - + Torrentを削除 Start torrents - + Torrentを開始する Stop torrents - + Torrentを停止する @@ -2807,11 +2731,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 i.e: torrent size サイズ - - Done - % Done - 進行状況 - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,27 +2868,27 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Private - + プライベート Progress - + 進行状況 Info Hash v2 - + Infoハッシュ v2: Info Hash v1 - + Infoハッシュ v1: Incomplete Save Path - + 未完了の保存先 Popularity - + 人気 Status Icon @@ -3109,10 +3028,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 e.g.: 1h 20m ago %1前 - - Paused - 停止 - Completed 完了 @@ -3179,11 +3094,11 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Stopped - + 停止 N/A - + N/A @@ -3227,21 +3142,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Rename 名前の変更 - - Resume - Resume/start the torrent - 再開 - - - Force Resume - Force Resume/start the torrent - 強制再開 - - - Pause - Pause the torrent - 停止 - Limit share ratio... 共有比の制限... @@ -3320,14 +3220,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 New Category 新規カテゴリ - - Location - 場所 - - - New name - 新しい名前 - Set location 場所の指定 @@ -3340,18 +3232,10 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Edit Category カテゴリの編集 - - Save path - 保存パス - Comma-separated tags: コンマ区切りのタグ: - - Add Tags - タグ追加 - Tags タグ @@ -3418,7 +3302,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Save path: - + 保存パス: Location: @@ -3426,11 +3310,11 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Stop - + 停止 Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + 自動モードでは、関連付けられたカテゴリーに応じて、各種プロパティー(保存パスなど)が決定されます Start @@ -3438,15 +3322,15 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 New name: - + 新しい名前: Add tags - + タグの追加 Category: - + カテゴリ: @@ -3485,21 +3369,17 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 confirmDeletionDlg - - Also permanently delete the files - ファイルを完全に削除する - Remove torrent(s) Torrentを削除 Also remove the content files - + コンテンツファイルも削除する Remove tracker - + トラッカーを削除 @@ -3775,25 +3655,21 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Leechers リーチャー - - Search engine - 検索エンジン - Seeders シーダー Published On - + 公開日時 Engine URL - + エンジンのURL Engine - + エンジン @@ -3860,14 +3736,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Tag: タグ: - - Pause torrents - Torrentの停止 - - - Resume torrents - Torrentの再開 - Remove unused tags 未使用のタグの削除 @@ -3886,11 +3754,11 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Start torrents - + Torrentを開始する Stop torrents - + Torrentを停止する @@ -4034,27 +3902,27 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Search has finished - + 検索完了 An error occurred during search... - + 検索中にエラーが発生しました... Close tab - + タブを閉じる Searching... - + 検索中... Search aborted - + 検索中止 Close all tabs - + すべてのタブを閉じる @@ -4168,7 +4036,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Edit feed URL... - + フィードURLを編集... Unable to update URL @@ -4182,6 +4050,14 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 If word order is important use * instead of whitespace. 語順が重要な場合は、空白ではなく'"*"を使用します。 - - Add Paused: - 一時停止で追加: - Please type the name of the new download rule. 新しいダウンロードルールの名前を入力してください。 @@ -4446,45 +4318,29 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Torrentの再開 - - - All (%1) - すべて (%1) - - - Trackerless (%1) - トラッカーなし (%1) - - - Pause torrents - Torrentの一時停止 - Remove torrents Torrentを削除 All - + すべて Trackerless - + トラッカーなし Start torrents - + Torrentを開始する Remove tracker - + トラッカーを削除 Stop torrents - + Torrentを停止する @@ -4644,15 +4500,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + カテゴリーを編集できません OK - + OK Unable to create category - + カテゴリーを作成できません Unable to set category @@ -4663,11 +4519,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + ドメイン Manage Cookies - + クッキーの管理 Add Cookie @@ -4675,52 +4531,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + 削除 Expiration Date - + 有効期限 Value - + Name - + 名前 Path - + パス confirmAutoTMMDialog Enable automatic torrent management - + 自動Torrent管理を有効にする Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + 選択されたTorrentの自動Torrent管理を有効にしますか? それらは再配置される可能性があります。 confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + 選択されたTorrentを再チェックしますか? Recheck confirmation - + 再チェックの確認 SearchWidget Close tab - + タブを閉じる @@ -4731,7 +4587,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + パスワード JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4739,7 +4595,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + ログイン Server response: @@ -4751,10 +4607,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + ユーザー名 Invalid Username or Password. + ユーザー名またはパスワーが正しくありません。 + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ka.ts b/src/webui/www/translations/webui_ka.ts index cee35a2df..b797934ad 100644 --- a/src/webui/www/translations/webui_ka.ts +++ b/src/webui/www/translations/webui_ka.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + ერთი ბმული ერთ ხაზზე (დაშვებულია HTTP ბმულები, მაგნიტური ბმულები და ინფო-ჰეშები) Add torrent links - + ტორენტ ბმულების დამატება Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories არაგამოყენებული კატეგორიების წაშლა - - Resume torrents - ტორენტების გაგრძელება - - - Pause torrents - ტორენტების დაპაუზება - New Category ახალი კატეგორია @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent-ის დატოვება - - Only one link per line - მხოლოდ ერთი ბმული თითო ხაზზე - Global upload rate limit must be greater than 0 or disabled. გლობალური ატვირთვის სიჩქარის ლიმიტი უნდა იყოს 0-ზე მეტი ან გამორთული. @@ -228,10 +216,6 @@ Save files to location: ფაილების მითითებულ ლოკაციაში შენახვა: - - Cookie: - Cookie: - More information მეტი ინფორმაცია @@ -295,10 +279,6 @@ Logout გასვლა - - Download Torrents from their URLs or Magnet links - ტორენტების ჩამოტვირთვა მათი URL-დან ან მაგნეტ ბმულებიდან - Upload local torrent ლოკალური ტორენტის ატვირთვა @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. არასწორი კატეგორიის სახელი:\nგთხოვთ არ გამოიყენოთ სპეციალური სიმბოლოები კატეგორიის სახელში/ - - Unable to create category - შეუძლებელია კატეგორიის შექმნა - Upload rate threshold must be greater than 0. ატვირთვის სიჩქარის ბარიერი უნდა იყოს 0-ზე მეტი @@ -409,7 +385,7 @@ Remember choice - + ამორჩევის დამახსოვრება Are you sure you want to remove these %1 torrents from the transfer list? @@ -421,7 +397,7 @@ URL - + ბმული External IP: %1%2 @@ -494,10 +470,6 @@ Options... პარამეტრები... - - Resume - გაგრძელება - Top Toolbar @@ -514,10 +486,6 @@ Donate! შემოწირულობა! - - Resume All - ყველას გაგრძელება - Statistics სტატისტიკა @@ -526,14 +494,6 @@ About შესახებ - - Pause - პაუზა - - - Pause All - ყველას დაპაუზება - Add Torrent File... ტორენტ ფაილის დამატება @@ -696,7 +656,7 @@ Stop - + გაჩერება Use regular expression @@ -712,7 +672,7 @@ Manage Cookies... - + Cookie ფაილების კონტროლი... Unable to export torrent file @@ -720,7 +680,7 @@ Name - + სახელი Would you like to stop all torrents? @@ -734,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -761,10 +725,6 @@ Language ენა - - User Interface Language: - ინტერფეისის ენა: - Email notification upon download completion ელ-ფოსტით შეტყობინება ჩამოტვირთვის დასრულებისას @@ -781,10 +741,6 @@ Torrent Queueing ტორენტის რიგი - - Automatically add these trackers to new downloads: - ამ ტრეკერების ავტომატურად დამატება ახალი ჩამოტვირთვებისთვის - Web User Interface (Remote control) ვებ მომხმარებლის ინტერფეისი (დისტანციური კონტროლი) @@ -1217,7 +1173,7 @@ Info: The password is saved unencrypted - შენიშვნა: პაროლი არადაშიფრულად არის შენახული + შენიშვნა: პაროლი არადაშიფრულად არის შენახული μTP-TCP mixed mode algorithm: @@ -1279,10 +1235,6 @@ Fastest upload - - Pause torrent - ტორენტის დაპაუზება - Remove torrent and its files ტორენტის და მისი ფაილების წაშლა @@ -1325,7 +1277,7 @@ s - წამი + წამი Send buffer watermark: @@ -1925,7 +1877,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + დამატებითი დადასტურება ტორენტის წაშლის დროს Ignore SSL errors: @@ -1941,11 +1893,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + ავტო Use alternating row colors - + რიგში ალტერნატიული ფერების გამოყენება Display full announce URL in the Tracker column @@ -1953,7 +1905,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + ბმული: Transfer list @@ -1973,7 +1925,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + ტორენტები ჩამოტვირთვის პროცესში: Start / stop torrent @@ -1985,7 +1937,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + დასრულებული ტორენტები: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -1997,7 +1949,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + ორმაგი დაჭერის დროს მოქმედება Save statistics interval: @@ -2077,7 +2029,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + მოქმედების გარეშე Auto hide zero status filters @@ -2085,12 +2037,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + ინტერფეისი Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2469,11 +2437,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + ვებ სიდის URL: Yes - + კი Ratio / Time Active (in months), indicates how popular the torrent is @@ -2489,7 +2457,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + არა Remove web seed @@ -2497,7 +2465,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + ვებ სიდის რედაქტირება Add web seeds... @@ -2635,14 +2603,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) დასრულებულია (0) - - Resumed (0) - განახლებული (0) - - - Paused (0) - დაპაუზუბული (0) - Active (0) აქტიური (0) @@ -2671,14 +2631,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) დასრულებულია (%1) - - Paused (%1) - დაპაუზებულია (%1) - - - Resumed (%1) - განახლებული (%1) - Active (%1) აქტიური (%1) @@ -2775,11 +2727,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size ზომა - - Done - % Done - დასრულდა - Status Torrent status (e.g. downloading, seeding, paused) @@ -2921,7 +2868,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + პროგრესი Info Hash v2 @@ -3077,10 +3024,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago - - Paused - დაპაუზებული - Completed დასრულებულია @@ -3147,11 +3090,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + შეჩერებულია N/A - + N/A @@ -3195,21 +3138,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename გადარქმევა - - Resume - Resume/start the torrent - გაგრძელება - - - Force Resume - Force Resume/start the torrent - გაგრძელების იძულება - - - Pause - Pause the torrent - დაპაუზება - Limit share ratio... გაზიარების შეფარდების ლიმიტი... @@ -3288,14 +3216,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category ახალი კატეგორია - - Location - ლოკაცია - - - New name - ახალი სახელი - Set location ლოკაციის ამორჩევა @@ -3308,18 +3228,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category კატეგორიის რედაქტირება - - Save path - შენახვის გზა - Comma-separated tags: - - Add Tags - ტეგების დამატება - Tags ტეგები @@ -3386,7 +3298,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + შენახვის მისამართი: Location: @@ -3394,11 +3306,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + გაჩერება Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + ავტომატური რეჟიმის დროს ტორენტის რამდენიმე თვისება (მაგ. შესანახი მდებარეობა) გადაწყდება ასოცირებული კატეგორიით. Start @@ -3406,7 +3318,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + ახალი სახელი: Add tags @@ -3414,7 +3326,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + კატეგორია: @@ -3463,7 +3375,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + ტრეკეტის წაშლა @@ -3739,10 +3651,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers ლიჩები - - Search engine - საძიებო მოდული - Seeders სიდერები @@ -3824,14 +3732,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: ტეგი: - - Pause torrents - ტორენტების დაპაუზება - - - Resume torrents - ტორენტების გაგრძელება - Remove unused tags არგამოყენებული ტეგემის წაშლა @@ -3998,27 +3898,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + ძიება დამთავრებულია An error occurred during search... - + ძებნისას დაფიქსირდა შეცდომა... Close tab - + ჩანართის დახურვა Searching... - + ძიება... Search aborted - + ძიება შეწყდა Close all tabs - + ყველა ჩანართის დახურვა @@ -4146,6 +4046,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4333,10 +4241,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. - - Add Paused: - დაპაუზებულად დამატება: - Please type the name of the new download rule. გთხოვთ ჩაწერეთ ახალი ჩამოტვირთვის წესის სახელი @@ -4409,29 +4313,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - ტორენტების გაგრძელება - - - All (%1) - ყველა (%1) - - - Trackerless (%1) - ტრეკერის გარეშე (%1) - - - Pause torrents - ტორენტების დაპაუზება - Remove torrents All - + ყველა Trackerless @@ -4443,7 +4331,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + ტრეკეტის წაშლა Stop torrents @@ -4607,15 +4495,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + შეუძლებელია კატეგორიის რედაქტირება OK - + ოკ Unable to create category - + შეუძლებელია კატეგორიის შექმნა Unable to set category @@ -4626,11 +4514,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + დომენი Manage Cookies - + Cookie ფაილების კონტროლი Add Cookie @@ -4638,7 +4526,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + წაშლა Expiration Date @@ -4646,15 +4534,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Value - + მნიშვნელობა Name - + სახელი Path - + გზა @@ -4672,18 +4560,18 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + დარწყმუნებული ხართ რომ გსურთ ამორჩეული ტორენტის(ების) გადამოწმება? Recheck confirmation - + დასტურის გადამოწმება SearchWidget Close tab - + ჩანართის დახურვა @@ -4694,7 +4582,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + პაროლი JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4702,7 +4590,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + შესვლა Server response: @@ -4714,10 +4602,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + მომხმარებლის სახელი Invalid Username or Password. + არასწორი მომხმარებლის სახელი ან პაროლი. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ko.ts b/src/webui/www/translations/webui_ko.ts index 0f2c786f6..06f4e763a 100644 --- a/src/webui/www/translations/webui_ko.ts +++ b/src/webui/www/translations/webui_ko.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + 한 줄에 링크 하나 (HTTP 링크, 마그넷 링크, 정보 해시 지원) Add torrent links - + 토렌트 링크 추가 Select .torrent files - + .torrent 파일 선택 Torrent options - + Torrent 옵션 @@ -112,14 +112,6 @@ Remove unused categories 미사용 범주 제거 - - Resume torrents - 토렌트 이어받기 - - - Pause torrents - 토렌트 일시정지 - New Category 새 범주 @@ -138,11 +130,11 @@ Start torrents - + 토렌트 시작 Stop torrents - + 토렌트 정지 @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent 종료 - - Only one link per line - 줄당 하나의 링크만 - Global upload rate limit must be greater than 0 or disabled. 전역 올려주기 속도 제한은 0보다 크거나 비활성화되어야 합니다. @@ -228,10 +216,6 @@ Save files to location: 파일 저장 위치: - - Cookie: - 쿠키: - More information 추가 정보 @@ -295,10 +279,6 @@ Logout 로그아웃 - - Download Torrents from their URLs or Magnet links - URL 또는 마그넷 링크에서 토렌트 내려받기 - Upload local torrent 로컬 토렌트 올려주기 @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. 잘못된 범주 이름:\n범주 이름에 특수 문자를 사용하지 마십시오. - - Unable to create category - 범주를 만들 수 없습니다 - Upload rate threshold must be greater than 0. 올려주기 속도 임계값은 0보다 커야 합니다. @@ -383,10 +359,6 @@ Original author 원본 작성자 - - Are you sure you want to remove the selected torrents from the transfer list? - 전송 목록에서 선택한 토렌트를 제거하시겠습니까? - The port used for the WebUI must be between 1 and 65535. WebUI에 사용되는 포트는 1~65535 사이여야 합니다. @@ -401,75 +373,75 @@ External IP: N/A - + 외부 IP: 해당 없음 Reverse proxy setup examples - + 역방향 프록시 설정 예시 Could not contact qBittorrent - + qBittorrent에 연결할 수 없음 Remember choice - + 선택 기억 Are you sure you want to remove these %1 torrents from the transfer list? - + 전송 목록에서 이 %1 토렌트를 제거하시겠습니까? Unable to delete torrents. - + 토렌트를 삭제할 수 없습니다. URL - + URL External IP: %1%2 - + 외부 IP: %1%2 Edit web seed - + 웹 시드 편집 Are you sure you want to remove %1 from the transfer list? - + 전송 목록에서 %1을(를) 제거하시겠습니까? Unable to set Auto Torrent Management for the selected torrents. - + 선택한 토렌트에 대해 자동 토렌트 관리를 설정할 수 없습니다. Unable to stop torrents. - + 토렌트를 중지할 수 없습니다. Unable to download file - + 파일을 다운로드할 수 없습니다 External IPs: %1, %2 - + 외부 IP: %1, %2 Unable to recheck torrents. - + 토렌트를 재확인할 수 없습니다. List of web seeds to add (one per line): - + 추가할 웹 시드 목록 (한 줄에 하나씩): Unable to start torrents. - + 토렌트를 시작할 수 없습니다. Add web seeds - + 웹 시드 추가 @@ -498,10 +470,6 @@ Options... 옵션… - - Resume - 이어받기 - Top Toolbar 기본 도구모음 @@ -518,10 +486,6 @@ Donate! 기부! - - Resume All - 모두 이어받기 - Statistics 통계 @@ -530,14 +494,6 @@ About 정보 - - Pause - 일시정지 - - - Pause All - 모두 일시정지 - Add Torrent File... 토렌트 파일 추가… @@ -678,14 +634,6 @@ Remove 제거 - - Would you like to resume all torrents? - 모든 토렌트를 이어받기하시겠습니까? - - - Would you like to pause all torrents? - 모든 토렌트를 일시 정지하시겠습니까? - Execution Log 실행 로그 @@ -700,50 +648,54 @@ Filter by: - + 필터링 기준: Save Path - + 저장 경로 Stop - + 중지 Use regular expression - + 정규식 사용 Would you like to start all torrents? - + 토렌트를 모두 시작하시겠습니까? Start - + 시작 Manage Cookies... - + 쿠키 관리… Unable to export torrent file - + 토렌트 파일을 내보낼 수 없습니다 Name - + 이름 Would you like to stop all torrents? - + 토렌트를 모두 중지하시겠습니까? Start All - + 모두 시작 Stop All + 모두 중지 + + + Torrent Creator @@ -773,10 +725,6 @@ Language 언어 - - User Interface Language: - 사용 언어: - Email notification upon download completion 내려받기했을 때 이메일로 알림 @@ -793,10 +741,6 @@ Torrent Queueing 토렌트 대기열 - - Automatically add these trackers to new downloads: - 새 내려받기에 자동 추가할 트래커: - Web User Interface (Remote control) 웹 사용 환경(원격 제어) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - 정보: 암호를 평문으로 저장했습니다 + 정보: 암호를 평문으로 저장했습니다 μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload 가장 빠른 올려주기 - - Pause torrent - 토렌트 일시정지 - Remove torrent and its files 토렌트 및 파일 제거 @@ -1337,7 +1277,7 @@ s - + Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: 클라이언트를 금지할 연속 시도 횟수: - - Enable cookie Secure flag (requires HTTPS) - 쿠키 보안 플래그 활성화 (HTTPS 필요) - Header: value pairs, one per line 헤더: 값, 줄당 하나 @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): 국제화 도메인 네임(IDN) 지원: - - Run external program on torrent finished - 토렌트 완료시 외부 프로그램 실행 - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ DNS 재결합 공격을 방어하기 위해 ';'를 사용해서 항목을 구분하며 와일드카드 '*'를 사용할 수 있습니다. - - Run external program on torrent added - 토렌트 추가시 외부 프로그램 실행 - HTTPS certificate should not be empty HTTPS 인증서는 비워둘 수 없습니다 @@ -1727,10 +1655,6 @@ DNS 재결합 공격을 방어하기 위해 days - - Log file - 로그 파일 - Behavior 동작 @@ -1945,182 +1869,198 @@ DNS 재결합 공격을 방어하기 위해 Color scheme: - + 색 구성표 : Show external IP in status bar - + 상태 표시줄에 외부 IP 표시 Fetched trackers - + 가져온 트래커 Confirm when deleting torrents - + 토렌트를 삭제할 때 확인 Ignore SSL errors: - + SSL 오류 무시 : Dark - + 다크 Delete files permanently - + 파일 영구적 삭제 Auto - + 자동 Use alternating row colors - + 행 색상 번갈아 사용 Display full announce URL in the Tracker column - + 트래커 열에 전체 공지 URL 표시 URL: - + URL: Transfer list - + 전송 목록 The announce port must be between 0 and 65535. - + 알림 포트는 0에서 65535 사이여야 합니다. Light - + 라이트 Automatically append these trackers to new downloads: - + 새로운 내려받기에 자동으로 다음 추적기를 추가 : Downloading torrents: - + 내려받는 중인 토렌트: Start / stop torrent - + 토렌트 시작 / 중지 Send test email - + 테스트 이메일 보내기 Completed torrents: - + 내려받기 완료된 토렌트: Enable cookie Secure flag (requires HTTPS or localhost connection) - + 쿠키 보안 플래그 사용 (HTTPS 또는 로컬 호스트 연결 필요) When duplicate torrent is being added - + 중복 토렌트가 추가되는 경우 Action on double-click - + 두 번 클릭 동작 Save statistics interval: - + 통계 간격 저장: Shows a confirmation dialog upon torrent deletion - + 토렌트를 삭제할 때 확인 대화상자 표시 Run on torrent finished: - + 토렌트에서 실행 완료: Attempted to send email. Check your inbox to confirm success - + 이메일 전송을 시도했습니다. 받은 편지함을 확인하여 성공 여부를 확인하세요. Automatically append trackers from URL to new downloads: - + URL에서 새 다운로드에 트래커를 자동으로 추가: Torrent content removing mode: - + 토런트 내용물 제거 모드 : Move files to trash (if possible) - + 쓰레기통으로 파일 이동 (가능한 경우) Stop torrent - + 토렌트 정지 Use Category paths in Manual Mode - + 수동 모드에서 범주 경로 사용 List of alternative WebUI - + 대체 웹UI 목록 Run on torrent added: - + 토렌트에서 실행이 추가되었습니다: Port reported to trackers (requires restart) [0: listening port]: - + 트래커에 보고된 포트 (재시작 필요) [0: 수신 포트]: User interface language: - + 사용자 인터페이스 언어: Merge trackers to existing torrent - + 트래커를 기존 토렌트에 병합 Confirm torrent recheck: - + 토렌트 재검사 확인: Custom WebUI settings - + 사용자 지정 WebUI 설정 Following settings are WebUI only - + 다음 설정은 WebUI 전용입니다 Simple pread/pwrite - + 단순 미리 읽기/다시 쓰기 Resolve relative Save Path against appropriate Category path instead of Default one - + 기본 경로 대신 적절한 범주 경로에 대해 상대 저장 경로를 확인합니다 No action - + 동작 없음 Auto hide zero status filters - + 0 상태 필터 자동 숨기기 Interface - + 인터페이스 Log Files + 로그 파일 + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ DNS 재결합 공격을 방어하기 위해 Copy web seed URL - + 웹 시드 URL 복사 Replace option - + 대체 옵션 Edit web seed URL... - + 웹 시드 URL 수정... Web seed URL: - + 웹 배포 URL: Yes - + Ratio / Time Active (in months), indicates how popular the torrent is - + 비율/활성 시간(개월), 토렌트의 인기도를 나타냅니다. Popularity: - + 인지도: Apply to which filename part - + 파일 이름 부분에 적용 No - + 아니요 Remove web seed - + 웹 시드 제거 Web seed editing - + 웹 배포 편집 Add web seeds... - + 웹 시드 추가... Private: - + 비공개: @@ -2667,14 +2607,6 @@ DNS 재결합 공격을 방어하기 위해 Completed (0) 완료 (0) - - Resumed (0) - 이어받기됨 (0) - - - Paused (0) - 일시정지됨 (0) - Active (0) 활성 (0) @@ -2703,14 +2635,6 @@ DNS 재결합 공격을 방어하기 위해 Completed (%1) 완료됨 (%1) - - Paused (%1) - 일시정지됨 (%1) - - - Resumed (%1) - 이어받기됨 (%1) - Active (%1) 활성 (%1) @@ -2765,31 +2689,31 @@ DNS 재결합 공격을 방어하기 위해 Running (0) - + 실행 중 (0) Stopped (0) - + 정지됨 (0) Stopped (%1) - + 정지됨 (%1) Running (%1) - + 실행 중 (%1) Remove torrents - + 토렌트 제거 Start torrents - + 토렌트 시작 Stop torrents - + 토렌트 정지 @@ -2807,11 +2731,6 @@ DNS 재결합 공격을 방어하기 위해 i.e: torrent size 크기 - - Done - % Done - 완료 - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ DNS 재결합 공격을 방어하기 위해 Private - + 비공개 Progress - + 진행률 Info Hash v2 - + 정보 해시 v2 Info Hash v1 - + 정보 해시 v1 Incomplete Save Path - + 불완전한 저장 경로 Popularity - + 인지도 Status Icon - + 상태 아이콘 @@ -3109,10 +3028,6 @@ DNS 재결합 공격을 방어하기 위해 e.g.: 1h 20m ago %1 전 - - Paused - 일시정지됨 - Completed 완료됨 @@ -3179,11 +3094,11 @@ DNS 재결합 공격을 방어하기 위해 Stopped - + 정지됨 N/A - + 해당사항 없음 @@ -3210,7 +3125,7 @@ DNS 재결합 공격을 방어하기 위해 Collapse/expand category - + 범주 축소/확장 @@ -3227,21 +3142,6 @@ DNS 재결합 공격을 방어하기 위해 Rename 이름 바꾸기 - - Resume - Resume/start the torrent - 이어받기 - - - Force Resume - Force Resume/start the torrent - 이어받기 강제 적용 - - - Pause - Pause the torrent - 일시정지 - Limit share ratio... 공유 비율 제한… @@ -3320,14 +3220,6 @@ DNS 재결합 공격을 방어하기 위해 New Category 새 범주 - - Location - 위치 - - - New name - 새 이름 - Set location 위치 설정 @@ -3340,18 +3232,10 @@ DNS 재결합 공격을 방어하기 위해 Edit Category 범주 편집 - - Save path - 저장 경로 - Comma-separated tags: 쉼표로 구분된 태그: - - Add Tags - 태그 추가 - Tags 태그 @@ -3414,39 +3298,39 @@ DNS 재결합 공격을 방어하기 위해 Force Start - + 강제 시작 Save path: - + 저장 경로: Location: - + 위치: Stop - + 정지 Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + 자동 모드는 관련 범주에 의해 다양한 토렌트 속성(예: 저장 경로)이 결정됨을 의미합니다. Start - + 시작 New name: - + 새 이름: Add tags - + 태그 추가 Category: - + 카테고리: @@ -3485,21 +3369,17 @@ DNS 재결합 공격을 방어하기 위해 confirmDeletionDlg - - Also permanently delete the files - 또한 파일을 영구적으로 삭제합니다 - Remove torrent(s) 토렌트 제거 Also remove the content files - + 내용 파일 또한 제거 Remove tracker - + 트래커 제거 @@ -3703,23 +3583,23 @@ DNS 재결합 공격을 방어하기 위해 Select category - + 범주 선택 Min size prefix - + 최소 크기 접두사 Start a search above. - + 위에서 검색을 시작하세요. Max size prefix - + 최대 크기 접두사 Select plugins - + 플러그인 선택 @@ -3775,25 +3655,21 @@ DNS 재결합 공격을 방어하기 위해 Leechers 공유자 - - Search engine - 검색 엔진 - Seeders 배포자 Published On - + 게시일 Engine URL - + 엔진 URL Engine - + 엔진 @@ -3860,14 +3736,6 @@ DNS 재결합 공격을 방어하기 위해 Tag: 태그: - - Pause torrents - 토렌트 일시정지 - - - Resume torrents - 토렌트 이어받기 - Remove unused tags 미사용 태그 제거 @@ -3886,11 +3754,11 @@ DNS 재결합 공격을 방어하기 위해 Start torrents - + 토렌트 시작 Stop torrents - + 토렌트 정지 @@ -4034,27 +3902,27 @@ DNS 재결합 공격을 방어하기 위해 Search has finished - + 검색이 완료되었습니다 An error occurred during search... - + 검색 중 오류 발생… Close tab - + 탭 닫기 Searching... - + 검색 중… Search aborted - + 검색 중단됨 Close all tabs - + 모든 탭 닫기 @@ -4168,18 +4036,26 @@ DNS 재결합 공격을 방어하기 위해 Edit feed URL... - + 피드 URL 편집... Unable to update URL - + URL을 업데이트할 수 없습니다 URL is unchanged - + URL이 변경되지 않았습니다 URL cannot be empty + URL은 비워둘 수 없습니다 + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ DNS 재결합 공격을 방어하기 위해 If word order is important use * instead of whitespace. 단어 순서가 중요하면 공백 대신 *를 사용하세요. - - Add Paused: - 일시정지해서 추가: - Please type the name of the new download rule. 새 내려받기 규칙 이름을 입력하세요. @@ -4433,58 +4305,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + 규칙 제거 Add rule - + 규칙 추가 Add Stopped: - + 중지됨 추가 : TrackerFiltersList - - Resume torrents - 토렌트 이어받기 - - - All (%1) - 전체 (%1) - - - Trackerless (%1) - 트래커 없음 (%1) - - - Pause torrents - 토렌트 일시정지 - Remove torrents 토렌트 제거 All - + 전체 Trackerless - + 트래커 없음 Start torrents - + 토렌트 시작 Remove tracker - + 트래커 제거 Stop torrents - + 토렌트 정지 @@ -4637,124 +4493,316 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + 모든 토렌트에서 트래커 %1을 제거하시겠습니까? Category Unable to edit category - + 범주를 편집할 수 없습니다 OK - + 확인 Unable to create category - + 범주를 만들 수 없습니다 Unable to set category - + 범주를 설정할 수 없습니다 CookiesDialog Domain - + 도메인 Manage Cookies - + 쿠키 관리 Add Cookie - + 쿠키 추가 Remove - + 제거 Expiration Date - + 만료일 Value - + Name - + 이름 Path - + 경로 confirmAutoTMMDialog Enable automatic torrent management - + 자동 토렌트 관리 활성화 Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + 선택한 토렌트에 대해 자동 토렌트 관리를 활성화하시겠습니까? 재배치될 수 있습니다. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + 선택한 토렌트를 다시 검사하시겠습니까? Recheck confirmation - + 다시 검사 확인 SearchWidget Close tab - + 탭 닫기 Login qBittorrent WebUI - + qBittorrent WebUI Password - + 암호 JavaScript Required! You must enable JavaScript for the WebUI to work properly - + 자바스크립트가 필요합니다! WebUI가 올바르게 작동하려면 자바스크립트를 활성화가 요구됨 Login - + 로그인 Server response: - + 서버 응답: Unable to log in, server is probably unreachable. - + 로그인할 수 없어서 서버에 연결할 수 없을 것 같습니다. Username - + 사용자 이름 Invalid Username or Password. + 사용자 이름/암호가 올바르지 않습니다. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_lt.ts b/src/webui/www/translations/webui_lt.ts index 7ba4d389f..a7a43c0bd 100644 --- a/src/webui/www/translations/webui_lt.ts +++ b/src/webui/www/translations/webui_lt.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Po vieną nuorodą eilutėje (palaikomos HTTP nuorodos, Magnet nuorodos bei informacinės maišos) Add torrent links - + Pridėti torentų nuorodas Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Šalinti nenaudojamas kategorijas - - Resume torrents - Pratęsti torentus - - - Pause torrents - Pristabdyti torentus - New Category Nauja kategorija @@ -138,11 +130,11 @@ Start torrents - + Paleisti torentus Stop torrents - + Stabdyti torentus @@ -151,10 +143,6 @@ Exit qBittorrent Išeiti iš qBittorrent - - Only one link per line - Po vieną nuorodą eilutėje - Global upload rate limit must be greater than 0 or disabled. Visuotinio išsiuntimo greičio apribojimas privalo būti arba aukštesnis už 0, arba išjungtas. @@ -228,10 +216,6 @@ Save files to location: Failus išsaugoti į: - - Cookie: - Slapukas: - More information Daugiau informacijos @@ -295,10 +279,6 @@ Logout Atsijungti - - Download Torrents from their URLs or Magnet links - Atsisiųsti torentus iš jų URL arba Magnet nuorodų - Upload local torrent Išsiųsti vietinį torentą @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Neteisingas kategorijos pavadinimas:\nPrašome kategorijos pavadinime nenaudoti jokių specialių simbolių. - - Unable to create category - Nepavyko sukurti kategorijos - Upload rate threshold must be greater than 0. Išsiuntimo greičio slenkstis privalo būti didesnis už 0. @@ -405,11 +381,11 @@ Could not contact qBittorrent - + Nepavyko susisiekti su qBittorrent Remember choice - + Atsiminti pasirinkimą Are you sure you want to remove these %1 torrents from the transfer list? @@ -421,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -494,10 +470,6 @@ Options... Parinktys... - - Resume - Tęsti - Top Toolbar Viršutinė įrankių juosta @@ -514,10 +486,6 @@ Donate! Paaukoti! - - Resume All - Tęsti visus - Statistics Statistika @@ -526,14 +494,6 @@ About Apie - - Pause - Pristabdyti - - - Pause All - Pristabdyti visus - Add Torrent File... Pridėti torento failą... @@ -674,14 +634,6 @@ Remove Šalinti - - Would you like to resume all torrents? - Ar norėtumėte pratęsti visus torentus? - - - Would you like to pause all torrents? - Ar norėtumėte pristabdyti visus torentus? - Execution Log Vykdymo žurnalas @@ -696,7 +648,7 @@ Filter by: - + Filtruoti pagal: Save Path @@ -704,7 +656,7 @@ Stop - + Stabdyti Use regular expression @@ -712,15 +664,15 @@ Would you like to start all torrents? - + Ar norėtumėte paleisti visus torentus? Start - + Paleisti Manage Cookies... - + Tvarkyti slapukus... Unable to export torrent file @@ -728,18 +680,22 @@ Name - + Pavadinimas Would you like to stop all torrents? - + Ar norėtumėte stabdyti visus torentus? Start All - + Paleisti visus Stop All + Stabdyti visus + + + Torrent Creator @@ -769,10 +725,6 @@ Language Kalba - - User Interface Language: - Naudotojo sąsajos kalba: - Email notification upon download completion Pabaigus atsiuntimą, pranešti el. paštu @@ -789,10 +741,6 @@ Torrent Queueing Siuntimų eilė - - Automatically add these trackers to new downloads: - Į naujus atsiuntimus, automatiškai pridėti šiuos seklius: - Web User Interface (Remote control) Tinklo naudotojo sąsaja (Nuotolinis valdymas) @@ -1225,7 +1173,7 @@ Info: The password is saved unencrypted - Informacija: Slaptažodis yra išsaugomas nešifruotai + Informacija: Slaptažodis yra išsaugomas nešifruotai μTP-TCP mixed mode algorithm: @@ -1287,10 +1235,6 @@ Fastest upload Greičiausias išsiuntimas - - Pause torrent - Pristabdyti torentą - Remove torrent and its files Šalinti torentą ir jo failus @@ -1331,10 +1275,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -1407,10 +1347,6 @@ Ban client after consecutive failures: Uždrausti klientą po nuoseklių nesėkmių: - - Enable cookie Secure flag (requires HTTPS) - Įgalinti slapukų saugos žymą (reikalingas HTTPS) - Header: value pairs, one per line @@ -1717,10 +1653,6 @@ pakaitos simbolį "*". days dienų - - Log file - Žurnalo failas - Behavior Elgsena @@ -1935,7 +1867,7 @@ pakaitos simbolį "*". Color scheme: - + Spalvų rinkinys: Show external IP in status bar @@ -1947,27 +1879,27 @@ pakaitos simbolį "*". Confirm when deleting torrents - + Patvirtinti, kai ištrinama torentus Ignore SSL errors: - + Nepaisyti SSL klaidų: Dark - + Tamsus Delete files permanently - + Ištrinti failus visam laikui Auto - + nustatyti automatiškai Use alternating row colors - + Naudoti skirtingas eilučių spalvas Display full announce URL in the Tracker column @@ -1975,7 +1907,7 @@ pakaitos simbolį "*". URL: - + URL: Transfer list @@ -1987,7 +1919,7 @@ pakaitos simbolį "*". Light - + Šviesus Automatically append these trackers to new downloads: @@ -1995,7 +1927,7 @@ pakaitos simbolį "*". Downloading torrents: - + Atsiunčiamus torentus: Start / stop torrent @@ -2007,7 +1939,7 @@ pakaitos simbolį "*". Completed torrents: - + Užbaigtus torentus: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2019,7 +1951,7 @@ pakaitos simbolį "*". Action on double-click - + Veiksmas, atliekamas du kartus spustelėjus Save statistics interval: @@ -2043,15 +1975,15 @@ pakaitos simbolį "*". Torrent content removing mode: - + Torentų turinio šalinimo veiksena: Move files to trash (if possible) - + Perkelti failus į šiukšlinę (jei įmanoma) Stop torrent - + Stabdyti torentą Use Category paths in Manual Mode @@ -2099,7 +2031,7 @@ pakaitos simbolį "*". No action - + Jokio veiksmo Auto hide zero status filters @@ -2107,12 +2039,28 @@ pakaitos simbolį "*". Interface - + Sąsaja Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2491,11 +2439,11 @@ pakaitos simbolį "*". Web seed URL: - + Žiniatinklio šaltinio URL: Yes - + Taip Ratio / Time Active (in months), indicates how popular the torrent is @@ -2503,7 +2451,7 @@ pakaitos simbolį "*". Popularity: - + Populiarumas: Apply to which filename part @@ -2511,7 +2459,7 @@ pakaitos simbolį "*". No - + Ne Remove web seed @@ -2519,7 +2467,7 @@ pakaitos simbolį "*". Web seed editing - + Žiniatinklio šaltinio redagavimas Add web seeds... @@ -2657,14 +2605,6 @@ pakaitos simbolį "*". Completed (0) Užbaigti (0) - - Resumed (0) - Pratęsti (0) - - - Paused (0) - Pristabdyti (0) - Active (0) Aktyvūs (0) @@ -2693,14 +2633,6 @@ pakaitos simbolį "*". Completed (%1) Užbaigti (%1) - - Paused (%1) - Pristabdyti (%1) - - - Resumed (%1) - Pratęsti (%1) - Active (%1) Aktyvūs (%1) @@ -2755,31 +2687,31 @@ pakaitos simbolį "*". Running (0) - + Paleisti (0) Stopped (0) - + Sustabdyti (0) Stopped (%1) - + Sustabdyti (%1) Running (%1) - + Paleisti (%1) Remove torrents - + Pašalinti torentai Start torrents - + Paleisti torentus Stop torrents - + Stabdyti torentus @@ -2797,11 +2729,6 @@ pakaitos simbolį "*". i.e: torrent size Dydis - - Done - % Done - Baigta - Status Torrent status (e.g. downloading, seeding, paused) @@ -2943,7 +2870,7 @@ pakaitos simbolį "*". Progress - + Eiga Info Hash v2 @@ -2959,7 +2886,7 @@ pakaitos simbolį "*". Popularity - + Populiarumas Status Icon @@ -3099,10 +3026,6 @@ pakaitos simbolį "*". e.g.: 1h 20m ago prieš %1 - - Paused - Pristabdyti - Completed Užbaigta @@ -3169,11 +3092,11 @@ pakaitos simbolį "*". Stopped - + Sustabdyta N/A - + Nėra @@ -3217,21 +3140,6 @@ pakaitos simbolį "*". Rename Pervadinti - - Resume - Resume/start the torrent - Tęsti - - - Force Resume - Force Resume/start the torrent - Priverstinai pratęsti - - - Pause - Pause the torrent - Pristabdyti - Limit share ratio... Apriboti dalijimosi santykį... @@ -3310,14 +3218,6 @@ pakaitos simbolį "*". New Category Nauja kategorija - - Location - Vieta - - - New name - Naujas pavadinimas - Set location Nustatyti vietą @@ -3330,18 +3230,10 @@ pakaitos simbolį "*". Edit Category Taisyti kategoriją - - Save path - Išsaugojimo kelias - Comma-separated tags: Kableliais atskirtos žymės: - - Add Tags - Pridėti žymes - Tags Žymės @@ -3404,11 +3296,11 @@ pakaitos simbolį "*". Force Start - + Priverstinai paleisti Save path: - + Išsaugojimo kelias: Location: @@ -3416,19 +3308,19 @@ pakaitos simbolį "*". Stop - + Stabdyti Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatinė veiksena reiškia, kad įvairios torento savybės (pvz., išsaugojimo kelias) bus nuspręstos pagal priskirtą kategoriją. Start - + Paleisti New name: - + Naujas vardas: Add tags @@ -3436,7 +3328,7 @@ pakaitos simbolį "*". Category: - + Kategorija: @@ -3475,21 +3367,17 @@ pakaitos simbolį "*". confirmDeletionDlg - - Also permanently delete the files - Taip pat visam laikui ištrinti failus - Remove torrent(s) Pašalinti torentą(us) Also remove the content files - + Taip pat šalinti turinio failus Remove tracker - + Šalinti seklį @@ -3765,10 +3653,6 @@ pakaitos simbolį "*". Leechers Siuntėjai - - Search engine - Paieškos sistema - Seeders Skleidėjai @@ -3850,14 +3734,6 @@ pakaitos simbolį "*". Tag: Žymė: - - Pause torrents - Pristabdyti torentus - - - Resume torrents - Pratęsti torentus - Remove unused tags Šalinti nenaudojamas žymes @@ -3876,11 +3752,11 @@ pakaitos simbolį "*". Start torrents - + Paleisti torentus Stop torrents - + Stabdyti torentus @@ -4024,27 +3900,27 @@ pakaitos simbolį "*". Search has finished - + Paieška baigta An error occurred during search... - + Paieškos metu įvyko klaida... Close tab - + Užverti kortelę Searching... - + Ieškoma... Search aborted - + Paieška nutraukta Close all tabs - + Užverti visas korteles @@ -4158,7 +4034,7 @@ pakaitos simbolį "*". Edit feed URL... - + Taisyti kanalo URL... Unable to update URL @@ -4172,6 +4048,14 @@ pakaitos simbolį "*". URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4359,10 +4243,6 @@ pakaitos simbolį "*". If word order is important use * instead of whitespace. Jeigu yra svarbi žodžių tvarka, vietoj tarpų naudokite * - - Add Paused: - Pridėti pristabdytus: - Please type the name of the new download rule. Įveskite vardą naujai atsiuntimo taisyklei. @@ -4436,29 +4316,13 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat TrackerFiltersList - - Resume torrents - Prastęsti torentus - - - All (%1) - Visi (%1) - - - Trackerless (%1) - Be seklių (%1) - - - Pause torrents - Pristabdyti torentus - Remove torrents Pašalinti torentai All - + Visos Trackerless @@ -4466,15 +4330,15 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Start torrents - + Paleisti torentus Remove tracker - + Šalinti seklį Stop torrents - + Stabdyti torentus @@ -4634,15 +4498,15 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Category Unable to edit category - + Nepavyko taisyti kategorijos OK - + Gerai Unable to create category - + Nepavyko sukurti kategorijos Unable to set category @@ -4653,11 +4517,11 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat CookiesDialog Domain - + Domenas Manage Cookies - + Tvarkyti slapukus Add Cookie @@ -4665,23 +4529,23 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Remove - + Šalinti Expiration Date - + Galioja iki Value - + Reikšmė Name - + Pavadinimas Path - + Kelias @@ -4699,18 +4563,18 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Ar tikrai norite pertikrinti pasirinktą torentą (-us)? Recheck confirmation - + Pertikrinimo patvirtinimas SearchWidget Close tab - + Užverti kortelę @@ -4721,7 +4585,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Password - + Slaptažodis JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4729,7 +4593,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Login - + Prisijungimas Server response: @@ -4741,10 +4605,202 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Username - + Naudotojo vardas Invalid Username or Password. + Neteisingas naudotojo vardas ar slaptažodis. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ltg.ts b/src/webui/www/translations/webui_ltg.ts index 9162d95e9..9820c12d3 100644 --- a/src/webui/www/translations/webui_ltg.ts +++ b/src/webui/www/translations/webui_ltg.ts @@ -76,7 +76,7 @@ Add torrent links - + Dalikt torrentu saitys Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Nūjimt nalītuotas kategorejas - - Resume torrents - Aizsuokt torrentus - - - Pause torrents - Nūstuodeit torrentus - New Category Jauna kategoreja @@ -151,10 +143,6 @@ Exit qBittorrent Aiztaiseit qBittorrent - - Only one link per line - Pa vīnai saitai katrā aiļā - Global upload rate limit must be greater than 0 or disabled. Golvonai kūpeigā nūsasyuteišonas dreizuma rūbežai juoir leluokai par 0 voi arī nūgrīztai. @@ -228,10 +216,6 @@ Save files to location: Izglobuot failus ite: - - Cookie: - Glabiņs: - More information Vaira dazynuošonys @@ -295,10 +279,6 @@ Logout Izīt - - Download Torrents from their URLs or Magnet links - Atsasyuteit torrentus nū teiklavītuom voi Magnetsaitym - Upload local torrent Dalikt torrentus @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nadereiga kategorejas pasauka:\nLyudzu nalītuot specialuos simbolus. - - Unable to create category - Nāisadevās radeit kategoreju - Upload rate threshold must be greater than 0. @@ -409,7 +385,7 @@ Remember choice - + Atguoduot izalasejumu Are you sure you want to remove these %1 torrents from the transfer list? @@ -421,7 +397,7 @@ URL - + Adress External IP: %1%2 @@ -494,10 +470,6 @@ Options... Nūstatejumi... - - Resume - Aizsuokt - Top Toolbar Viersejuo reikšveitra @@ -514,10 +486,6 @@ Donate! Pazīduot! - - Resume All - Aizsuokt vysys - Statistics Statistika @@ -526,14 +494,6 @@ About Par - - Pause - Nūstateit - - - Pause All - Nūstuodeit vysys - Add Torrent File... Dalikt torrentu failus... @@ -696,7 +656,7 @@ Stop - + Puortraukt Use regular expression @@ -720,7 +680,7 @@ Name - + Pasauka Would you like to stop all torrents? @@ -734,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -761,10 +725,6 @@ Language Volūda - - User Interface Language: - Sadures volūda: - Email notification upon download completion @@ -781,10 +741,6 @@ Torrent Queueing Torrentu saroksts - - Automatically add these trackers to new downloads: - Automatiski pīlikt šūs trakerus pi jaunīm torrentīm: - Web User Interface (Remote control) Tuolvaļdis sadurs (Web UI) @@ -1215,10 +1171,6 @@ When adding a torrent - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1279,10 +1231,6 @@ Fastest upload Dreižuokā nūsasyuteišona - - Pause torrent - Nūstuodeit torrentu - Remove torrent and its files Nūjimt torrentu i failus @@ -1325,7 +1273,7 @@ s - s + s Send buffer watermark: @@ -1399,10 +1347,6 @@ Ban client after consecutive failures: - - Enable cookie Secure flag (requires HTTPS) - Īgrīzt glabiņu Secure flag (vajadzeigs HTTPS) - Header: value pairs, one per line @@ -1945,7 +1889,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Automatiski Use alternating row colors @@ -1957,7 +1901,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + Adress: Transfer list @@ -2089,12 +2033,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + Sadurs Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2473,11 +2433,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + Puorstaipteikla devieju adress: Yes - + Nui Ratio / Time Active (in months), indicates how popular the torrent is @@ -2493,7 +2453,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Remove web seed @@ -2501,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Lobuot puorstaipteikla devieju Add web seeds... @@ -2639,14 +2599,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Dabeigti (0) - - Resumed (0) - Aizsuoktie (0) - - - Paused (0) - Nūstuodeiti (0) - Active (0) Aktivi (0) @@ -2675,14 +2627,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Dabeigti (%1) - - Paused (%1) - Nūstuodeiti (%1) - - - Resumed (%1) - Aizsuoktie (%1) - Active (%1) Aktivi (%1) @@ -2779,11 +2723,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Lelums - - Done - % Done - Dabeigti - Status Torrent status (e.g. downloading, seeding, paused) @@ -2925,7 +2864,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Progress Info Hash v2 @@ -3081,10 +3020,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago pyrma %1 - - Paused - Nūstuodeits - Completed Dabeidza @@ -3155,7 +3090,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. N/A - + Navā atrasta @@ -3199,21 +3134,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Puorsaukt - - Resume - Resume/start the torrent - Aizsuokt - - - Force Resume - Force Resume/start the torrent - Dastateiga aizsuoksona - - - Pause - Pause the torrent - Nūstateit - Limit share ratio... Aprūbežuot kūplītuošonas reitingu... @@ -3292,14 +3212,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Jauna kategoreja - - Location - Vīta - - - New name - Jauna pasauka - Set location Puormeit izglobuošonys vītu @@ -3312,18 +3224,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Lobuot kategoreju - - Save path - Izglobuošonas vīta - Comma-separated tags: Atdaleit byrkas ar komatu: - - Add Tags - Pīlikt byrkas - Tags Byrkas @@ -3390,7 +3294,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Izglobuošonas vīta: Location: @@ -3398,11 +3302,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Puortraukt Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatiskys režims zeimeibā, ka torrenta soveibys (pīvadumam izglobuošonas vīta) tiks dašķierti atteiceigi izalaseitai kategorejai. Start @@ -3410,7 +3314,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Jauna pasauka: Add tags @@ -3418,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Kategoreja: @@ -3467,7 +3371,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Nūjimt trakeri @@ -3743,10 +3647,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Jāmuoji - - Search engine - Maklātivs - Seeders Devieji @@ -3828,14 +3728,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Byrka: - - Pause torrents - Nūstuodeit torrentus - - - Resume torrents - Aizsuokt torrentus - Remove unused tags Nūjimt nalītuotas byrkas @@ -4002,7 +3894,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Mekliešona dabeigta An error occurred during search... @@ -4014,11 +3906,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Searching... - + Meklē... Search aborted - + Mekliešona puortraukta Close all tabs @@ -4150,6 +4042,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4337,10 +4237,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. - - Add Paused: - Dalikt nūstuodeitu: - Please type the name of the new download rule. Lyudzu Īvoduot jauna fiļtra pasauku. @@ -4414,29 +4310,13 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v TrackerFiltersList - - Resume torrents - Aizsuokt torrentus - - - All (%1) - Vysi (%1) - - - Trackerless (%1) - Bez trakera (%1) - - - Pause torrents - Nūstuodeit torrentus - Remove torrents All - + Vysys Trackerless @@ -4448,7 +4328,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Remove tracker - + Nūjimt trakeri Stop torrents @@ -4612,15 +4492,15 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Category Unable to edit category - + Naīsadevās lobuot kategoreju OK - + Lobi Unable to create category - + Nāisadevās radeit kategoreju Unable to set category @@ -4631,7 +4511,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v CookiesDialog Domain - + Domens Manage Cookies @@ -4651,15 +4531,15 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Value - + Vierteiba Name - + Pasauka Path - + Vīta @@ -4681,7 +4561,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Recheck confirmation - + Apstyprynuot puorvēri @@ -4699,7 +4579,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Password - + Paroļs JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4707,7 +4587,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Login - + Dasaslāgt Server response: @@ -4719,10 +4599,202 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Username - + Lītuotuojs Invalid Username or Password. + Napareizs slāgvuords voi paroļs + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_lv_LV.ts b/src/webui/www/translations/webui_lv_LV.ts index 51fb341d2..f2ad8aaf0 100644 --- a/src/webui/www/translations/webui_lv_LV.ts +++ b/src/webui/www/translations/webui_lv_LV.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Katrā rindā pa vienai saitei (Ir atbalstītas HTTP saites, Magnētsaites un Jaucējkodi) Add torrent links - + Pievienot torrentu saites Select .torrent files - + Atlasiet .torrent failus Torrent options - + Torrenta iestatījumi @@ -112,14 +112,6 @@ Remove unused categories Dzēst nelietotās kategorijas - - Resume torrents - Atsākt torrentus - - - Pause torrents - Apturēt torrentus - New Category Jauna kategorija @@ -138,11 +130,11 @@ Start torrents - + Palaistie torrenti Stop torrents - + Apstādinātie torrenti @@ -151,10 +143,6 @@ Exit qBittorrent Aizvērt qBittorrent - - Only one link per line - Katrā rindiņā pa vienai saitei - Global upload rate limit must be greater than 0 or disabled. Galvenajam atļautajam kopējam augšupielādes ātrumam ir jābūt lielākam par 0 vai arī nekādam. @@ -228,10 +216,6 @@ Save files to location: Saglabāt failus šeit: - - Cookie: - Sīkdatne: - More information Papildus informācija @@ -295,10 +279,6 @@ Logout Iziet - - Download Torrents from their URLs or Magnet links - Lejupielādēt torrentus no to URL vai magnētsaitēm - Upload local torrent Augšupielādēt torrentu @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nederīgs kategorijas nosaukums:\nLūdzu nelietojiet nekādus īpašos simbolus kategorijas nosaukumā. - - Unable to create category - Neizdevās izveidot kategoriju - Upload rate threshold must be greater than 0. Augšupielādes ātruma slieksnim ir jābūt lielākam par 0 @@ -383,10 +359,6 @@ Original author Programmas radītājs - - Are you sure you want to remove the selected torrents from the transfer list? - Vai esat pārliecināts, ka vēlaties izdzēst atlasītos torrentus no Torrentu saraksta? - The port used for the WebUI must be between 1 and 65535. Tālvadības kontroles paneļa portam ir jābūt starp 1 un 65535. @@ -413,11 +385,11 @@ Remember choice - + Atcerēties izvēli Are you sure you want to remove these %1 torrents from the transfer list? - + Vai esat pārliecināts, ka vēlaties izdzēst šos %1 torrentus no Torrentu saraksta? Unable to delete torrents. @@ -425,11 +397,11 @@ URL - + Adrese External IP: %1%2 - + Publiskā IP: %1%2 Edit web seed @@ -453,7 +425,7 @@ External IPs: %1, %2 - + Publiskās IP adreses: %1, %2 Unable to recheck torrents. @@ -469,7 +441,7 @@ Add web seeds - + Pievienot tīmekļa devējus @@ -498,10 +470,6 @@ Options... Iestatījumi... - - Resume - Atsākt - Top Toolbar Augšējā rīkjosla @@ -518,10 +486,6 @@ Donate! Ziedot! - - Resume All - Atsākt visus - Statistics Statistika @@ -530,14 +494,6 @@ About Par BitTorrent - - Pause - Apturēt - - - Pause All - Apturēt visus - Add Torrent File... Pievienot Torrentu failus... @@ -678,14 +634,6 @@ Remove Dzēst - - Would you like to resume all torrents? - Vai vēlies atsākt visus torrentus? - - - Would you like to pause all torrents? - Vai vēlies apturēt visus torrentus? - Execution Log Reģistrs @@ -700,15 +648,15 @@ Filter by: - + Meklēt pēc: Save Path - + Saglabāšanas vieta Stop - + Pārtraukt Use regular expression @@ -720,19 +668,19 @@ Start - + Palaist Manage Cookies... - + Sīkfailu pārvaldība... Unable to export torrent file - + Neizdevās eksportēt .torrent failu Name - + Nosaukumu Would you like to stop all torrents? @@ -740,12 +688,16 @@ Start All - + Palaist visus Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language Valoda - - User Interface Language: - Saskarnes valoda: - Email notification upon download completion E-pasta paziņojums par lejupielādes pabeigšanu @@ -793,10 +741,6 @@ Torrent Queueing Torrentu saraksts - - Automatically add these trackers to new downloads: - Automātiski pievienot šos trakerus jaunajiem torrentiem: - Web User Interface (Remote control) Tālvadības kontroles panelis (Web UI) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Brīdinājums: Šī parole netiek glabāta šifrētā veidā + Brīdinājums: Šī parole netiek glabāta šifrētā veidā μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Ātrākā augšupielāde - - Pause torrent - Apturēt torrentu - Remove torrent and its files Izdzēst torrentu un failus @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Liegt piekļuvi pēc atkārtotiem mēģinājumiem: - - Enable cookie Secure flag (requires HTTPS) - Ieslēgt sīkdatņu Secure Flag (nepieciešams HTTPS) - Header: value pairs, one per line Galvene: Katrā rindā pa vienam vērtību pārim @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Atbalsts starptautisko domēnu vārdiem (IDN): - - Run external program on torrent finished - Pēc torrenta lejupielādes beigšanas palaist programmu - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Lai aizsargātu pret DNS atkārtotas atsaukšanas uzbrukumiem, Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. - - Run external program on torrent added - Pēc torrenta pievienošanas palaist programmu - HTTPS certificate should not be empty HTTPS sertifikāts nedrīkst būt tukšs @@ -1727,10 +1655,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.days dienām - - Log file - Reģistra fails - Behavior Uzvedība @@ -1945,11 +1869,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Color scheme: - + Krāsu shēma: Show external IP in status bar - + Rādīt publisko IP adresi statusa joslā Fetched trackers @@ -1957,11 +1881,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Confirm when deleting torrents - + Apstiprināt Torrentu dzēšanu Ignore SSL errors: - + Neņemt vērā SSL kļūdas: Dark @@ -1969,15 +1893,15 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Delete files permanently - + Neatgriezeniski dzēst failus Auto - + Automātiski Use alternating row colors - + Iekrāsot katru otro rindiņu Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. URL: - + Adrese: Transfer list @@ -2005,19 +1929,19 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Downloading torrents: - + Lejupielādējot torrentus: Start / stop torrent - + Palaist / apstādināt torrentu Send test email - + Nosūtīt testa e-pastu Completed torrents: - + Pabeigtajiem torentiem: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. When duplicate torrent is being added - + Pievienojot torrenta duplikātu Action on double-click - + Dubultklikšķa darbība Save statistics interval: @@ -2037,7 +1961,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Shows a confirmation dialog upon torrent deletion - + Dzēšot torrentu, tiks parādīts apstiprinājuma logs Run on torrent finished: @@ -2045,7 +1969,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Attempted to send email. Check your inbox to confirm success - + Mēģināja nosūtīt e-pastu. Pārbaudiet savu iesūtni, lai pārliecināties, ka viss noritēja veiksmīgi Automatically append trackers from URL to new downloads: @@ -2061,11 +1985,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Stop torrent - + Apstādināt torrentu Use Category paths in Manual Mode - + Izmantot Kategoriju vietas manuālajā režīmā List of alternative WebUI @@ -2081,11 +2005,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. User interface language: - + Saskarnes valoda: Merge trackers to existing torrent - + Apvienot torrentu trakeru saites Confirm torrent recheck: @@ -2105,11 +2029,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + Noklusētās saglabāšanas vietas vietā izmantot attiecīgās Kategorijas saglabāšanas vietu No action - + Nedarīt neko Auto hide zero status filters @@ -2117,12 +2041,28 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Interface - + Saskarne Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2461,7 +2401,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Extension - + Paplašinājums Replace All @@ -2489,7 +2429,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Copy web seed URL - + Kopēt tīmekļa devēja adresi Replace option @@ -2501,11 +2441,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Web seed URL: - + Tīmekļa devēja adrese: Yes - + Ratio / Time Active (in months), indicates how popular the torrent is @@ -2513,7 +2453,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Popularity: - + Popularitāte: Apply to which filename part @@ -2521,23 +2461,23 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. No - + Remove web seed - + Noņemt tīmekļa devēju Web seed editing - + Tīmekļa devēja labošana Add web seeds... - + Pievienot tīmekļa devējus… Private: - + Privāts: @@ -2667,14 +2607,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.Completed (0) Pabeigti (0) - - Resumed (0) - Atsākti (0) - - - Paused (0) - Apturēti (0) - Active (0) Aktīvi (0) @@ -2703,14 +2635,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.Completed (%1) Pabeigti (%1) - - Paused (%1) - Apturēti (%1) - - - Resumed (%1) - Atsākti (%1) - Active (%1) Aktīvi (%1) @@ -2769,11 +2693,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Stopped (0) - + Apstādināti (0) Stopped (%1) - + Apstādināti (%1) Running (%1) @@ -2781,15 +2705,15 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Remove torrents - + Dzēst torrentus Start torrents - + Palaistie torrenti Stop torrents - + Apstādinātie torrenti @@ -2807,11 +2731,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.i.e: torrent size Izmērs - - Done - % Done - Pabeigti - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,27 +2868,27 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Private - + Privāts Progress - + Pabeigti Info Hash v2 - + Jaucējkods v2 Info Hash v1 - + Jaucējkods v1 Incomplete Save Path - + Saglabāšanas vieta nepabeigtajam Popularity - + Popularitāte Status Icon @@ -3109,10 +3028,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.e.g.: 1h 20m ago pirms %1 - - Paused - Apturēts - Completed Pabeigts @@ -3179,11 +3094,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Stopped - + pabeigts N/A - + Nav zināms @@ -3210,7 +3125,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Collapse/expand category - + Sakļaut/izvērst kategoriju @@ -3227,21 +3142,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.Rename Pārdēvēt - - Resume - Resume/start the torrent - Atsākt - - - Force Resume - Force Resume/start the torrent - Piespiedu atsākšana - - - Pause - Pause the torrent - Apturēt - Limit share ratio... Ierobežot koplietošanas reitingu... @@ -3320,14 +3220,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.New Category Jauna kategorija - - Location - Atrašanās vieta - - - New name - Jaunais nosaukums - Set location Nomainīt saglabāšanas vietu @@ -3340,18 +3232,10 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.Edit Category Labot kategoriju - - Save path - Saglabāšanas vieta - Comma-separated tags: Atdalīt atzīmes ar komatu: - - Add Tags - Pievienot atzīmes - Tags Atzīmes @@ -3418,7 +3302,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Save path: - + Saglabāšanas vieta: Location: @@ -3426,27 +3310,27 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Stop - + Pārtraukt Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automātiskais režīms nozīmē, ka torrenta īpašības (piem. saglabāšanas vieta), tiks piešķirta atbilstoši izvēlētajai kategorijai. Start - + Palaist New name: - + Jaunais nosaukums: Add tags - + Pievienot birkas Category: - + Kategorija: @@ -3485,10 +3369,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. confirmDeletionDlg - - Also permanently delete the files - Tāpat neatgriezeniski izdzēst failus - Remove torrent(s) Dzēst torrentu(s) @@ -3499,7 +3379,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Remove tracker - + Noņemt trakeri @@ -3775,17 +3655,13 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.Leechers Ņēmēji - - Search engine - Meklētājs - Seeders Devēji Published On - + Publicēts Engine URL @@ -3860,14 +3736,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.Tag: Atzīme: - - Pause torrents - Apturēt torrentus - - - Resume torrents - Atsākt torrentus - Remove unused tags Dzēst neizmantotās atzīmes @@ -3886,11 +3754,11 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Start torrents - + Palaistie torrenti Stop torrents - + Apstādinātie torrenti @@ -4034,27 +3902,27 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Search has finished - + Meklēšana pabeigta. An error occurred during search... - + Meklēšanas laikā radās kļūda... Close tab - + Aizvērt cilni Searching... - + Meklē... Search aborted - + Meklēšana pārtraukta Close all tabs - + Aizvērt visas cilnes @@ -4168,7 +4036,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Edit feed URL... - + Rediģēt kanāla adresi... Unable to update URL @@ -4182,6 +4050,14 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'.If word order is important use * instead of whitespace. Ja vārdu secība ir svarīga, lietojiet * simbolu. - - Add Paused: - Pievienot apstādinātu: - Please type the name of the new download rule. Lūdzu ievadiet jaunā filtra nosaukumu. @@ -4446,45 +4318,29 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā TrackerFiltersList - - Resume torrents - Atsākt torrentus - - - All (%1) - Visi (%1) - - - Trackerless (%1) - Bez trakeriem (%1) - - - Pause torrents - Apturēt torrentus - Remove torrents Dzēst torrentus All - + Visi Trackerless - + Bez trakeriem Start torrents - + Palaist torrentus Remove tracker - + Noņemt trakeri Stop torrents - + Apstādināt torrentus @@ -4586,11 +4442,11 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Reason - + Iemesls item - + vienums IP @@ -4606,7 +4462,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Critical - + Kritisks Critical Messages @@ -4618,7 +4474,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā items - + vienumi Results @@ -4626,11 +4482,11 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Info - + Informācija Choose a log level... - + Atlasiet žurnāla uzskaites detalizētību… @@ -4644,15 +4500,15 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Category Unable to edit category - + Neizdevās labot kategoriju OK - + Labi Unable to create category - + Neizdevās izveidot kategoriju Unable to set category @@ -4663,64 +4519,64 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā CookiesDialog Domain - + Domēns Manage Cookies - + Pārvaldīt Sīkfailus Add Cookie - + Pievienot sīkdatni Remove - + Dzēst Expiration Date - + Derīguma termiņš Value - + Vērtība Name - + Nosaukumu Path - + Ceļš confirmAutoTMMDialog Enable automatic torrent management - + Ieslēgt Automātisko torrentu pārvaldību Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Vai esat drošs, ka vēlaties ieslēgt Automātisko torrentu pārvaldību priekš atlasītājiem torrentiem? Attiecīgi Auto uzstādījumiem, to saturs var tikt pārvietots. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Vai esat pārliecināts, ka vēlāties pārbaudīt izvēlētos torrentus?() Recheck confirmation - + Pārbaudes apstiprināšana SearchWidget Close tab - + Aizvērt cilni @@ -4731,15 +4587,15 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Password - + Parole JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Nepieciešams JavaScript! Jums ir jāieslēdz JavaScript, lai Tālvadības panelis strādātu pareizi Login - + Pierakstīties Server response: @@ -4751,10 +4607,202 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Username - + Lietotājvārds Invalid Username or Password. + Nederīgs lietotājvārds vai parole. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_mn_MN.ts b/src/webui/www/translations/webui_mn_MN.ts index db7fccc53..94dccec7b 100644 --- a/src/webui/www/translations/webui_mn_MN.ts +++ b/src/webui/www/translations/webui_mn_MN.ts @@ -112,14 +112,6 @@ Remove unused categories Хэрэглэдэггүй ангиллуудыг устгах - - Resume torrents - Торрентуудыг үргэлжлүүлэх - - - Pause torrents - Торрентуудыг зогсоох - New Category Шинэ Ангилал @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent-г хаах - - Only one link per line - 1 мөрөнд 1 холбоос - Global upload rate limit must be greater than 0 or disabled. Хуулах зэргийн ерөнхий хязгаар нь 0-ээс илүү биш бол хязгаарлалт тавигдахгүй. @@ -228,10 +216,6 @@ Save files to location: Файлуудыг хадгалах байршил: - - Cookie: - Күүкий: - More information Дэлгэрэнгүй мэдээлэл @@ -295,10 +279,6 @@ Logout Гарах - - Download Torrents from their URLs or Magnet links - Торрентуудыг тэдний URL-р эсвэл соронзон холбоосоор татах - Upload local torrent Торрент шинээр хуулах @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Хүлээн зөвшөөрөгдөхгүй нэр байна:\nАнгилалд нэр оноохдоо тусгай тэмдэгт ашиглахаас татгалзана уу. - - Unable to create category - Ангилал үүсгэж чадсангүй - Upload rate threshold must be greater than 0. Илгээлтийн зэргийн босго 0-ээс илүү байх шаардлагатай. @@ -494,10 +470,6 @@ Options... Сонголтууд... - - Resume - Үргэлжлүүлэх - Top Toolbar Дээд хэрэгслийн мөр @@ -514,10 +486,6 @@ Donate! Хандив өргөх! - - Resume All - Бүгдийг үргэлжлүүлэх - Statistics Үзүүлэлтүүд @@ -526,14 +494,6 @@ About Тухай - - Pause - Түр зогсоох - - - Pause All - Бүгдийг түр зогсоох - Add Torrent File... Торрент файл нэмэх... @@ -734,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -761,10 +725,6 @@ Language Хэл - - User Interface Language: - Хэрэглэгчид харагдах хэл: - Email notification upon download completion Татаж дуусмагц ц-шуудангаар мэдэгдэх @@ -1211,10 +1171,6 @@ When adding a torrent - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1315,10 +1271,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -2083,6 +2035,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2465,7 +2433,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Yes - + Тийм Ratio / Time Active (in months), indicates how popular the torrent is @@ -2481,7 +2449,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Үгүй Remove web seed @@ -2892,7 +2860,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Явц Info Hash v2 @@ -3114,7 +3082,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Зогссон N/A @@ -3162,16 +3130,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename - - Resume - Resume/start the torrent - Үргэлжлүүлэх - - - Pause - Pause the torrent - Түр зогсоох - Limit share ratio... @@ -3344,7 +3302,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Шууд горимд торрентийн зарим тохиргоог (жишээ нь хадгалах зам) харгалзах ангиллаас хамааруулж шийднэ Start @@ -3352,7 +3310,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Шинэ нэр: Add tags @@ -3360,7 +3318,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Ангилал: @@ -3766,14 +3724,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: - - Pause torrents - Торрентуудыг зогсоох - - - Resume torrents - Торрентуудыг үргэлжлүүлэх - Remove unused tags @@ -4088,6 +4038,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4275,10 +4233,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Үгсийн дарааллыг чухалчлах бол хоосон зайны оронд * хэрэглээрэй. - - Add Paused: - Завсарлага: - Please type the name of the new download rule. Шинэ татах дүрмийн нэрээ бичнэ үү. @@ -4352,25 +4306,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Торрентуудыг үргэлжлүүлэх - - - All (%1) - Бүгд (%1) - - - Pause torrents - Торрентуудыг зогсоох - Remove torrents All - + Бүгд Trackerless @@ -4550,11 +4492,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also OK - + ЗА Unable to create category - + Ангилал үүсгэж чадсангүй Unable to set category @@ -4585,7 +4527,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Value - + Утга Name @@ -4633,7 +4575,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Нууц үг JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4641,7 +4583,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Нэвтрэх Server response: @@ -4653,10 +4595,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Хэрэглэгчийн нэр Invalid Username or Password. + Хэрэглэгчийн нэр эсвэл нууц үг тохирохгүй байна. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ms_MY.ts b/src/webui/www/translations/webui_ms_MY.ts index 7abe3de61..63c1d4304 100644 --- a/src/webui/www/translations/webui_ms_MY.ts +++ b/src/webui/www/translations/webui_ms_MY.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Satu pautan per baris (pautan HTTP, pautan Magnet dan cincangan-maklumat disokong) Add torrent links - + Tambah pautan torrent Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Buang kategori yang tidak digunakan - - Resume torrents - Sambung semula torrent - - - Pause torrents - Jeda torrent - New Category Kategori Baharu @@ -151,10 +143,6 @@ Exit qBittorrent Keluar qBittorrent - - Only one link per line - Hanya satu pautan per baris - Global upload rate limit must be greater than 0 or disabled. Had kadar muat naik sejagat mesti lebih besar dari 0 atau dilumpuhkan. @@ -228,10 +216,6 @@ Save files to location: Simpan fail ke lokasi: - - Cookie: - Kuki: - More information Lagi maklumat @@ -295,10 +279,6 @@ Logout Daftar keluar - - Download Torrents from their URLs or Magnet links - Muat turun Torrent dari URL atau pautan Magnet mereka - Upload local torrent Muat naik torrent setempat @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nama kategori tidak sah:\nJangan guna apa jua aksara khas dalam nama kategori. - - Unable to create category - Tidak boleh mencipta kategori - Upload rate threshold must be greater than 0. Ambang kadar muat naik mesti lebih besar dari 0 @@ -409,7 +385,7 @@ Remember choice - + Ingat pilihan Are you sure you want to remove these %1 torrents from the transfer list? @@ -421,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -494,10 +470,6 @@ Options... Pilihan... - - Resume - Sambung Semula - Top Toolbar Palang Alat Atas @@ -514,10 +486,6 @@ Donate! Beri Derma! - - Resume All - Sambung Semula Semua - Statistics Statistik @@ -526,14 +494,6 @@ About Perihal - - Pause - Jeda - - - Pause All - Jeda Semua - Add Torrent File... Tambah Fail Torrent... @@ -696,7 +656,7 @@ Stop - + Henti Use regular expression @@ -712,7 +672,7 @@ Manage Cookies... - + Urus Kuki... Unable to export torrent file @@ -720,7 +680,7 @@ Name - + Nama Would you like to stop all torrents? @@ -734,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -761,10 +725,6 @@ Language Bahasa - - User Interface Language: - Bahasa Antaramuka Pengguna: - Email notification upon download completion Pemberitahuan emel seusai muat turun lengkap @@ -781,10 +741,6 @@ Torrent Queueing Pembarisan Gilir Torrent - - Automatically add these trackers to new downloads: - Tambah penjejak ini secara automatik ke muat turun baharu: - Web User Interface (Remote control) Antaramuka Pengguna Sesawang (Kawalan jauh) @@ -1217,7 +1173,7 @@ Info: The password is saved unencrypted - Maklumat: Kata laluan disimpan tanpa tersulit + Maklumat: Kata laluan disimpan tanpa tersulit μTP-TCP mixed mode algorithm: @@ -1279,10 +1235,6 @@ Fastest upload Muat naik terpantas - - Pause torrent - Jeda torrent - Remove torrent and its files Buang torrent dan fail-failnya @@ -1325,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1399,10 +1351,6 @@ Ban client after consecutive failures: Sekat klien selepas kegagalan berturutan: - - Enable cookie Secure flag (requires HTTPS) - Benarkan bendera Keselamatan kuki (perlu HTTPS) - Header: value pairs, one per line Pengepala: pasangan nilai, satu per baris @@ -1707,10 +1655,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.days hari - - Log file - Fail log - Behavior Kelakuan @@ -1937,7 +1881,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Confirm when deleting torrents - + Sahkan bila memadam torrent Ignore SSL errors: @@ -1953,11 +1897,11 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Auto - + Auto Use alternating row colors - + Guna warna baris alternatif Display full announce URL in the Tracker column @@ -1965,7 +1909,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. URL: - + URL: Transfer list @@ -1985,7 +1929,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Downloading torrents: - + Torrent dimuat turun: Start / stop torrent @@ -1997,7 +1941,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Completed torrents: - + Torrent selesai: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2009,7 +1953,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Action on double-click - + Tindakan bila dwi-klik Save statistics interval: @@ -2017,7 +1961,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Shows a confirmation dialog upon torrent deletion - + Tunjuk satu dialog pengesahan ketika pemadaman torrent Run on torrent finished: @@ -2089,7 +2033,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. No action - + Tiada tindakan Auto hide zero status filters @@ -2097,12 +2041,28 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Interface - + Antara Muka Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2481,11 +2441,11 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Web seed URL: - + URL semaian Sesawang: Yes - + Ya Ratio / Time Active (in months), indicates how popular the torrent is @@ -2501,7 +2461,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. No - + Tidak Remove web seed @@ -2509,7 +2469,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Web seed editing - + Penyuntingan semaian Sesawang Add web seeds... @@ -2647,14 +2607,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.Completed (0) Selesai (0) - - Resumed (0) - Disambung Semula (0) - - - Paused (0) - Dijeda (0) - Active (0) Aktif (0) @@ -2683,14 +2635,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.Completed (%1) Selesai (%1) - - Paused (%1) - Dijeda (%1) - - - Resumed (%1) - Disambung Semula (%1) - Active (%1) Aktif (%1) @@ -2787,11 +2731,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.i.e: torrent size Saiz - - Done - % Done - Selesai - Status Torrent status (e.g. downloading, seeding, paused) @@ -2933,7 +2872,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Progress - + Kemajuan Info Hash v2 @@ -3089,10 +3028,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.e.g.: 1h 20m ago %1 yang lalu - - Paused - Dijeda - Completed Selesai @@ -3163,7 +3098,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. N/A - + T/A @@ -3207,21 +3142,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.Rename Nama semula - - Resume - Resume/start the torrent - Sambung Semula - - - Force Resume - Force Resume/start the torrent - Paksa Sambung Semula - - - Pause - Pause the torrent - Jeda - Limit share ratio... Had nisbah kongsi... @@ -3300,14 +3220,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.New Category Kategori Baharu - - Location - Lokasi - - - New name - Nama baharu - Set location Tetapkan lokasi @@ -3320,18 +3232,10 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.Edit Category Sunting Kategori - - Save path - Laluan simpan - Comma-separated tags: Tag diasing-tanda-koma: - - Add Tags - Tambah Tag - Tags Tag @@ -3398,7 +3302,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Save path: - + Laluan simpan: Location: @@ -3406,11 +3310,11 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Stop - + Henti Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Mod automatik bermaksud pelbagai sifat torrent (seperti laluan simpan) akan ditentukan oleh kategori berkaitan Start @@ -3418,7 +3322,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. New name: - + Nama baharu: Add tags @@ -3426,7 +3330,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Category: - + Kategori: @@ -3475,7 +3379,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Remove tracker - + Buang penjejak @@ -3751,10 +3655,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.Leechers Penyedut - - Search engine - Enjin gelintar - Seeders Penyemai @@ -3836,14 +3736,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.Tag: Tag: - - Pause torrents - Jeda torrent - - - Resume torrents - Sambung semula torrent - Remove unused tags Buang tag yang tidak digunakan @@ -4010,11 +3902,11 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Search has finished - + Gelintar selesai An error occurred during search... - + Satu ralat berlaku ketika menggelintar... Close tab @@ -4022,11 +3914,11 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Searching... - + Menggelintar... Search aborted - + Gelintar dihenti paksa Close all tabs @@ -4158,6 +4050,14 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4345,10 +4245,6 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'.If word order is important use * instead of whitespace. Jika tertib perkataan adalah mustahak guna * selain dari ruang putih. - - Add Paused: - Tambah Dijeda: - Please type the name of the new download rule. Sila taip nama bagi peraturan muat turun baharu. @@ -4421,29 +4317,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Sambung semula torrent - - - All (%1) - Semua (%1) - - - Trackerless (%1) - Tanpa Penjejak (%1) - - - Pause torrents - Jeda torrent - Remove torrents All - + Semua Trackerless @@ -4455,7 +4335,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Buang penjejak Stop torrents @@ -4619,15 +4499,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Tidak boleh sunting kategori OK - + OK Unable to create category - + Tidak boleh cipta kategori Unable to set category @@ -4638,11 +4518,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Domain Manage Cookies - + Urus Kuki Add Cookie @@ -4654,19 +4534,19 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expiration Date - + Tarikh Luput Value - + Nilai Name - + Nama Path - + Laluan @@ -4684,11 +4564,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Anda pasti mahu menyemak semula torrent(s) terpilih? Recheck confirmation - + Pengesahan semak semula @@ -4706,7 +4586,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Kata Laluan JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4714,7 +4594,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Daftar Masuk Server response: @@ -4726,10 +4606,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Nama pengguna Invalid Username or Password. + Nama Pengguna atau Kata Laluan tidak sah. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_nb.ts b/src/webui/www/translations/webui_nb.ts index 5db5a389e..e847f87ee 100644 --- a/src/webui/www/translations/webui_nb.ts +++ b/src/webui/www/translations/webui_nb.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Én lenke per linje (HTTP-lenker, magnetlenker, og informative verifiseringsnøkler er støttet) Add torrent links - + Legg til torrentlenker Select .torrent files - + Velg .torrent-filer Torrent options - + Torrentinnstillinger @@ -112,14 +112,6 @@ Remove unused categories Fjern ubrukte kategorier - - Resume torrents - Gjenoppta torrenter - - - Pause torrents - Sett torrenter på pause - New Category Ny kategori @@ -138,11 +130,11 @@ Start torrents - + Start torrenter Stop torrents - + Stopp torrenter @@ -151,10 +143,6 @@ Exit qBittorrent Avslutt qBittorrent - - Only one link per line - Kun én lenke per linje - Global upload rate limit must be greater than 0 or disabled. Global opplastingshastighetsgrense må være større enn 0 eller deaktivert. @@ -228,10 +216,6 @@ Save files to location: Lagre filer i mappe: - - Cookie: - Informasjonskapsel: - More information Mer informasjon @@ -295,10 +279,6 @@ Logout Logg ut - - Download Torrents from their URLs or Magnet links - Last ned torrenter fra der-tilhørende nettadresser eller magnetlenker - Upload local torrent Last opp lokal torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Ugyldig kategorinavn:\nIkke bruk noen spesialtegn i kategorinavnet. - - Unable to create category - Kunne ikke opprette kategori - Upload rate threshold must be greater than 0. Opplastingsforholdsgrense må være større enn 0. @@ -383,10 +359,6 @@ Original author Opprinnelig opphavsperson - - Are you sure you want to remove the selected torrents from the transfer list? - Er du sikker på at du vil slette valgte torrenter fra overføringslisten? - The port used for the WebUI must be between 1 and 65535. Porten som brukes for nettgrensesnittet må være mellom 1 og 65535. @@ -401,75 +373,75 @@ External IP: N/A - + Ekstern IP: I/T Reverse proxy setup examples - + Eksempler på oppsett av reversert mellomtjener Could not contact qBittorrent - + Klarte ikke kontakte qBittorrent Remember choice - + Husk valg Are you sure you want to remove these %1 torrents from the transfer list? - + Er du sikker på at du vil fjerne disse %1 torrentene fra overføringslisten? Unable to delete torrents. - + Klarte ikke slette torrenter. URL - + Nettadresse External IP: %1%2 - + Ekstern IP: %1%2 Edit web seed - + Rediger nettdeler Are you sure you want to remove %1 from the transfer list? - + Er du sikker på at du vil fjerne %1 fra overføringslisten? Unable to set Auto Torrent Management for the selected torrents. - + Klarte ikke ta i bruk automatisk torrentbehandling for de valgte torrentene. Unable to stop torrents. - + Klarte ikke stoppe torrenter. Unable to download file - + Klarte ikke laste ned fil External IPs: %1, %2 - + Eksterne IP-er: %1, %2 Unable to recheck torrents. - + Klarte ikke kontrollere torrenter. List of web seeds to add (one per line): - + Liste over nettdelere som skal legges til (én per linje): Unable to start torrents. - + Klarte ikke starte torrenter. Add web seeds - + Legg til nettdelere @@ -498,10 +470,6 @@ Options... Alternativer … - - Resume - Gjenoppta - Top Toolbar Topp-verktøyslinje @@ -518,10 +486,6 @@ Donate! Doner! - - Resume All - Gjenoppta alle - Statistics Statistikk @@ -530,14 +494,6 @@ About Om - - Pause - Sett på pause - - - Pause All - Sett alt på pause - Add Torrent File... Legg til torrentfil … @@ -678,14 +634,6 @@ Remove Fjern - - Would you like to resume all torrents? - Vil du gjenoppta alle torrenter? - - - Would you like to pause all torrents? - Vil du sette alle torrenter på pause? - Execution Log Utførelseslogg @@ -700,50 +648,54 @@ Filter by: - + Filtrer etter: Save Path - + Lagringssti Stop - + Stopp Use regular expression - + Bruk regulært uttrykk Would you like to start all torrents? - + Vil du starte alle torrenter? Start - + Start Manage Cookies... - + Behandle informasjonskapsler … Unable to export torrent file - + Klarte ikke eksportere torrentfil Name - + Navn Would you like to stop all torrents? - + Vil du stoppe alle torrenter? Start All - + Start alle Stop All + Stopp alle + + + Torrent Creator @@ -773,10 +725,6 @@ Language Språk - - User Interface Language: - Brukergrensesnittsspråk: - Email notification upon download completion Epost-varsling ved nedlastingsfullførelse @@ -793,10 +741,6 @@ Torrent Queueing Torrentkødanning - - Automatically add these trackers to new downloads: - Automatisk legg disse sporerne til nye nedlastinger: - Web User Interface (Remote control) Nettbrukergrenesnitt (fjernkontroll) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Passordet er lagret ukryptert + Info: Passordet er lagret ukryptert μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Raskeste opplasting - - Pause torrent - Sett torrent på pause - Remove torrent and its files Fjern torrent og dens filer @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Bannlys klient etter påfølgende feil: - - Enable cookie Secure flag (requires HTTPS) - Slå på Secure-flagget i informasjonskapsler (HTTPS) - Header: value pairs, one per line Hode: verdipar, ett per linje @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Støtte for internasjonale domenenavn (IDN): - - Run external program on torrent finished - Kjør eksternt program når torrent er fullført - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ burde du skrive inn domenenavn brukt av vevgrensesnittjeneren. Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. - - Run external program on torrent added - Kjør eksternt program når torrent legges til - HTTPS certificate should not be empty HTTPS-sertifikatet kan ikke være tomt @@ -1727,10 +1655,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.days dager - - Log file - Loggfil - Behavior Oppførsel @@ -1945,182 +1869,198 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Color scheme: - + Palett: Show external IP in status bar - + Vis ekstern IP i statuslinja Fetched trackers - + Hentet sporere Confirm when deleting torrents - + Bekreft ved sletting av torrenter Ignore SSL errors: - + Ignorer SSL-feil: Dark - + Mørk Delete files permanently - + Slett filer for godt Auto - + Auto Use alternating row colors - + Bruk alternerende radfarger Display full announce URL in the Tracker column - + Vis full annonseringsadresse i sporer-kolonnen URL: - + URL: Transfer list - + Overføringsliste The announce port must be between 0 and 65535. - + Port for annonsering må være mellom 0 og 65535. Light - + Lys Automatically append these trackers to new downloads: - + Automatisk legg til disse sporerne til nye nedlastinger: Downloading torrents: - + Nedlastende torrenter: Start / stop torrent - + Start / stopp torrent Send test email - + Send test-epost Completed torrents: - + Fullførte torrenter: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Slå på Secure-flagget i informasjonskapsler (krever HTTPS eller localhost-tilkobling) When duplicate torrent is being added - + Når duplisert torrent legges til Action on double-click - + Handling ved dobbelklikk Save statistics interval: - + Intervall for lagring av statistikk: Shows a confirmation dialog upon torrent deletion - + Vis bekreftelsesdialog ved sletting av torrenter Run on torrent finished: - + Kjør når torrent er fullført: Attempted to send email. Check your inbox to confirm success - + Forsøkte å sende epost. Se i innboksen om det lyktes Automatically append trackers from URL to new downloads: - + Automatisk legg til disse sporerne fra adresse til nye nedlastinger: Torrent content removing mode: - + Modus for fjerning av torrentinnhold: Move files to trash (if possible) - + Flytt filer til papirkurven (hvis mulig) Stop torrent - + Stopp torrent Use Category paths in Manual Mode - + Bruk kategoristier i manuell modus List of alternative WebUI - + Liste over alternative nettgrensesnitt Run on torrent added: - + Kjør når torrent legges til: Port reported to trackers (requires restart) [0: listening port]: - + Porten som skal rapporteres til sporere (krever omstart) [0: lytteport]: User interface language: - + Brukergrensesnittets språk: Merge trackers to existing torrent - + Slå sammen sporere til eksisterende torrent Confirm torrent recheck: - + Bekreft ny gjennomsjekk av torrent: Custom WebUI settings - + Selvvalgte innstillinger for nettgrensesnitt Following settings are WebUI only - + De følgende innstillingene gjelder kun nettgrensesnitt Simple pread/pwrite - + Enkel pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Slå opp relativ lagringssti mot passende kategoristi i stedet for den forvalge No action - + Ingen handling Auto hide zero status filters - + Skjul automatisk filtre som mangler status Interface - + Grensesnitt Log Files + Loggfiler + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Copy web seed URL - + Kopier adresse for nettdeler Replace option - + Valg for erstatning Edit web seed URL... - + Rediger adresse for nettdeler … Web seed URL: - + Nettdeleradresse: Yes - + Ja Ratio / Time Active (in months), indicates how popular the torrent is - + Forhold / Tid aktiv (i måneder), antyder hvor populær torrenten er Popularity: - + Popularitet: Apply to which filename part - + Bruk på hvilken del av filnavnet No - + Nei Remove web seed - + Fjern nettdeler Web seed editing - + Nettdeler-redigering Add web seeds... - + Legg til nettdelere … Private: - + Privat: @@ -2667,14 +2607,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.Completed (0) Fullførte (0) - - Resumed (0) - Gjenopptatte (0) - - - Paused (0) - Satt på pause (0) - Active (0) Aktive (0) @@ -2703,14 +2635,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.Completed (%1) Fullførte (%1) - - Paused (%1) - Satt på pause (%1) - - - Resumed (%1) - Gjenopptatte (%1) - Active (%1) Aktive (%1) @@ -2765,31 +2689,31 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Running (0) - + Kjører (0) Stopped (0) - + Stoppet (0) Stopped (%1) - + Stoppet (%1) Running (%1) - + Kjører (%1) Remove torrents - + Fjern torrenter Start torrents - + Start torrenter Stop torrents - + Stopp torrenter @@ -2807,11 +2731,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.i.e: torrent size Størrelse - - Done - % Done - Ferdig - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Private - + Privat Progress - + Framdrift Info Hash v2 - + Info-hash v2 Info Hash v1 - + Info-hash v1 Incomplete Save Path - + Ufullstendig lagringssti Popularity - + Popularitet Status Icon - + Statusikon @@ -3109,10 +3028,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.e.g.: 1h 20m ago %1 siden - - Paused - Pauset - Completed Fullført @@ -3179,11 +3094,11 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Stopped - + Stoppet N/A - + Irrelevant @@ -3210,7 +3125,7 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Collapse/expand category - + Fold sammen/ut kategori @@ -3227,21 +3142,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.Rename Gi nytt navn - - Resume - Resume/start the torrent - Gjenoppta - - - Force Resume - Force Resume/start the torrent - Påtving gjenopptakelse - - - Pause - Pause the torrent - Sett på pause - Limit share ratio... Begrens delingsforhold … @@ -3320,14 +3220,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.New Category Ny kategori - - Location - Plassering - - - New name - Nytt navn - Set location Angi plassering @@ -3340,18 +3232,10 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.Edit Category Rediger kategori - - Save path - Lagringssti - Comma-separated tags: Kommaseparerte etiketter: - - Add Tags - Legg til etiketter - Tags Etiketter @@ -3414,39 +3298,39 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Force Start - + Tving start Save path: - + Lagringssti: Location: - + Plassering: Stop - + Stopp Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatisk modus betyr at diverse torrent-egenskaper (f.eks. lagringsmappe) vil bli bestemt av tilknyttet kategori Start - + Start New name: - + Nytt navn: Add tags - + Legg til etiketter Category: - + Kategori: @@ -3485,21 +3369,17 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. confirmDeletionDlg - - Also permanently delete the files - Slett også filene permanent - Remove torrent(s) Fjern torrent(er) Also remove the content files - + Også fjern filene i innholdet Remove tracker - + Fjern sporer @@ -3703,23 +3583,23 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Select category - + Velg kategori Min size prefix - + Min. størrelsesprefiks Start a search above. - + Start et søk over. Max size prefix - + Maks. størrelsesprefiks Select plugins - + Velg programtillegg @@ -3775,25 +3655,21 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.Leechers Snyltere - - Search engine - Søkemotor - Seeders Delere Published On - + Publisert den Engine URL - + Motoradresse Engine - + Motor: @@ -3860,14 +3736,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.Tag: Etikett: - - Pause torrents - Sett torrenter på pause - - - Resume torrents - Gjenoppta torrenter - Remove unused tags Fjern ubrukte etiketter @@ -3886,11 +3754,11 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Start torrents - + Start torrenter Stop torrents - + Stopp torrenter @@ -4034,27 +3902,27 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Search has finished - + Søket er ferdig An error occurred during search... - + En feil oppstod under søket … Close tab - + Lukk fane Searching... - + Søker … Search aborted - + Søket ble avbrutt Close all tabs - + Lukk alle faner @@ -4168,18 +4036,26 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Edit feed URL... - + Rediger informasjonskanalens adresse … Unable to update URL - + Klarte ikke oppdatere adresse URL is unchanged - + Adressen er uendret URL cannot be empty + Adressen kan ikke være tom + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes.If word order is important use * instead of whitespace. Bruk * i stedet for tomrom hvis ord-rekkefølgen er viktig. - - Add Paused: - Legg til uten å starte: - Please type the name of the new download rule. Skriv navnet på den nye nedlastingsregelen. @@ -4433,58 +4305,42 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Remove rule - + Fjern regel Add rule - + Legg til regel Add Stopped: - + Legg til stoppet: TrackerFiltersList - - Resume torrents - Gjenoppta torrenter - - - All (%1) - Alle (%1) - - - Trackerless (%1) - Sporerløse (%1) - - - Pause torrents - Sett torrenter på pause - Remove torrents Fjern torrenter All - + Alle Trackerless - + Sporerløse Start torrents - + Start torrenter Remove tracker - + Fjern sporer Stop torrents - + Stopp torrenter @@ -4637,124 +4493,316 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Er du sikker på at du vil fjerne sporeren %1 fra alle torrenter? Category Unable to edit category - + Kunne ikke redigere kategorien OK - + OK Unable to create category - + Kunne ikke opprette kategorien Unable to set category - + Klarte ikke lagre kategori CookiesDialog Domain - + Domene Manage Cookies - + Behandle Informasjonskapsler Add Cookie - + Legg til informasjonskapsel Remove - + Fjern Expiration Date - + Utløpsdato Value - + Verdi Name - + Navn Path - + Sti confirmAutoTMMDialog Enable automatic torrent management - + Slå på automatisk torrentbehandling Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Vil du virkelig slå på automatisk torrentbehandling for valgt(e) torrent(er)? De kan bli flyttet. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Er du sikker på at du vil sjekke valgte torrent(er) på nytt? Recheck confirmation - + Bekreftelse av ny gjennomsjekking SearchWidget Close tab - + Lukk fane Login qBittorrent WebUI - + Nettgrensesnitt for qBittorrent Password - + Passord JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript kreves. Du må aktivere JavaScript for at nettgrensesnittet skal virke. Login - + Logg inn Server response: - + Tjenersvar: Unable to log in, server is probably unreachable. - + Klarte ikke logge inn – tjeneren er antakelig utilgjengelig. Username - + Brukernavn Invalid Username or Password. + Ugyldig brukernavn eller passord. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_nl.ts b/src/webui/www/translations/webui_nl.ts index a77591abd..edc738284 100644 --- a/src/webui/www/translations/webui_nl.ts +++ b/src/webui/www/translations/webui_nl.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Een koppeling per regel (http-verbindingen, magneetkoppelingen en info-hashes worden ondersteund) Add torrent links - + Torrent-koppelingen toevoegen Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Niet-gebruikte categorieën verwijderen - - Resume torrents - Torrents hervatten - - - Pause torrents - Torrents pauzeren - New Category Nieuwe categorie @@ -138,11 +130,11 @@ Start torrents - + Torrents starten Stop torrents - + Torrents stoppen @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent afsluiten - - Only one link per line - Slechts één koppeling per regel - Global upload rate limit must be greater than 0 or disabled. Algemene begrenzing voor uploadsnelheid moet groter dan 0 of uitgeschakeld zijn. @@ -228,10 +216,6 @@ Save files to location: Bestanden opslaan in: - - Cookie: - Cookie: - More information Meer informatie @@ -295,10 +279,6 @@ Logout Afmelden - - Download Torrents from their URLs or Magnet links - Torrents downloaden via hun URL's of magneetkoppelingen - Upload local torrent Lokale torrent uploaden @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Ongeldige categorienaam:\nGebruik geen speciale tekens in de categorienaam. - - Unable to create category - Kan categorie niet aanmaken - Upload rate threshold must be greater than 0. Drempel voor uploadsnelheid moet hoger zijn dan 0. @@ -383,10 +359,6 @@ Original author Oorspronkelijke auteur - - Are you sure you want to remove the selected torrents from the transfer list? - Weet u zeker dat u de geselecteerde torrents wilt verwijderen uit de overdrachtlijst? - The port used for the WebUI must be between 1 and 65535. De poort gebruikt voor de WebUI moet tussen 1 en 65535 liggen. @@ -409,15 +381,15 @@ Could not contact qBittorrent - + Kon geen contact opnemen met qBittorrent Remember choice - + Keuze onthouden Are you sure you want to remove these %1 torrents from the transfer list? - + Weet u zeker dat u deze %1 torrents uit de overdrachtlijst wilt verwijderen? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -498,10 +470,6 @@ Options... Opties... - - Resume - Hervatten - Top Toolbar Bovenste werkbalk @@ -518,10 +486,6 @@ Donate! Doneren! - - Resume All - Alles hervatten - Statistics Statistieken @@ -530,14 +494,6 @@ About Over - - Pause - Pauzeren - - - Pause All - Alles pauzeren - Add Torrent File... Torrentbestand toevoegen... @@ -678,14 +634,6 @@ Remove Verwijderen - - Would you like to resume all torrents? - Wilt u alle torrents hervatten? - - - Would you like to pause all torrents? - Wilt u alle torrents pauzeren? - Execution Log Uitvoeringslog @@ -700,15 +648,15 @@ Filter by: - + Filteren op: Save Path - + Opslagpad Stop - + Stoppen Use regular expression @@ -716,15 +664,15 @@ Would you like to start all torrents? - + Wilt u alle torrents starten? Start - + Starten Manage Cookies... - + Cookies beheren... Unable to export torrent file @@ -732,18 +680,22 @@ Name - + Naam Would you like to stop all torrents? - + Wilt u alle torrents stoppen? Start All - + Alles starten Stop All + Alles stoppen + + + Torrent Creator @@ -773,10 +725,6 @@ Language Taal - - User Interface Language: - Taal gebruikersinterface: - Email notification upon download completion Melding via e-mail wanneer download voltooid is @@ -793,10 +741,6 @@ Torrent Queueing Torrents in wachtrij plaatsen - - Automatically add these trackers to new downloads: - Deze trackers automatisch toevoegen aan nieuwe downloads: - Web User Interface (Remote control) Web-gebruikersinterface (bediening op afstand) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: het wachtwoord wordt onversleuteld opgeslagen + Info: het wachtwoord wordt onversleuteld opgeslagen μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Snelste upload - - Pause torrent - Torrent pauzeren - Remove torrent and its files Torrent en zijn bestanden verwijderen @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Cliënt verbannen na opeenvolgende fouten: - - Enable cookie Secure flag (requires HTTPS) - Secure-flag van cookie inschakelen (vereist https) - Header: value pairs, one per line Header: waardeparen, één per regel @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Ondersteuning voor geïnternationaliseerde domeinnamen (IDN): - - Run external program on torrent finished - Extern programma uitvoeren wanneer torrent klaar is - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ zet u er domeinnamen in die gebruikt worden door de WebUI-server. Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. - - Run external program on torrent added - Extern programma uitvoeren wanneer torrent toegevoegd wordt - HTTPS certificate should not be empty HTTPS-certificaat mag niet leeg zijn @@ -1727,10 +1655,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.days dagen - - Log file - Logbestand - Behavior Gedrag @@ -1945,7 +1869,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Color scheme: - + Kleurenschema Show external IP in status bar @@ -1957,27 +1881,27 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Confirm when deleting torrents - + Bevestigen bij verwijderen van torrents Ignore SSL errors: - + SSL-fouten negeren: Dark - + Donker Delete files permanently - + Bestanden permanent verwijderen Auto - + Automatisch Use alternating row colors - + Afwisselende rijkleuren gebruiken Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. URL: - + URL: Transfer list @@ -1997,15 +1921,15 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Light - + Licht Automatically append these trackers to new downloads: - + Deze trackers automatisch toevoegen aan nieuwe downloads: Downloading torrents: - + Downloadende torrents: Start / stop torrent @@ -2013,11 +1937,11 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Send test email - + Test e-mail versturen Completed torrents: - + Voltooide torrents: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. When duplicate torrent is being added - + Wanneer een dubbele torrent toegevoegd wordt Action on double-click - + Actie bij dubbelklikken Save statistics interval: @@ -2037,7 +1961,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Shows a confirmation dialog upon torrent deletion - + Geeft een bevestigingsvenster weer bij verwijderen van een torrent Run on torrent finished: @@ -2045,7 +1969,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Attempted to send email. Check your inbox to confirm success - + Geprobeerd e-mail te verzenden. Controleer uw inbox voor bevestiging Automatically append trackers from URL to new downloads: @@ -2053,19 +1977,19 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Torrent content removing mode: - + Modus voor verwijderen van torrent-inhoud: Move files to trash (if possible) - + Bestanden naar prullenbak verplaatsen (indien mogelijk) Stop torrent - + Torrent stoppen Use Category paths in Manual Mode - + Categoriepaden gebruiken in handmatige modus List of alternative WebUI @@ -2085,7 +2009,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Merge trackers to existing torrent - + Trackers samenvoegen in bestaande torrent Confirm torrent recheck: @@ -2101,28 +2025,44 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Simple pread/pwrite - + Eenvoudige pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Relatief opslagpad omzetten in het juiste categoriepad in plaats van het standaardpad No action - + Geen actie Auto hide zero status filters - + Filters met nulstatus automatisch verbergen Interface - + Interface Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,19 +2441,19 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Web seed URL: - + Webseed-URL: Yes - + Ja Ratio / Time Active (in months), indicates how popular the torrent is - + Verhouding / tijd actief (in maanden), geeft aan hoe populair de torrent is Popularity: - + Populariteit: Apply to which filename part @@ -2521,7 +2461,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. No - + Nee Remove web seed @@ -2529,7 +2469,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Web seed editing - + Webseed bewerken Add web seeds... @@ -2537,7 +2477,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Private: - + Privé: @@ -2667,14 +2607,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.Completed (0) Voltooid (0) - - Resumed (0) - Hervat (0) - - - Paused (0) - Gepauzeerd (0) - Active (0) Actief (0) @@ -2703,14 +2635,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.Completed (%1) Voltooid (%1) - - Paused (%1) - Gepauzeerd (%1) - - - Resumed (%1) - Hervat (%1) - Active (%1) Actief (%1) @@ -2765,31 +2689,31 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Running (0) - + Actief (0) Stopped (0) - + Gestopt (0) Stopped (%1) - + Gestopt (%1) Running (%1) - + Actief (%1) Remove torrents - + Torrents verwijderen Start torrents - + Torrents starten Stop torrents - + Torrents stoppen @@ -2807,11 +2731,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.i.e: torrent size Grootte - - Done - % Done - Klaar - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,27 +2868,27 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Private - + Privé Progress - + Voortgang Info Hash v2 - + Info-hash v2 Info Hash v1 - + Info-hash v1 Incomplete Save Path - + Onvolledig opslagpad Popularity - + Populariteit Status Icon @@ -3109,10 +3028,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.e.g.: 1h 20m ago %1 geleden - - Paused - Gepauzeerd - Completed Voltooid @@ -3179,11 +3094,11 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Stopped - + Gestopt N/A - + N/B @@ -3227,21 +3142,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.Rename Naam wijzigen - - Resume - Resume/start the torrent - Hervatten - - - Force Resume - Force Resume/start the torrent - Geforceerd hervatten - - - Pause - Pause the torrent - Pauzeren - Limit share ratio... Deelverhouding begrenzen... @@ -3320,14 +3220,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.New Category Nieuwe categorie - - Location - Locatie - - - New name - Nieuwe naam - Set location Locatie instellen @@ -3340,18 +3232,10 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.Edit Category Categorie bewerken - - Save path - Opslagpad - Comma-separated tags: Kommagescheiden labels: - - Add Tags - Labels toevoegen - Tags Labels @@ -3414,11 +3298,11 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Force Start - + Geforceerd starten Save path: - + Opslagpad: Location: @@ -3426,19 +3310,19 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Stop - + Stoppen Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatische modus betekent dat verschillende torrent-eigenschappen (bijvoorbeeld opslagpad) bepaald zullen worden door de bijbehorende categorie. Start - + Starten New name: - + Nieuwe naam: Add tags @@ -3446,7 +3330,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Category: - + Categorie: @@ -3485,21 +3369,17 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. confirmDeletionDlg - - Also permanently delete the files - Bestanden ook permanent verwijderen - Remove torrent(s) Torrent(s) verwijderen Also remove the content files - + Ook de inhoud-bestanden verwijderen Remove tracker - + Tracker verwijderen @@ -3711,7 +3591,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Start a search above. - + Start hierboven een zoekopdracht. Max size prefix @@ -3775,25 +3655,21 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.Leechers Leechers - - Search engine - Zoekmachine - Seeders Seeders Published On - + Verschenen op Engine URL - + Engine-URL Engine - + Engine @@ -3860,14 +3736,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.Tag: Label: - - Pause torrents - Torrents pauzeren - - - Resume torrents - Torrents hervatten - Remove unused tags Niet-gebruikte labels verwijderen @@ -3886,11 +3754,11 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Start torrents - + Torrents starten Stop torrents - + Torrents stoppen @@ -4034,27 +3902,27 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Search has finished - + Zoeken is voltooid An error occurred during search... - + Er trad een fout op tijdens het zoeken... Close tab - + Tabblad sluiten Searching... - + Zoeken... Search aborted - + Zoeken afgebroken Close all tabs - + Alle tabbladen sluiten @@ -4168,7 +4036,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Edit feed URL... - + Feed-URL bewerken... Unable to update URL @@ -4182,6 +4050,14 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden.If word order is important use * instead of whitespace. Gebruik * in plaats van een spatie als woordvolgorde belangrijk is. - - Add Paused: - Gepauzeerd toevoegen: - Please type the name of the new download rule. Typ de naam van de nieuwe downloadregel. @@ -4441,50 +4313,34 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Add Stopped: - + Gestopt toevoegen: TrackerFiltersList - - Resume torrents - Torrents hervatten - - - All (%1) - Alle (%1) - - - Trackerless (%1) - Zonder trackers (%1) - - - Pause torrents - Torrents pauzeren - Remove torrents Torrents verwijderen All - + Alle Trackerless - + Zonder trackers Start torrents - + Torrents starten Remove tracker - + Tracker verwijderen Stop torrents - + Torrents stoppen @@ -4644,15 +4500,15 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Category Unable to edit category - + Kan categorie niet bewerken OK - + Ok Unable to create category - + Kan categorie niet aanmaken Unable to set category @@ -4663,11 +4519,11 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o CookiesDialog Domain - + Domein Manage Cookies - + Cookies beheren Add Cookie @@ -4675,52 +4531,52 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Remove - + Verwijderen Expiration Date - + Vervaldatum Value - + Waarde Name - + Naam Path - + Pad confirmAutoTMMDialog Enable automatic torrent management - + Automatisch torrent-beheer inschakelen Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Weet u zeker dat u automatisch torrent-beheer wilt inschakelen voor de geselecteerde torrent(s)? Mogelijk worden ze verplaatst. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Weet u zeker dat u de geselecteerde torrent(s) opnieuw wilt controleren? Recheck confirmation - + Bevestiging opnieuw controleren SearchWidget Close tab - + Tabblad sluiten @@ -4731,15 +4587,15 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Password - + Wachtwoord JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript vereist! U moet JavaScript inschakelen om de WebUI goed te laten werken Login - + Login Server response: @@ -4751,10 +4607,202 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Username - + Gebruikersnaam Invalid Username or Password. + Ongeldige gebruikersnaam of wachtwoord. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_oc.ts b/src/webui/www/translations/webui_oc.ts index 9ac151ccb..72f9c2851 100644 --- a/src/webui/www/translations/webui_oc.ts +++ b/src/webui/www/translations/webui_oc.ts @@ -76,7 +76,7 @@ Add torrent links - + Apondon de ligams cap a de torrents Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Suprimir las categorias inutilizadas - - Resume torrents - Aviar los torrents - - - Pause torrents - Metre en pausa los torrents - New Category Novèla Categoria @@ -151,10 +143,6 @@ Exit qBittorrent Quitter qBittorrent - - Only one link per line - Un sol ligam per linha - Global upload rate limit must be greater than 0 or disabled. Lo limit global per la velocitat de mandadís deu èsser superior a 0 o desactivat. @@ -228,10 +216,6 @@ Save files to location: Salvar los fichièrs dins : - - Cookie: - Cookie : - More information Mai d'informacions @@ -295,10 +279,6 @@ Logout Se desconnectar - - Download Torrents from their URLs or Magnet links - Telecargar los torrents dempuèi lors URLs o ligams Magnet - Upload local torrent Transferir un torrent local @@ -405,7 +385,7 @@ Remember choice - + Se remembrar de la causida Are you sure you want to remove these %1 torrents from the transfer list? @@ -417,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -490,10 +470,6 @@ Options... Opcions... - - Resume - Aviar - Top Toolbar Barra d'aisinas @@ -510,10 +486,6 @@ Donate! Far un don ! - - Resume All - Aviar tot - Statistics Estatisticas @@ -522,14 +494,6 @@ About A prepaus - - Pause - Metre en pausa - - - Pause All - Tout metre en pausa - Add Torrent File... Apondre un fichièr torrent… @@ -692,7 +656,7 @@ Stop - + Arrestar Use regular expression @@ -708,7 +672,7 @@ Manage Cookies... - + Gerir los Cookies... Unable to export torrent file @@ -716,7 +680,7 @@ Name - + Nom Would you like to stop all torrents? @@ -730,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -1203,10 +1171,6 @@ When adding a torrent - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1307,10 +1271,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -1925,7 +1885,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Automatic Use alternating row colors @@ -1937,7 +1897,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -1969,7 +1929,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + Torrents telecargats : Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2061,7 +2021,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + Pas cap d'accion Auto hide zero status filters @@ -2075,6 +2035,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2453,11 +2429,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + URL de la font web : Yes - + Òc Ratio / Time Active (in months), indicates how popular the torrent is @@ -2473,7 +2449,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Non Remove web seed @@ -2481,7 +2457,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Modificacion de la font web Add web seeds... @@ -2619,14 +2595,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Acabats (0) - - Resumed (0) - Aviats (0) - - - Paused (0) - En Pausa (0) - Active (0) Actius (0) @@ -2655,14 +2623,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Acabats (%1) - - Paused (%1) - En Pausa (%1) - - - Resumed (%1) - Aviats (%1) - Active (%1) Actius (%1) @@ -2759,11 +2719,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Talha - - Done - % Done - Progression - Status Torrent status (e.g. downloading, seeding, paused) @@ -2905,7 +2860,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Progression Info Hash v2 @@ -3061,10 +3016,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago i a %1 - - Paused - En pausa - Completed Acabat @@ -3135,7 +3086,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. N/A - + N/A @@ -3179,21 +3130,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Renomenar - - Resume - Resume/start the torrent - Aviar - - - Force Resume - Force Resume/start the torrent - Forçar la represa - - - Pause - Pause the torrent - Metre en pausa - Limit share ratio... Limitar lo ratio de partiment… @@ -3284,10 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category - - Save path - Camin de salvament - Comma-separated tags: @@ -3366,11 +3298,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Arrestar Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Lo mòde automatic significa que certanas proprietats del torrent (ex: lo dorsièr d'enregistrament) seràn decidits via la categoria associada Start @@ -3378,7 +3310,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Novèl nom : Add tags @@ -3386,7 +3318,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Categoria : @@ -3435,7 +3367,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Suprimir lo tracker @@ -3711,10 +3643,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Fonts parcialas - - Search engine - Motor de recèrca - Seeders Fonts completas @@ -3796,14 +3724,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: - - Pause torrents - Metre en pausa los torrents - - - Resume torrents - Aviar los torrents - Remove unused tags @@ -3970,11 +3890,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Recèrca acabada An error occurred during search... - + Una error s'es produita pendent la recèrca.. Close tab @@ -3982,11 +3902,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Searching... - + Recèrca... Search aborted - + Recèrca interrompuda Close all tabs @@ -4118,6 +4038,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4305,10 +4233,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. - - Add Paused: - Apondre en pausa : - Please type the name of the new download rule. Entratz lo nom de la novèla règla de telecargament. @@ -4381,29 +4305,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Aviar los torrents - - - All (%1) - Totes (%1) - - - Trackerless (%1) - Sens tracker (%1) - - - Pause torrents - Metre en pausa los torrents - Remove torrents All - + Totes Trackerless @@ -4415,7 +4323,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Suprimir lo tracker Stop torrents @@ -4583,7 +4491,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also OK - + D'acòrdi Unable to create category @@ -4598,11 +4506,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Domeni Manage Cookies - + Gerir los Cookies Add Cookie @@ -4614,19 +4522,19 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Expiration Date - + Data d'expiracion Value - + Valor Name - + Nom Path - + Camin @@ -4644,11 +4552,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Sètz segur que volètz reverificar lo o los torrent(s) seleccionat(s) ? Recheck confirmation - + Reverificar la confirmacion @@ -4666,7 +4574,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Senhal JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4674,7 +4582,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Identificant Server response: @@ -4690,6 +4598,198 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Invalid Username or Password. + Nom d'utilizaire o senhal invalid. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_pl.ts b/src/webui/www/translations/webui_pl.ts index 0a129534d..a46ffdf82 100644 --- a/src/webui/www/translations/webui_pl.ts +++ b/src/webui/www/translations/webui_pl.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Jeden odnośnik w wierszu (dozwolone są odnośniki HTTP, magnet oraz info hashe) Add torrent links - + Dodaj odnośniki do plików torrent Select .torrent files - + Wybierz pliki .torrent Torrent options - + Opcje torrentów @@ -112,14 +112,6 @@ Remove unused categories Usuń nieużywane kategorie - - Resume torrents - Wznów torrenty - - - Pause torrents - Wstrzymaj torrenty - New Category Nowa kategoria @@ -138,11 +130,11 @@ Start torrents - + Uruchom torrenty Stop torrents - + Zatrzymaj torrenty @@ -151,10 +143,6 @@ Exit qBittorrent Zakończ qBittorrent - - Only one link per line - Tylko jeden odnośnik w wierszu - Global upload rate limit must be greater than 0 or disabled. Ogólny limit prędkości wysyłania musi być większy od 0 lub wyłączony. @@ -228,10 +216,6 @@ Save files to location: Zapisz pliki w położeniu: - - Cookie: - Ciasteczko: - More information Więcej informacji @@ -295,10 +279,6 @@ Logout Wyloguj - - Download Torrents from their URLs or Magnet links - Pobierz torrenty z ich adresów URL albo odnośników magnet - Upload local torrent Wyślij lokalny plik torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nieprawidłowa nazwa kategorii:\nNie należy używać żadnych znaków specjalnych w nazwie kategorii. - - Unable to create category - Nie można utworzyć kategorii - Upload rate threshold must be greater than 0. Próg prędkości przesyłania musi być większy niż 0. @@ -383,10 +359,6 @@ Original author Pierwotny autor - - Are you sure you want to remove the selected torrents from the transfer list? - Czy na pewno usunąć wybrane pliki torrent z listy transferów? - The port used for the WebUI must be between 1 and 65535. Port, na którym działa interfejs WWW, musi być pomiędzy 1 a 65535. @@ -401,75 +373,75 @@ External IP: N/A - + Zewnętrzny adres IP: brak Reverse proxy setup examples - + Przykłady konfiguracji odwrotnego serwera proxy Could not contact qBittorrent - + Nie można nawiązać kontaktu z qBittorrent Remember choice - + Zapamiętaj wybór Are you sure you want to remove these %1 torrents from the transfer list? - + Czy na pewno usunąć te torrenty (w sumie: %1) z listy transferów? Unable to delete torrents. - + Nie można usunąć torrentów. URL - + URL External IP: %1%2 - + Zewnętrzny adres IP: %1%2 Edit web seed - + Edytuj seed sieciowy Are you sure you want to remove %1 from the transfer list? - + Czy na pewno chcesz usunąć %1 z listy transferów? Unable to set Auto Torrent Management for the selected torrents. - + Nie można ustawić automatycznego zarządzania torrentami dla wybranych torrentów. Unable to stop torrents. - + Nie można zatrzymać torrentów. Unable to download file - + Nie można pobrać pliku External IPs: %1, %2 - + Zewnętrzne adresy IP: %1, %2 Unable to recheck torrents. - + Nie można ponownie sprawdzić torrentów. List of web seeds to add (one per line): - + Lista seedów sieciowych do dodania (po jednym w wierszu): Unable to start torrents. - + Nie można uruchomić torrentów. Add web seeds - + Dodaj seedy sieciowe @@ -498,10 +470,6 @@ Options... Opcje... - - Resume - Wznów - Top Toolbar Górny pasek narzędziowy @@ -518,10 +486,6 @@ Donate! Wspomóż! - - Resume All - Wznów wszystkie - Statistics Statystyki @@ -530,14 +494,6 @@ About O programie - - Pause - Wstrzymaj - - - Pause All - Wstrzymaj wszystkie - Add Torrent File... Dodaj plik torrent... @@ -678,14 +634,6 @@ Remove Usuń - - Would you like to resume all torrents? - Czy chcesz wznowić wszystkie torrenty? - - - Would you like to pause all torrents? - Czy chcesz wstrzymać wszystkie torrenty? - Execution Log Dziennik programu @@ -700,50 +648,54 @@ Filter by: - + Filtruj według: Save Path - + Ścieżka zapisu Stop - + Zatrzymaj Use regular expression - + Użyj wyrażenia regularnego Would you like to start all torrents? - + Czy chcesz uruchomić wszystkie torrenty? Start - + Uruchom Manage Cookies... - + Zarządzaj ciasteczkami... Unable to export torrent file - + Nie można wyeksportować pliku torrent Name - + Nazwa Would you like to stop all torrents? - + Czy chcesz zatrzymać wszystkie torrenty? Start All - + Uruchom wszystkie Stop All + Zatrzymaj wszystkie + + + Torrent Creator @@ -773,10 +725,6 @@ Language Język - - User Interface Language: - Język interfejsu: - Email notification upon download completion Wyślij e-mail po ukończeniu pobierania @@ -793,10 +741,6 @@ Torrent Queueing Kolejkowanie torrentów - - Automatically add these trackers to new downloads: - Automatycznie dodaj te trackery do nowych pobierań: - Web User Interface (Remote control) Interfejs WWW (zdalne zarządzanie) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Informacja: hasło jest zapisywane bez szyfrowania + Informacja: hasło jest zapisywane bez szyfrowania μTP-TCP mixed mode algorithm: @@ -1261,7 +1205,7 @@ Anti-leech - Anty-pijawka + Antypijawka When ratio reaches @@ -1291,10 +1235,6 @@ Fastest upload Najszybsze wysyłanie - - Pause torrent - Wstrzymaj torrent - Remove torrent and its files Usuń torrent i jego pliki @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Zbanuj klienta po kolejnych niepowodzeniach: - - Enable cookie Secure flag (requires HTTPS) - Włącz flagę bezpieczeństwa ciasteczka (wymaga HTTPS) - Header: value pairs, one per line Nagłówek: pary wartości, po jednej w wierszu @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Obsługuj międzynarodowe nazwy domen (IDN): - - Run external program on torrent finished - Uruchom zewnętrzny program po ukończeniu torrenta - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ należy wpisać nazwy domen używane przez serwer interfejsu WWW. Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. - - Run external program on torrent added - Uruchom zewnętrzny program po dodaniu torrenta - HTTPS certificate should not be empty Certyfikat HTTPS nie powinien być pusty @@ -1727,10 +1655,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.days dni - - Log file - Plik dziennika - Behavior Zachowanie @@ -1945,182 +1869,198 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Color scheme: - + Schemat kolorów: Show external IP in status bar - + Pokaż zewnętrzny adres IP na pasku stanu Fetched trackers - + Pobrane trackery Confirm when deleting torrents - + Potwierdzaj usuwanie torrentów Ignore SSL errors: - + Ignoruj ​​błędy SSL: Dark - + Ciemny Delete files permanently - + Usuń pliki trwale Auto - + Automatyczny Use alternating row colors - + Użyj naprzemiennego kolorowania wierszy Display full announce URL in the Tracker column - + Wyświetl pełny adres URL rozgłoszenia w kolumnie Tracker URL: - + Adres URL: Transfer list - + Lista transferów The announce port must be between 0 and 65535. - + Port rozgłaszania musi mieścić się w zakresie od 0 do 65535. Light - + Jasny Automatically append these trackers to new downloads: - + Automatycznie dodawaj te trackery do nowych pobrań: Downloading torrents: - + Pobierane torrenty: Start / stop torrent - + Uruchom / zatrzymaj torrent Send test email - + Wyślij e-mail testowy Completed torrents: - + Ukończone torrenty: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Włącz flagę bezpieczeństwa ciasteczka (wymaga połączenia HTTPS lub localhost) When duplicate torrent is being added - + Gdy dodawany jest zduplikowany torrent Action on double-click - + Czynność podwójnego kliknięcia Save statistics interval: - + Interwał zapisu statystyk: Shows a confirmation dialog upon torrent deletion - + Wyświetla okno dialogowe potwierdzenia przy usuwaniu torrenta Run on torrent finished: - + Uruchom po ukończeniu torrenta: Attempted to send email. Check your inbox to confirm success - + Próbowano wysłać e-mail. Sprawdź skrzynkę odbiorczą, aby potwierdzić powodzenie Automatically append trackers from URL to new downloads: - + Automatycznie dodawaj trackery z adresu URL do nowych pobrań: Torrent content removing mode: - + Tryb usuwania zawartości torrenta: Move files to trash (if possible) - + Przenieś pliki do kosza (jeśli to możliwe) Stop torrent - + Zatrzymaj torrent Use Category paths in Manual Mode - + Użyj ścieżek kategorii w trybie ręcznym List of alternative WebUI - + Lista alternatywnych interfejsów WWW Run on torrent added: - + Uruchom po dodaniu torrenta: Port reported to trackers (requires restart) [0: listening port]: - + Port zgłoszony do trackerom (wymaga ponownego uruchomienia) [0: port nasłuchujący]: User interface language: - + Język interfejsu użytkownika: Merge trackers to existing torrent - + Scal trackery z istniejącym torrentem Confirm torrent recheck: - + Potwierdź ponowne sprawdzanie torrenta: Custom WebUI settings - + Ustawienia niestandardowego interfejsu WWW Following settings are WebUI only - + Poniższe ustawienia dotyczą wyłącznie interfejsu WWW Simple pread/pwrite - + Proste pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Rozwiąż relatywną ścieżkę zapisu z odpowiednią ścieżką kategorii zamiast domyślnej No action - + Brak czynności Auto hide zero status filters - + Automatyczne ukrywanie filtrów stanu zerowego Interface - + Interfejs Log Files + Plik dziennika + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Copy web seed URL - + Kopiuj adres URL seeda sieciowego Replace option - + Opcja zamiany Edit web seed URL... - + Edytuj adres URL seeda sieciowego... Web seed URL: - + Adres URL seeda sieciowego: Yes - + Tak Ratio / Time Active (in months), indicates how popular the torrent is - + Współczynnik / Czas aktywności (w miesiącach) wskazuje, jak popularny jest torrent Popularity: - + Popularność: Apply to which filename part - + Zastosuj do określonej części nazwy pliku No - + Nie Remove web seed - + Usuń seed sieciowy Web seed editing - + Edytowanie seeda sieciowego Add web seeds... - + Dodaj seedy sieciowe... Private: - + Prywatne: @@ -2667,14 +2607,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.Completed (0) Ukończone (0) - - Resumed (0) - Wznowione (0) - - - Paused (0) - Wstrzymane (0) - Active (0) Aktywne (0) @@ -2703,14 +2635,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.Completed (%1) Ukończone (%1) - - Paused (%1) - Wstrzymane (%1) - - - Resumed (%1) - Wznowione (%1) - Active (%1) Aktywne (%1) @@ -2765,31 +2689,31 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Running (0) - + Uruchomione (0) Stopped (0) - + Zatrzymane (0) Stopped (%1) - + Zatrzymane (%1) Running (%1) - + Uruchomione (%1) Remove torrents - + Usuń torrenty Start torrents - + Uruchom torrenty Stop torrents - + Zatrzymaj torrenty @@ -2807,11 +2731,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.i.e: torrent size Rozmiar - - Done - % Done - Ukończono - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Private - + Prywatne Progress - + Postęp Info Hash v2 - + Info hash v2 Info Hash v1 - + Info hash v1 Incomplete Save Path - + Niepełna ścieżka zapisu Popularity - + Popularność Status Icon - + Ikona stanu @@ -3109,10 +3028,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.e.g.: 1h 20m ago %1 temu - - Paused - Wstrzymano - Completed Ukończono @@ -3179,11 +3094,11 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Stopped - + Zatrzymany N/A - + Nie dotyczy @@ -3210,7 +3125,7 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Collapse/expand category - + Zwiń/rozwiń kategorię @@ -3227,21 +3142,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.Rename Zmień nazwę - - Resume - Resume/start the torrent - Wznów - - - Force Resume - Force Resume/start the torrent - Wymuś wznowienie - - - Pause - Pause the torrent - Wstrzymaj - Limit share ratio... Limituj współczynnik udziału... @@ -3320,14 +3220,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.New Category Nowa kategoria - - Location - Błąd położenia - - - New name - Nowa nazwa - Set location Ustaw położenie @@ -3340,18 +3232,10 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.Edit Category Edytuj kategorię - - Save path - Ścieżka zapisu - Comma-separated tags: Znaczniki rozdzielone przecinkami: - - Add Tags - Dodaj znaczniki - Tags Znaczniki @@ -3414,39 +3298,39 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Force Start - + Wymuś uruchomienie Save path: - + Ścieżka zapisu: Location: - + Położenie: Stop - + Zatrzymaj Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Tryb automatyczny oznacza, że różne właściwości torrenta (np. ścieżka zapisu) będą ustalane przez przyporządkowaną kategorię Start - + Uruchom New name: - + Nowa nazwa: Add tags - + Dodaj znaczniki Category: - + Kategoria: @@ -3485,21 +3369,17 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. confirmDeletionDlg - - Also permanently delete the files - Również trwale usuń pliki - Remove torrent(s) Usuń torrent(y) Also remove the content files - + Usuń również pliki z zawartością Remove tracker - + Usuń tracker @@ -3703,23 +3583,23 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Select category - + Wybierz kategorię Min size prefix - + Prefiks minimalnego rozmiaru Start a search above. - + Rozpocznij wyszukiwanie powyżej. Max size prefix - + Prefiks maksymalnego rozmiaru Select plugins - + Wybierz wtyczki @@ -3775,25 +3655,21 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.Leechers Pijawki - - Search engine - Wyszukiwarka - Seeders Seedujący Published On - + Opublikowano Engine URL - + Adres URL wyszukiwarki Engine - + Wyszukiwarka @@ -3860,14 +3736,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.Tag: Znacznik: - - Pause torrents - Wstrzymaj torrenty - - - Resume torrents - Wznów torrenty - Remove unused tags Usuń nieużywane znaczniki @@ -3886,11 +3754,11 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Start torrents - + Uruchom torrenty Stop torrents - + Zatrzymaj torrenty @@ -4034,27 +3902,27 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Search has finished - + Wyszukiwanie zakończone An error occurred during search... - + Wystąpił błąd podczas wyszukiwania... Close tab - + Zamknij kartę Searching... - + Wyszukiwanie... Search aborted - + Wyszukiwanie przerwane Close all tabs - + Zamknij wszystkie karty @@ -4168,18 +4036,26 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Edit feed URL... - + Edytuj adres URL kanału... Unable to update URL - + Nie można zaktualizować adresu URL URL is unchanged - + Adres URL nie uległ zmianie URL cannot be empty + Adres URL nie może być pusty + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'.If word order is important use * instead of whitespace. Jeśli kolejność słów jest ważna, użyj * zamiast odstępu. - - Add Paused: - Dodaj wstrzymane: - Please type the name of the new download rule. Wprowadź nazwę dla tworzonej reguły pobierania. @@ -4433,58 +4305,42 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Remove rule - + Usuń regułę Add rule - + Dodaj regułę Add Stopped: - + Dodaj zatrzymane: TrackerFiltersList - - Resume torrents - Wznów torrenty - - - All (%1) - Wszystkie (%1) - - - Trackerless (%1) - Bez trackera (%1) - - - Pause torrents - Wstrzymaj torrenty - Remove torrents Usuń torrenty All - + Wszystkie Trackerless - + Bez trackera Start torrents - + Uruchom torrenty Remove tracker - + Usuń tracker Stop torrents - + Zatrzymaj torrenty @@ -4637,124 +4493,316 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Czy na pewno chcesz usunąć tracker %1 ze wszystkich torrentów? Category Unable to edit category - + Nie można edytować kategorii OK - + OK Unable to create category - + Nie można utworzyć kategorii Unable to set category - + Nie można ustawić kategorii CookiesDialog Domain - + Domena Manage Cookies - + Zarządzaj ciasteczkami Add Cookie - + Dodaj ciasteczko Remove - + Usuń Expiration Date - + Termin ważności Value - + Wartość Name - + Nazwa Path - + Ścieżka confirmAutoTMMDialog Enable automatic torrent management - + Włącz automatyczne zarządzanie torrentem Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Czy na pewno chcesz włączyć automatyczne zarządzanie torrentem dla wybranego torrenta lub torrentów? Mogą zostać przeniesione. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Czy na pewno ponownie sprawdzić wybrane torrenty? Recheck confirmation - + Potwierdzenie ponownego sprawdzania SearchWidget Close tab - + Zamknij kartę Login qBittorrent WebUI - + Interfejsu WWW qBittorrent Password - + Hasło JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Wymagany JavaScript! Musisz włączyć obsługę JavaScript, aby interfejs WWW działał poprawnie Login - + Login Server response: - + Odpowiedź serwera: Unable to log in, server is probably unreachable. - + Nie można się zalogować, serwer jest prawdopodobnie niedostępny. Username - + Nazwa użytkownika Invalid Username or Password. + Nieprawidłowa nazwa użytkownika lub hasło. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_pt_BR.ts b/src/webui/www/translations/webui_pt_BR.ts index 9c26e78ec..f7a069b0b 100644 --- a/src/webui/www/translations/webui_pt_BR.ts +++ b/src/webui/www/translations/webui_pt_BR.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Um link por linha (links HTTP, links magnéticos e hashes das informações são suportados) Add torrent links - + Adicionar links dos torrents Select .torrent files - + Selecionar arquivos .torrent Torrent options - + Opções do torrent @@ -112,14 +112,6 @@ Remove unused categories Remover categorias não usadas - - Resume torrents - Retomar torrents - - - Pause torrents - Pausar torrents - New Category Nova categoria @@ -138,11 +130,11 @@ Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -151,10 +143,6 @@ Exit qBittorrent Sair do qBittorrent - - Only one link per line - Só um link por linha - Global upload rate limit must be greater than 0 or disabled. O limite da taxa global do upload deve ser maior do que 0 ou desativado. @@ -228,10 +216,6 @@ Save files to location: Salvar arquivos no local: - - Cookie: - Cookie: - More information Mais informações @@ -295,10 +279,6 @@ Logout Fazer logout - - Download Torrents from their URLs or Magnet links - Baixar torrents a partir das URLs ou links magnet deles - Upload local torrent Fazer upload do torrent local @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nome de categoria inválido:\nPor favor não use quaisquer caracteres especiais no nome da categoria. - - Unable to create category - Incapaz de criar a categoria - Upload rate threshold must be greater than 0. O limite da taxa de upload deve ser maior do que 0. @@ -383,10 +359,6 @@ Original author Autor original - - Are you sure you want to remove the selected torrents from the transfer list? - Deseja realmente remover os torrents selecionados da lista de transferências? - The port used for the WebUI must be between 1 and 65535. A porta utilizada para a interface web tem que estar compreendida entre 1 e 65535. @@ -401,75 +373,75 @@ External IP: N/A - + IP externo: N/A Reverse proxy setup examples - + Exemplos de configuração de proxy reverso Could not contact qBittorrent - + Não foi possível contatar o qBittorrent Remember choice - + Lembrar escolha Are you sure you want to remove these %1 torrents from the transfer list? - + Deseja realmente remover os %1 torrents selecionados da lista de transferências? Unable to delete torrents. - + Não foi possível excluir os torrents. URL - + URL External IP: %1%2 - + IP externo: %1%2 Edit web seed - + Editar seed da web Are you sure you want to remove %1 from the transfer list? - + Deseja realmente remover %1 da lista de transferências? Unable to set Auto Torrent Management for the selected torrents. - + Não é possível definir o Gerenciamento Automático de Torrents para os torrents selecionados. Unable to stop torrents. - + Não foi possível parar os torrents. Unable to download file - + Não foi possível baixar o arquivo External IPs: %1, %2 - + IPs externos: %1, %2 Unable to recheck torrents. - + Não foi possível verificar novamente os torrents. List of web seeds to add (one per line): - + Lista de seeds da web para adicionar (um por linha): Unable to start torrents. - + Não foi possível iniciar os torrents. Add web seeds - + Adicionar seeds da web @@ -498,10 +470,6 @@ Options... Opções... - - Resume - Retomar - Top Toolbar Barra de Ferramentas no Topo @@ -518,10 +486,6 @@ Donate! Doar! - - Resume All - Retomar Todos - Statistics Estatísticas @@ -530,14 +494,6 @@ About Sobre - - Pause - Pausar - - - Pause All - Pausar Todos - Add Torrent File... Adicionar Arquivo Torrent... @@ -678,14 +634,6 @@ Remove Remover - - Would you like to resume all torrents? - Você gostaria de retomar todos os torrents? - - - Would you like to pause all torrents? - Você gostaria de pausar todos os torrents? - Execution Log Registro de execução @@ -700,50 +648,54 @@ Filter by: - + Filtrar por: Save Path - + Caminho do salvamento Stop - + Parar Use regular expression - + Usar expressão regular Would you like to start all torrents? - + Gostaria de iniciar todos os torrents? Start - + Iniciar Manage Cookies... - + Gerenciar Cookies... Unable to export torrent file - + Não foi possível exportar o arquivo torrent Name - + Nome Would you like to stop all torrents? - + Gostaria de parar todos os torrents? Start All - + Iniciar todos Stop All + Parar todos + + + Torrent Creator @@ -773,10 +725,6 @@ Language Idioma - - User Interface Language: - Idioma da interface de usuário: - Email notification upon download completion Notificação por email ao completar o download @@ -793,10 +741,6 @@ Torrent Queueing Torrents na Fila - - Automatically add these trackers to new downloads: - Automaticamente adicionar estes trackers aos novos downloads: - Web User Interface (Remote control) Interface de Usuário da Web (Controle remoto) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Informação: A senha é salva desencriptada + Informação: A senha é salva desencriptada μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Upload mais rápido - - Pause torrent - Pausar torrent - Remove torrent and its files Remover o torrent e seus arquivos @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Banir cliente após falhas consecutivas: - - Enable cookie Secure flag (requires HTTPS) - Ativar bandeira segura do cookie (requer HTTPS) - Header: value pairs, one per line Cabeçalho: pares de valores, um por linha @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Suporte a nome internacionalizado de domínio (IDN): - - Run external program on torrent finished - Executar programa externo ao concluir o torrent - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ você deve colocar nomes de domínio usados pelo servidor WebUI. Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. - - Run external program on torrent added - Executar programa externo ao adicionar o torrent - HTTPS certificate should not be empty O certificado HTTPS não deve estar vazio @@ -1727,10 +1655,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. days dias - - Log file - Arquivo de log - Behavior Comportamento @@ -1945,182 +1869,198 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Color scheme: - + Esquema de cor: Show external IP in status bar - + Mostrar IP externo na barra de status Fetched trackers - + Rastreadores buscados Confirm when deleting torrents - + Confirmar quando apagar torrents Ignore SSL errors: - + Ignorar erros SSL: Dark - + Escuro Delete files permanently - + Excluir arquivos permanentemente Auto - + Auto Use alternating row colors - + Usar cores alternantes nas linhas Display full announce URL in the Tracker column - + Exibir URL de anúncio completo na coluna Rastreador URL: - + URL: Transfer list - + Lista de transferência The announce port must be between 0 and 65535. - + A porta de anúncio deve estar entre 0 e 65535. Light - + Claro Automatically append these trackers to new downloads: - + Automaticamente adicionar estes rastreadores aos novos downloads: Downloading torrents: - + Baixando torrents: Start / stop torrent - + Iniciar / Parar Torrent Send test email - + Enviar e-mail de teste Completed torrents: - + Torrents completados: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Habilitar sinalizador de cookie seguro (requer conexão HTTPS ou localhost) When duplicate torrent is being added - + Quando um torrent duplicado for adicionado Action on double-click - + Ação do duplo clique Save statistics interval: - + Intervalo para salvar estatísticas: Shows a confirmation dialog upon torrent deletion - + Mostra um diálogo de confirmação ao apagar o torrent Run on torrent finished: - + Executar ao concluir o torrent: Attempted to send email. Check your inbox to confirm success - + Tentativa de enviar e-mail. Verifique sua caixa de entrada para confirmar o sucesso Automatically append trackers from URL to new downloads: - + Automaticamente adicionar estes rastreadores do URL aos novos downloads: Torrent content removing mode: - + Modo de remoção de conteúdo do torrent: Move files to trash (if possible) - + Mover arquivos para a Lixeira (se possível) Stop torrent - + Parar torrent Use Category paths in Manual Mode - + Usar os caminhos da Categoria no Modo Manual List of alternative WebUI - + Lista de interface web alternativa Run on torrent added: - + Executar ao adicionar o torrent: Port reported to trackers (requires restart) [0: listening port]: - + Porta reportada aos trackers (necessário reiniciar) [0: porta de escuta]: User interface language: - + Idioma da interface do usuário: Merge trackers to existing torrent - + Mesclar rastreadores ao torrent existente Confirm torrent recheck: - + Confirmar nova verificação do torrent: Custom WebUI settings - + Configurações personalizadas da WebUI Following settings are WebUI only - + As configurações a seguir são apenas para a WebUI Simple pread/pwrite - + Pread/pwrite simples Resolve relative Save Path against appropriate Category path instead of Default one - + Resolver o Caminho de Salvamento relativo contra o Caminho da Categoria apropriado ao invés do caminho Padrão No action - + Nenhuma ação Auto hide zero status filters - + Ocultar filtro de status zero Interface - + Interface Log Files + Arquivos do log + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Copy web seed URL - + Copiar URL do seed da web Replace option - + Substituir opção Edit web seed URL... - + Editar a URL do seed da web... Web seed URL: - + URL da semente da web: Yes - + Sim Ratio / Time Active (in months), indicates how popular the torrent is - + Proporção / Tempo ativo (em meses), indica o quão popular o torrent é Popularity: - + Popularidade: Apply to which filename part - + Aplicar a qual parte do nome do arquivo No - + Não Remove web seed - + Remover seed da web Web seed editing - + Editando a semente da web Add web seeds... - + Adicionar seeds da web... Private: - + Privado: @@ -2667,14 +2607,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Completed (0) Completado (0) - - Resumed (0) - Retomado (0) - - - Paused (0) - Pausado (0) - Active (0) Ativo (0) @@ -2703,14 +2635,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Completed (%1) Completado (%1) - - Paused (%1) - Pausado (%1) - - - Resumed (%1) - Retomado (%1) - Active (%1) Ativo (%1) @@ -2765,31 +2689,31 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Running (0) - + Em andamento (0) Stopped (0) - + Parado (0) Stopped (%1) - + Parado (%1) Running (%1) - + Em andamento (%1) Remove torrents - + Remover torrents Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -2807,11 +2731,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. i.e: torrent size Tamanho - - Done - % Done - Concluido - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Private - + Privado Progress - + Progresso Info Hash v2 - + Informações do Hash v2 Info Hash v1 - + Informações do Hash v1 Incomplete Save Path - + Caminho de salvamento incompleto Popularity - + Popularidade Status Icon - + Ícone de status @@ -3109,10 +3028,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. e.g.: 1h 20m ago %1 atrás - - Paused - Pausado - Completed Completado @@ -3179,11 +3094,11 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Stopped - + Parado N/A - + N/D @@ -3210,7 +3125,7 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Collapse/expand category - + Recolher/expandir categoria @@ -3227,21 +3142,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Rename Renomear - - Resume - Resume/start the torrent - Retomar - - - Force Resume - Force Resume/start the torrent - Forçar Retomada - - - Pause - Pause the torrent - Pausar - Limit share ratio... Limitar proporção do compartilhamento... @@ -3320,14 +3220,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. New Category Nova Categoria - - Location - Local - - - New name - Novo nome - Set location Definir local @@ -3340,18 +3232,10 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Edit Category Editar Categoria - - Save path - Caminho do salvamento - Comma-separated tags: Etiquetas separadas por vírgulas: - - Add Tags - Adicionar etiquetas - Tags Etiquetas @@ -3414,39 +3298,39 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Force Start - + Forçar início Save path: - + Caminho do salvamento: Location: - + Local: Stop - + Parar Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + O modo automático significa que várias propriedades do torrent (ex: caminho do salvamento) serão decididos pela categoria associada Start - + Iniciar New name: - + Novo nome: Add tags - + Adicionar etiquetas Category: - + Categoria: @@ -3485,21 +3369,17 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Também excluir permanentemente os arquivos - Remove torrent(s) Remover torrent(s) Also remove the content files - + Remover também os arquivos de conteúdo Remove tracker - + Remover rastreador @@ -3703,23 +3583,23 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Select category - + Selecionar categoria Min size prefix - + Prefixo de tamanho máximo Start a search above. - + Inicie uma pesquisa acima. Max size prefix - + Prefixo de tamanho mínimo Select plugins - + Selecionar plugins @@ -3775,25 +3655,21 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Leechers Leechers - - Search engine - Motor de busca - Seeders Seeders Published On - + Publicado em Engine URL - + URL do mecanismo Engine - + Mecanismo @@ -3860,14 +3736,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Tag: Etiqueta: - - Pause torrents - Pausar torrents - - - Resume torrents - Retomar torrents - Remove unused tags Remover etiquetas não usadas @@ -3886,11 +3754,11 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -4034,27 +3902,27 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Search has finished - + A busca foi concluída An error occurred during search... - + Um erro ocorreu durante a busca... Close tab - + Fechar aba Searching... - + Procurando... Search aborted - + Busca abortada Close all tabs - + Fechar todas as abas @@ -4168,18 +4036,26 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Edit feed URL... - + Editar URL do feed... Unable to update URL - + Não foi possível atualizar o URL URL is unchanged - + O URL não foi alterado URL cannot be empty + O URL não pode estar vazi + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. If word order is important use * instead of whitespace. Se as ordem das palavras é importante, use * ao invés de espaço em branco. - - Add Paused: - Adicionar pausado: - Please type the name of the new download rule. Por favor digite o nome da nova regra de download. @@ -4433,58 +4305,42 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Remove rule - + Remover regra Add rule - + Adicionar regra Add Stopped: - + Adicionar parado(s): TrackerFiltersList - - Resume torrents - Retomar torrents - - - All (%1) - Todos (%1) - - - Trackerless (%1) - Sem tracker (%1) - - - Pause torrents - Pausar torrents - Remove torrents Remover torrents All - + Tudo Trackerless - + Sem tracker Start torrents - + Iniciar torrents Remove tracker - + Remover rastreador Stop torrents - + Parar torrents @@ -4637,124 +4493,316 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Tem certeza de que deseja remover o rastreador %1 de todos os torrents? Category Unable to edit category - + Incapaz de editar a categoria OK - + OK Unable to create category - + Incapaz de criar a categoria Unable to set category - + Não foi possível definir a categoria CookiesDialog Domain - + Domínio Manage Cookies - + Gerenciar Cookies Add Cookie - + Adicionar cookie Remove - + Remover Expiration Date - + Data de expiração Value - + Valor Name - + Nome Path - + Caminho confirmAutoTMMDialog Enable automatic torrent management - + Ativar gerenciamento automático dos torrents Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Você tem certeza que você quer ativar o gerenciamento automático dos torrents para os torrents selecionados? Eles podem ser realocados. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Você tem certeza que você quer verificar de novo o(s) torrent(s) selecionado(s)? Recheck confirmation - + Confirmação da nova verificação SearchWidget Close tab - + Fechar aba Login qBittorrent WebUI - + WebUI do qBittorrent Password - + Senha JavaScript Required! You must enable JavaScript for the WebUI to work properly - + É necessário o JavaScript! Deverá ativar o JavaScript para a interface web de forma a poder funcionar corretamente Login - + Login Server response: - + Resposta do servidor: Unable to log in, server is probably unreachable. - + Não foi possível fazer login, o servidor provavelmente está inacessível. Username - + Nome de usuário Invalid Username or Password. + Nome de usuário ou senha inválidos. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_pt_PT.ts b/src/webui/www/translations/webui_pt_PT.ts index 749846dd2..e2d68cd63 100644 --- a/src/webui/www/translations/webui_pt_PT.ts +++ b/src/webui/www/translations/webui_pt_PT.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Uma ligação por linha (são suportados ligações HTTP, ligações magnet e info-hashes) Add torrent links - + Adicionar ligações torrent Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Remover categorias não utilizadas - - Resume torrents - Retomar torrents - - - Pause torrents - Parar torrents - New Category Nova categoria @@ -138,11 +130,11 @@ Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -151,10 +143,6 @@ Exit qBittorrent Sair do qBittorrent - - Only one link per line - Apenas uma ligação por linha - Global upload rate limit must be greater than 0 or disabled. O limite do rácio global para uploads tem que ser superior a 0 ou estar inativo. @@ -228,10 +216,6 @@ Save files to location: Guardar ficheiros em: - - Cookie: - Cookie: - More information Mais informações @@ -295,10 +279,6 @@ Logout Terminar sessão - - Download Torrents from their URLs or Magnet links - Fazer o download de torrents a partir dos seus URLs ou de ligações magnet - Upload local torrent Fazer o upload de torrent local @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nome de categoria inválido:\nPor favor, não utilize nenhum caracter especial no nome da categoria. - - Unable to create category - Não foi possível criar a categoria - Upload rate threshold must be greater than 0. O rácio de upload deverá ser superior a 0. @@ -383,10 +359,6 @@ Original author Autor original - - Are you sure you want to remove the selected torrents from the transfer list? - Quer remover os torrents selecionados da lista de transferências? - The port used for the WebUI must be between 1 and 65535. A porta utilizada para a interface web tem que estar compreendida entre 1 e 65535. @@ -409,15 +381,15 @@ Could not contact qBittorrent - + Não foi possível contatar o qBittorrent Remember choice - + Memorizar escolha Are you sure you want to remove these %1 torrents from the transfer list? - + Quer remover estes %1 torrents selecionados da lista de transferências? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -498,10 +470,6 @@ Options... Opções... - - Resume - Retomar - Top Toolbar Barra superior @@ -518,10 +486,6 @@ Donate! Doar! - - Resume All - Retomar tudo - Statistics Estatísticas @@ -530,14 +494,6 @@ About Acerca - - Pause - Pausar - - - Pause All - Pausar tudo - Add Torrent File... Adicionar ficheiro torrent... @@ -678,14 +634,6 @@ Remove Remover - - Would you like to resume all torrents? - Gostaria de retomar todos os torrents? - - - Would you like to pause all torrents? - Gostaria de pausar todos os torrents? - Execution Log Registo de execução @@ -700,15 +648,15 @@ Filter by: - + Filtrar por: Save Path - + Guardar em Stop - + Parar Use regular expression @@ -716,15 +664,15 @@ Would you like to start all torrents? - + Gostaria de iniciar todos os torrents? Start - + Iniciar Manage Cookies... - + Gerir cookies... Unable to export torrent file @@ -732,18 +680,22 @@ Name - + Nome Would you like to stop all torrents? - + Gostaria de parar todos os torrents? Start All - + Iniciar todos Stop All + Parar todos + + + Torrent Creator @@ -773,10 +725,6 @@ Language Idioma - - User Interface Language: - Idioma da interface do utilizador: - Email notification upon download completion Enviar notificação por e-mail ao terminar o download @@ -793,10 +741,6 @@ Torrent Queueing Fila de torrents - - Automatically add these trackers to new downloads: - Adicionar automaticamente estes trackers às novas transferências: - Web User Interface (Remote control) Interface web do utilizador (controlo remoto) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Informação: A palavra-passe é guardada sem encriptação + Informação: A palavra-passe é guardada sem encriptação μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Upload mais rápido - - Pause torrent - Pausar torrent - Remove torrent and its files Remover o torrent e os seus ficheiros @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Banir cliente depois de várias falhas consecutivas: - - Enable cookie Secure flag (requires HTTPS) - Ativar cookie Flag segura (requer HTTPS) - Header: value pairs, one per line Cabeçalho: pares de valores, um por linha @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Suporte a nome internacionalizado de domínio (IDN): - - Run external program on torrent finished - Executar programa externo ao concluir o torrent - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ você deverá colocar os nomes de domínio usados pelo servidor da interface web Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. - - Run external program on torrent added - Executar programa externo ao adicionar o torrent - HTTPS certificate should not be empty O certificado HTTPS não deverá estar vazio @@ -1727,10 +1655,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.days dias - - Log file - Ficheiro de registo - Behavior Comportamento @@ -1957,7 +1881,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Confirm when deleting torrents - + Confirmar eliminação de torrents Ignore SSL errors: @@ -1969,15 +1893,15 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Delete files permanently - + Eliminar ficheiros permanentemente Auto - + Automático Use alternating row colors - + Utilizar cores alternadas para as linhas Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. URL: - + URL: Transfer list @@ -2001,11 +1925,11 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Automatically append these trackers to new downloads: - + Automaticamente adicionar estes rastreadores às novas transferências: Downloading torrents: - + A transferir torrents: Start / stop torrent @@ -2013,11 +1937,11 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Send test email - + Enviar e-mail de teste Completed torrents: - + Torrents completos: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. When duplicate torrent is being added - + Quando um torrent duplicado for adicionado Action on double-click - + Ação do duplo clique Save statistics interval: @@ -2037,7 +1961,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Shows a confirmation dialog upon torrent deletion - + Exibe um diálogo de confirmação durante a eliminação de torrents Run on torrent finished: @@ -2045,7 +1969,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Attempted to send email. Check your inbox to confirm success - + Tentativa de enviar e-mail. Verifique a sua caixa de entrada para confirmar Automatically append trackers from URL to new downloads: @@ -2053,19 +1977,19 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Torrent content removing mode: - + Modo de remoção de conteúdo do torrent: Move files to trash (if possible) - + Mover ficheiros para o lixo (se possível) Stop torrent - + Parar torrent Use Category paths in Manual Mode - + Utilizar os caminhos de 'Categoria' no 'Modo manual' List of alternative WebUI @@ -2085,7 +2009,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Merge trackers to existing torrent - + Unir rastreadores ao torrent existente Confirm torrent recheck: @@ -2101,28 +2025,44 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Simple pread/pwrite - + Pread/pwrite simples Resolve relative Save Path against appropriate Category path instead of Default one - + Resolver o 'Caminho para guardar' relativo contra o 'Caminho da categoria' apropriado ao invés do 'Caminho padrão' No action - + Nenhuma ação Auto hide zero status filters - + Ocultar filtro de estado zero Interface - + Interface Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,19 +2441,19 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Web seed URL: - + URL de sementes da web: Yes - + Sim Ratio / Time Active (in months), indicates how popular the torrent is - + Proporção / Tempo ativo (em meses), indica o quão popular o torrent é Popularity: - + Popularidade: Apply to which filename part @@ -2521,7 +2461,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. No - + Não Remove web seed @@ -2529,7 +2469,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Web seed editing - + Edição de sementes web Add web seeds... @@ -2537,7 +2477,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Private: - + Privado: @@ -2667,14 +2607,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.Completed (0) Terminado (0) - - Resumed (0) - Retomado (0) - - - Paused (0) - Em pausa (0) - Active (0) Ativos (0) @@ -2703,14 +2635,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.Completed (%1) Terminados (%1) - - Paused (%1) - Em pausa (%1) - - - Resumed (%1) - Retomados (%1) - Active (%1) Ativos (%1) @@ -2765,31 +2689,31 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Running (0) - + Em execução (0) Stopped (0) - + Parado (0) Stopped (%1) - + Parado (%1) Running (%1) - + Em execução (%1) Remove torrents - + Remover torrents Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -2807,11 +2731,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.i.e: torrent size Tamanho - - Done - % Done - Concluído - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,27 +2868,27 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Private - + Privado Progress - + Evolução Info Hash v2 - + Informação do Hash v2 Info Hash v1 - + Informação do Hash v1 Incomplete Save Path - + Caminho do "Guardar em" incompleto Popularity - + Popularidade Status Icon @@ -3109,10 +3028,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.e.g.: 1h 20m ago %1 atrás - - Paused - Em pausa - Completed Terminado(s) @@ -3179,11 +3094,11 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Stopped - + Parado N/A - + N/D @@ -3227,21 +3142,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.Rename Renomear - - Resume - Resume/start the torrent - Retomar - - - Force Resume - Force Resume/start the torrent - Forçar continuação - - - Pause - Pause the torrent - Pausar - Limit share ratio... Limitar o rácio de partilha... @@ -3320,14 +3220,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.New Category Nova categoria - - Location - Localização - - - New name - Novo nome - Set location Definir localização @@ -3340,18 +3232,10 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.Edit Category Editar categoria - - Save path - Guardar em - Comma-separated tags: Etiquetas separadas por virgulas: - - Add Tags - Adicionar etiquetas - Tags Etiquetas @@ -3414,11 +3298,11 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Force Start - + Forçar início Save path: - + Guardar em: Location: @@ -3426,19 +3310,19 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Stop - + Parar Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + O modo automático significa que várias propriedades do torrent (ex: salvar caminho) serão decididas pela categoria associada Start - + Iniciar New name: - + Novo nome: Add tags @@ -3446,7 +3330,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Category: - + Categoria: @@ -3485,21 +3369,17 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. confirmDeletionDlg - - Also permanently delete the files - Também eliminar permanentemente os ficheiros - Remove torrent(s) Remover torrent(s) Also remove the content files - + Remover também os ficheiros de conteúdo Remove tracker - + Remover tracker @@ -3711,7 +3591,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Start a search above. - + Inicie uma pesquisa acima. Max size prefix @@ -3775,17 +3655,13 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.Leechers Sanguessugas - - Search engine - Motor de pesquisa - Seeders Semeadores Published On - + Publicado em Engine URL @@ -3860,14 +3736,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.Tag: Etiqueta: - - Pause torrents - Pausar torrents - - - Resume torrents - Retomar torrents - Remove unused tags Remover etiquetas não utilizadas @@ -3886,11 +3754,11 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Start torrents - + Iniciar torrents Stop torrents - + Parar torrents @@ -4034,27 +3902,27 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Search has finished - + A pesquisa terminou An error occurred during search... - + Ocorreu um erro durante a procura... Close tab - + Fechar separador Searching... - + A pesquisar... Search aborted - + Pesquisa abortada Close all tabs - + Fechar todos os separadores @@ -4168,7 +4036,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Edit feed URL... - + Editar URL do feed... Unable to update URL @@ -4182,6 +4050,14 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'.If word order is important use * instead of whitespace. Se a ordem das palavras é importante, utilize * em vez de espaço em branco. - - Add Paused: - Adicionar em pausa: - Please type the name of the new download rule. Por favor, escreva o nome da nova regra de transferência. @@ -4441,50 +4313,34 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Add Stopped: - + Adicionar parado(s): TrackerFiltersList - - Resume torrents - Retomar torrents - - - All (%1) - Tudo (%1) - - - Trackerless (%1) - Sem rastreio (%1) - - - Pause torrents - Parar torrents - Remove torrents Remover torrents All - + Tudo Trackerless - + Sem tracker Start torrents - + Iniciar torrents Remove tracker - + Remover tracker Stop torrents - + Parar torrents @@ -4644,15 +4500,15 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Category Unable to edit category - + Não foi possível editar a categoria OK - + Aceitar Unable to create category - + Não foi possível criar a categoria Unable to set category @@ -4663,11 +4519,11 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para CookiesDialog Domain - + Domínio Manage Cookies - + Gerir cookies Add Cookie @@ -4675,52 +4531,52 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Remove - + Remover Expiration Date - + Expira a Value - + Valor Name - + Nome Path - + Caminho confirmAutoTMMDialog Enable automatic torrent management - + Ativar a gestão automática dos torrents Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Tem a certeza que deseja ativar o gestor automático dos torrents para os torrents selecionados? Eles poderão ser realocados. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Tem a certeza de que deseja reverificar o(s) torrent(s) selecionado(s)? Recheck confirmation - + Confirmação de reverificação SearchWidget Close tab - + Fechar separador @@ -4731,15 +4587,15 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Password - + Palavra-passe JavaScript Required! You must enable JavaScript for the WebUI to work properly - + É necessário o JavaScript! Deverá ativar o JavaScript para a interface web de forma a poder funcionar corretamente Login - + Iniciar sessão Server response: @@ -4751,10 +4607,202 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Username - + Nome de utilizador Invalid Username or Password. + Palavra-passe ou nome de utilizador inválido. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ro.ts b/src/webui/www/translations/webui_ro.ts index ed9abc7ce..0831acb55 100644 --- a/src/webui/www/translations/webui_ro.ts +++ b/src/webui/www/translations/webui_ro.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Una per linie ( sunt sprijinite legăturile HTTP, legăturile Magnet și informațiile index) Add torrent links - + Adaugă legături torent Select .torrent files @@ -84,7 +84,7 @@ Torrent options - + Opțiuni torent @@ -112,14 +112,6 @@ Remove unused categories Elimină categoriile neutilizate - - Resume torrents - Reia torentele - - - Pause torrents - Întrerupe torentele - New Category Categorie nouă @@ -151,10 +143,6 @@ Exit qBittorrent Închide qBittorrent - - Only one link per line - Doar o legătură pe linie - Global upload rate limit must be greater than 0 or disabled. Limita ratei de încărcare globale trebuie să fie mai mare ca 0 sau dezactivată. @@ -228,10 +216,6 @@ Save files to location: Salvează fișierele la amplasarea: - - Cookie: - Cookie: - More information Informații suplimentare @@ -295,10 +279,6 @@ Logout Ieși - - Download Torrents from their URLs or Magnet links - Descarcă torrente de la adrese URL sau legături magnet - Upload local torrent Încarcă torent local @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Nume de categorie incorect: Nu folositi caractere speciale pentru numele categoriei. - - Unable to create category - Categoria nu a putut fi creată - Upload rate threshold must be greater than 0. Limita de upload trebuie sa fie mai mare de 0. @@ -383,10 +359,6 @@ Original author Autor original - - Are you sure you want to remove the selected torrents from the transfer list? - Sigur doriți să eliminați torentele alese din lista de transferuri? - The port used for the WebUI must be between 1 and 65535. @@ -413,11 +385,11 @@ Remember choice - + Ține minte alegerea Are you sure you want to remove these %1 torrents from the transfer list? - + Sigur doriți să eliminați aceste %1 torente din lista de transferuri? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -498,10 +470,6 @@ Options... Opțiuni… - - Resume - Reia - Top Toolbar Bara de unelte superioară @@ -518,10 +486,6 @@ Donate! Donați! - - Resume All - Reia toate - Statistics Statistici @@ -530,14 +494,6 @@ About Despre - - Pause - Întrerupe - - - Pause All - Întrerupe toate - Add Torrent File... Adaugă fișier torrent… @@ -678,14 +634,6 @@ Remove Elimină - - Would you like to resume all torrents? - Doriți să reluați toate torentele? - - - Would you like to pause all torrents? - Doriți să întrerupeți toate torentele? - Execution Log Jurnal de execuție @@ -700,15 +648,15 @@ Filter by: - + Filtrare după: Save Path - + Cale de salvare Stop - + Oprește Use regular expression @@ -724,7 +672,7 @@ Manage Cookies... - + Gestionare fișiere cookie... Unable to export torrent file @@ -732,7 +680,7 @@ Name - + Nume Would you like to stop all torrents? @@ -746,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language Limbă - - User Interface Language: - Limba interfeței cu utilizatorul: - Email notification upon download completion Trimite notificări prin email la finalizarea descărcării @@ -793,10 +741,6 @@ Torrent Queueing Coadă torente - - Automatically add these trackers to new downloads: - Adaugă automat aceste urmăritoare la noile descărcări: - Web User Interface (Remote control) Interfață utilizator Web (Control la distanță) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Informație: Parola este salvată fără criptare + Informație: Parola este salvată fără criptare μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Încărcarea cea mai rapidă - - Pause torrent - Întrerupe torentul - Remove torrent and its files Elimină torentul și fișierele acestuia @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Interzice clientul după eșecuri consecutive: - - Enable cookie Secure flag (requires HTTPS) - Activează fanionul de securitate pentru cookie (necesită HTTPS) - Header: value pairs, one per line @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Susține nume de domenii internaționale (IDN): - - Run external program on torrent finished - Rulează program extern la încheierea torentului - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1655,10 +1587,6 @@ you should put in domain names used by WebUI server. Use ';' to split multiple entries. Can use wildcard '*'. - - Run external program on torrent added - Rulează program extern la adăugarea torentului - HTTPS certificate should not be empty Certificatele HTTPS trebuie să nu fie goale @@ -1723,10 +1651,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days zile - - Log file - Fișier jurnal - Behavior Comportament @@ -1953,7 +1877,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Cere confirmare la ștergerea torentelor Ignore SSL errors: @@ -1965,15 +1889,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Delete files permanently - + Șterge permanent fișiere Auto - + Automat Use alternating row colors - + Utilizează culori de rând alternative Display full announce URL in the Tracker column @@ -1981,7 +1905,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + Adresă URL: Transfer list @@ -2001,7 +1925,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Torente în curs de descărcare: Start / stop torrent @@ -2013,7 +1937,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + Torente încheiate: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,7 +1949,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + Acțiune la clic dublu Save statistics interval: @@ -2053,7 +1977,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Move files to trash (if possible) - + Mută fișiere la gunoi (dacă e posibil) Stop torrent @@ -2081,7 +2005,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Merge trackers to existing torrent - + Combină urmăritoarele unui torent existent Confirm torrent recheck: @@ -2105,7 +2029,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + Nicio acțiune Auto hide zero status filters @@ -2113,12 +2037,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + Interfață Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2497,11 +2437,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + URL sursă Web: Yes - + Da Ratio / Time Active (in months), indicates how popular the torrent is @@ -2517,7 +2457,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Nu Remove web seed @@ -2525,7 +2465,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + Editare sursă Web Add web seeds... @@ -2663,14 +2603,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Încheiate (0) - - Resumed (0) - Reluate (0) - - - Paused (0) - Suspendate (0) - Active (0) Active (0) @@ -2699,14 +2631,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Încheiate (%1) - - Paused (%1) - Suspendate (%1) - - - Resumed (%1) - Reluate (%1) - Active (%1) Active (%1) @@ -2777,7 +2701,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + Elimină torentele Start torrents @@ -2803,11 +2727,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Dimensiune - - Done - % Done - Gata - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,19 +2868,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Progres Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Cale de salvare incompletă Popularity @@ -3105,10 +3024,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago acum %1 - - Paused - Întrerupt - Completed Încheiat @@ -3175,11 +3090,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Oprită N/A - + Indisp. @@ -3223,21 +3138,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Redenumește - - Resume - Resume/start the torrent - Reia - - - Force Resume - Force Resume/start the torrent - Forțează reluarea - - - Pause - Pause the torrent - Întrerupe - Limit share ratio... Limitează raportul de partajare… @@ -3316,14 +3216,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Categorie nouă - - Location - Amplasare - - - New name - Denumire nouă - Set location Stabilire locație @@ -3336,18 +3228,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Modifică categoria - - Save path - Cale de salvare - Comma-separated tags: Marcaje separate prin virgulă: - - Add Tags - Adaugă marcaje - Tags Marcaje @@ -3414,7 +3298,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Cale de salvare: Location: @@ -3422,11 +3306,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Oprește Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Modul automatic înseamnă că diferitele proprietăți ale torentului (ca de exemplu calea de salvare) vor fi decise de către categoria asociată Start @@ -3434,7 +3318,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Denumire nouă: Add tags @@ -3442,7 +3326,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Categorie: @@ -3481,10 +3365,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Șterge permanent și fișierele - Remove torrent(s) Elimină torent(e) @@ -3495,7 +3375,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Elimină urmăritorul @@ -3771,10 +3651,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Descărcători - - Search engine - Motor de căutare - Seeders Surse @@ -3856,14 +3732,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Marcaj: - - Pause torrents - Întrerupe torente - - - Resume torrents - Reia torentele - Remove unused tags Elimină marcaje nefolosite @@ -4030,27 +3898,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Căutarea s-a încheiat An error occurred during search... - + A apărut o eroare în timpul căutării... Close tab - + Închide fila Searching... - + Se caută… Search aborted - + Căutarea a fost abandonată Close all tabs - + Închide toate filele @@ -4178,6 +4046,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4365,10 +4241,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Dacă ordinea cuvintelor este importantă utilizați * în loc de spațiu alb (gol). - - Add Paused: - Adaugă suspendate: - Please type the name of the new download rule. Introduceți numele noii reguli de descărcare. @@ -4442,33 +4314,17 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d TrackerFiltersList - - Resume torrents - Reia torrentele - - - All (%1) - Toate (%1) - - - Trackerless (%1) - Fără urmăritoare (%1) - - - Pause torrents - Întrerupe torente - Remove torrents Elimină torente All - + Toate Trackerless - + Fără urmăritoare Start torrents @@ -4476,7 +4332,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Remove tracker - + Elimină urmăritorul Stop torrents @@ -4640,15 +4496,15 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Category Unable to edit category - + Nu s-a putut modifica categoria OK - + Bine Unable to create category - + Nu s-a putut crea categoria Unable to set category @@ -4659,11 +4515,11 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d CookiesDialog Domain - + Domeniu Manage Cookies - + Gestionează fișierele cookie Add Cookie @@ -4671,52 +4527,52 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Remove - + Elimină Expiration Date - + Dată de expirare Value - + Valoare Name - + Nume Path - + Cale confirmAutoTMMDialog Enable automatic torrent management - + Activează gestionarea automată a torentelor Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Sigur doriți să activați Gestiunea Automată a Torentelor pentru torentele alese? Acestea pot fi relocate. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Sigur doriți să reverificați torentele selectate? Recheck confirmation - + Confirmare reverificare SearchWidget Close tab - + Închide fila @@ -4727,7 +4583,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Password - + Parolă JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4735,7 +4591,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Login - + Autentifică Server response: @@ -4747,10 +4603,202 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Username - + Nume de utilizator Invalid Username or Password. + Numele de utilizator sau parola nu sunt valide. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_ru.ts b/src/webui/www/translations/webui_ru.ts index 0f4c11c42..3bf21e3cf 100644 --- a/src/webui/www/translations/webui_ru.ts +++ b/src/webui/www/translations/webui_ru.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Одна на строку (принимаются ссылки HTTP, магнит-ссылки и инфо-хеши) Add torrent links - + Добавьте ссылки на торренты Select .torrent files - + Выбрать торрент-файлы Torrent options - + Параметры торрента @@ -112,14 +112,6 @@ Remove unused categories Удалить пустые категории - - Resume torrents - Возобновить торренты - - - Pause torrents - Остановить торренты - New Category Новая категория @@ -138,11 +130,11 @@ Start torrents - + Запустить торренты Stop torrents - + Остановить торренты @@ -151,10 +143,6 @@ Exit qBittorrent Выйти из qBittorrent - - Only one link per line - Только одна ссылка на строку - Global upload rate limit must be greater than 0 or disabled. Общее ограничение соотношения отдачи должно быть больше 0 или отключено. @@ -228,10 +216,6 @@ Save files to location: Путь сохранения по умолчанию: - - Cookie: - Куки (cookie): - More information Подробнее @@ -295,10 +279,6 @@ Logout Выйти - - Download Torrents from their URLs or Magnet links - Загрузить торренты по их адресам или магнит-ссылкам - Upload local torrent Загрузить локальный торрент @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Недопустимое название категории:\nПожалуйста, не используйте специальные символы в названии. - - Unable to create category - Не удалось создать категорию - Upload rate threshold must be greater than 0. Порог скорости отдачи должен быть больше 0. @@ -383,10 +359,6 @@ Original author Изначальный автор - - Are you sure you want to remove the selected torrents from the transfer list? - Уверены, что хотите удалить выделенные торренты из списка? - The port used for the WebUI must be between 1 and 65535. Порт для веб-интерфейса должен принимать значения от 1 до 65535. @@ -401,75 +373,75 @@ External IP: N/A - + Внешний IP: Н/Д Reverse proxy setup examples - + Примеры настройки обратного прокси Could not contact qBittorrent - + Не удалось связаться с qBittorrent Remember choice - + Запомнить выбор Are you sure you want to remove these %1 torrents from the transfer list? - + Уверены, что хотите удалить эти %1 торрента(ов) из списка? Unable to delete torrents. - + Не удалось удалить торренты. URL - + Адрес External IP: %1%2 - + Внешний IP: %1%2 Edit web seed - + Изменить веб-сида Are you sure you want to remove %1 from the transfer list? - + Уверены, что хотите удалить %1 из списка торрентов? Unable to set Auto Torrent Management for the selected torrents. - + Невозможно установить автоматическое управление для выбранных торрентов. Unable to stop torrents. - + Не удалось остановить торренты. Unable to download file - + Не удалось загрузить файл External IPs: %1, %2 - + Внешние IP: %1, %2 Unable to recheck torrents. - + Не удалось перепроверить торренты. List of web seeds to add (one per line): - + Список веб-сидов для добавления (один на строку): Unable to start torrents. - + Не удалось запустить торренты. Add web seeds - + Добавить веб-сидов @@ -498,10 +470,6 @@ Options... Настройки… - - Resume - Возобновить - Top Toolbar Панель инструментов @@ -518,10 +486,6 @@ Donate! Пожертвовать! - - Resume All - Возобновить все - Statistics Статистика @@ -530,14 +494,6 @@ About О программе - - Pause - Остановить - - - Pause All - Остановить все - Add Torrent File... Добавить торрент-файл… @@ -678,14 +634,6 @@ Remove Удалить - - Would you like to resume all torrents? - Хотите возобновить все торренты? - - - Would you like to pause all torrents? - Хотите приостановить все торренты? - Execution Log Журнал работы @@ -700,50 +648,54 @@ Filter by: - + Фильтровать: Save Path - + Путь сохранения Stop - + Стоп Use regular expression - + Использовать регулярное выражение Would you like to start all torrents? - + Хотите запустить все торренты? Start - + Запустить Manage Cookies... - + Управление куки… Unable to export torrent file - + Не удалось экспортировать торрент-файл Name - + Имя Would you like to stop all torrents? - + Хотите остановить все торренты? Start All - + Запустить все Stop All + Остановить все + + + Torrent Creator @@ -773,10 +725,6 @@ Language Язык - - User Interface Language: - Язык интерфейса: - Email notification upon download completion Оповещать об окончании загрузки по электронной почте @@ -793,10 +741,6 @@ Torrent Queueing Очерёдность торрентов - - Automatically add these trackers to new downloads: - Автоматически добавлять эти трекеры к новым загрузкам: - Web User Interface (Remote control) Веб-интерфейс (удалённое управление) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Примечание: Пароль будет сохранён в нешифрованном виде + Примечание: Пароль будет сохранён в нешифрованном виде μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Быстрейшая отдача - - Pause torrent - Остановить торрент - Remove torrent and its files Удалить торрент и его файлы @@ -1337,7 +1277,7 @@ s - с + с Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Запрет клиента при серии сбоёв равной: - - Enable cookie Secure flag (requires HTTPS) - Включить защиту куки (требует HTTPS) - Header: value pairs, one per line Заголовок: одна пара значений на строку @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Поддерживать нелатинские имена доменов (IDN): - - Run external program on torrent finished - Запускать внешнюю программу по завершении торрента - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Используйте «;» для разделения имён. Допустимы шаблоны типа «*». - - Run external program on torrent added - Запускать внешнюю программу по добавлении торрента - HTTPS certificate should not be empty Сертификат HTTPS не может быть пустым @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days дн. - - Log file - Файл журнала - Behavior Поведение @@ -1821,7 +1745,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Resets to default if empty - Сброс на стандрат, если пусто + Сбрасывается на стандартное, если пусто Perform hostname lookup via proxy @@ -1857,7 +1781,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Enable Mark-of-the-Web (MOTW) for downloaded files (require macOS or Windows): - Ставить веб-метку (MOTW) на загруженные файлы (в macOS и Windows): + Ставить веб-метку (MOTW) на файлы загрузок (в macOS и Windows): sec @@ -1945,182 +1869,198 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + Цветовая схема: Show external IP in status bar - + Показать внешний IP в строке состояния Fetched trackers - + Полученные трекеры Confirm when deleting torrents - + Подтверждать удаление торрентов Ignore SSL errors: - + Игнорировать ошибки SSL: Dark - + Тёмная Delete files permanently - + Удалить файлы безвозвратно Auto - + Авто Use alternating row colors - + Чередовать цвета строк Display full announce URL in the Tracker column - + Показать полный URL-адрес анонса в столбце Трекер URL: - + Адрес: Transfer list - + Список торрентов The announce port must be between 0 and 65535. - + Порт анонса должен быть в диапазоне от 0 до 65535. Light - + Светлая Automatically append these trackers to new downloads: - + Автоматически добавлять эти трекеры к новым загрузкам: Downloading torrents: - + Загружаемые торренты: Start / stop torrent - + Запустить или остановить торрент Send test email - + Отправить проверочное письмо Completed torrents: - + Завершённые торренты: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Включить защиту куки (требует HTTPS или соединения с локальным хостом) When duplicate torrent is being added - + При добавлении повторяющегося торрента Action on double-click - + Действие по двойному щелчку Save statistics interval: - + Период сохранения статистики: Shows a confirmation dialog upon torrent deletion - + Показывает окно подтверждения при удалении торрента Run on torrent finished: - + Запускать по завершении торрента: Attempted to send email. Check your inbox to confirm success - + Попытка отправить электронное письмо. Проверьте свой почтовый ящик для подтверждения успешности Automatically append trackers from URL to new downloads: - + Автоматически добавлять трекеры из URL-адреса к новым загрузкам: Torrent content removing mode: - + Режим удаления содержимого торрентов: Move files to trash (if possible) - + Убирать файлы в корзину (если возможно) Stop torrent - + Остановить торрент Use Category paths in Manual Mode - + Использовать пути категорий в ручном режиме List of alternative WebUI - + Список альтернативных Веб-интерфейсов Run on torrent added: - + Запускать при добавлении торрента: Port reported to trackers (requires restart) [0: listening port]: - + Порт для сообщения трекерам (требует перезапуск) [0: порт прослушивания]: User interface language: - + Язык интерфейса: Merge trackers to existing torrent - + Объединить трекеры в существующий торрент Confirm torrent recheck: - + Подтверждать перепроверку торрентов: Custom WebUI settings - + Пользовательские настройки веб-интерфейса Following settings are WebUI only - + Эти настройки применимы только для веб-интерфейса Simple pread/pwrite - + Простой ввод-вывод Resolve relative Save Path against appropriate Category path instead of Default one - + Разрешить относительный путь сохранения для соответствующего пути категории вместо пути по умолчанию No action - + Нет действия Auto hide zero status filters - + Автоматически скрывать пустые фильтры состояния Interface - + Интерфейс Log Files + Файлы журнала + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy web seed URL - + Копировать адрес веб-сида Replace option - + Заменить параметр Edit web seed URL... - + Изменить адрес веб-сида Web seed URL: - + Адрес веб-сида: Yes - + Да Ratio / Time Active (in months), indicates how popular the torrent is - + Рейтинг / время работы (в месяцах), показывает востребованность торрента Popularity: - + Спрос: Apply to which filename part - + К какой части имени файла применить No - + Нет Remove web seed - + Удалить веб-сида Web seed editing - + Правка веб-сида Add web seeds... - + Добавить веб-сидов… Private: - + Частный: @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Завершены (0) - - Resumed (0) - Возобновлены (0) - - - Paused (0) - Остановлены (0) - Active (0) Активны (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Завершены (%1) - - Paused (%1) - Остановлены (%1) - - - Resumed (%1) - Возобновлены (%1) - Active (%1) Активны (%1) @@ -2765,31 +2689,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + Запущены (0) Stopped (0) - + Остановлены (0) Stopped (%1) - + Остановлены (%1) Running (%1) - + Запущены (%1) Remove torrents - + Удалить торренты Start torrents - + Запустить торренты Stop torrents - + Остановить торренты @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Размер - - Done - % Done - Прогресс - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + Частный Progress - + Прогресс Info Hash v2 - + Инфо-хеш v2 Info Hash v1 - + Инфо-хеш v1 Incomplete Save Path - + Путь неполного Popularity - + Спрос Status Icon - + Значок состояния @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 назад - - Paused - Остановлен - Completed Завершён @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Остановлено N/A - + Н/Д @@ -3210,7 +3125,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Collapse/expand category - + Свернуть/развернуть категорию @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Переименовать - - Resume - Resume/start the torrent - Возобновить - - - Force Resume - Force Resume/start the torrent - Возобновить принудительно - - - Pause - Pause the torrent - Остановить - Limit share ratio... Ограничить рейтинг… @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Новая категория - - Location - Расположение - - - New name - Новое имя - Set location Переместить @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Править категорию - - Save path - Путь сохранения - Comma-separated tags: Метки разделяются запятыми: - - Add Tags - Добавить метки - Tags Метки @@ -3414,39 +3298,39 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + Запустить принудительно Save path: - + Путь: Location: - + Расположение: Stop - + Стоп Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Автоматический режим выбирает настройки торрентов (напр. путь сохранения) в зависимости от их категории Start - + Запустить New name: - + Новое имя: Add tags - + Добавить метки Category: - + Категория: @@ -3485,21 +3369,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Также безвозвратно удалить файлы - Remove torrent(s) Удалить торрент(ы) Also remove the content files - + Также удалить файлы содержимого Remove tracker - + Удалить трекер @@ -3703,23 +3583,23 @@ Use ';' to split multiple entries. Can use wildcard '*'. Select category - + Выбрать категорию Min size prefix - + Минимальный размер префикса Start a search above. - + Начните поиск выше. Max size prefix - + Максимальный размер префикса Select plugins - + Выбрать плагины @@ -3775,25 +3655,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Личи - - Search engine - Поисковик - Seeders Сиды Published On - + Дата публикакции Engine URL - + Адрес движка Engine - + Движок @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Метка: - - Pause torrents - Остановить торренты - - - Resume torrents - Возобновить торренты - Remove unused tags Удалить пустые метки @@ -3886,11 +3754,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + Запустить торренты Stop torrents - + Остановить торренты @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Поиск завершён An error occurred during search... - + Во время поиска произошла ошибка… Close tab - + Закрыть вкладку Searching... - + Идёт поиск… Search aborted - + Поиск прерван Close all tabs - + Закрыть все вкладки @@ -4168,18 +4036,26 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Править адрес ленты… Unable to update URL - + Не удалось обновить URL-адрес URL is unchanged - + URL-адрес не изменился URL cannot be empty + URL-адрес не может быть пустым + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Если порядок слов важен, то используйте «*» вместо пробелов. - - Add Paused: - Добавить остановленным: - Please type the name of the new download rule. Пожалуйста, введите имя нового правила загрузки. @@ -4433,58 +4305,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + Удалить правило Add rule - + Добавить правило Add Stopped: - + Добавить остановленным: TrackerFiltersList - - Resume torrents - Возобновить торренты - - - All (%1) - Все (%1) - - - Trackerless (%1) - Без трекера (%1) - - - Pause torrents - Остановить - Remove torrents Удалить торренты All - + Все Trackerless - + Без трекера Start torrents - + Запустить торренты Remove tracker - + Удалить трекер Stop torrents - + Остановить торренты @@ -4637,124 +4493,316 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Уверены, что хотите удалить трекер %1 из всех торрентов? Category Unable to edit category - + Не удалось изменить категорию OK - + Хорошо Unable to create category - + Не удалось создать категорию Unable to set category - + Не удалось установить категорию CookiesDialog Domain - + Домен Manage Cookies - + Управление файлами куки Add Cookie - + Добавить файлы куки Remove - + Убрать Expiration Date - + Срок действия Value - + Значение Name - + Имя Path - + Путь confirmAutoTMMDialog Enable automatic torrent management - + Включить автоматическое управление торрентами Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Уверены, что хотите включить автоматическое управление для выбранных торрентов? Они могут переместиться. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Уверены, что хотите перепроверить выбранные торренты? Recheck confirmation - + Подтверждение проверки SearchWidget Close tab - + Закрыть вкладку Login qBittorrent WebUI - + Веб-интерфейс qBittorrent Password - + Пароль JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Необходим JavaScript! Вы должны активировать JavaScript для правильной работы веб-интерфейса Login - + Войти Server response: - + Ответ сервера: Unable to log in, server is probably unreachable. - + Не удалось войти, возможно, сервер недоступен. Username - + Имя пользователя Invalid Username or Password. + Неверное имя пользователя или пароль. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_sk.ts b/src/webui/www/translations/webui_sk.ts index a7d41f8dc..b0010efcd 100644 --- a/src/webui/www/translations/webui_sk.ts +++ b/src/webui/www/translations/webui_sk.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Jeden odkaz na riadok (sú podporované odkazy HTTP, Magnet aj info-hash) Add torrent links - + Pridať odkazy na torrent Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Odstrániť nepoužívané kategórie - - Resume torrents - Obnoviť torrenty - - - Pause torrents - Pozastaviť torrenty - New Category Nová kategória @@ -151,10 +143,6 @@ Exit qBittorrent Ukončiť qBittorrent - - Only one link per line - Iba jeden odkaz na riadok - Global upload rate limit must be greater than 0 or disabled. Globálne obmedzenie na rýchlosť nahrávania musí byť väčšie ako 0 alebo vypnuté. @@ -228,10 +216,6 @@ Save files to location: Uložiť súbory do priečinka: - - Cookie: - Cookie: - More information Ďalšie informácie @@ -295,10 +279,6 @@ Logout Odhlásenie - - Download Torrents from their URLs or Magnet links - Stiahnuť torrenty z ich URL alebo odkazov Magnet - Upload local torrent Nahrať lokálny torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Neplatný názov kategórie:\nProsím nepoužívajte žiadne špeciálne znaky ani diakritiku v názve kategórie. - - Unable to create category - Nie je možné vytvoriť kategóriu - Upload rate threshold must be greater than 0. Obmedzenie rýchlosti nahrávania musí byť väčšie ako 0. @@ -383,10 +359,6 @@ Original author Pôvodný autor - - Are you sure you want to remove the selected torrents from the transfer list? - Naozaj chcete odstrániť vybrané torrenty zo zoznamu prenosov? - The port used for the WebUI must be between 1 and 65535. @@ -413,11 +385,11 @@ Remember choice - + Pamätať si voľbu Are you sure you want to remove these %1 torrents from the transfer list? - + Naozaj chcete odstrániť týchto '%1' torrentov zo zoznamu prenosov? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -498,10 +470,6 @@ Options... Možnosti... - - Resume - Pokračovať - Top Toolbar Panel nástrojov @@ -518,10 +486,6 @@ Donate! Prispejte! - - Resume All - Pokračovať všetky - Statistics Štatistika @@ -530,14 +494,6 @@ About O - - Pause - Pozastaviť - - - Pause All - Pozastaviť všetky - Add Torrent File... Pridať torrentový súbor... @@ -678,14 +634,6 @@ Remove Odstrániť - - Would you like to resume all torrents? - Chcete obnoviť všetky torrenty? - - - Would you like to pause all torrents? - Chcete pozastaviť všetky torrenty? - Execution Log Záznam spustení @@ -700,15 +648,15 @@ Filter by: - + Filtrovať podľa: Save Path - + Cesta uloženia Stop - + Zastaviť Use regular expression @@ -724,7 +672,7 @@ Manage Cookies... - + Spravovať Cookies... Unable to export torrent file @@ -732,7 +680,7 @@ Name - + Názov Would you like to stop all torrents? @@ -746,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language Jazyk - - User Interface Language: - Jazyk používateľského rozhrania: - Email notification upon download completion Upozornenie o dokončení sťahovania emailom @@ -793,10 +741,6 @@ Torrent Queueing Zaraďovanie torrentu do fronty - - Automatically add these trackers to new downloads: - Automaticky pridať tieto trackery k novým sťahovaniam: - Web User Interface (Remote control) Zapnúť webové rozhranie (vzdialené ovládanie) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Heslo sa ukladá nezašifrované + Info: Heslo sa ukladá nezašifrované μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Najrýchlejší upload - - Pause torrent - Pozastaviť torrent - Remove torrent and its files Zmazať torrent a jeho súbory @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Banovať klienta po následných zlyhaniach: - - Enable cookie Secure flag (requires HTTPS) - Povoliť príznak zabezpečenie súborov cookie (vyžaduje HTTPS) - Header: value pairs, one per line Hlavička: páry hodnôt, jedna na riadok @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Podporovať domény obsahujúce špeciálne znaky (IDN) - - Run external program on torrent finished - Spustiť externý program po dokončení torrentu - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ mali vložiť doménové názvy použité pre WebUI server. Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. - - Run external program on torrent added - Spustiť externý program po pridaní torrentu - HTTPS certificate should not be empty HTTPS certifikát by nemal byť prázdny @@ -1727,10 +1655,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.days dní - - Log file - Log súbor - Behavior Správanie @@ -1957,7 +1881,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Confirm when deleting torrents - + Potvrdiť zmazanie torrentu Ignore SSL errors: @@ -1973,11 +1897,11 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Auto - + Auto Use alternating row colors - + Používať striedavé farby pozadia riadkov Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. URL: - + URL: Transfer list @@ -2005,7 +1929,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Downloading torrents: - + Sťahované torrenty: Start / stop torrent @@ -2017,7 +1941,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Completed torrents: - + Dokončené torrenty: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2025,11 +1949,11 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. When duplicate torrent is being added - + Keď sa pridáva duplicitný torrent Action on double-click - + Akcia po dvojitom kliknutí Save statistics interval: @@ -2037,7 +1961,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Shows a confirmation dialog upon torrent deletion - + Zobrazí dialóg pre potvrdenie po odstránení torrentu Run on torrent finished: @@ -2065,7 +1989,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Use Category paths in Manual Mode - + Použiť cesty kategórií v manuálnom režime List of alternative WebUI @@ -2085,7 +2009,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Merge trackers to existing torrent - + Zlúčiť trackery do existujúceho torrentu Confirm torrent recheck: @@ -2105,24 +2029,40 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + Použiť relatívnu cestu pre uloženie podľa kategórie namiesto východzej cesty No action - + Neurob nič Auto hide zero status filters - + Automaticky skryť filtre s nulovým statusom Interface - + Rozhranie Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,11 +2441,11 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Web seed URL: - + URL webového seedu: Yes - + Áno Ratio / Time Active (in months), indicates how popular the torrent is @@ -2521,7 +2461,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. No - + Nie Remove web seed @@ -2529,7 +2469,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Web seed editing - + Úprava webového seedu Add web seeds... @@ -2667,14 +2607,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.Completed (0) Dokončené (0) - - Resumed (0) - Obnovené (0) - - - Paused (0) - Pozastavené (0) - Active (0) Aktívne (0) @@ -2703,14 +2635,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.Completed (%1) Dokončené (%1) - - Paused (%1) - Pozastavené (%1) - - - Resumed (%1) - Obnovené (%1) - Active (%1) Aktívne (%1) @@ -2781,7 +2705,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Remove torrents - + Odstrániť torrenty Start torrents @@ -2807,11 +2731,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.i.e: torrent size Veľkosť - - Done - % Done - Hotovo - Status Torrent status (e.g. downloading, seeding, paused) @@ -2953,19 +2872,19 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Progress - + Priebeh Info Hash v2 - + Info Hash v2 Info Hash v1 - + Info Hash v1 Incomplete Save Path - + Cesta uloženia nekompletných Popularity @@ -3109,10 +3028,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.e.g.: 1h 20m ago pred %1 - - Paused - Pozastavené - Completed Dokončené @@ -3179,11 +3094,11 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Stopped - + Zastavené N/A - + Neuvedené @@ -3227,21 +3142,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.Rename Premenovať - - Resume - Resume/start the torrent - Pokračovať - - - Force Resume - Force Resume/start the torrent - Vynútiť pokračovanie - - - Pause - Pause the torrent - Pozastaviť - Limit share ratio... Obmedzenie pomeru zdieľania... @@ -3320,14 +3220,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.New Category Nová kategória - - Location - Umiestnenie - - - New name - Nový názov: - Set location Nastaviť umiestnenie @@ -3340,18 +3232,10 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.Edit Category Upraviť kategóriu - - Save path - Uložiť do - Comma-separated tags: Čiarkou oddelené značky: - - Add Tags - Pridať značky - Tags Značky @@ -3418,7 +3302,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Save path: - + Uložiť do: Location: @@ -3426,11 +3310,11 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Stop - + Zastaviť Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatický režim znamená, že niektoré vlastnosti torrentu (napr. cesta na ukladanie) budú určené na základe priradenej kategórie. Start @@ -3438,7 +3322,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. New name: - + Nový názov: Add tags @@ -3446,7 +3330,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Category: - + Kategória: @@ -3485,10 +3369,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. confirmDeletionDlg - - Also permanently delete the files - Odstrániť aj súbory natrvalo - Remove torrent(s) Odstrániť torrent(y) @@ -3499,7 +3379,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Remove tracker - + Odstrániť tracker @@ -3775,10 +3655,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.Leechers Leecheri - - Search engine - Vyhľadávač - Seeders Seederi @@ -3860,14 +3736,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.Tag: Značka: - - Pause torrents - Pozastaviť torrenty - - - Resume torrents - Obnoviť torrenty - Remove unused tags Odstrániť nepoužívané značky @@ -4034,27 +3902,27 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Search has finished - + Hľadanie skončené An error occurred during search... - + Počas vyhľadávania sa vyskytla chyba... Close tab - + Zatvoriť kartu Searching... - + Hľadá sa... Search aborted - + Vyhľadávanie prerušené Close all tabs - + Zatvoriť všetky karty @@ -4168,7 +4036,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Edit feed URL... - + Upraviť URL kanálu... Unable to update URL @@ -4182,6 +4050,14 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'.If word order is important use * instead of whitespace. Ak je dôležité poradie slov, použite * namiesto medzery. - - Add Paused: - Pridať pozastavený: - Please type the name of the new download rule. Prosím, napíšte nový názov pre tonto pravidlo sťahovania. @@ -4446,33 +4318,17 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty TrackerFiltersList - - Resume torrents - Obnov torrenty - - - All (%1) - Všetky (%1) - - - Trackerless (%1) - Bez trackeru (%1) - - - Pause torrents - Pozastaviť torrenty - Remove torrents Odstrániť torrenty All - + Všetky Trackerless - + Bez trackeru Start torrents @@ -4480,7 +4336,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Remove tracker - + Odstrániť tracker Stop torrents @@ -4644,15 +4500,15 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Category Unable to edit category - + Nemožno upraviť kategóriu OK - + OK Unable to create category - + Nemožno vytvoriť kategóriu Unable to set category @@ -4663,11 +4519,11 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty CookiesDialog Domain - + Doména Manage Cookies - + Spravovať cookies... Add Cookie @@ -4675,52 +4531,52 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Remove - + Odstrániť Expiration Date - + Dátum expirácie Value - + Hodnota Name - + Názov Path - + Cesta confirmAutoTMMDialog Enable automatic torrent management - + Povoliť automatickú správu torrentu Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Naozaj chcete aktivovať automatickú správu pre vybrané torrenty? Môžu byť presunuté. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Ste si istý, že chcete znovu skontrolovať vybrané torrenty? Recheck confirmation - + Znovu skontrolovať potvrdenie SearchWidget Close tab - + Zatvoriť kartu @@ -4731,7 +4587,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Password - + Heslo JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4739,7 +4595,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Login - + Prihlasovacie meno Server response: @@ -4751,10 +4607,202 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Username - + Meno používateľa Invalid Username or Password. + Nesprávne užívateľské meno alebo heslo. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_sl.ts b/src/webui/www/translations/webui_sl.ts index 5b18eb151..f3351e930 100644 --- a/src/webui/www/translations/webui_sl.ts +++ b/src/webui/www/translations/webui_sl.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Ena povezava na vrstico (povezave HTTP, magnetne povezave in info-šifre so podprte) Add torrent links - + Dodaj torrent povezave Select .torrent files @@ -84,7 +84,7 @@ Torrent options - + Možnosti torrenta @@ -112,14 +112,6 @@ Remove unused categories Odstrani neuporabljene kategorije - - Resume torrents - Nadaljuj torrente - - - Pause torrents - Ustavi torrente - New Category Nova kategorija @@ -138,11 +130,11 @@ Start torrents - + Začni torrente Stop torrents - + Ustavi torrente @@ -151,10 +143,6 @@ Exit qBittorrent Zapri qBittorrent - - Only one link per line - Samo ena povezava na vrstico - Global upload rate limit must be greater than 0 or disabled. Splošna omejitev razmerja pošiljanja mora biti večja od 0 ali onemogočena. @@ -228,10 +216,6 @@ Save files to location: Shrani datoteke v: - - Cookie: - Piškotek: - More information Več podrobnosti @@ -295,10 +279,6 @@ Logout Odjava - - Download Torrents from their URLs or Magnet links - Prejmi torrente preko URL ali magnetne povezave. - Upload local torrent Pošlji krajevni torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - Kategorije ni mogoče ustvariti - Upload rate threshold must be greater than 0. @@ -397,7 +373,7 @@ External IP: N/A - + Zunanji IP: N/A Reverse proxy setup examples @@ -409,11 +385,11 @@ Remember choice - + Zapomni si izbiro Are you sure you want to remove these %1 torrents from the transfer list? - + Ali ste prepričani, da želite odstraniti %1 torrentov s seznama prenosov? Unable to delete torrents. @@ -421,11 +397,11 @@ URL - + URL External IP: %1%2 - + Zunanji IP: %1%2 Edit web seed @@ -449,7 +425,7 @@ External IPs: %1, %2 - + Zunanji IP-ji: %1, %2 Unable to recheck torrents. @@ -494,10 +470,6 @@ Options... Možnosti ... - - Resume - Nadaljuj - Top Toolbar Zgornja orodna vrstica @@ -514,10 +486,6 @@ Donate! Podari! - - Resume All - Nadaljuj vse - Statistics Statistika @@ -526,14 +494,6 @@ About O programu - - Pause - Premor - - - Pause All - Premor vseh - Add Torrent File... Dodaj datoteko torrent ... @@ -674,14 +634,6 @@ Remove Odstrani - - Would you like to resume all torrents? - Ali ste prepričani, da želite nadaljevati vse torrente? - - - Would you like to pause all torrents? - Ali ste prepričani, da želite začasno ustaviti vse torrente? - Execution Log Dnevnik izvedb @@ -696,15 +648,15 @@ Filter by: - + Filtriraj po: Save Path - + Mesto shranjevanja Stop - + Ustavi Use regular expression @@ -716,11 +668,11 @@ Start - + Zaženi Manage Cookies... - + Upravljanje piškotkov ... Unable to export torrent file @@ -728,7 +680,7 @@ Name - + Ime Would you like to stop all torrents? @@ -736,10 +688,14 @@ Start All - + Zaženi vse Stop All + Ustavi vse + + + Torrent Creator @@ -769,10 +725,6 @@ Language Jezik - - User Interface Language: - Jezik uporabniškega vmesnika: - Email notification upon download completion Pošlji e-poštno obvestilo ob zaključku prejema @@ -789,10 +741,6 @@ Torrent Queueing Čakalna vrsta torrentov - - Automatically add these trackers to new downloads: - Samodejno dodaj te sledilnike novim prenosom: - Web User Interface (Remote control) Spletni uporabniški vmesnik (Oddaljen nadzor) @@ -1225,7 +1173,7 @@ Info: The password is saved unencrypted - Obvestilo: Geslo je shranjeno nešifrirano + Obvestilo: Geslo je shranjeno nešifrirano μTP-TCP mixed mode algorithm: @@ -1287,10 +1235,6 @@ Fastest upload Najhitrejše pošiljanje - - Pause torrent - Začasno ustavi torrent - Remove torrent and its files Odstrani torrent in njegove datoteke @@ -1333,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1711,10 +1655,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.days dni - - Log file - Dnevnik - Behavior Obnašanje @@ -1929,7 +1869,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Color scheme: - + Barvna shema: Show external IP in status bar @@ -1941,7 +1881,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Confirm when deleting torrents - + Potrdi ob brisanju torrentov Ignore SSL errors: @@ -1953,15 +1893,15 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Delete files permanently - + Trajno izbriši datoteke Auto - + Samodejno Use alternating row colors - + Uporabi izmenične barve vrstic Display full announce URL in the Tracker column @@ -1969,7 +1909,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. URL: - + URL: Transfer list @@ -1989,19 +1929,19 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Downloading torrents: - + Na torrente v prejemanju: Start / stop torrent - + Zaženi/ustavi torrent Send test email - + Pošlji preizkusno sporočilo Completed torrents: - + Na dokončane torrente: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2009,11 +1949,11 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. When duplicate torrent is being added - + Ob dodajanju podvojene vsebine Action on double-click - + Dejanje ob dvojnem kliku Save statistics interval: @@ -2021,7 +1961,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Shows a confirmation dialog upon torrent deletion - + Prikaže potrditveno pogovorno okno ob brisanju torrenta Run on torrent finished: @@ -2041,15 +1981,15 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Move files to trash (if possible) - + Premakni datoteke v koš (če je mogoče) Stop torrent - + Ustavi torrent Use Category paths in Manual Mode - + Uporabi poti kategorij v ročnem načinu List of alternative WebUI @@ -2069,7 +2009,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Merge trackers to existing torrent - + Pripoji sledilnike obstoječemu torrentu Confirm torrent recheck: @@ -2093,7 +2033,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. No action - + Brez dejanja Auto hide zero status filters @@ -2101,12 +2041,28 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Interface - + Vmesnik Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2485,19 +2441,19 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Web seed URL: - + URL spletnega sejalca: Yes - + Da Ratio / Time Active (in months), indicates how popular the torrent is - + Razmerje/časom dejavnosti (v mesecih) – pove, kako pogosto se torrent prejema Popularity: - + Priljubljenost: Apply to which filename part @@ -2505,7 +2461,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. No - + Ne Remove web seed @@ -2513,7 +2469,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Web seed editing - + Urejanje spletnega sejalca Add web seeds... @@ -2521,7 +2477,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Private: - + Zaseben: @@ -2651,14 +2607,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.Completed (0) Končano (0) - - Resumed (0) - Se nadaljuje (0) - - - Paused (0) - V premoru (0) - Active (0) Dejavno (0) @@ -2687,14 +2635,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.Completed (%1) Končano (%1) - - Paused (%1) - V premoru (%1) - - - Resumed (%1) - Se nadaljuje (%1) - Active (%1) Dejavno (%1) @@ -2749,31 +2689,31 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Running (0) - + Zagnani (0) Stopped (0) - + Ustavljeni (0) Stopped (%1) - + Ustavljeni (%1) Running (%1) - + Zagnani (%1) Remove torrents - + Odstrani torrente Start torrents - + Začni torrente Stop torrents - + Ustavi torrente @@ -2791,11 +2731,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.i.e: torrent size Velikost - - Done - % Done - Končano - Status Torrent status (e.g. downloading, seeding, paused) @@ -2933,27 +2868,27 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Private - + Zaseben Progress - + Napredek Info Hash v2 - + Informativno zgoščeno vrednost, v2 Info Hash v1 - + Informativno zgoščeno vrednost, v1 Incomplete Save Path - + Pomanjkljiva pot za shranjevanje Popularity - + Priljubljenost Status Icon @@ -3093,10 +3028,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.e.g.: 1h 20m ago %1 nazaj - - Paused - V premoru - Completed Končano @@ -3163,11 +3094,11 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Stopped - + Ustavljeno N/A - + N/A @@ -3211,21 +3142,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.Rename Preimenuj - - Resume - Resume/start the torrent - Nadaljuj - - - Force Resume - Force Resume/start the torrent - Prisili nadaljevanje - - - Pause - Pause the torrent - Premor - Limit share ratio... Omeji razmerje izmenjave ... @@ -3304,14 +3220,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.New Category Nova kategorija: - - Location - Lokacija - - - New name - Novo ime: - Set location Nastavi lokacijo @@ -3324,18 +3232,10 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.Edit Category Uredi kategorijo - - Save path - Mesto - Comma-separated tags: Z vejico ločene oznake: - - Add Tags - Dodaj oznake - Tags Oznake @@ -3402,7 +3302,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Save path: - + Mesto shranjevanja: Location: @@ -3410,27 +3310,27 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Stop - + Ustavi Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Avtomatski način pomeni, da so različne lastnosti torrenta (npr. pot za shranjevanje), določene z dodeljeno kategorijo Start - + Zaženi New name: - + Novo ime: Add tags - + Dodaj oznake Category: - + Kategorija: @@ -3469,21 +3369,17 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. confirmDeletionDlg - - Also permanently delete the files - Trajno izbriši tudi datoteke - Remove torrent(s) Odstrani torrent(e) Also remove the content files - + Odstrani tudi datoteke z vsebino Remove tracker - + Odstrani sledilnik @@ -3759,10 +3655,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.Leechers Pijavke - - Search engine - Iskalnik - Seeders Sejalci @@ -3844,14 +3736,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.Tag: Oznaka: - - Pause torrents - Ustavi torrente - - - Resume torrents - Nadaljuj torrente - Remove unused tags Odstrani neuporabljene oznake @@ -3870,11 +3754,11 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Start torrents - + Začni torrente Stop torrents - + Ustavi torrente @@ -4018,27 +3902,27 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Search has finished - + Iskanje je končano An error occurred during search... - + Med iskanjem je prišlo do napake ... Close tab - + Zapri zavihek Searching... - + Iskanje ... Search aborted - + Iskanje je prekinjeno Close all tabs - + Zapri vse zavihke @@ -4152,7 +4036,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Edit feed URL... - + Uredi URL vira ... Unable to update URL @@ -4166,6 +4050,14 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4353,10 +4245,6 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'.If word order is important use * instead of whitespace. Če je vrstni red besed pomemben uporabi * namesto presledka. - - Add Paused: - Dodaj torrente v premoru: - Please type the name of the new download rule. Prosim vpiši ime novega pravila prenosov. @@ -4431,45 +4319,29 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 TrackerFiltersList - - Resume torrents - Nadaljuj torrente - - - All (%1) - Vsi (%1) - - - Trackerless (%1) - Brez sledilnika (%1) - - - Pause torrents - Premor torrentov - Remove torrents Odstrani torrente All - + Vse Trackerless - + Brez sledilnikov Start torrents - + Začni torrente Remove tracker - + Odstrani sledilnik Stop torrents - + Ustavi torrente @@ -4629,15 +4501,15 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Category Unable to edit category - + Kategorije ni mogoče urediti OK - + OK Unable to create category - + Kategorije ni mogoče ustvariti Unable to set category @@ -4648,11 +4520,11 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 CookiesDialog Domain - + Domena Manage Cookies - + Upravljanje piškotkov Add Cookie @@ -4660,52 +4532,52 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Remove - + Odstrani Expiration Date - + Datum preteka Value - + Vrednost Name - + Ime Path - + Pot confirmAutoTMMDialog Enable automatic torrent management - + Omogoči samodejno upravljanje torrenta Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Ali ste prepričani, da želite omogočiti samodejno upravljanje izbranih torrentov? Morda bodo premaknjeni na drugo mesto. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Ali ste prepričani, da želite ponovno preveriti želene torrente? Recheck confirmation - + Ponovno potrdite preverjanje SearchWidget Close tab - + Zapri zavihek @@ -4716,7 +4588,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Password - + Geslo JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4724,7 +4596,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Login - + Prijava Server response: @@ -4736,10 +4608,202 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Username - + Uporabniško ime Invalid Username or Password. + Neveljavno uporabniško ime ali geslo. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_sr.ts b/src/webui/www/translations/webui_sr.ts index 7fc7e811e..323b69222 100644 --- a/src/webui/www/translations/webui_sr.ts +++ b/src/webui/www/translations/webui_sr.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Једна веза по реду (подржани су HTTP и Magnet линкови и инфо хешеви) Add torrent links - + Додај торент линкове Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories Уклони неискоришћене категорије - - Resume torrents - Пусти торенте - - - Pause torrents - Паузирај торенте - New Category Нова категорија @@ -151,10 +143,6 @@ Exit qBittorrent Изађи из qBittorrent-а - - Only one link per line - Само један линк по линији - Global upload rate limit must be greater than 0 or disabled. @@ -228,10 +216,6 @@ Save files to location: Сачувај датотеке у локацију: - - Cookie: - Колачић: - More information Још информација @@ -295,10 +279,6 @@ Logout Излогуј се - - Download Torrents from their URLs or Magnet links - Преузми торенте преко њиховог URL или Магнет везе - Upload local torrent Отпреми локални торент @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. - - Unable to create category - Креирање категорије није успело - Upload rate threshold must be greater than 0. @@ -409,11 +385,11 @@ Remember choice - + Запамти избор Are you sure you want to remove these %1 torrents from the transfer list? - + Да ли сигурно желите да уклоните ових %1 торената са листе преноса? Unable to delete torrents. @@ -421,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -494,10 +470,6 @@ Options... Опције... - - Resume - Настави - Top Toolbar Горња трака са алатима @@ -514,10 +486,6 @@ Donate! Донирајте! - - Resume All - Настави Све - Statistics Статистика @@ -526,14 +494,6 @@ About О програму - - Pause - Пауза - - - Pause All - Паузирај све - Add Torrent File... Додај торент датотеку... @@ -674,14 +634,6 @@ Remove Уклони - - Would you like to resume all torrents? - Желите ли да наставите све торенте? - - - Would you like to pause all torrents? - Желите ли да паузирате све торенте? - Execution Log Дневник догађаја @@ -696,15 +648,15 @@ Filter by: - + Филтрирај према: Save Path - + Путања чувања Stop - + Заустави Use regular expression @@ -720,7 +672,7 @@ Manage Cookies... - + Управљај колачићима... Unable to export torrent file @@ -728,7 +680,7 @@ Name - + Име Would you like to stop all torrents? @@ -742,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -769,10 +725,6 @@ Language Језик - - User Interface Language: - Језик корисничког интерфејса - Email notification upon download completion Обавештење преко имејла по завршетку преузимања @@ -789,10 +741,6 @@ Torrent Queueing Опслуживање Торета - - Automatically add these trackers to new downloads: - Аутоматски додај ове трекере новим преузимањима - Web User Interface (Remote control) Веб Кориснички Интерфејс (Даљински приступ) @@ -1225,7 +1173,7 @@ Info: The password is saved unencrypted - Инфо: шифра се чува у неенкриптованом стању + Инфо: шифра се чува у неенкриптованом стању μTP-TCP mixed mode algorithm: @@ -1287,10 +1235,6 @@ Fastest upload - - Pause torrent - Паузирај торент - Remove torrent and its files Уклони торент и његове фајлове @@ -1331,10 +1275,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -1407,10 +1347,6 @@ Ban client after consecutive failures: Бануј клијента након узастопних неуспеха: - - Enable cookie Secure flag (requires HTTPS) - Омогући Secure заставицу колачића (захтева HTTPS) - Header: value pairs, one per line Заглавље: парови вредности, један по реду @@ -1937,7 +1873,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + Потврда при брисању торената Ignore SSL errors: @@ -1953,11 +1889,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + Аутоматски Use alternating row colors - + Користи различите боје за приказ редова Display full announce URL in the Tracker column @@ -1965,7 +1901,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -1985,7 +1921,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + Преузимање торента: Start / stop torrent @@ -1997,7 +1933,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + Завршени торенти: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2009,7 +1945,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + Дејство при двоструком клику Save statistics interval: @@ -2017,7 +1953,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Приказује дијалог за потврду при брисању торената Run on torrent finished: @@ -2089,7 +2025,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + Без дејства Auto hide zero status filters @@ -2097,12 +2033,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + Интерфејс Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2485,7 +2437,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Yes - + Да Ratio / Time Active (in months), indicates how popular the torrent is @@ -2501,7 +2453,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Не Remove web seed @@ -2647,14 +2599,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Завршено (0) - - Resumed (0) - Настављено (0) - - - Paused (0) - Паузирано (0) - Active (0) Активно (0) @@ -2683,14 +2627,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Завршено (%1) - - Paused (%1) - Паузирано (%1) - - - Resumed (%1) - Настављено (%1) - Active (%1) Активно (%1) @@ -2761,7 +2697,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + Уклони торенте Start torrents @@ -2787,11 +2723,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Величина - - Done - % Done - Урађено - Status Torrent status (e.g. downloading, seeding, paused) @@ -2933,19 +2864,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + Напредак Info Hash v2 - + Инфо хеш v2 Info Hash v1 - + Инфо хеш v1 Incomplete Save Path - + Непотпуна путања чувања Popularity @@ -3089,10 +3020,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago Пре %1 - - Paused - Паузиран - Completed Комплетирани @@ -3159,11 +3086,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Стопиран N/A - + Недоступно @@ -3207,16 +3134,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Преименуј - - Resume - Resume/start the torrent - Настави - - - Pause - Pause the torrent - Пауза - Limit share ratio... Ограничење односа дељења... @@ -3311,10 +3228,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Comma-separated tags: Ознаке одвојене зарезима: - - Add Tags - Додај ознаке - Tags Тагови @@ -3381,7 +3294,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + Путања за чување: Location: @@ -3389,11 +3302,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + Заустави Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Аутоматски режим значи да ће о разним својствима торента (нпр. путањи спремања) одлучивати придружена категорија Start @@ -3401,7 +3314,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + Ново име: Add tags @@ -3409,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + Категорија: @@ -3448,10 +3361,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Такође перманентно обриши фајлове - Remove torrent(s) Уклони торент(е) @@ -3462,7 +3371,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + Уклони пратилац @@ -3738,10 +3647,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Трагачи - - Search engine - Претраживачки модул - Seeders Донори @@ -3823,14 +3728,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Ознака: - - Pause torrents - Паузирај торенте - - - Resume torrents - Настави торенте - Remove unused tags Уклони некоришћене тагове @@ -3997,27 +3894,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Претраживање је завршено An error occurred during search... - + Нека грешка се догодила током претраге... Close tab - + Затвори картицу Searching... - + Претраживање... Search aborted - + Претраживање прекинуто Close all tabs - + Затвори све картице @@ -4131,7 +4028,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Уреди URL фида... Unable to update URL @@ -4145,6 +4042,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4332,10 +4237,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Ако је редослед речи битан, користите * уместо размака. - - Add Paused: - Додај паузирано: - Please type the name of the new download rule. Молимо унесите име новог правила за преузимање. @@ -4409,33 +4310,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - Пусти торенте - - - All (%1) - Укупно (%1) - - - Trackerless (%1) - Bez servera (%1) - - - Pause torrents - Паузирај торенте - Remove torrents Уклони торенте All - + Све Trackerless - + Без трекера Start torrents @@ -4443,7 +4328,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + Уклони пратилац Stop torrents @@ -4607,15 +4492,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + Уређивање категорије није успело OK - + У реду Unable to create category - + Креирање категорије није успело Unable to set category @@ -4626,11 +4511,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + Домен Manage Cookies - + Управљање колачићима Add Cookie @@ -4638,52 +4523,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + Уклони Expiration Date - + Датум истицања Value - + Вредност Name - + Име Path - + Путања confirmAutoTMMDialog Enable automatic torrent management - + Омогући аутоматски менаџмент торената Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Да ли сигурно желите да омогућите аутоматски менаџмент торената за изабране торенте? Могуће је да буду премештени. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Да ли сигурно желите да поново проверите изабране торенте? Recheck confirmation - + Потврда поновне провере SearchWidget Close tab - + Затвори картицу @@ -4694,7 +4579,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + Шифра JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4702,7 +4587,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + Логовање Server response: @@ -4714,10 +4599,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + Корисничко име Invalid Username or Password. + Неважеће корисничко име или шифра. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_sv.ts b/src/webui/www/translations/webui_sv.ts index 04f397ecc..59fb3eb41 100644 --- a/src/webui/www/translations/webui_sv.ts +++ b/src/webui/www/translations/webui_sv.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + En länk per rad (HTTP-länkar, magnetlänkar och info-hashar stöds) Add torrent links - + Lägg till torrentlänkar Select .torrent files - + Välj .torrent-filer Torrent options - + Torrentalternativ @@ -112,14 +112,6 @@ Remove unused categories Ta bort oanvända kategorier - - Resume torrents - Återuppta torrenter - - - Pause torrents - Pausa torrenter - New Category Ny kategori @@ -138,11 +130,11 @@ Start torrents - + Starta torrenter Stop torrents - + Stoppa torrenter @@ -151,10 +143,6 @@ Exit qBittorrent Avsluta qBittorrent - - Only one link per line - Endast en länk per rad - Global upload rate limit must be greater than 0 or disabled. Global gräns för sändningshastighet måste vara större än 0 eller inaktiverad. @@ -197,7 +185,7 @@ Unable to save program preferences, qBittorrent is probably unreachable. - Det gick inte att spara programinställningarna. qBittorrent är antagligen inte nåbar. + Det går inte att spara programinställningarna. qBittorrent är antagligen inte nåbar. Unknown @@ -228,10 +216,6 @@ Save files to location: Spara filer till platsen: - - Cookie: - Kaka: - More information Mer information @@ -295,10 +279,6 @@ Logout Logga ut - - Download Torrents from their URLs or Magnet links - Hämta torrenter från deras URL:er eller magnetlänkar - Upload local torrent Skicka lokal torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Ogiltigt kategorinamn:\nAnvänd inga specialtecken i kategorinamnet. - - Unable to create category - Det går inte att skapa kategori - Upload rate threshold must be greater than 0. Sändningshastighetsgränsen måste vara större än 0 eller inaktiverad. @@ -383,10 +359,6 @@ Original author Ursprunglig upphovsman - - Are you sure you want to remove the selected torrents from the transfer list? - Är du säker på att du vill ta bort de valda torrenterna från överföringslistan? - The port used for the WebUI must be between 1 and 65535. Porten som används för webbgränssnittet måste vara mellan 1 och 65535. @@ -401,75 +373,75 @@ External IP: N/A - + Extern IP: N/A Reverse proxy setup examples - + Exempel på omvänd proxyinställning Could not contact qBittorrent - + Kunde inte kontakta qBittorrent Remember choice - + Kom ihåg valet Are you sure you want to remove these %1 torrents from the transfer list? - + Är du säker på att du vill ta bort dessa %1 torrenter från överföringslistan? Unable to delete torrents. - + Det går inte att ta bort torrenter. URL - + URL External IP: %1%2 - + Extern IP: %1%2 Edit web seed - + Redigera webbdistribution Are you sure you want to remove %1 from the transfer list? - + Är du säker på att du vill ta bort %1 från överföringslistan?  Unable to set Auto Torrent Management for the selected torrents. - + Det gick inte att ställa in automatisk torrenthantering för de valda torrenterna. Unable to stop torrents. - + Det går inte att stoppa torrenter. Unable to download file - + Det gick inte att hämta fil External IPs: %1, %2 - + Externa IP: %1, %2 Unable to recheck torrents. - + Det går inte att återkontrollera torrenter. List of web seeds to add (one per line): - + Lista över webbdistributioner att lägga till (en per rad): Unable to start torrents. - + Det går inte att starta torrenter. Add web seeds - + Lägg till webbdistributioner @@ -498,10 +470,6 @@ Options... Alternativ... - - Resume - Återuppta - Top Toolbar Översta verktygsfältet @@ -518,10 +486,6 @@ Donate! Donera! - - Resume All - Återuppta alla - Statistics Statistik @@ -530,14 +494,6 @@ About Om - - Pause - Pausa - - - Pause All - Pausa alla - Add Torrent File... Lägg till torrentfil... @@ -678,14 +634,6 @@ Remove Ta bort - - Would you like to resume all torrents? - Vill du återuppta alla torrenter? - - - Would you like to pause all torrents? - Vill du pausa alla torrenter? - Execution Log Exekveringslogg @@ -700,50 +648,54 @@ Filter by: - + Filtrera efter: Save Path - + Sparsökväg Stop - + Stoppa Use regular expression - + Använd reguljärt uttryck Would you like to start all torrents? - + Vill du starta alla torrenter? Start - + Starta Manage Cookies... - + Hantera kakor... Unable to export torrent file - + Det går inte att exportera torrentfil Name - + Namn Would you like to stop all torrents? - + Vill du stoppa alla torrenter? Start All - + Starta alla Stop All + Stoppa alla + + + Torrent Creator @@ -773,10 +725,6 @@ Language Språk - - User Interface Language: - Användargränsspråk: - Email notification upon download completion E-postavisering vid hämtning slutförs @@ -793,10 +741,6 @@ Torrent Queueing Torrentkö - - Automatically add these trackers to new downloads: - Lägg a&utomatiskt till de här spårarna till nya hämtningar: - Web User Interface (Remote control) Webbgränssnittet (fjärrstyrning) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Info: Lösenordet sparas okrypterat + Info: Lösenordet sparas okrypterat μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Snabbaste sändning - - Pause torrent - Pausa torrent - Remove torrent and its files Ta bort torrent och dess filer @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Förbud mot klient efter påföljande misslyckanden: - - Enable cookie Secure flag (requires HTTPS) - Aktivera säker flagga för kakor (kräver HTTPS) - Header: value pairs, one per line Rubrik: värdepar, en per rad @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Stöd för internationellt domännamn (IDN): - - Run external program on torrent finished - Kör externt program när torrent är klar - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ domännamn som används av webbanvändargränssnittsservern. Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*". - - Run external program on torrent added - Kör externt program när torrent lagts till - HTTPS certificate should not be empty HTTPS-certifikatet ska inte vara tomt @@ -1727,10 +1655,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< days dagar - - Log file - Loggfil - Behavior Beteende @@ -1945,182 +1869,198 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Color scheme: - + Färgschema: Show external IP in status bar - + Visa extern IP i statusfältet Fetched trackers - + Hämtade spårare Confirm when deleting torrents - + Bekräfta borttagning av torrenter Ignore SSL errors: - + Ignorera SSL-fel: Dark - + Mörkt Delete files permanently - + Ta bort filerna permanent Auto - + Automatisk Use alternating row colors - + Använd alternerande radfärger Display full announce URL in the Tracker column - + Visa fullständig annonseringsadress i spårarskolumnen URL: - + URL: Transfer list - + Överföringslista The announce port must be between 0 and 65535. - + Annonseringsporten måste vara mellan 0 och 65535. Light - + Ljust Automatically append these trackers to new downloads: - + Lägg automatiskt till dessa spårare till nya hämtningar: Downloading torrents: - + Hämtar torrenter: Start / stop torrent - + Starta / stoppa torrent Send test email - + Skicka detta e-postmeddelande Completed torrents: - + Slutförda torrenter: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Aktivera säkerhetsflagga för kaka (kräver HTTPS eller lokal värdanslutning) When duplicate torrent is being added - + När duplicerad torrent läggs till Action on double-click - + Åtgärd vid dubbelklick Save statistics interval: - + Spara statistikintervall: Shows a confirmation dialog upon torrent deletion - + Visar en bekräftelsedialogruta när du tar bort torrenter Run on torrent finished: - + Kör på slutförd torrent Attempted to send email. Check your inbox to confirm success - + Försökte skicka e-post. Kontrollera din inkorg för att bekräfta att det lyckades Automatically append trackers from URL to new downloads: - + Lägg automatiskt till spårare från URL till nya hämtningar: Torrent content removing mode: - + Torrent-innehåll borttagningsläge: Move files to trash (if possible) - + Flytta filer till papperskorgen (om möjligt) Stop torrent - + Stoppa torrent Use Category paths in Manual Mode - + Använd kategorisökvägar i manuellt läge List of alternative WebUI - + Lista över alternativa WebUI Run on torrent added: - + Kör på tillagd torrent: Port reported to trackers (requires restart) [0: listening port]: - + Port rapporterad till spårare (kräver omstart) [0: lyssningsport]: User interface language: - + Språk för användargränssnitt: Merge trackers to existing torrent - + Slå samman spårare till befintlig torrent Confirm torrent recheck: - + Bekräfta återkontroll av torrent: Custom WebUI settings - + Anpassade webbanvändargränssnitt-inställningar Following settings are WebUI only - + Följande inställningar är endast för webbanvändargränssittet Simple pread/pwrite - + Enkel pread/pwrite Resolve relative Save Path against appropriate Category path instead of Default one - + Lös relativ sparsökväg mot lämplig kategorisökväg istället för standardsökväg No action - + Ingen åtgärd Auto hide zero status filters - + Dölj nollstatusfilter automatiskt Interface - + Gränssnitt Log Files + Loggfiler + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Copy web seed URL - + Kopiera URL för webbdistribution Replace option - + Ersätt alternativ Edit web seed URL... - + Redigera URL för webbdistribution... Web seed URL: - + URL för webbdistribution: Yes - + Ja Ratio / Time Active (in months), indicates how popular the torrent is - + Förhållande / Aktiv tid (i månader), indikerar hur populär torrenten är Popularity: - + Popularitet: Apply to which filename part - + Tillämpa på vilken filnamnsdel No - + Nej Remove web seed - + Ta bort webbdistribution Web seed editing - + Redigering av webbdistribution Add web seeds... - + Lägg till webbdistribution... Private: - + Privat: @@ -2667,14 +2607,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Completed (0) Slutförda (0) - - Resumed (0) - Återupptagen (0) - - - Paused (0) - Pausad (0) - Active (0) Aktiva (0) @@ -2703,14 +2635,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Completed (%1) Slutförda (%1) - - Paused (%1) - Pausad (%1) - - - Resumed (%1) - Återupptagna (%1) - Active (%1) Aktiva (%1) @@ -2765,31 +2689,31 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Running (0) - + Körs (0) Stopped (0) - + Stoppad (0) Stopped (%1) - + Stoppad (%1) Running (%1) - + Körs (%1) Remove torrents - + Ta bort torrenter Start torrents - + Starta torrenter Stop torrents - + Stoppa torrenter @@ -2807,11 +2731,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< i.e: torrent size Storlek - - Done - % Done - Slutfört - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Private - + Privat Progress - + Förlopp Info Hash v2 - + Info-hash v2 Info Hash v1 - + Info-hash v1 Incomplete Save Path - + Ofullständig sparsökväg Popularity - + Popularitet Status Icon - + Statusikon @@ -3109,10 +3028,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< e.g.: 1h 20m ago %1 sedan - - Paused - Pausade - Completed Klar @@ -3179,11 +3094,11 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Stopped - + Stoppad N/A - + Ingen @@ -3206,11 +3121,11 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Collapse/expand - Fäll ut/in + Komprimera/expandera Collapse/expand category - + Komprimera/expandera kategori @@ -3227,21 +3142,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Rename Byt namn - - Resume - Resume/start the torrent - Återuppta - - - Force Resume - Force Resume/start the torrent - Tvinga återuppta - - - Pause - Pause the torrent - Pausa - Limit share ratio... Begränsa delningskvot... @@ -3320,14 +3220,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< New Category Ny kategori - - Location - Plats - - - New name - Nytt namn - Set location Ange plats @@ -3340,18 +3232,10 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Edit Category Redigera kategori - - Save path - Sparsökväg - Comma-separated tags: Kommaseparerade taggar: - - Add Tags - Lägg till taggar - Tags Taggar @@ -3414,39 +3298,39 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Force Start - + Tvinga start Save path: - + Sparsökväg: Location: - + Plats: Stop - + Stoppa Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Automatiskt läge betyder att vissa torrentegenskaper (t.ex. var filen ska sparas) bestäms av filens kategori Start - + Starta New name: - + Nytt namn: Add tags - + Lägg till taggar Category: - + Kategori: @@ -3485,21 +3369,17 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< confirmDeletionDlg - - Also permanently delete the files - Ta också bort filerna permanent - Remove torrent(s) Ta bort torrenter Also remove the content files - + Ta även bort innehållsfilerna Remove tracker - + Ta bort spårare @@ -3703,23 +3583,23 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Select category - + Välj kategori Min size prefix - + Min storlek prefix Start a search above. - + Starta en sökning ovan. Max size prefix - + Max storlek prefix  Select plugins - + Välj insticksmoduler @@ -3775,25 +3655,21 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Leechers Reciprokörer - - Search engine - Sökmotor - Seeders Distributörer Published On - + Publicerad den Engine URL - + Motorns webbadress Engine - + Motor @@ -3860,14 +3736,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Tag: Tagg: - - Pause torrents - Pausa torrenter - - - Resume torrents - Återuppta torrenter - Remove unused tags Ta bort oanvända taggar @@ -3886,11 +3754,11 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Start torrents - + Starta torrenter Stop torrents - + Stoppa torrenter @@ -4034,27 +3902,27 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Search has finished - + Sökningen är klar An error occurred during search... - + Ett fel uppstod under sökningen... Close tab - + Stäng flik Searching... - + Söker... Search aborted - + Sökningen avbruten Close all tabs - + Stäng alla flikar @@ -4168,18 +4036,26 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Edit feed URL... - + Redigera flödes-URL... Unable to update URL - + Det går inte att uppdatera URL URL is unchanged - + URL är oförändrad URL cannot be empty + URL får inte vara tom + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< If word order is important use * instead of whitespace. Om ordordning är viktig, använd * istället för blanksteg. - - Add Paused: - Lägg till pausad: - Please type the name of the new download rule. Skriv namnet på den nya hämtningsregeln. @@ -4433,58 +4305,42 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Remove rule - + Ta bort regel Add rule - + Lägg till regel Add Stopped: - + Lägg till stoppad: TrackerFiltersList - - Resume torrents - Återuppta torrenter - - - All (%1) - Alla (%1) - - - Trackerless (%1) - Utan spårare (%1) - - - Pause torrents - Pausa torrenter - Remove torrents Ta bort torrenter All - + Alla Trackerless - + Utan spårare Start torrents - + Starta torrenter Remove tracker - + Ta bort spårare Stop torrents - + Stoppa torrenter @@ -4637,124 +4493,316 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Är du säker på att du vill ta bort spåraren %1 från alla torrenter? Category Unable to edit category - + Det går inte att redigera kategori OK - + OK Unable to create category - + Det går inte att skapa kategori Unable to set category - + Det går inte att ange kategori CookiesDialog Domain - + Domän Manage Cookies - + Hantera kakor Add Cookie - + Lägg till kaka Remove - + Ta bort Expiration Date - + Utgångsdatum Value - + Värde Name - + Namn Path - + Sökväg confirmAutoTMMDialog Enable automatic torrent management - + Aktivera automatisk torrenthantering Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Är du säker på att du vill aktivera automatisk torrenthantering för de valda torrenterna? De kan komma att flyttas. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Är du säker på att du vill kontrollera den valda torrenten/de valda torrenterna igen? Recheck confirmation - + Bekräftelse på återkontroll SearchWidget Close tab - + Stäng flik Login qBittorrent WebUI - + qBittorrent-webbanvändargränssnitt Password - + Lösenord JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript krävs! Du måste aktivera JavaScript för att webbgränssnittet ska fungera korrekt Login - + Inloggning Server response: - + Serversvar: Unable to log in, server is probably unreachable. - + Det går inte att logga in, servern går förmodligen inte att nå. Username - + Användarnamn Invalid Username or Password. + Felaktigt användarnamn eller lösenord. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_th.ts b/src/webui/www/translations/webui_th.ts index e1fe3a1d7..d8f2ab80a 100644 --- a/src/webui/www/translations/webui_th.ts +++ b/src/webui/www/translations/webui_th.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + หนึ่งลิ้งก์ต่อบรรทัด (HTTP ลิ้งก์, รองรับลิงก์แม่เหล็กและแฮชข้อมูล) Add torrent links - + เพิ่มลิงก์ทอร์เรนต์ Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories ลบหมวดหมู่ที่ไม่ได้ใช้ - - Resume torrents - ดำเนินการทอร์เรนต์ต่อ - - - Pause torrents - หยุดทอร์เรนต์ - New Category หมวดหมู่ใหม่ @@ -138,11 +130,11 @@ Start torrents - + เริ่มทอร์เรนต์ Stop torrents - + หยุดทอร์เรนต์ @@ -151,10 +143,6 @@ Exit qBittorrent ออก qBittorrent - - Only one link per line - หนึ่งลิงค์ต่อบรรทัดเท่านั้น - Global upload rate limit must be greater than 0 or disabled. ขีดจำกัดอัตราการอัปโหลดทั่วโลกต้องมากกว่า 0 หรือปิดใช้ @@ -228,10 +216,6 @@ Save files to location: บันทึกไฟล์ไปยังตำแหน่ง: - - Cookie: - คุกกี้: - More information ข้อมูลมากกว่านี้ @@ -295,10 +279,6 @@ Logout ออกจากระบบ - - Download Torrents from their URLs or Magnet links - ดาวน์โหลดทอร์เรนต์จาก URL หรือลิงก์แม่เหล็ก - Upload local torrent อัปโหลดทอร์เรนต์ในเครื่อง @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. ชื่อหมวดหมู่ไม่ถูกต้อง:\nโปรดอย่าใช้อักขระพิเศษใดๆ ในชื่อหมวดหมู่ - - Unable to create category - ไม่สามารถสร้างหมวดหมู่ได้ - Upload rate threshold must be greater than 0. เกณฑ์อัตราการอัปโหลดต้องมากกว่า 0 @@ -409,7 +385,7 @@ Remember choice - + จำตัวเลือก Are you sure you want to remove these %1 torrents from the transfer list? @@ -421,7 +397,7 @@ URL - + URL External IP: %1%2 @@ -494,10 +470,6 @@ Options... ตัวเลือก.. - - Resume - ดำเนินการต่อ - Top Toolbar แถบเครื่องมือยอดนิยม @@ -514,10 +486,6 @@ Donate! บริจาค! - - Resume All - ดำเนินการต่อทั้งหมด - Statistics สถิติ @@ -526,14 +494,6 @@ About เกี่ยวกับ - - Pause - พัก - - - Pause All - หยุดทั้งหมด - Add Torrent File... เพิ่มไฟล์ทอร์เรนต์... @@ -674,14 +634,6 @@ Remove ลบ - - Would you like to resume all torrents? - ต้องการดำเนินการต่อทุกทอเร้นต์? - - - Would you like to pause all torrents? - ต้องการหยุดชั่วคราวทุกทอเร้นต์? - Execution Log บันทึกการดำเนินการ @@ -704,7 +656,7 @@ Stop - + หยุด Use regular expression @@ -720,7 +672,7 @@ Manage Cookies... - + จัดการคุกกี้... Unable to export torrent file @@ -728,7 +680,7 @@ Name - + ชื่อ Would you like to stop all torrents? @@ -742,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -1215,10 +1171,6 @@ When adding a torrent เมื่อเพิ่มทอร์เรนต์ - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1279,10 +1231,6 @@ Fastest upload อัปโหลดเร็วที่สุด - - Pause torrent - หยุดทอร์เรนต์ - Remove torrent and its files ลบทอร์เรนต์และไฟล์ของมัน @@ -1325,7 +1273,7 @@ s - วิ + วิ Send buffer watermark: @@ -1925,7 +1873,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + ยืนยันเมื่อทำการลบทอร์เรนต์ Ignore SSL errors: @@ -1937,15 +1885,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Delete files permanently - + ลบไฟล์ถาวร Auto - + อัตโนมัติ Use alternating row colors - + ใช้สีแถวสลับกัน Display full announce URL in the Tracker column @@ -1953,7 +1901,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + URL: Transfer list @@ -1973,7 +1921,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + กำลังดาวน์โหลดทอร์เรนต์: Start / stop torrent @@ -1981,11 +1929,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Send test email - + ส่งอีเมลทดสอบ Completed torrents: - + ทอร์เรนต์ที่เสร็จสมบูรณ์: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -1997,7 +1945,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + การดำเนินการเมื่อดับเบิลคลิก Save statistics interval: @@ -2025,11 +1973,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Move files to trash (if possible) - + ย้่ายไฟล์ไปยังถังขยะ (หากทำได้) Stop torrent - + หยุดทอร์เรนต์ Use Category paths in Manual Mode @@ -2077,7 +2025,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No action - + ไม่มีการกระทำ Auto hide zero status filters @@ -2085,12 +2033,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + หน้าตา Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2469,11 +2433,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + URL ส่งต่อเว็บ: Yes - + ใช่ Ratio / Time Active (in months), indicates how popular the torrent is @@ -2489,7 +2453,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + ไม่ Remove web seed @@ -2497,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + แก้ไขการส่งต่อเว็บ Add web seeds... @@ -2635,14 +2599,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) เสร็จสมบูรณ์ (0) - - Resumed (0) - ดำเนินการต่อ (0) - - - Paused (0) - หยุดชั่วคราว (0) - Active (0) ใช้งานอยู่ (0) @@ -2671,14 +2627,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) เสร็จสมบูรณ์ (%1) - - Paused (%1) - หยุดชั่วคราว (%1) - - - Resumed (%1) - ดำเนินการต่อ (%1) - Active (%1) ใช้งานอยู่ (%1) @@ -2749,15 +2697,15 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + ลบทอเร้นต์ Start torrents - + เริ่มทอร์เรนต์ Stop torrents - + หยุดทอร์เรนต์ @@ -2775,11 +2723,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size ขนาด - - Done - % Done - สำเร็จ - Status Torrent status (e.g. downloading, seeding, paused) @@ -2921,7 +2864,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + กระบวนการ Info Hash v2 @@ -3077,10 +3020,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 ที่แล้ว - - Paused - หยุดชั่วคราว - Completed เสร็จสมบูรณ์ @@ -3151,7 +3090,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. N/A - + ไม่สามารถใช้ได้ @@ -3195,21 +3134,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename เปลี่ยนชื่อ - - Resume - Resume/start the torrent - ดำเนินการต่อ - - - Force Resume - Force Resume/start the torrent - บังคับให้ดำเนินการต่อ - - - Pause - Pause the torrent - พัก - Limit share ratio... จำกัด สัดส่วนหุ้น ... @@ -3288,10 +3212,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category หมวดหมู่ใหม่ - - Location - ตำแหน่ง - Set location กำหนดตำแหน่ง @@ -3304,18 +3224,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category - - Save path - บันทึกเส้นทาง - Comma-separated tags: แท็กที่คั่นด้วยจุลภาค: - - Add Tags - เพิ่มแท็ก - Tags แท็ก @@ -3382,7 +3294,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + บันทึกเส้นทาง: Location: @@ -3390,11 +3302,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + หยุด Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + โหมดอัตโนมัติหมายความว่าคุณสมบัติทอร์เรนต์ต่างๆ (เช่นบันทึกเส้นทาง) จะถูกกำหนดโดยหมวดหมู่ที่เกี่ยวข้อง Start @@ -3402,7 +3314,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + ชื่อใหม่: Add tags @@ -3410,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + หมวดหมู่: @@ -3735,10 +3647,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers ผู้รับ - - Search engine - เครื่องมือค้นหา - Seeders ผู้ส่ง @@ -3820,14 +3728,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: แท็ก: - - Pause torrents - หยุดทอร์เรนต์ชั่วคราว - - - Resume torrents - ดำเนินการทอร์เรนต์ต่อ - Remove unused tags ลบแท็กที่ไม่ได้ใช้ @@ -3846,11 +3746,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + เริ่มทอร์เรนต์ Stop torrents - + หยุดทอร์เรนต์ @@ -3994,27 +3894,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + การค้นหาเสร็จสิ้น An error occurred during search... - + เกิดข้อผิดพลาดระหว่างการค้นหา... Close tab - + ปิดแท็บ Searching... - + กำลังค้นหา... Search aborted - + ยกเลิกการค้นหา Close all tabs - + ปิดทุกแท็บ @@ -4128,7 +4028,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + แก้ไข URL ของหน้าฟีด... Unable to update URL @@ -4142,6 +4042,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4329,10 +4237,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. หากลำดับคำมีความสำคัญให้ใช้ * แทนช่องว่าง - - Add Paused: - เพิ่มหยุดชั่วคราว: - Please type the name of the new download rule. กรุณาพิมพ์ชื่อกฎการดาวน์โหลดใหม่ @@ -4406,25 +4310,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - ดำเนินการทอร์เรนต์ต่อ - - - All (%1) - ทั้งหมด (%1) - - - Pause torrents - หยุดทอร์เรนต์ชั่วคราว - Remove torrents ลบทอร์เรนต์ All - + ทั้งหมด Trackerless @@ -4432,7 +4324,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Start torrents - + เริ่มทอร์เรนต์ Remove tracker @@ -4440,7 +4332,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Stop torrents - + หยุดทอร์เรนต์ @@ -4604,11 +4496,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also OK - + ตกลง Unable to create category - + ไม่สามารถสร้างหมวดหมู่ได้ Unable to set category @@ -4619,11 +4511,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + โดเมน Manage Cookies - + จัดการคุกกี้ Add Cookie @@ -4631,23 +4523,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + ลบ Expiration Date - + วันหมดอายุ Value - + มูลค่า Name - + ชื่อ Path - + เส้นทาง @@ -4665,18 +4557,18 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + คุณแน่ใจใช่ไหมว่าต้องการจะตรวจสอบไฟล์ Torrent ที่เลือก (s)? Recheck confirmation - + ตรวจสอบการยืนยันอีกครั้ง SearchWidget Close tab - + ปิดแท็บ @@ -4687,7 +4579,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + รหัสผ่าน JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4695,7 +4587,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + ล็อกอิน Server response: @@ -4707,10 +4599,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + ชื่อผู้ใช้ Invalid Username or Password. + ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_tr.ts b/src/webui/www/translations/webui_tr.ts index 7e26be33f..109a6c0e1 100644 --- a/src/webui/www/translations/webui_tr.ts +++ b/src/webui/www/translations/webui_tr.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Her satıra bir bağlantı (HTTP bağlantıları, Magnet bağlantıları ve bilgi adreslemeleri desteklenir) Add torrent links - + Torrent bağlantılarını ekleyin Select .torrent files - + .torrent dosyalarını seçin Torrent options - + Torrent seçenekleri @@ -112,14 +112,6 @@ Remove unused categories Kullanılmayan kategorileri kaldır - - Resume torrents - Torrent'lere devam et - - - Pause torrents - Torrent'leri duraklat - New Category Yeni Kategori @@ -138,11 +130,11 @@ Start torrents - + Torrent'leri başlat Stop torrents - + Torrent'leri durdur @@ -151,10 +143,6 @@ Exit qBittorrent qBittorrent'ten Çık - - Only one link per line - Her satıra sadece bir bağlantı - Global upload rate limit must be greater than 0 or disabled. Genel gönderme oranı sınırı 0'dan büyük olmak ya da etkisizleştirilmek zorundadır. @@ -228,10 +216,6 @@ Save files to location: Dosyaların kaydedildiği yer: - - Cookie: - Tanımlama Bilgisi: - More information Daha fazla bilgi @@ -295,10 +279,6 @@ Logout Oturumu Kapat - - Download Torrents from their URLs or Magnet links - Torrent'leri URL'lerinden ya da Magnet bağlantılarından indirin - Upload local torrent Yerel torrent'i gönder @@ -309,7 +289,7 @@ qBittorrent client is not reachable - qBittorrent istemcisine ulaşılamıyor + qBittorrent istemcisi ulaşılabilir değil Global number of upload slots limit must be greater than 0 or disabled. @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Geçersiz kategori adı:\nLütfen kategori adı içinde hiçbir özel karakter kullanmayın. - - Unable to create category - Kategori oluşturulamıyor - Upload rate threshold must be greater than 0. Gönderme oranı eşiği 0'dan büyük olmak zorundadır. @@ -383,10 +359,6 @@ Original author Orijinal hazırlayanı - - Are you sure you want to remove the selected torrents from the transfer list? - Seçilen torrent’leri aktarım listesinden kaldırmak istediğinize emin misiniz? - The port used for the WebUI must be between 1 and 65535. Web Arayüzü için kullanılan bağlantı noktası 1 ve 65535 arasında olmak zorundadır. @@ -401,75 +373,75 @@ External IP: N/A - + Dış IP: Yok Reverse proxy setup examples - + Ters proksi kurulum örnekleri Could not contact qBittorrent - + qBittorrent’le bağlantı kurulamadı Remember choice - + Seçimi hatırla Are you sure you want to remove these %1 torrents from the transfer list? - + Bu %1 torrent'i aktarım listesinden kaldırmak istediğinize emin misiniz? Unable to delete torrents. - + Torrent'ler silinemiyor. URL - + URL External IP: %1%2 - + Dış IP: %1%2 Edit web seed - + Web gönderimini düzenle Are you sure you want to remove %1 from the transfer list? - + %1 dosyasını aktarım listesinden kaldırmak istediğinize emin misiniz? Unable to set Auto Torrent Management for the selected torrents. - + Seçilen torrent'ler için Otomatik Torrent Yönetimi ayarlanamıyor. Unable to stop torrents. - + Torrent'ler durdurulamıyor. Unable to download file - + Dosya indirilemiyor External IPs: %1, %2 - + Dış IP'ler: %1, %2 Unable to recheck torrents. - + Torrent'ler yeniden denetlenemiyor. List of web seeds to add (one per line): - + Eklenecek web gönderimleri listesi (her satıra bir tane): Unable to start torrents. - + Torrent'ler başlatılamıyor. Add web seeds - + Web gönderimleri ekle @@ -498,10 +470,6 @@ Options... Seçenekler... - - Resume - Devam - Top Toolbar Üst Araç Çubuğu @@ -518,10 +486,6 @@ Donate! Bağış Yap! - - Resume All - Tümüne Devam - Statistics İstatistikler @@ -530,14 +494,6 @@ About Hakkında - - Pause - Duraklat - - - Pause All - Tümünü Duraklat - Add Torrent File... Torrent Dosyası Ekle... @@ -678,14 +634,6 @@ Remove Kaldır - - Would you like to resume all torrents? - Tüm torrent’leri devam ettirmek ister misiniz? - - - Would you like to pause all torrents? - Tüm torrent’leri duraklatmak ister misiniz? - Execution Log Çalıştırma Günlüğü @@ -700,50 +648,54 @@ Filter by: - + Süzme şekli: Save Path - + Kaydetme Yolu Stop - + Durdur Use regular expression - + Düzenli ifade kullan Would you like to start all torrents? - + Tüm torrent’leri başlatmak ister misiniz? Start - + Başlat Manage Cookies... - + Tanımlama Bilgilerini Yönet... Unable to export torrent file - + Torrent dosyası dışa aktarılamıyor Name - + Ad Would you like to stop all torrents? - + Tüm torrent’leri durdurmak ister misiniz? Start All - + Tümünü Başlat Stop All + Tümünü Durdur + + + Torrent Creator @@ -773,10 +725,6 @@ Language Dil - - User Interface Language: - Kullanıcı Arayüzü Dili: - Email notification upon download completion İndirmenin tamamlanması üzerine e-posta bildirimi yap @@ -793,10 +741,6 @@ Torrent Queueing Torrent Kuyruğu - - Automatically add these trackers to new downloads: - Bu izleyicileri otomatik olarak yeni indirmelere ekle: - Web User Interface (Remote control) Web Kullanıcı Arayüzü (Uzak denetim) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Bilgi: Parola şifrelenmeden kaydedilir + Bilgi: Parola şifrelenmeden kaydedilir μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload En hızlı gönderme - - Pause torrent - Torrent'i duraklat - Remove torrent and its files Torrent'i ve dosyalarını kaldır @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,13 +1351,9 @@ Ban client after consecutive failures: Art arda şu kadar hatadan sonra istemciyi yasakla: - - Enable cookie Secure flag (requires HTTPS) - Tanımlama bilgisi Güvenli işaretini etkinleştir (HTTPS gerektirir) - Header: value pairs, one per line - Üstbilgi: değer çiftleri, satır başına bir + Üstbilgi: değer çiftleri, her satıra bir tane Add custom HTTP headers @@ -1621,7 +1557,7 @@ Max concurrent HTTP announces: - En fazla eşzamanlı HTTP duyurusu: + En fazla eşzamanlı HTTP duyurma: Enable OS cache @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Uluslararasılaştırılmış etki alanı adını (IDN) destekle: - - Run external program on torrent finished - Torrent tamamlandığında harici program çalıştır - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Çoklu girişleri bölmek için ';' kullanın. '*' joker karakteri kullanılabilir. - - Run external program on torrent added - Torrent eklendiğinde harici program çalıştır - HTTPS certificate should not be empty HTTPS sertifikası boş olmamalıdır @@ -1727,10 +1655,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. days gün - - Log file - Günlük dosyası - Behavior Davranış @@ -1945,182 +1869,198 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Color scheme: - + Renk şeması: Show external IP in status bar - + Durum çubuğunda dış IP'yi göster Fetched trackers - + Getirilen izleyiciler Confirm when deleting torrents - + Torrent'leri silerken onayla Ignore SSL errors: - + SSL hatalarını yoksay: Dark - + Koyu Delete files permanently - + Dosyaları kalıcı olarak sil Auto - + Otomatik Use alternating row colors - + Değişen satır renkleri kullan Display full announce URL in the Tracker column - + İzleyici sütununda tam duyurma URL'sini görüntüle URL: - + URL: Transfer list - + Aktarım listesi The announce port must be between 0 and 65535. - + Duyurma bağlantı noktası 0 ve 65535 arasında olmak zorundadır. Light - + Açık Automatically append these trackers to new downloads: - + Bu izleyicileri yeni indirmelere otomatik olarak ekle: Downloading torrents: - + İndirilen torrent'ler: Start / stop torrent - + Torrent'i başlat / durdur Send test email - + Deneme e-postası gönder Completed torrents: - + Tamamlanan torrent'ler: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Tanımlama bilgisi Güvenli işaretini etkinleştir (HTTPS veya localhost bağlantısı gerektirir) When duplicate torrent is being added - + Kopya torrent eklendiğinde Action on double-click - + Çift tıklama eylemi Save statistics interval: - + İstatistikleri kaydetme aralığı: Shows a confirmation dialog upon torrent deletion - + Torrent silme işlemi üzerine bir onay ileti penceresi gösterir Run on torrent finished: - + Torrent tamamlandığında çalıştır: Attempted to send email. Check your inbox to confirm success - + E-posta gönderilmeye çalışıldı. Başarılı olup olmadığını onaylamak için gelen kutunuzu gözden geçirin Automatically append trackers from URL to new downloads: - + İzleyicileri URL'den yeni indirmelere otomatik olarak ekle: Torrent content removing mode: - + Torrent içeriğini kaldırma kipi: Move files to trash (if possible) - + Dosyaları çöp kutusuna taşı (mümkünse) Stop torrent - + Torrent'i durdur Use Category paths in Manual Mode - + Kategori yollarını Elle Kipinde kullan List of alternative WebUI - + Alternatif Web Arayüzü listesi Run on torrent added: - + Torrent eklendiğinde çalıştır: Port reported to trackers (requires restart) [0: listening port]: - + İzleyicilere bildirilen bağlantı noktası (yeniden başlatma gerektirir) [0: dinlenen bağ. noktası]: User interface language: - + Kullanıcı arayüzü dili: Merge trackers to existing torrent - + İzleyicileri varolan torrent ile birleştir Confirm torrent recheck: - + Torrent'i yeniden denetlemeyi onayla: Custom WebUI settings - + Özel Web Arayüzü ayarları Following settings are WebUI only - + Aşağıdaki ayarlar sadece Web Arayüzü içindir Simple pread/pwrite - + Basit p-okuma/p-yazma Resolve relative Save Path against appropriate Category path instead of Default one - + Göreceli Kaydetme Yolunu, Varsayılan yol yerine uygun Kategori yoluna göre çöz No action - + Eylem yok Auto hide zero status filters - + Sıfır durum süzgeçlerini otomatik gizle Interface - + Arayüz Log Files + Günlük Dosyaları + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2325,7 +2265,7 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Reannounce In: - Yeniden Duyuru Süresi: + Yeniden Duyurma Süresi: Last Seen Complete: @@ -2489,55 +2429,55 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Copy web seed URL - + Web gönderim URL'sini kopyala Replace option - + Değiştirme seçeneği Edit web seed URL... - + Web gönderim URL'sini düzenle... Web seed URL: - + Web gönderim URL'si: Yes - + Evet Ratio / Time Active (in months), indicates how popular the torrent is - + Oran / Etkin Süre (ay cinsinden), torrent'in ne kadar yaygın olduğunu gösterir Popularity: - + Yaygınlık: Apply to which filename part - + Dosya adının olduğu kısma uygula No - + Hayır Remove web seed - + Web gönderimini kaldır Web seed editing - + Web gönderim düzenleme Add web seeds... - + Web gönderimleri ekle... Private: - + Özel: @@ -2667,14 +2607,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Completed (0) Tamamlandı (0) - - Resumed (0) - Devam Edildi (0) - - - Paused (0) - Duraklatıldı (0) - Active (0) Etkin (0) @@ -2703,14 +2635,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Completed (%1) Tamamlandı (%1) - - Paused (%1) - Duraklatıldı (%1) - - - Resumed (%1) - Devam Edildi (%1) - Active (%1) Etkin (%1) @@ -2765,31 +2689,31 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Running (0) - + Çalışıyor (0) Stopped (0) - + Durduruldu (0) Stopped (%1) - + Durduruldu (%1) Running (%1) - + Çalışıyor (%1) Remove torrents - + Torrent'leri kaldır Start torrents - + Torrent'leri başlat Stop torrents - + Torrent'leri durdur @@ -2807,11 +2731,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. i.e: torrent size Boyut - - Done - % Done - Tamamlanma - Status Torrent status (e.g. downloading, seeding, paused) @@ -2945,35 +2864,35 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Reannounce In - Yeniden Duyuru Süresi + Yeniden Duyurma Süresi Private - + Özel Progress - + İlerleme Info Hash v2 - + Bilgi Adreslemesi v2 Info Hash v1 - + Bilgi Adreslemesi v1 Incomplete Save Path - + Tamamlanmamış Kaydetme Yolu Popularity - + Yaygınlık Status Icon - + Durum Simgesi @@ -3095,7 +3014,7 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. TrackersAdditionDialog List of trackers to add (one per line): - Eklemek için izleyicilerin listesi (her satıra bir tane): + Eklenecek izleyicilerin listesi (her satıra bir tane): Add trackers @@ -3109,10 +3028,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. e.g.: 1h 20m ago %1 önce - - Paused - Duraklatıldı - Completed Tamamlanan @@ -3179,11 +3094,11 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Stopped - + Durduruldu N/A - + Yok @@ -3210,7 +3125,7 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Collapse/expand category - + Kategoriyi daralt/genişlet @@ -3227,21 +3142,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Rename Yeniden adlandır - - Resume - Resume/start the torrent - Devam - - - Force Resume - Force Resume/start the torrent - Devam Etmeye Zorla - - - Pause - Pause the torrent - Duraklat - Limit share ratio... Paylaşma oranını sınırla... @@ -3320,14 +3220,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. New Category Yeni Kategori - - Location - Konum - - - New name - Yeni adı - Set location Yeri ayarla @@ -3340,18 +3232,10 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Edit Category Kategoriyi Düzenle - - Save path - Kaydetme yolu - Comma-separated tags: Virgülle ayrılmış etiketler: - - Add Tags - Etiketleri Ekle - Tags Etiketler @@ -3414,39 +3298,39 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Force Start - + Başlatmaya Zorla Save path: - + Kaydetme yolu: Location: - + Konum: Stop - + Durdur Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Otomatik kip, çeşitli torrent özelliklerine (örn. kaydetme yolu) ilişkilendirilmiş kategori tarafından karar verileceği anlamına gelir Start - + Başlat New name: - + Yeni adı: Add tags - + Etiketleri ekle Category: - + Kategori: @@ -3485,21 +3369,17 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. confirmDeletionDlg - - Also permanently delete the files - Ayrıca dosyaları kalıcı olarak sil - Remove torrent(s) Torrent'(ler)i kaldır Also remove the content files - + Ayrıca içerik dosyalarını kaldır Remove tracker - + İzleyiciyi kaldır @@ -3703,23 +3583,23 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Select category - + Kategoriyi seç Min size prefix - + En az boyut öneki Start a search above. - + Yukarıda bir arama başlatın. Max size prefix - + En fazla boyut öneki Select plugins - + Eklentileri seç @@ -3775,25 +3655,21 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Leechers Çeken - - Search engine - Arama motoru - Seeders Gönderen Published On - + Yayınlanma Tarihi Engine URL - + Motor URL'si Engine - + Motor @@ -3835,7 +3711,7 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. List of peers to add (one IP per line): - Eklemek için kişilerin listesi (her satıra bir IP): + Eklenecek kişilerin listesi (her satıra bir IP): Ok @@ -3860,14 +3736,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Tag: Etiket: - - Pause torrents - Torrent'leri duraklat - - - Resume torrents - Torrent'lere devam et - Remove unused tags Kullanılmayan etiketleri kaldır @@ -3886,11 +3754,11 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Start torrents - + Torrent'leri başlat Stop torrents - + Torrent'leri durdur @@ -4034,27 +3902,27 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Search has finished - + Arama tamamlandı An error occurred during search... - + Arama sırasında bir hata meydana geldi... Close tab - + Sekmeyi kapat Searching... - + Aranıyor... Search aborted - + Arama iptal edildi Close all tabs - + Tüm sekmeleri kapat @@ -4168,18 +4036,26 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Edit feed URL... - + Bildirim URLʼsini düzenle... Unable to update URL - + URL güncellenemiyor URL is unchanged - + URL değişmedi URL cannot be empty + URL boş olamaz + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. If word order is important use * instead of whitespace. Eğer kelime sırası önemliyse boşluk yerine * kullanın. - - Add Paused: - Duraklatıldı Olarak Ekle: - Please type the name of the new download rule. Lütfen yeni indirme kuralı adını yazın. @@ -4433,58 +4305,42 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Remove rule - + Kuralı kaldır Add rule - + Kural ekle Add Stopped: - + Durduruldu Olarak Ekle: TrackerFiltersList - - Resume torrents - Torrent'lere devam et - - - All (%1) - Tümü (%1) - - - Trackerless (%1) - İzleyicisiz (%1) - - - Pause torrents - Torrent'leri duraklat - Remove torrents Torrent'leri kaldır All - + Tümü Trackerless - + İzleyicisiz Start torrents - + Torrent'leri başlat Remove tracker - + İzleyiciyi kaldır Stop torrents - + Torrent'leri durdur @@ -4637,124 +4493,316 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + %1 izleyicisini tüm torrent'lerden kaldırmak istediğinize emin misiniz? Category Unable to edit category - + Kategori düzenlenemiyor OK - + TAMAM Unable to create category - + Kategori oluşturulamıyor Unable to set category - + Kategori ayarlanamıyor CookiesDialog Domain - + Etki Alanı Manage Cookies - + Tanımlama Bilgilerini Yönetin Add Cookie - + Tanımlama bilgisi ekle Remove - + Kaldır Expiration Date - + Bitiş Tarihi Value - + Değer Name - + Ad Path - + Yol confirmAutoTMMDialog Enable automatic torrent management - + Otomatik torrent yönetimini etkinleştirin Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Seçilen torrent'(ler) için Otomatik Torrent Yönetimi'ni etkinleştirmek istediğinize emin misiniz? Yer değiştirebilirler. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Seçilen torrent'(ler)i yeniden denetlemek istediğinize emin misiniz? Recheck confirmation - + Yeniden denetleme onayı SearchWidget Close tab - + Sekmeyi kapat Login qBittorrent WebUI - + qBittorrent Web Arayüzü Password - + Parola JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript Gerekli! Web Arayüzünün düzgün çalışması için JavaScript'i etkinleştirmek zorundasınız Login - + Oturum aç Server response: - + Sunucu yanıtı: Unable to log in, server is probably unreachable. - + Oturum açılamıyor, sunucuya muhtemelen ulaşılamıyor. Username - + Kullanıcı adı Invalid Username or Password. + Geçersiz Kullanıcı Adı veya Parola. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_uk.ts b/src/webui/www/translations/webui_uk.ts index 35b3052cf..7aafc5b8b 100644 --- a/src/webui/www/translations/webui_uk.ts +++ b/src/webui/www/translations/webui_uk.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Одне посилання на рядок (підтримуються HTTP- і magnet-посилання та інформаційні хеші) Add torrent links - + Додати посилання на торрент Select .torrent files - + Виберіть торрент файл. Torrent options - + Варіанти торенту @@ -112,14 +112,6 @@ Remove unused categories Вилучити невикористовувані категорії - - Resume torrents - Продовжити торренти - - - Pause torrents - Призупинити торренти - New Category Нова категорія @@ -138,11 +130,11 @@ Start torrents - + Запустити торренти Stop torrents - + Зупинити торренти @@ -151,10 +143,6 @@ Exit qBittorrent Вийти з qBittorrent - - Only one link per line - Одне посилання на рядок - Global upload rate limit must be greater than 0 or disabled. Глобальний ліміт швидкості відвантаження повинен бути більшим 0 або відсутнім. @@ -228,10 +216,6 @@ Save files to location: Зберігати файли до: - - Cookie: - Кукі: - More information Детальніше @@ -295,10 +279,6 @@ Logout Вийти - - Download Torrents from their URLs or Magnet links - Завантажити торренти з їх URL або magnet-посилань - Upload local torrent Відвантажити локальний торрент @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. Некоректна назва категорії:\nБудь ласка, не використовуйте спеціальні символи у назві категорії. - - Unable to create category - Не вдалося створити категорію - Upload rate threshold must be greater than 0. Поріг швидкості завантаження повинен бути більше 0. @@ -383,10 +359,6 @@ Original author Оригінальний автор - - Are you sure you want to remove the selected torrents from the transfer list? - Ви впевнені, що хочете видалити вибрані торренти зі списку передачі? - The port used for the WebUI must be between 1 and 65535. Порт для WebUI, повинен бути в діапазоні від 1 до 65535. @@ -401,75 +373,75 @@ External IP: N/A - + Зовнішній IP: N/A Reverse proxy setup examples - + Приклади налаштування зворотного проксі Could not contact qBittorrent - + Не вдалося зв’язатися з qBittorrent Remember choice - + Запам'ятати вибір Are you sure you want to remove these %1 torrents from the transfer list? - + Ви впевнені, що хочете видалити ці %1 торренти зі списку передачі? Unable to delete torrents. - + Не в змозі видалити торренти. URL - + URL External IP: %1%2 - + Зовнішній IP: %1 %2 Edit web seed - + Відредагуйте веб seed Are you sure you want to remove %1 from the transfer list? - + Ви впевнені, що хочете видалити %1 зі списку передач? Unable to set Auto Torrent Management for the selected torrents. - + Неможливо встановити управління автоматичним торрентами для вибраних торентів. Unable to stop torrents. - + Не в змозі зупинити торренти. Unable to download file - + Неможливо завантажити файл External IPs: %1, %2 - + Зовнішні IPs: %1, %2 Unable to recheck torrents. - + Не в змозі перевірити торренти. List of web seeds to add (one per line): - + Список веб seed, яке потрібно додати (один на рядок): Unable to start torrents. - + Не в змозі запустити торренти. Add web seeds - + Додайте веб seed @@ -498,10 +470,6 @@ Options... Налаштування... - - Resume - Продовжити - Top Toolbar Верхню панель @@ -518,10 +486,6 @@ Donate! Пожертвувати гроші - - Resume All - Продовжити всі - Statistics Статистика @@ -530,14 +494,6 @@ About Про програму - - Pause - Призупинити - - - Pause All - Призупинити всі - Add Torrent File... Додати torrent-файл... @@ -678,14 +634,6 @@ Remove Вилучити - - Would you like to resume all torrents? - Бажаєте відновити всі торренти? - - - Would you like to pause all torrents? - Хочете призупинити всі торренти? - Execution Log Журнал виконання @@ -700,50 +648,54 @@ Filter by: - + Фільтрувати за: Save Path - + Шлях збереження Stop - + Зупинити Use regular expression - + Використовуйте регулярний вираз Would you like to start all torrents? - + Бажаєте запустити всі торренти? Start - + Старт Manage Cookies... - + Керування Cookies... Unable to export torrent file - + Неможливо експортувати торрент файл Name - + Назва Would you like to stop all torrents? - + Ви б хотіли зупинити всі торренти? Start All - + Почати все Stop All + Зупинити все + + + Torrent Creator @@ -773,10 +725,6 @@ Language Мова - - User Interface Language: - Мова інтерфейсу: - Email notification upon download completion Сповіщення через e-mail про завершення завантажень @@ -793,10 +741,6 @@ Torrent Queueing Черга торрентів - - Automatically add these trackers to new downloads: - Автоматично додавати ці трекери до нових завантажень: - Web User Interface (Remote control) Веб-інтерфейс користувача (дистанційне керування) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Примітка: Пароль буде збережений в нешифрованому вигляді + Примітка: Пароль буде збережений в нешифрованому вигляді μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Найшвидша віддача - - Pause torrent - Призупинити торрент - Remove torrent and its files Видалити торрент і його файли @@ -1337,7 +1277,7 @@ s - с + с Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Заблокувати клієнта після послідовних збоїв: - - Enable cookie Secure flag (requires HTTPS) - Увімкнути захист cookie (вимагає HTTPS) - Header: value pairs, one per line Заголовок: пари значень, одне на рядок @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Підтримка інтернаціоналізації доменних імен (IDN) - - Run external program on torrent finished - Запуск зовнішньої програми на торренті завершено - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Використовуйте ';', щоб розділити кілька записів. Можна використовувати шаблон '*'. - - Run external program on torrent added - Додано запуск зовнішньої програми на торрент - HTTPS certificate should not be empty Сертифікат HTTPS не повинен бути порожнім @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days днів - - Log file - Файл журналу - Behavior Поведінка @@ -1945,182 +1869,198 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + Колірна схема: Show external IP in status bar - + Показати зовнішній IP у рядку стану Fetched trackers - + Отримані трекери Confirm when deleting torrents - + Підтверджувати видалення торрентів Ignore SSL errors: - + Ігнорувати помилки SSL: Dark - + Темна тема Delete files permanently - + Видалити файли назавжди Auto - + Автоматично Use alternating row colors - + Кожен другий рядок виділений кольором Display full announce URL in the Tracker column - + Відобразити повну URL адресу оголошень у стовпці Tracker URL: - + Адреса: Transfer list - + Список передач The announce port must be between 0 and 65535. - + Порт оголошень повинен бути від 0 до 65535. Light - + Світла тема Automatically append these trackers to new downloads: - + Автоматично додавати ці трекери до нових завантажень: Downloading torrents: - + Якщо завантажується: Start / stop torrent - + Почати / зупинити торрент Send test email - + Надіслати тестовий електронний лист Completed torrents: - + Завершені торренти: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Увімкнути прапор захищених файлів cookie (вимагає HTTPS або LocalHost Connection) When duplicate torrent is being added - + При додаванні дубліката торрента Action on double-click - + Дія при подвійному клацанні Save statistics interval: - + Зберегти інтервал статистики: Shows a confirmation dialog upon torrent deletion - + Відображення діалогу підтвердження при видаленні торрента Run on torrent finished: - + Запущений торрент заавершений: Attempted to send email. Check your inbox to confirm success - + Спроба надіслати електронний лист. Перевірте свою поштову скриньку, щоб підтвердити успіх Automatically append trackers from URL to new downloads: - + Автоматично додайте трекери з URL -адреси до нових завантажень: Torrent content removing mode: - + Режим видалення торрент-контенту: Move files to trash (if possible) - + Перемістити файли в кошик (якщо можливо) Stop torrent - + Зупинити торрент Use Category paths in Manual Mode - + Використовувати шляхи Категорій в Ручному Режимі List of alternative WebUI - + Список альтернативних Webui Run on torrent added: - + Запущено торрент додано: Port reported to trackers (requires restart) [0: listening port]: - + Порт, повідомлений трекерам (вимагає перезапуску) [0: Порт прослуховування]: User interface language: - + Мова інтерфейсу користувача: Merge trackers to existing torrent - + Об'єднати трекери в існуючий торрент Confirm torrent recheck: - + Підтвердьте перевірку торрент: Custom WebUI settings - + Спеціальні налаштування Webui Following settings are WebUI only - + Наступні налаштування - лише Webui Simple pread/pwrite - + Просте читання/запис Resolve relative Save Path against appropriate Category path instead of Default one - + Визначити відносний Шлях Збереження у відповідному шляху Категорії замість типового No action - + Нічого не робити Auto hide zero status filters - + Автоматичне приховування фільтрів нульового стану Interface - + Інтерфейс Log Files + Файли журналів + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy web seed URL - + Скопіюйте URL -адресу веб seed Replace option - + Параметр заміни Edit web seed URL... - + Редагувати URL -адресу веб seed ... Web seed URL: - + Адреса Веб-сіда: Yes - + Так Ratio / Time Active (in months), indicates how popular the torrent is - + Співвідношення / Час активності (у місяцях), вказує на популярність торрента Popularity: - + Популярність: Apply to which filename part - + Застосовуйте яку частину імені файлу No - + Ні Remove web seed - + Видаліть веб seed Web seed editing - + Редагування Веб-сіда Add web seeds... - + Додайте web seed ... Private: - + Приватний: @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) Завершені (0) - - Resumed (0) - Відновлені (0) - - - Paused (0) - Призупинені (0) - Active (0) Активні (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) Завершені (%1) - - Paused (%1) - Призупинені (%1) - - - Resumed (%1) - Відновлені (%1) - Active (%1) Активні (%1) @@ -2765,31 +2689,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + Виконується (0) Stopped (0) - + Зупинено (0) Stopped (%1) - + Зупинено (%1) Running (%1) - + Виконується (%1) Remove torrents - + Вилучити торренти Start torrents - + Запустити торренти Stop torrents - + Зупинити торренти @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size Розмір - - Done - % Done - Зроблено - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + Приватний Progress - + Прогрес Info Hash v2 - + Хеш інформації v2 Info Hash v1 - + Хеш інформації v1 Incomplete Save Path - + Неповний шлях збереження Popularity - + Популярність Status Icon - + Значок статусу @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 тому - - Paused - Призупинені - Completed Завершені @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + Зупинено N/A - + @@ -3210,7 +3125,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Collapse/expand category - + Категорія краху/розширення @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename Перейменувати - - Resume - Resume/start the torrent - Продовжити - - - Force Resume - Force Resume/start the torrent - Примусово продовжити - - - Pause - Pause the torrent - Призупинити - Limit share ratio... Обмежити коефіцієнт роздачі... @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category Нова категорія - - Location - Розташування - - - New name - Нова назва - Set location Задати розташування @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category Змінити категорію - - Save path - Шлях збереження - Comma-separated tags: Мітки, розділені комами: - - Add Tags - Додати мітки - Tags Мітки @@ -3414,39 +3298,39 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + Примусовий Старт Save path: - + Шлях збереження: Location: - + Розташування: Stop - + Зупинити Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Автоматичний режим означає, що різні властивості торрента (наприклад, шлях збереження) буде визначено через його категорію Start - + Старт New name: - + Нова назва: Add tags - + Додати тег Category: - + Категорія: @@ -3485,21 +3369,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - Також остаточно видалити файли - Remove torrent(s) Видалити торрент(и) Also remove the content files - + Також видаліть файли вмісту Remove tracker - + Вилучити трекер @@ -3703,23 +3583,23 @@ Use ';' to split multiple entries. Can use wildcard '*'. Select category - + Виберіть категорію Min size prefix - + Префікс мінімального розміру Start a search above. - + Почніть пошук вище. Max size prefix - + Префікс максимального розміру Select plugins - + Виберіть плагіни @@ -3775,25 +3655,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers Лічери - - Search engine - Пошуковик - Seeders Сідери Published On - + Опубліковано Engine URL - + URL-адреса двигуна Engine - + Двигун @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: Мітка: - - Pause torrents - Призупинити торренти - - - Resume torrents - Продовжити торренти - Remove unused tags Вилучити невикористовувані мітки @@ -3886,11 +3754,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + Запустити торренти Stop torrents - + Зупинити торренти @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + Пошук закінчено An error occurred during search... - + Під час пошуку сталася помилка... Close tab - + Закрити вкладку Searching... - + Шукаю... Search aborted - + Пошук скасовано Close all tabs - + Закрити усі вкладки @@ -4168,18 +4036,26 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + Редагувати розсилку URL каналу... Unable to update URL - + Неможливо оновити URL URL is unchanged - + URL незмінний URL cannot be empty + URL не може бути порожнім + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. Якщо порядок слів важливий, то використовуйте * замість пробілів. - - Add Paused: - Додати призупиненим: - Please type the name of the new download rule. Будь ласка, введіть назву нового правила завантаження. @@ -4433,58 +4305,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + Видалити правило Add rule - + Додати правило Add Stopped: - + Додавання зупинено: TrackerFiltersList - - Resume torrents - Продовжити торренти - - - All (%1) - Всі (%1) - - - Trackerless (%1) - Без трекерів (%1) - - - Pause torrents - Призупинити торренти - Remove torrents Вилучити торренти All - + Всі Trackerless - + Без трекера Start torrents - + Запустити торренти Remove tracker - + Вилучити трекер Stop torrents - + Зупинити торренти @@ -4637,124 +4493,316 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Ви впевнені, що хочете видалити трекер %1 з усіх торентів? Category Unable to edit category - + Не вдалося редагувати категорію OK - + Гаразд Unable to create category - + Не вдалося створити категорію Unable to set category - + Неможливо встановити категорію CookiesDialog Domain - + Доменне ім'я Manage Cookies - + Керування Cookies Add Cookie - + Додати Cookie Remove - + Видалити Expiration Date - + Кінцевий термін Value - + Значення Name - + Назва Path - + Шлях confirmAutoTMMDialog Enable automatic torrent management - + Увімкнути автоматичне керування торрентами Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Ви впевнені, що хочете увімкнути Автоматичне Керування Торрентами для вибраних торрент(ів)? Вони можуть бути переміщенні. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Ви впевнені, що хочете повторно перевірити вибрані торрент(и)? Recheck confirmation - + Підтвердження повторної перевірки SearchWidget Close tab - + Закрити вкладку Login qBittorrent WebUI - + qBittorrent WebUI Password - + Пароль JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Потрібен JavaScript! Для коректної роботи веб-інтерфейсу необхідно увімкнути JavaScript Login - + Логін Server response: - + Відповідь сервера: Unable to log in, server is probably unreachable. - + Не в змозі увійти, сервер, мабуть, недосяжний. Username - + Ім'я користувача Invalid Username or Password. + Неправильний логін або пароль. + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_uz@Latn.ts b/src/webui/www/translations/webui_uz@Latn.ts index 14da085a5..a858923df 100644 --- a/src/webui/www/translations/webui_uz@Latn.ts +++ b/src/webui/www/translations/webui_uz@Latn.ts @@ -788,6 +788,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -1261,10 +1265,6 @@ When adding a torrent - - Info: The password is saved unencrypted - - μTP-TCP mixed mode algorithm: @@ -1365,10 +1365,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -2133,6 +2129,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -4124,6 +4136,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4679,4 +4699,196 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent + + + \ No newline at end of file diff --git a/src/webui/www/translations/webui_vi.ts b/src/webui/www/translations/webui_vi.ts index d57811e52..8dad5aa3b 100644 --- a/src/webui/www/translations/webui_vi.ts +++ b/src/webui/www/translations/webui_vi.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + Một liên kết trên mỗi dòng (liên kết HTTP, liên kết nam châm và băm thông tin được hỗ trợ) Add torrent links - + Thêm liên kết torrent Select .torrent files - + Chọn tệp .torrent Torrent options - + Tùy chọn Torrent @@ -112,14 +112,6 @@ Remove unused categories Xóa danh mục không dùng - - Resume torrents - Tiếp tục torrent - - - Pause torrents - Tạm dừng torrent - New Category Danh Mục Mới @@ -138,11 +130,11 @@ Start torrents - + Chạy torrents Stop torrents - + Dừng torrents @@ -151,10 +143,6 @@ Exit qBittorrent Thoát qBittorrent - - Only one link per line - Chỉ một liên kết mỗi dòng - Global upload rate limit must be greater than 0 or disabled. Giới hạn tốc độ tải lên chung phải lớn hơn 0 hoặc bị vô hiệu hóa. @@ -228,10 +216,6 @@ Save files to location: Lưu tệp vào vị trí: - - Cookie: - Cookie: - More information Thêm thông tin @@ -295,10 +279,6 @@ Logout Đăng xuất - - Download Torrents from their URLs or Magnet links - Tải xuống Torrent từ các URL hoặc liên kết Magnet của họ - Upload local torrent Tải lên torrent cục bộ @@ -309,7 +289,7 @@ qBittorrent client is not reachable - Máy khách qBittorrent không thể kết nối + Ứng dụng khách QbittTorrent không thể truy cập được Global number of upload slots limit must be greater than 0 or disabled. @@ -319,13 +299,9 @@ Invalid category name:\nPlease do not use any special characters in the category name. Tên danh mục không hợp lệ: \nĐừng dùng ký tự đặc biệt nào trong tên danh mục. - - Unable to create category - Không thể tạo danh mục - Upload rate threshold must be greater than 0. - Ngưỡng tốc độ tải lên phải lớn hơn 0. + Ngưỡng tỷ lệ tải lên phải lớn hơn 0. Edit @@ -333,7 +309,7 @@ Free space: %1 - Dung lượng trống: %1 + Không gian trống: %1 Torrent inactivity timer must be greater than 0. @@ -383,10 +359,6 @@ Original author Tác giả gốc - - Are you sure you want to remove the selected torrents from the transfer list? - Bạn có chắc muốn xóa các torrent đã chọn khỏi danh sách trao đổi không? - The port used for the WebUI must be between 1 and 65535. Cổng dùng cho WebUI nằm trong khoảng từ 1 đến 65535. @@ -401,75 +373,75 @@ External IP: N/A - + IP ngoài: N/A Reverse proxy setup examples - + Ví dụ thiết lập proxy ngược Could not contact qBittorrent - + Không thể liên hệ với qBittorrent Remember choice - + Nhớ lựa chọn Are you sure you want to remove these %1 torrents from the transfer list? - + Bạn có chắc muốn xóa những %1 torrent này từ danh sách trao đổi? Unable to delete torrents. - + Không thể xóa torrent. URL - + Đường dẫn External IP: %1%2 - + IP ngoài: %1%2 Edit web seed - + Chỉnh sửa hạt giống web Are you sure you want to remove %1 from the transfer list? - + Bạn có chắc là bạn muốn xóa %1 khỏi danh sách trao đổi? Unable to set Auto Torrent Management for the selected torrents. - + Không thể đặt Quản Lý Torrent Tự Động cho các torrent đã chọn. Unable to stop torrents. - + Không thể dừng torrent. Unable to download file - + Không thể tải về tệp External IPs: %1, %2 - + IP bên ngoài: %1, %2 Unable to recheck torrents. - + Không thể kiểm tra lại torrent. List of web seeds to add (one per line): - + Danh sách các hạt giống web để thêm (một trên mỗi dòng): Unable to start torrents. - + Không thể chạy torrent. Add web seeds - + Thêm hạt giống web @@ -498,10 +470,6 @@ Options... Tùy Chọn... - - Resume - Tiếp Tục Lại - Top Toolbar Thanh Công Cụ Trên Cùng @@ -518,10 +486,6 @@ Donate! Quyên góp! - - Resume All - Tiếp Tục Tất Cả - Statistics Thống kê @@ -530,14 +494,6 @@ About Thông tin - - Pause - Tạm Dừng - - - Pause All - Tạm Dừng Tất Cả - Add Torrent File... Thêm tệp Torrent... @@ -678,14 +634,6 @@ Remove Xóa - - Would you like to resume all torrents? - Bạn có muốn tiếp tục tất cả các torrent không? - - - Would you like to pause all torrents? - Bạn có muốn tạm dừng tất cả các torrent? - Execution Log Nhật Ký Thực Thi @@ -700,50 +648,54 @@ Filter by: - + Lọc bởi: Save Path - + Đường Dẫn Lưu Stop - + Dừng Use regular expression - + Dùng biểu thức chính quy Would you like to start all torrents? - + Bạn có muốn bắt đầu tất cả các torrent không? Start - + Chạy Manage Cookies... - + Quản lý Cookie... Unable to export torrent file - + Không thể xuất tệp torrent Name - + Tên Would you like to stop all torrents? - + Bạn có muốn dừng tất cả các torrent không? Start All - + Chạy Tất Cả Stop All + Dừng Tất Cả + + + Torrent Creator @@ -773,10 +725,6 @@ Language Ngôn ngữ - - User Interface Language: - Ngôn ngữ giao diện người dùng: - Email notification upon download completion Thông báo qua email khi hoàn tất quá trình tải xuống @@ -793,10 +741,6 @@ Torrent Queueing Xếp hàng Torrent - - Automatically add these trackers to new downloads: - Tự động thêm các máy theo dõi này vào các bản tải xuống mới: - Web User Interface (Remote control) Giao diện người dùng web (Điều khiển từ xa) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - Thông tin: Mật khẩu đã lưu không mã hóa + Thông tin: Mật khẩu đã lưu không mã hóa μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload Tải lên nhanh nhất - - Pause torrent - Tạm dừng torrent - Remove torrent and its files Xóa torrent và các tệp của nó @@ -1337,7 +1277,7 @@ s - giây + giây Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: Cấm máy khách sau những lần thất bại liên tiếp: - - Enable cookie Secure flag (requires HTTPS) - Bật cờ bảo mật cookie (yêu cầu HTTPS) - Header: value pairs, one per line Phần đầu: các cặp giá trị, một cặp trên mỗi dòng @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): Hỗ trợ tên miền quốc tế hóa (IDN): - - Run external program on torrent finished - Chạy chương trình ngoài trên torrent đã xong - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ bạn nên đặt tên miền được sử dụng bởi máy chủ WebUI. Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự đại diện '*'. - - Run external program on torrent added - Chạy chương trình bên ngoài trên torrent đã thêm - HTTPS certificate should not be empty Chứng chỉ HTTPS không được để trống @@ -1727,10 +1655,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự days ngày - - Log file - Tệp nhật ký - Behavior Hành vi @@ -1945,182 +1869,198 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Color scheme: - + Bảng màu: Show external IP in status bar - + Hiển thị IP bên ngoài trong thanh trạng thái Fetched trackers - + Tìm nạp máy theo dõi Confirm when deleting torrents - + Xác nhận khi xóa torrent Ignore SSL errors: - + Bỏ qua lỗi SSL: Dark - + Tối Delete files permanently - + Xóa tập tin vĩnh viễn Auto - + Tự động Use alternating row colors - + Sử dụng các màu hàng xen kẽ Display full announce URL in the Tracker column - + Hiển thị URL thông báo đầy đủ trong cột Máy theo dõi URL: - + URL: Transfer list - + Danh sách trao đổi The announce port must be between 0 and 65535. - + Cổng thông báo phải nằm trong khoảng từ 0 đến 65535. Light - + Sáng Automatically append these trackers to new downloads: - + Tự động thêm các máy theo dõi này vào bản tải xuống mới: Downloading torrents: - + Đang tải xuống torrent: Start / stop torrent - + Chạy / dừng torrent Send test email - + Gửi email kiểm tra Completed torrents: - + Torrent đã hoàn tất: Enable cookie Secure flag (requires HTTPS or localhost connection) - + Bật cờ an toàn cookie (yêu cầu kết nối HTTPS hoặc localhost) When duplicate torrent is being added - + Khi torrent trùng lặp đang được thêm vào Action on double-click - + Thao tác khi đúp chuột Save statistics interval: - + Lưu khoảng thời gian thống kê: Shows a confirmation dialog upon torrent deletion - + Hiển thị hộp thoại xác nhận khi xóa torrent Run on torrent finished: - + Chạy trên torrent đã hoàn thành: Attempted to send email. Check your inbox to confirm success - + Đã cố gắng gửi email. Kiểm tra hộp thư đến của bạn để xác nhận thành công Automatically append trackers from URL to new downloads: - + Tự động nối các trình theo dõi từ URL sang tải xuống mới: Torrent content removing mode: - + Chế độ xóa nội dung torrent: Move files to trash (if possible) - + Đưa tệp vào thùng rác (nếu có thể) Stop torrent - + Dừng torrents Use Category paths in Manual Mode - + Dùng đường dẫn Danh Mục ở Chế Độ Thủ Công List of alternative WebUI - + Danh sách Webui thay thế Run on torrent added: - + Chạy trên torrent được thêm vào: Port reported to trackers (requires restart) [0: listening port]: - + Cổng được báo cáo cho Trình theo dõi (yêu cầu khởi động lại) [0: Cổng nghe]: User interface language: - + Ngôn ngữ giao diện người dùng: Merge trackers to existing torrent - + Gộp máy theo dõi với torrent hiện có Confirm torrent recheck: - + Xác nhận kiểm tra lại torrent: Custom WebUI settings - + Cài đặt Webui tùy chỉnh Following settings are WebUI only - + Cài đặt sau chỉ cho WebUI Simple pread/pwrite - + pread/pwrite đơn giản Resolve relative Save Path against appropriate Category path instead of Default one - + Xử lý Đường Dẫn Lưu tương đối dựa trên đường dẫn Danh Mục thích hợp thay vì đường dẫn Mặc định No action - + Không thao tác Auto hide zero status filters - + Tự động ẩn bộ lọc trạng thái không Interface - + Giao diện Log Files + Tệp Nhật Ký + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Copy web seed URL - + Sao chép URL hạt giống web Replace option - + Tùy chọn thay thế Edit web seed URL... - + Chỉnh sửa URL hạt giống web ... Web seed URL: - + Đường liên kết seed Web: Yes - + Đồng Ý Ratio / Time Active (in months), indicates how popular the torrent is - + Tỷ lệ / Thời gian hoạt động (tính theo tháng), cho biết mức độ phổ biến của torrent Popularity: - + Phổ biến: Apply to which filename part - + Áp dụng cho phần tệp nào No - + Không Đồng Ý Remove web seed - + Loại bỏ hạt giống web Web seed editing - + Đang chỉnh sửa seed Web Add web seeds... - + Thêm hạt giống web... Private: - + Riêng tư: @@ -2667,14 +2607,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Completed (0) Đã Hoàn Tất (0) - - Resumed (0) - Đã tiếp tục (0) - - - Paused (0) - Tạm dừng (0) - Active (0) Hoạt động (0) @@ -2703,14 +2635,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Completed (%1) Đã Hoàn Tất (%1) - - Paused (%1) - Bị tạm dừng (%1) - - - Resumed (%1) - Đã tiếp tục (%1) - Active (%1) Hoạt động (%1) @@ -2765,31 +2689,31 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Running (0) - + Đang chạy (0) Stopped (0) - + Đã dừng (0) Stopped (%1) - + Đã dừng (%1) Running (%1) - + Đang chạy (%1) Remove torrents - + Xóa các torrent Start torrents - + Chạy torrents Stop torrents - + Dừng torrents @@ -2807,11 +2731,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự i.e: torrent size Kích thước - - Done - % Done - Xong - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Private - + Riêng tư Progress - + Tiến độ Info Hash v2 - + Thông Tin Băm v2 Info Hash v1 - + Thông Tin Băm v1: Incomplete Save Path - + Đường Dẫn Lưu Chưa Hoàn Tất Popularity - + Phổ biến Status Icon - + Biểu Tượng Trạng Thái @@ -3109,10 +3028,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự e.g.: 1h 20m ago %1 trước - - Paused - Bị tạm dừng - Completed Đã Hoàn Tất @@ -3179,11 +3094,11 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Stopped - + Đã dừng lại N/A - + Không áp dụng @@ -3210,7 +3125,7 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Collapse/expand category - + Thu gọn/mở rộng danh mục @@ -3227,21 +3142,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Rename Đổi tên - - Resume - Resume/start the torrent - Tiếp tục - - - Force Resume - Force Resume/start the torrent - Buộc tiếp tục - - - Pause - Pause the torrent - Tạm dừng - Limit share ratio... Giới hạn tỉ lệ chia sẻ... @@ -3320,14 +3220,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự New Category Danh Mục Mới - - Location - Vị trí - - - New name - Tên mới - Set location Đặt vị trí @@ -3340,18 +3232,10 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Edit Category Sửa Danh Mục - - Save path - Đường dẫn lưu - Comma-separated tags: Phân tách các thẻ bằng dấu phẩy: - - Add Tags - Thêm Thẻ - Tags Thẻ @@ -3414,39 +3298,39 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Force Start - + Buộc Chạy Save path: - + Đường dẫn lưu: Location: - + Vị trí: Stop - + Dừng Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + Chế độ tự động nghĩa là các thuộc tính torrent khác nhau (ví dụ: đường dẫn lưu) sẽ được quyết định bởi danh mục liên quan Start - + Chạy New name: - + Tên mới: Add tags - + Thêm thẻ Category: - + Danh mục: @@ -3485,21 +3369,17 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự confirmDeletionDlg - - Also permanently delete the files - Đồng thời xóa vĩnh viễn các tệp - Remove torrent(s) Xóa torrent(s) Also remove the content files - + Đồng thời xóa các tập tin nội dung Remove tracker - + Xóa máy theo dõi @@ -3703,23 +3583,23 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Select category - + Chọn danh mục Min size prefix - + Kích thước tiền tố tối thiểu Start a search above. - + Bắt đầu tìm kiếm ở trên. Max size prefix - + Kích thước tiền tố tối đa Select plugins - + Chọn plugin @@ -3775,25 +3655,21 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Leechers Người leech - - Search engine - Máy tìm kiếm - Seeders Máy chia sẻ Published On - + Đã Xuất Bản Lúc Engine URL - + URL Máy Engine - + Máy @@ -3860,14 +3736,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Tag: Thẻ: - - Pause torrents - Tạm dừng torrent - - - Resume torrents - Tiếp tục torrent - Remove unused tags Xóa thẻ không dùng @@ -3886,11 +3754,11 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Start torrents - + Chạy torrents Stop torrents - + Dừng torrents @@ -4034,27 +3902,27 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Search has finished - + Tìm kiếm đã kết thúc An error occurred during search... - + Đã xảy ra lỗi khi tìm kiếm... Close tab - + Đóng tab Searching... - + Đang tìm kiếm... Search aborted - + Tìm kiếm bị hủy bỏ Close all tabs - + Đóng tất cả cửa sổ @@ -4168,18 +4036,26 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Edit feed URL... - + Sửa URL nguồn cấp... Unable to update URL - + Không thể cập nhật URL URL is unchanged - + URL không thay đổi URL cannot be empty + URL không thể bỏ trống + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự If word order is important use * instead of whitespace. Nếu thứ tự từ là quan trọng, hãy dùng * thay vì khoảng trắng. - - Add Paused: - Thêm Bị Tạm Dừng: - Please type the name of the new download rule. Vui lòng nhập tên của quy tắc tải xuống mới. @@ -4433,58 +4305,42 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Remove rule - + Xóa quy tắc Add rule - + Thêm quy tắc Add Stopped: - + Thêm Đã Dừng: TrackerFiltersList - - Resume torrents - Tiếp tục torrent - - - All (%1) - Tất cả (%1) - - - Trackerless (%1) - Không máy theo dõi (%1) - - - Pause torrents - Tạm dừng torrent - Remove torrents Xóa các torrent All - + Tất cả Trackerless - + Không theo dõi Start torrents - + Chạy torrents Remove tracker - + Xóa máy theo dõi Stop torrents - + Dừng torrents @@ -4637,124 +4493,316 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + Bạn có chắc là bạn muốn xóa Tracker %1 khỏi tất cả các torrent? Category Unable to edit category - + Không thể sửa danh mục được OK - + Đồng ý Unable to create category - + Không thể tạo danh mục Unable to set category - + Không thể đặt danh mục CookiesDialog Domain - + Miền Manage Cookies - + Quản lý Cookie Add Cookie - + Thêm Cookie Remove - + Xóa Expiration Date - + Ngày Hết Hạn Value - + Giá trị Name - + Tên Path - + Đường dẫn confirmAutoTMMDialog Enable automatic torrent management - + Bật quản lý torrent tự động Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Bạn có chắc chắn muốn bật Quản lý Torrent Tự động cho (các) torrent đã chọn không? Nó có thể được đổi chỗ. confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + Bạn có chắc muốn kiểm tra lại (các)torrent đã chọn? Recheck confirmation - + Kiểm tra lại xác nhận SearchWidget Close tab - + Đóng tab Login qBittorrent WebUI - + qBittorrent WebUI Password - + Mật khẩu JavaScript Required! You must enable JavaScript for the WebUI to work properly - + Cần có JavaScript! Bạn phải bật JavaScript để WebUI hoạt động bình thường Login - + Đăng nhập Server response: - + Máy chủ phản hồi: Unable to log in, server is probably unreachable. - + Không thể đăng nhập, máy chủ có thể không thể truy cập được. Username - + Tên tài khoản Invalid Username or Password. + Tên tài khoản hoặc Mật khẩu không hợp lệ + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_zh_CN.ts b/src/webui/www/translations/webui_zh_CN.ts index f39851122..213e20c36 100644 --- a/src/webui/www/translations/webui_zh_CN.ts +++ b/src/webui/www/translations/webui_zh_CN.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + 每行一个链接(支持 HTTP 链接,磁力链接和哈希值) Add torrent links - + 添加 torrent 链接 Select .torrent files - + 选择 .torrent 文件 Torrent options - + Torrent 选项 @@ -112,14 +112,6 @@ Remove unused categories 移除未使用的分类 - - Resume torrents - 继续 torrent - - - Pause torrents - 暂停 torrent - New Category 新建分类 @@ -138,11 +130,11 @@ Start torrents - + 启动 torrent Stop torrents - + 停止 torrent @@ -151,10 +143,6 @@ Exit qBittorrent 退出 qBittorrent - - Only one link per line - 每行一个连接 - Global upload rate limit must be greater than 0 or disabled. 全局上传速度限制必须大于 0 或禁用。 @@ -228,10 +216,6 @@ Save files to location: 保存文件到: - - Cookie: - Cookie: - More information 更多信息 @@ -295,10 +279,6 @@ Logout 注销 - - Download Torrents from their URLs or Magnet links - 从 URL 或磁力链接下载 Torrent - Upload local torrent 上传本地的 torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. 无效的分类名:\n在分类名中请不要使用特殊字符。 - - Unable to create category - 无法创建分类 - Upload rate threshold must be greater than 0. 上传速率阈值必须大于 0。 @@ -383,10 +359,6 @@ Original author 原始作者 - - Are you sure you want to remove the selected torrents from the transfer list? - 你确定要从传输列表中删除选中的 torrent 吗? - The port used for the WebUI must be between 1 and 65535. 用于 WebUI 的端口必选在 1 和 65535 之间 @@ -401,75 +373,75 @@ External IP: N/A - + 外部 IP:N/A Reverse proxy setup examples - + 反向代理设置示例 Could not contact qBittorrent - + 无法联系 qBittorrent Remember choice - + 记住选择 Are you sure you want to remove these %1 torrents from the transfer list? - + 您确定要从传输列表中删除这 %1 个 Torrent 吗? Unable to delete torrents. - + 无法删除 torrents。 URL - + URL External IP: %1%2 - + 外部 IP:%1%2 Edit web seed - + 编辑 web 种子 Are you sure you want to remove %1 from the transfer list? - + 您确定要从传输列表中删除 “%1” 吗? Unable to set Auto Torrent Management for the selected torrents. - + 无法为所选 Torrent 设置自动 Torrent 管理。 Unable to stop torrents. - + 无法停止 torrents。 Unable to download file - + 无法下载文件 External IPs: %1, %2 - + 外部 IP:%1, %2 Unable to recheck torrents. - + 无法重新校验 torrent。 List of web seeds to add (one per line): - + 添加 web 种子到列表(每行一个): Unable to start torrents. - + 无法开始 torrents。 Add web seeds - + 添加 web 种子 @@ -498,10 +470,6 @@ Options... 选项... - - Resume - 继续 - Top Toolbar 顶部工具栏 @@ -518,10 +486,6 @@ Donate! 捐赠 - - Resume All - 重新开始所有任务 - Statistics 统计 @@ -530,14 +494,6 @@ About 关于 - - Pause - 暂停 - - - Pause All - 暂停所有任务 - Add Torrent File... 添加 Torrent 文件... @@ -678,14 +634,6 @@ Remove 删除 - - Would you like to resume all torrents? - 您要继续所有的 Torrent 吗? - - - Would you like to pause all torrents? - 您要暂停所有的 Torrent 吗? - Execution Log 执行日志 @@ -700,50 +648,54 @@ Filter by: - + 过滤依据: Save Path - + 保存路径 Stop - + 停止 Use regular expression - + 使用正则表达式 Would you like to start all torrents? - + 你要启动所有 torrent 吗? Start - + 启动 Manage Cookies... - + 管理 Cookies... Unable to export torrent file - + 无法导出 torrent 文件 Name - + 名称 Would you like to stop all torrents? - + 你要停止所有 torrent 吗? Start All - + 全部启动 Stop All + 全部停止 + + + Torrent Creator @@ -773,10 +725,6 @@ Language 语言 - - User Interface Language: - 用户界面语言: - Email notification upon download completion 下载完成时发送电子邮件通知 @@ -793,10 +741,6 @@ Torrent Queueing Torrent 排队 - - Automatically add these trackers to new downloads: - 自动添加以下 tracker 到新的 torrent: - Web User Interface (Remote control) Web 用户界面(远程控制) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - 提示:密码未加密 + 提示:密码未加密 μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload 最快上传 - - Pause torrent - 暂停 torrent - Remove torrent and its files 删除 torrent 及所属文件 @@ -1337,7 +1277,7 @@ s - + Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: 连续失败后禁止客户端: - - Enable cookie Secure flag (requires HTTPS) - 启用 cookie 安全标志(需要 HTTPS) - Header: value pairs, one per line Header: value 值对,每行一个 @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): 支持国际化域名(IDN): - - Run external program on torrent finished - torrent 完成时运行外部程序 - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. 使用 ';' 区分不同的输入。可以使用通配符 '*'。 - - Run external program on torrent added - 新增 torrent 时运行外部程序 - HTTPS certificate should not be empty HTTPS 证书不能为空 @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days - - Log file - 日志文件 - Behavior 行为 @@ -1945,182 +1869,198 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + 配色方案: Show external IP in status bar - + 在状态栏展示外部 IP Fetched trackers - + 获取 tracker Confirm when deleting torrents - + 删除 Torrent 时提示确认 Ignore SSL errors: - + 忽略 SSL 错误: Dark - + 深色 Delete files permanently - + 永久删除文件 Auto - + 自动 Use alternating row colors - + 使用交替的行颜色 Display full announce URL in the Tracker column - + 在Tracker 栏目展示完整的公告URL URL: - + 网址: Transfer list - + 传输列表 The announce port must be between 0 and 65535. - + 公告端口必须为 0 到 65535 之间。 Light - + 浅色 Automatically append these trackers to new downloads: - + 自动附加这些 tracker 到新下载: Downloading torrents: - + 正在下载的 torrent: Start / stop torrent - + 开始 / 停止 torrent Send test email - + 发送测试邮件 Completed torrents: - + 完成的 torrent: Enable cookie Secure flag (requires HTTPS or localhost connection) - + 启用 cookie 安全标志(需要 HTTPS或本地连接) When duplicate torrent is being added - + 当添加重复的 torrent 时 Action on double-click - + 双击执行操作 Save statistics interval: - + 保存统计数据间隔: Shows a confirmation dialog upon torrent deletion - + 删除 Torrent 时显示确认对话框 Run on torrent finished: - + torrent 完成时运行: Attempted to send email. Check your inbox to confirm success - + 已尝试发送邮件。检查你的收件箱确认是否发送成功 Automatically append trackers from URL to new downloads: - + 自动添加 URL 中的 trackers 到新的下载: Torrent content removing mode: - + Torrent 内容删除模式: Move files to trash (if possible) - + 移动文件到回收站(如果可能) Stop torrent - + 停止 torrent Use Category paths in Manual Mode - + 在手动模式下使用分类路径 List of alternative WebUI - + 备选 WebUI 列表 Run on torrent added: - + 新增 Torrent 时运行: Port reported to trackers (requires restart) [0: listening port]: - + 报告给 trackers的端口(需要重启)[0:监听端口]: User interface language: - + 用户界面语言: Merge trackers to existing torrent - + 合并 tracker 到现有 torrent Confirm torrent recheck: - + Torrent 重新校验确认: Custom WebUI settings - + 自定义 WebUI 设置 Following settings are WebUI only - + 以下设置仅适用于 WebUI Simple pread/pwrite - + 简单预读/预写 Resolve relative Save Path against appropriate Category path instead of Default one - + 根据适当的分类路径而不是默认路径解析相对的保存路径 No action - + 不执行操作 Auto hide zero status filters - + 自动隐藏零状态过滤器 Interface - + 界面 Log Files + 日志文件 + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy web seed URL - + 复制 Web 种子 URL Replace option - + 替换选项 Edit web seed URL... - + 编辑 Web 种子 URL... Web seed URL: - + Web 种子 URL: Yes - + Ratio / Time Active (in months), indicates how popular the torrent is - + 分享率/活跃时间(月份为单位),表明 torrent 的流行度 Popularity: - + 流行度: Apply to which filename part - + 应用于文件名的哪个部分 No - + Remove web seed - + 移除 Web 种子 Web seed editing - + 编辑 Web 种子 Add web seeds... - + 添加 web 种子... Private: - + 私密: @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) 完成 (0) - - Resumed (0) - 恢复 (0) - - - Paused (0) - 暂停 (0) - Active (0) 活动 (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) 完成 (%1) - - Paused (%1) - 暂停 (%1) - - - Resumed (%1) - 恢复 (%1) - Active (%1) 活动 (%1) @@ -2765,31 +2689,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + 正运行 (0) Stopped (0) - + 已停止 (0) Stopped (%1) - + 已停止 (%1) Running (%1) - + 正运行 (%1) Remove torrents - + 移除 Torrent Start torrents - + 启动 torrent Stop torrents - + 停止 torrent @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size 选定大小 - - Done - % Done - 已完成 - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + 私密 Progress - + 进度 Info Hash v2 - + 信息哈希值 v2 Info Hash v1 - + 信息哈希值 v1 Incomplete Save Path - + 保存路径不完整 Popularity - + 流行度 Status Icon - + 状态图标 @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 前 - - Paused - 暂停 - Completed 完成 @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + 已停止 N/A - + N/A @@ -3210,7 +3125,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Collapse/expand category - + 折叠/展开分类 @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename 重命名 - - Resume - Resume/start the torrent - 继续 - - - Force Resume - Force Resume/start the torrent - 强制继续 - - - Pause - Pause the torrent - 暂停 - Limit share ratio... 限制分享率... @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category 新分类 - - Location - 路径 - - - New name - 新名称 - Set location 更改保存位置 @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category 编辑分类 - - Save path - 保存路径 - Comma-separated tags: 标签(以逗号分隔): - - Add Tags - 添加标签 - Tags 标签 @@ -3414,39 +3298,39 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + 强制启动 Save path: - + 保存路径: Location: - + 路径: Stop - + 停止 Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + 自动模式表示不同的 torrent 的配置信息(例如保存路径)将由相关的分类决定 Start - + 启动 New name: - + 新名称: Add tags - + 添加标签 Category: - + 分类: @@ -3485,21 +3369,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - 并永久删除这些文件 - Remove torrent(s) 移除 Torrent Also remove the content files - + 同时删除已下载的文件 Remove tracker - + 移除 tracker @@ -3703,23 +3583,23 @@ Use ';' to split multiple entries. Can use wildcard '*'. Select category - + 选择分类 Min size prefix - + 最小文件体积 Start a search above. - + 在上方启动搜索。 Max size prefix - + 最大文件体积 Select plugins - + 选择插件 @@ -3775,25 +3655,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers 下载 - - Search engine - 搜索引擎 - Seeders 做种 Published On - + 发布于 Engine URL - + 引擎 URL Engine - + 引擎 @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: 标签: - - Pause torrents - 暂停 torrent - - - Resume torrents - 继续 torrent - Remove unused tags 删除未使用的标签 @@ -3886,11 +3754,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + 启动 torrent Stop torrents - + 停止 torrent @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + 搜索已完成 An error occurred during search... - + 搜索期间发生错误... Close tab - + 关闭标签 Searching... - + 搜索... Search aborted - + 搜索中止 Close all tabs - + 关闭所有标签 @@ -4168,18 +4036,26 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + 编辑源 URL... Unable to update URL - + 无法更新 URL URL is unchanged - + URL 未更改 URL cannot be empty + URL 不能为空 + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. 如果要区分关键词顺序,请使用 * 替代空格。 - - Add Paused: - 添加后不开始下载: - Please type the name of the new download rule. 请输入新的下载规则的名称。 @@ -4433,58 +4305,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + 移除规则 Add rule - + 增加规则 Add Stopped: - + 添加已停止的: TrackerFiltersList - - Resume torrents - 继续 Torrent - - - All (%1) - 全部 (%1) - - - Trackerless (%1) - 缺少 Tracker (%1) - - - Pause torrents - 暂停 Torrent - Remove torrents 移除 Torrent All - + 全部 Trackerless - + 没有 Tracker Start torrents - + 启动 torrent Remove tracker - + 移除 tracker Stop torrents - + 停止 torrent @@ -4637,124 +4493,316 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + 你确定要从所有 Torrent 移除 Tracker "%1"吗? Category Unable to edit category - + 无法编辑分类 OK - + 确定 Unable to create category - + 无法创建分类 Unable to set category - + 无法设置分类 CookiesDialog Domain - + 域名 Manage Cookies - + 管理 Add Cookie - + 添加 Cookie Remove - + 删除 Expiration Date - + 过期时间 Value - + Name - + 名称 Path - + 路径 confirmAutoTMMDialog Enable automatic torrent management - + 启用自动 Torrent 管理 Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + 你确定要为选定的 Torrent 启用自动 Torrent 管理吗?它们可能会被移动到新位置。 confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + 您确定要重新校验所选的 Torrent 吗? Recheck confirmation - + 确认重新校验 SearchWidget Close tab - + 关闭标签 Login qBittorrent WebUI - + qBittorrent WebUI Password - + 密码 JavaScript Required! You must enable JavaScript for the WebUI to work properly - + JavaScript 是必需的!要让 WebUI 正确工作,你必须启用 JavaScript Login - + 登录 Server response: - + 服务器响应: Unable to log in, server is probably unreachable. - + 登录失败,服务器可能无法访问。 Username - + 用户名 Invalid Username or Password. + 无效的用户名或密码。 + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_zh_HK.ts b/src/webui/www/translations/webui_zh_HK.ts index 6471e1113..90455e490 100644 --- a/src/webui/www/translations/webui_zh_HK.ts +++ b/src/webui/www/translations/webui_zh_HK.ts @@ -72,11 +72,11 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + 一行一連結(支援HTTP連結、磁性連結和資料驗證碼) Add torrent links - + 加入Torrent連結 Select .torrent files @@ -112,14 +112,6 @@ Remove unused categories 清除未使用分類 - - Resume torrents - 回復Torrent - - - Pause torrents - 暫停Torrent - New Category 新分類 @@ -151,10 +143,6 @@ Exit qBittorrent 關閉qBittorrent - - Only one link per line - 一行一連結 - Global upload rate limit must be greater than 0 or disabled. 整體上載速度限制:請停用或設定大於零。 @@ -228,10 +216,6 @@ Save files to location: 儲存檔案到: - - Cookie: - Cookie: - More information 更多資訊 @@ -295,10 +279,6 @@ Logout 登出 - - Download Torrents from their URLs or Magnet links - 從網址或磁性連結下載Torrent - Upload local torrent 上載本機Torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. 無效分類名稱:\n分類名稱不准使用特殊字元。 - - Unable to create category - 無法建立分類 - Upload rate threshold must be greater than 0. 上載速度下限須大於零。 @@ -383,10 +359,6 @@ Original author 原作者 - - Are you sure you want to remove the selected torrents from the transfer list? - 你肯定要從傳輸清單中清除所選Torrent? - The port used for the WebUI must be between 1 and 65535. @@ -413,11 +385,11 @@ Remember choice - + 記住選擇 Are you sure you want to remove these %1 torrents from the transfer list? - + 您確定要移除在傳輸清單中的這 %1 個 torrent 嗎? Unable to delete torrents. @@ -425,7 +397,7 @@ URL - + 網址 External IP: %1%2 @@ -498,10 +470,6 @@ Options... 喜好設定 - - Resume - 取消暫停 - Top Toolbar 頂端工具列 @@ -518,10 +486,6 @@ Donate! 捐款 - - Resume All - 全部取消暫停 - Statistics 統計資料 @@ -530,14 +494,6 @@ About 關於 - - Pause - 暫停 - - - Pause All - 全部暫停 - Add Torrent File... 加入Torrent檔 @@ -678,14 +634,6 @@ Remove 移除 - - Would you like to resume all torrents? - 您想要繼續所有 torrents 嗎? - - - Would you like to pause all torrents? - 您想要暫停所有 torrents 嗎? - Execution Log 執行日誌 @@ -704,11 +652,11 @@ Save Path - + 儲存路徑 Stop - + 停止 Use regular expression @@ -724,7 +672,7 @@ Manage Cookies... - + 管理Cookie… Unable to export torrent file @@ -732,7 +680,7 @@ Name - + 名稱 Would you like to stop all torrents? @@ -746,6 +694,10 @@ Stop All + + Torrent Creator + + OptionsDialog @@ -773,10 +725,6 @@ Language 語言 - - User Interface Language: - 介面語言: - Email notification upon download completion 下載完成時以電郵通知 @@ -793,10 +741,6 @@ Torrent Queueing Torrent排程 - - Automatically add these trackers to new downloads: - 自動加入以下追蹤器到新下載: - Web User Interface (Remote control) 網絡用戶介面(Web UI遠端控制) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - (注意:儲存的密碼不會加密) + (注意:儲存的密碼不會加密) μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload 最快上載 - - Pause torrent - 暫停 torrent - Remove torrent and its files 移除 torrent 與其檔案 @@ -1337,7 +1277,7 @@ s - + Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: 連續失敗後封鎖用戶端: - - Enable cookie Secure flag (requires HTTPS) - 啟用 cookie 安全旗標(需要 HTTPS) - Header: value pairs, one per line 標頭:鍵值對,一行一個 @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): 支援國際化域名 (IDN): - - Run external program on torrent finished - 當 torrent 下載結束時執行外部程式 - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. 使用「;」分開多個項目。可使用萬用字元「*」。 - - Run external program on torrent added - 當新增 torrent 時執行外部程式 - HTTPS certificate should not be empty HTTPS 憑證不可留空 @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days - - Log file - 備份執行日誌 - Behavior 起行 @@ -1957,7 +1881,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Confirm when deleting torrents - + 刪除Torrent時須確認 Ignore SSL errors: @@ -1973,11 +1897,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Auto - + 自動 Use alternating row colors - + 單雙行交替背景色彩 Display full announce URL in the Tracker column @@ -1985,7 +1909,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL: - + 網址: Transfer list @@ -2005,7 +1929,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Downloading torrents: - + 下載中的Torrent: Start / stop torrent @@ -2017,7 +1941,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed torrents: - + 完成的Torrent: Enable cookie Secure flag (requires HTTPS or localhost connection) @@ -2029,7 +1953,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Action on double-click - + 按兩下鼠鍵的行動 Save statistics interval: @@ -2037,7 +1961,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Shows a confirmation dialog upon torrent deletion - + Torrent 刪除時顯示確認對話框 Run on torrent finished: @@ -2065,7 +1989,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Use Category paths in Manual Mode - + 在手動模式下使用分類路徑 List of alternative WebUI @@ -2105,11 +2029,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Resolve relative Save Path against appropriate Category path instead of Default one - + 根據適當的分類路徑而非預設路徑解析相對儲存路徑 No action - + 甚麼都不做 Auto hide zero status filters @@ -2117,12 +2041,28 @@ Use ';' to split multiple entries. Can use wildcard '*'. Interface - + 界面 Log Files + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec + + PeerListWidget @@ -2501,11 +2441,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed URL: - + Web種子網址: Yes - + Ratio / Time Active (in months), indicates how popular the torrent is @@ -2521,7 +2461,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. No - + Remove web seed @@ -2529,7 +2469,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Web seed editing - + 編輯Web種子 Add web seeds... @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) 完成(0) - - Resumed (0) - 回復下載(0) - - - Paused (0) - 暫停(0) - Active (0) 活躍(0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) 完成(%1) - - Paused (%1) - 暫停(%1) - - - Resumed (%1) - 回復下載(%1) - Active (%1) 活躍(%1) @@ -2781,7 +2705,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove torrents - + 移除 torrents Start torrents @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size 大小 - - Done - % Done - 完成 - Status Torrent status (e.g. downloading, seeding, paused) @@ -2953,19 +2872,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Progress - + 進度 Info Hash v2 - + 資訊雜湊值 v2 Info Hash v1 - + 資訊雜湊值 v1 Incomplete Save Path - + 不完整的儲存路徑 Popularity @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1前 - - Paused - 暫停 - Completed 已完成 @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + 已停止 N/A - + N/A @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename 重新命名 - - Resume - Resume/start the torrent - 取消暫停 - - - Force Resume - Force Resume/start the torrent - 強制取消暫停 - - - Pause - Pause the torrent - 暫停 - Limit share ratio... 設定最大分享率… @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category 新分類 - - Location - 位置 - - - New name - 新名稱 - Set location 設定存放位置 @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category 編輯分類 - - Save path - 儲存路徑 - Comma-separated tags: 標籤(以英語逗號分開): - - Add Tags - 加入標籤 - Tags 標籤 @@ -3418,7 +3302,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Save path: - + 儲存路徑: Location: @@ -3426,11 +3310,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stop - + 停止 Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + 自動模式代表多個Torrent屬性(例如儲存路徑)將由相關分類決定 Start @@ -3438,7 +3322,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. New name: - + 新名稱: Add tags @@ -3446,7 +3330,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Category: - + 分類: @@ -3485,10 +3369,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - 同時永久刪除檔案 - Remove torrent(s) 移除 Torrent(s) @@ -3499,7 +3379,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Remove tracker - + 清除追蹤器 @@ -3775,10 +3655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers 同路人 - - Search engine - 搜尋器 - Seeders 完整種子 @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: 標籤: - - Pause torrents - 暫停Torrent - - - Resume torrents - 回復Torrent - Remove unused tags 清除未使用標籤 @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + 搜尋完成 An error occurred during search... - + 搜尋時發生錯誤… Close tab - + 關閉分頁 Searching... - + 搜尋中… Search aborted - + 搜尋中止 Close all tabs - + 關閉所有分頁 @@ -4182,6 +4050,14 @@ Use ';' to split multiple entries. Can use wildcard '*'. URL cannot be empty + + Open link + + + + Author: + + AutomatedRssDownloader @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. 如果文字順序重要,使用「*」,而不是空格。 - - Add Paused: - 加入已暫停的: - Please type the name of the new download rule. 請輸入新下載規則名稱。 @@ -4446,33 +4318,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackerFiltersList - - Resume torrents - 回復Torrent - - - All (%1) - 全部(%1) - - - Trackerless (%1) - 缺少追蹤器(%1) - - - Pause torrents - 暫停Torrent - Remove torrents 移除 torrents All - + 全部 Trackerless - + 缺少追蹤器 Start torrents @@ -4480,7 +4336,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove tracker - + 清除追蹤器 Stop torrents @@ -4644,15 +4500,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Category Unable to edit category - + 無法編輯分類 OK - + 確定 Unable to create category - + 無法建立分類 Unable to set category @@ -4663,11 +4519,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also CookiesDialog Domain - + 網域 Manage Cookies - + 管理Cookie… Add Cookie @@ -4675,52 +4531,52 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove - + 移除 Expiration Date - + 到期日 Value - + Name - + 名稱 Path - + 路徑 confirmAutoTMMDialog Enable automatic torrent management - + 啟用自動 torrent 管理 Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + 您確定要為選定的 torrent 啟用自動 Torrent 管理嗎?它們可能會被重新安置。 confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + 重新檢查所選Torrent,確定? Recheck confirmation - + 確認重新檢查 SearchWidget Close tab - + 關閉分頁 @@ -4731,7 +4587,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Password - + 密碼 JavaScript Required! You must enable JavaScript for the WebUI to work properly @@ -4739,7 +4595,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Login - + 登入 Server response: @@ -4751,10 +4607,202 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Username - + 用戶名 Invalid Username or Password. + 無效用戶名稱或密碼。 + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent diff --git a/src/webui/www/translations/webui_zh_TW.ts b/src/webui/www/translations/webui_zh_TW.ts index 83cbafa79..5fa59ea2a 100644 --- a/src/webui/www/translations/webui_zh_TW.ts +++ b/src/webui/www/translations/webui_zh_TW.ts @@ -72,19 +72,19 @@ One link per line (HTTP links, Magnet links and info-hashes are supported) - + 每行一連結 (HTTP 連結、磁力連結及資訊雜湊值皆支援) Add torrent links - + 增加 torrent 連結 Select .torrent files - + 選取 .torrent 檔案 Torrent options - + Torrent 選項 @@ -112,14 +112,6 @@ Remove unused categories 移除未使用的分類 - - Resume torrents - 繼續 torrent - - - Pause torrents - 暫停 torrent - New Category 新分類 @@ -138,11 +130,11 @@ Start torrents - + 啟動 torrent Stop torrents - + 停止 torrent @@ -151,10 +143,6 @@ Exit qBittorrent 結束 qbittorrent - - Only one link per line - 每行一連結 - Global upload rate limit must be greater than 0 or disabled. 全域上傳速率限制必須大於 0 或停用。 @@ -228,10 +216,6 @@ Save files to location: 儲存檔案到: - - Cookie: - Cookie: - More information 更多資訊 @@ -295,10 +279,6 @@ Logout 登出 - - Download Torrents from their URLs or Magnet links - 從他們的 URL 或磁力連結下載 torrent - Upload local torrent 上傳本機 torrent @@ -319,10 +299,6 @@ Invalid category name:\nPlease do not use any special characters in the category name. 無效的分類名稱:\n分類名稱請不要使用任何特殊字元。 - - Unable to create category - 無法建立分類 - Upload rate threshold must be greater than 0. 上傳速率閾值必須大於 0。 @@ -383,10 +359,6 @@ Original author 原始作者 - - Are you sure you want to remove the selected torrents from the transfer list? - 您確定要移除在傳輸清單中選定的 torrent 嗎? - The port used for the WebUI must be between 1 and 65535. WebUI 使用的連接埠號必須在 1 到 65535 之間。 @@ -401,75 +373,75 @@ External IP: N/A - + 外部 IP:N/A Reverse proxy setup examples - + 反向代理設定範例 Could not contact qBittorrent - + 無法聯絡 qBittorrent Remember choice - + 記住選擇 Are you sure you want to remove these %1 torrents from the transfer list? - + 您確定要移除在傳輸清單中的這 %1 個 torrent 嗎? Unable to delete torrents. - + 無法刪除 torrent。 URL - + URL External IP: %1%2 - + 外部 IP:%1%2 Edit web seed - + 編輯 web 種子 Are you sure you want to remove %1 from the transfer list? - + 您想要從傳輸清單中移除 %1 嗎? Unable to set Auto Torrent Management for the selected torrents. - + 無法為選取的 torrent 設定自動 torrent 管理。 Unable to stop torrents. - + 無法停止 torrent。 Unable to download file - + 無法下載檔案 External IPs: %1, %2 - + 外部 IP:%1, %2 Unable to recheck torrents. - + 無法重新檢查 torrent。 List of web seeds to add (one per line): - + 要新增的 web 種子清單(一行一個): Unable to start torrents. - + 無法開始 torrent。 Add web seeds - + 新增 web 種子 @@ -498,10 +470,6 @@ Options... 選項… - - Resume - 繼續 - Top Toolbar 頂端工具列 @@ -518,10 +486,6 @@ Donate! 捐款! - - Resume All - 全部繼續 - Statistics 統計資料 @@ -530,14 +494,6 @@ About 關於 - - Pause - 暫停 - - - Pause All - 全部暫停 - Add Torrent File... 新增 torrent 檔案… @@ -678,14 +634,6 @@ Remove 移除 - - Would you like to resume all torrents? - 您想要繼續所有 torrents 嗎? - - - Would you like to pause all torrents? - 您想要暫停所有 torrents 嗎? - Execution Log 執行紀錄檔 @@ -700,50 +648,54 @@ Filter by: - + 過濾條件: Save Path - + 儲存路徑 Stop - + 停止 Use regular expression - + 使用正規表示式 Would you like to start all torrents? - + 您想要啟動所有 torrent 嗎? Start - + 啟動 Manage Cookies... - + 管理 cookie… Unable to export torrent file - + 無法匯出 torrent 檔案 Name - + 名稱 Would you like to stop all torrents? - + 您想要停止所有 torrent 嗎? Start All - + 全部啟動 Stop All + 全部停止 + + + Torrent Creator @@ -773,10 +725,6 @@ Language 語言 - - User Interface Language: - 使用者介面語言: - Email notification upon download completion 下載完成時使用電子郵件通知 @@ -793,10 +741,6 @@ Torrent Queueing Torrent 佇列 - - Automatically add these trackers to new downloads: - 自動新增這些 Tracker 到新的下載中: - Web User Interface (Remote control) Web UI (遠端控制) @@ -1229,7 +1173,7 @@ Info: The password is saved unencrypted - 資訊:密碼以未加密的形式儲存 + 資訊:密碼以未加密的形式儲存 μTP-TCP mixed mode algorithm: @@ -1291,10 +1235,6 @@ Fastest upload 上傳最快 - - Pause torrent - 暫停 torrent - Remove torrent and its files 移除 torrent 與其檔案 @@ -1337,7 +1277,7 @@ s - s + s Send buffer watermark: @@ -1411,10 +1351,6 @@ Ban client after consecutive failures: 連續失敗後封鎖用戶端: - - Enable cookie Secure flag (requires HTTPS) - 啟用 cookie 安全旗標(需要 HTTPS) - Header: value pairs, one per line 標頭:鍵值對,一行一個 @@ -1643,10 +1579,6 @@ Support internationalized domain name (IDN): 支援國際化域名 (IDN): - - Run external program on torrent finished - 當 torrent 下載結束時執行外部程式 - Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, @@ -1659,10 +1591,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. 使用「;」來分隔多個項目。可以使用萬用字元「*」。 - - Run external program on torrent added - 當新增 torrent 時執行外部程式 - HTTPS certificate should not be empty HTTPS 憑證不應為空 @@ -1727,10 +1655,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. days - - Log file - 紀錄檔 - Behavior 行為 @@ -1945,182 +1869,198 @@ Use ';' to split multiple entries. Can use wildcard '*'. Color scheme: - + 配色方案: Show external IP in status bar - + 在狀態列中顯示外部 IP Fetched trackers - + 擷取 tracker Confirm when deleting torrents - + 當刪除 torrent 時必須確認 Ignore SSL errors: - + 忽略 SSL 錯誤: Dark - + 深色 Delete files permanently - + 永久刪除檔案 Auto - + 自動 Use alternating row colors - + 單雙列交替背景顏色 Display full announce URL in the Tracker column - + 在 tracker 欄中顯示完整公告 URL URL: - + URL: Transfer list - + 傳輸清單 The announce port must be between 0 and 65535. - + 公告連接埠必須在 0 到 65535 間。 Light - + 淺色 Automatically append these trackers to new downloads: - + 自動將這些追蹤器附加到新下載中: Downloading torrents: - + 下載中的 torrent: Start / stop torrent - + 開始 / 停止 torrent Send test email - + 傳送測試電子郵件 Completed torrents: - + 已完成的 torrent: Enable cookie Secure flag (requires HTTPS or localhost connection) - + 啟用 cookie 安全旗標(需要 HTTPS 或 localhost 連線) When duplicate torrent is being added - + 新增重複的 torrent 時 Action on double-click - + 按兩下時的行動 Save statistics interval: - + 儲存統計資料間隔: Shows a confirmation dialog upon torrent deletion - + Torrent 刪除時顯示確認對話框 Run on torrent finished: - + 在 torrent 結束時執行: Attempted to send email. Check your inbox to confirm success - + 嘗試發送電子郵件。請檢查您的收件匣以確認是否成功 Automatically append trackers from URL to new downloads: - + 自動將 URL 的 tracker 附加到新下載的檔案: Torrent content removing mode: - + Torrent 內容移除模式: Move files to trash (if possible) - + 移動檔案到回收桶(若可能) Stop torrent - + 停止 torrent Use Category paths in Manual Mode - + 在手動模式下使用分類路徑 List of alternative WebUI - + 替代 WebUI 清單 Run on torrent added: - + 在 torrent 新增時執行: Port reported to trackers (requires restart) [0: listening port]: - + 回報給 tracker 的連接埠(需要重新啟動)[0:監聽埠]: User interface language: - + 使用者介面語言: Merge trackers to existing torrent - + 合併追蹤器到既有的 torrent Confirm torrent recheck: - + 確認 torrent 重新檢查: Custom WebUI settings - + 自訂 WebUI 設定 Following settings are WebUI only - + 以下設定僅適用於 WebUI Simple pread/pwrite - + 簡易預先讀取/預先寫入 Resolve relative Save Path against appropriate Category path instead of Default one - + 根據適當的分類路徑而非預設路徑解析相對儲存路徑 No action - + 無行動 Auto hide zero status filters - + 自動隱藏零狀態過濾條件 Interface - + 界面 Log Files + 紀錄檔 + + + Enable optimized table rendering (experimental) + + + + Note: The password is saved unencrypted + + + + Internal hostname resolver cache expiry interval + + + + sec @@ -2489,55 +2429,55 @@ Use ';' to split multiple entries. Can use wildcard '*'. Copy web seed URL - + 複製 web 種子 URL Replace option - + 取代選項 Edit web seed URL... - + 編輯 web 種子 URL…… Web seed URL: - + 網頁種子 URL: Yes - + Ratio / Time Active (in months), indicates how popular the torrent is - + 比例 / 活躍時間(以月為單位),表示該 torrent 的受歡迎程度 Popularity: - + 人氣: Apply to which filename part - + 套用至哪個檔案名稱部份 No - + Remove web seed - + 移除 web 種子 Web seed editing - + 編輯網頁種子中 Add web seeds... - + 新增 web 種子…… Private: - + 私人: @@ -2667,14 +2607,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (0) 已完成 (0) - - Resumed (0) - 繼續 (0) - - - Paused (0) - 暫停 (0) - Active (0) 活躍的 (0) @@ -2703,14 +2635,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Completed (%1) 已完成 (%1) - - Paused (%1) - 暫停 (%1) - - - Resumed (%1) - 繼續 (%1) - Active (%1) 活躍的 (%1) @@ -2765,31 +2689,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Running (0) - + 正在執行 (0) Stopped (0) - + 已停止 (0) Stopped (%1) - + 已停止 (%1) Running (%1) - + 正在執行 (%1) Remove torrents - + 移除 torrents Start torrents - + 啟動 torrent Stop torrents - + 停止 torrent @@ -2807,11 +2731,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. i.e: torrent size 大小 - - Done - % Done - 完成 - Status Torrent status (e.g. downloading, seeding, paused) @@ -2949,31 +2868,31 @@ Use ';' to split multiple entries. Can use wildcard '*'. Private - + 私人 Progress - + 進度 Info Hash v2 - + 資訊雜湊值 v2 Info Hash v1 - + 資訊雜湊值 v1 Incomplete Save Path - + 不完整的儲存路徑 Popularity - + 人氣 Status Icon - + 狀態圖示 @@ -3109,10 +3028,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. e.g.: 1h 20m ago %1 前 - - Paused - 暫停 - Completed 已完成 @@ -3179,11 +3094,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Stopped - + 已停止 N/A - + N/A @@ -3210,7 +3125,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Collapse/expand category - + 折疊/展開分類 @@ -3227,21 +3142,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Rename 重新命名 - - Resume - Resume/start the torrent - 繼續 - - - Force Resume - Force Resume/start the torrent - 強制繼續 - - - Pause - Pause the torrent - 暫停 - Limit share ratio... 限制分享率… @@ -3320,14 +3220,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. New Category 新分類 - - Location - 位置 - - - New name - 新名稱 - Set location 設定位置 @@ -3340,18 +3232,10 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit Category 編輯分類 - - Save path - 儲存路徑 - Comma-separated tags: 逗號分隔標籤: - - Add Tags - 新增標籤 - Tags 標籤 @@ -3414,39 +3298,39 @@ Use ';' to split multiple entries. Can use wildcard '*'. Force Start - + 強制啟動 Save path: - + 儲存路徑: Location: - + 位置: Stop - + 停止 Automatic mode means that various torrent properties(eg save path) will be decided by the associated category - + 自動模式代表了多個 torrent 屬性 (例如儲存路徑) 將會由相關的分類來決定 Start - + 啟動 New name: - + 新名稱: Add tags - + 新增標籤 Category: - + 分類: @@ -3485,21 +3369,17 @@ Use ';' to split multiple entries. Can use wildcard '*'. confirmDeletionDlg - - Also permanently delete the files - 同時永久刪除檔案 - Remove torrent(s) 移除 torrent(s) Also remove the content files - + 也移除內容檔案 Remove tracker - + 移除追蹤者 @@ -3703,23 +3583,23 @@ Use ';' to split multiple entries. Can use wildcard '*'. Select category - + 選取分類 Min size prefix - + 最小大小前綴 Start a search above. - + 在上方開始搜尋。 Max size prefix - + 最大大小前綴 Select plugins - + 選取外掛程式 @@ -3775,25 +3655,21 @@ Use ';' to split multiple entries. Can use wildcard '*'. Leechers 下載者 - - Search engine - 搜尋引擎 - Seeders 種子 Published On - + 發佈於 Engine URL - + 引擎 URL Engine - + 引擎 @@ -3860,14 +3736,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. Tag: 標籤: - - Pause torrents - 暫停 torrent - - - Resume torrents - 繼續 torrent - Remove unused tags 移除未使用的標籤 @@ -3886,11 +3754,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Start torrents - + 啟動 torrent Stop torrents - + 停止 torrent @@ -4034,27 +3902,27 @@ Use ';' to split multiple entries. Can use wildcard '*'. Search has finished - + 搜尋完成 An error occurred during search... - + 搜尋時遇到錯誤… Close tab - + 關閉分頁 Searching... - + 正在搜尋… Search aborted - + 搜尋中止 Close all tabs - + 關閉所有分頁 @@ -4168,18 +4036,26 @@ Use ';' to split multiple entries. Can use wildcard '*'. Edit feed URL... - + 編輯 feed URL…… Unable to update URL - + 無法更新 URL URL is unchanged - + URL 未變更 URL cannot be empty + URL 不能為空 + + + Open link + + + + Author: @@ -4369,10 +4245,6 @@ Use ';' to split multiple entries. Can use wildcard '*'. If word order is important use * instead of whitespace. 若文字順序很重要請使用 * 而非空格。 - - Add Paused: - 加入已暫停的: - Please type the name of the new download rule. 請輸入新下載規則的名稱。 @@ -4433,58 +4305,42 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Remove rule - + 移除規則 Add rule - + 新增規則 Add Stopped: - + 新增已停止的: TrackerFiltersList - - Resume torrents - 繼續 torrent - - - All (%1) - 全部 (%1) - - - Trackerless (%1) - 缺少 Tracker (%1) - - - Pause torrents - 暫停 torrent - Remove torrents 移除 torrents All - + 所有 Trackerless - + 沒有 Tracker Start torrents - + 啟動 torrent Remove tracker - + 移除追蹤者 Stop torrents - + 停止 torrent @@ -4637,124 +4493,316 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TrackersFilterWidget Are you sure you want to remove tracker %1 from all torrents? - + 您確定要從所有 torrent 移除 tracker %1嗎? Category Unable to edit category - + 無法編輯分類 OK - + 確定 Unable to create category - + 無法建立分類 Unable to set category - + 無法設定分類 CookiesDialog Domain - + 網域 Manage Cookies - + 管理 cookie… Add Cookie - + 新增 Cookie Remove - + 移除 Expiration Date - + 到期日 Value - + Name - + 名稱 Path - + 路徑 confirmAutoTMMDialog Enable automatic torrent management - + 啟用自動 torrent 管理 Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + 您確定要為選定的 torrent 啟用自動 Torrent 管理嗎?它們可能會被重新安置。 confirmRecheckDialog Are you sure you want to recheck the selected torrent(s)? - + 您確定要重新檢查選取的 torrent 嗎? Recheck confirmation - + 確認重新檢查 SearchWidget Close tab - + 關閉分頁 Login qBittorrent WebUI - + qBittorrent WebUI Password - + 密碼 JavaScript Required! You must enable JavaScript for the WebUI to work properly - + 需要 JavaScript!您必須啟用 JavaScript 以讓 WebUI 正常運作 Login - + 登入 Server response: - + 伺服器回應: Unable to log in, server is probably unreachable. - + 無法登入,可能無法連線至伺服器。 Username - + 使用者名稱 Invalid Username or Password. + 無效的使用者名稱或密碼。 + + + + TorrentCreator + + Private + + + + Source + + + + Queued + + + + Unable to create torrent. + + + + Private + torrent (Won't distribute on DHT network) + + + + Unable to export torrent file + + + + Create New Torrent + + + + Comments: + + + + Download Torrent + + + + Status Icon + + + + Web seed URLs: + + + + Failed + + + + Comment + + + + Finished + + + + Settings + + + + Error Message + + + + Status + + + + Align to piece boundary for files larger + than: + + + + Select file/folder to share: + + + + Piece Size + + + + Progress + + + + Completed On + + + + Hybrid + + + + Unable to load torrent creation tasks + + + + Optimize + alignment + + + + N/A + + + + Tracker URLs: + + + + Are you sure you want to delete selected tasks? + + + + Path: + + + + Create Torrent + + + + Auto + + + + Started On + + + + Web Seeds + + + + Start + seeding + immediately + + + + Format + + + + Torrent format: + + + + Source Path + + + + Added On + + + + Running + + + + Torrent Creator + + + + Source: + + + + Trackers + + + + Piece size: + + + + Fields + + + + Remove Task + + + + Export Torrent From e87dfe35f3874e090f8b08d569fc986e46708eaf Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Sun, 20 Apr 2025 23:38:34 +0300 Subject: [PATCH 77/80] Bump copyright year --- dist/mac/Info.plist | 2 +- dist/windows/config.nsh | 2 +- src/gui/aboutdialog.cpp | 2 +- src/lang/qbittorrent_ar.ts | 4 +- src/lang/qbittorrent_az@latin.ts | 8 +- src/lang/qbittorrent_be.ts | 6 +- src/lang/qbittorrent_bg.ts | 4 +- src/lang/qbittorrent_ca.ts | 4 +- src/lang/qbittorrent_cs.ts | 6 +- src/lang/qbittorrent_da.ts | 4 +- src/lang/qbittorrent_de.ts | 4 +- src/lang/qbittorrent_el.ts | 4 +- src/lang/qbittorrent_en.ts | 2 +- src/lang/qbittorrent_en_AU.ts | 4 +- src/lang/qbittorrent_en_GB.ts | 4 +- src/lang/qbittorrent_eo.ts | 4 +- src/lang/qbittorrent_es.ts | 6 +- src/lang/qbittorrent_et.ts | 4 +- src/lang/qbittorrent_eu.ts | 6 +- src/lang/qbittorrent_fa.ts | 4 +- src/lang/qbittorrent_fi.ts | 4 +- src/lang/qbittorrent_fr.ts | 8 +- src/lang/qbittorrent_gl.ts | 4 +- src/lang/qbittorrent_he.ts | 4 +- src/lang/qbittorrent_hi_IN.ts | 4 +- src/lang/qbittorrent_hr.ts | 4 +- src/lang/qbittorrent_hu.ts | 4 +- src/lang/qbittorrent_hy.ts | 2 +- src/lang/qbittorrent_id.ts | 4 +- src/lang/qbittorrent_is.ts | 2 +- src/lang/qbittorrent_it.ts | 454 ++++++++++++------------- src/lang/qbittorrent_ja.ts | 4 +- src/lang/qbittorrent_ka.ts | 2 +- src/lang/qbittorrent_ko.ts | 6 +- src/lang/qbittorrent_lt.ts | 4 +- src/lang/qbittorrent_ltg.ts | 4 +- src/lang/qbittorrent_lv_LV.ts | 14 +- src/lang/qbittorrent_mn_MN.ts | 4 +- src/lang/qbittorrent_ms_MY.ts | 2 +- src/lang/qbittorrent_nb.ts | 6 +- src/lang/qbittorrent_nl.ts | 4 +- src/lang/qbittorrent_oc.ts | 2 +- src/lang/qbittorrent_pl.ts | 4 +- src/lang/qbittorrent_pt_BR.ts | 4 +- src/lang/qbittorrent_pt_PT.ts | 6 +- src/lang/qbittorrent_ro.ts | 4 +- src/lang/qbittorrent_ru.ts | 4 +- src/lang/qbittorrent_sk.ts | 6 +- src/lang/qbittorrent_sl.ts | 6 +- src/lang/qbittorrent_sr.ts | 4 +- src/lang/qbittorrent_sv.ts | 4 +- src/lang/qbittorrent_th.ts | 4 +- src/lang/qbittorrent_tr.ts | 4 +- src/lang/qbittorrent_uk.ts | 10 +- src/lang/qbittorrent_uz@Latn.ts | 6 +- src/lang/qbittorrent_vi.ts | 4 +- src/lang/qbittorrent_zh_CN.ts | 4 +- src/lang/qbittorrent_zh_HK.ts | 4 +- src/lang/qbittorrent_zh_TW.ts | 4 +- src/qbittorrent.rc | 2 +- src/webui/www/private/views/about.html | 2 +- 61 files changed, 358 insertions(+), 358 deletions(-) diff --git a/dist/mac/Info.plist b/dist/mac/Info.plist index 0b85335fb..bebe2f1fb 100644 --- a/dist/mac/Info.plist +++ b/dist/mac/Info.plist @@ -67,7 +67,7 @@ NSAppleScriptEnabled YES NSHumanReadableCopyright - Copyright © 2006-2024 The qBittorrent project + Copyright © 2006-2025 The qBittorrent project UTExportedTypeDeclarations diff --git a/dist/windows/config.nsh b/dist/windows/config.nsh index c01aabe49..0123e028f 100644 --- a/dist/windows/config.nsh +++ b/dist/windows/config.nsh @@ -86,7 +86,7 @@ OutFile "qbittorrent_${QBT_INSTALLER_FILENAME}_setup.exe" ;Installer Version Information VIAddVersionKey "ProductName" "qBittorrent" VIAddVersionKey "CompanyName" "The qBittorrent project" -VIAddVersionKey "LegalCopyright" "Copyright ©2006-2024 The qBittorrent project" +VIAddVersionKey "LegalCopyright" "Copyright ©2006-2025 The qBittorrent project" VIAddVersionKey "FileDescription" "qBittorrent - A Bittorrent Client" VIAddVersionKey "FileVersion" "${QBT_VERSION}" diff --git a/src/gui/aboutdialog.cpp b/src/gui/aboutdialog.cpp index bc1be50a3..5a8976fed 100644 --- a/src/gui/aboutdialog.cpp +++ b/src/gui/aboutdialog.cpp @@ -67,7 +67,7 @@ AboutDialog::AboutDialog(QWidget *parent) u"

"_s .arg(tr("An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar.") .replace(u"C++"_s, u"C\u2060+\u2060+"_s) // make C++ non-breaking - , tr("Copyright %1 2006-2024 The qBittorrent project").arg(C_COPYRIGHT) + , tr("Copyright %1 2006-2025 The qBittorrent project").arg(C_COPYRIGHT) , tr("Home Page:") , tr("Forum:") , tr("Bug Tracker:")); diff --git a/src/lang/qbittorrent_ar.ts b/src/lang/qbittorrent_ar.ts index 1372480a4..92cd1eea2 100644 --- a/src/lang/qbittorrent_ar.ts +++ b/src/lang/qbittorrent_ar.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - حقوق النشر %1 2006-2024 مشروع كيوبت‎تورنت + Copyright %1 2006-2025 The qBittorrent project + حقوق النشر %1 2006-2025 مشروع كيوبت‎تورنت diff --git a/src/lang/qbittorrent_az@latin.ts b/src/lang/qbittorrent_az@latin.ts index e0ccf05dc..88152a92a 100644 --- a/src/lang/qbittorrent_az@latin.ts +++ b/src/lang/qbittorrent_az@latin.ts @@ -91,8 +91,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Müəllif Hüquqları: %1 2006-2024 qBittorrent layihəsi + Copyright %1 2006-2025 The qBittorrent project + Müəllif Hüquqları: %1 2006-2025 qBittorrent layihəsi @@ -6346,7 +6346,7 @@ you should put in domain names used by WebUI server. Use ';' to split multiple entries. Can use wildcard '*'. HTTP Host başlıqlarının göstəricilərini filtrləmək üçün ağ siyahı. -DNS ilə təkrar bağlantı hücumundan qorunmaq üçün WebUI +DNS ilə təkrar bağlantı hücumundan qorunmaq üçün WebUI serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Çoxsaylı elementləri bölmək üçün ';' istifadə edin. '*' ümumi nişanından istifadə edə bilərsiniz @@ -12584,4 +12584,4 @@ Başqa ad verin və yenidən cəhd edin. < 1dəq
- \ No newline at end of file + diff --git a/src/lang/qbittorrent_be.ts b/src/lang/qbittorrent_be.ts index 12ca0eff7..76e42bdef 100644 --- a/src/lang/qbittorrent_be.ts +++ b/src/lang/qbittorrent_be.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Аўтарскае права %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Аўтарскае права %1 2006-2025 The qBittorrent project @@ -8179,7 +8179,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Some plugins could not be uninstalled because they are included in qBittorrent. Only the ones you added yourself can be uninstalled. Those plugins were disabled. - Некаторыя плагіны нельга выдаліць, бо яны - частка qBittorrent. Можна выдаліць толькі дададзеныя вамі. + Некаторыя плагіны нельга выдаліць, бо яны - частка qBittorrent. Можна выдаліць толькі дададзеныя вамі. Гэтыя плагіны будуць адключаныя. diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index b4dfd4c3d..a23e5a61a 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Авторско право %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Авторско право %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index 2d7f3a423..8012c9ad0 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 El projecte qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 El projecte qBittorrent diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts index b6eb5a861..3f39da392 100644 --- a/src/lang/qbittorrent_cs.ts +++ b/src/lang/qbittorrent_cs.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project @@ -4260,7 +4260,7 @@ Chcete teď nainstalovat novější verzi? Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - Vaše verze Pythonu (%1) je zastaralá. Pro zprovoznění vyhledávačů aktualizujte na nejnovější verzi. + Vaše verze Pythonu (%1) je zastaralá. Pro zprovoznění vyhledávačů aktualizujte na nejnovější verzi. Minimální požadavky: %2 diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index 1058abd81..f36a07116 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Ophavsret %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Ophavsret %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index e9db21fb8..f4537ac09 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 - Das qBittorrent Projekt + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 - Das qBittorrent Projekt diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index be8d663c8..c70854cff 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Πνευματικά Δικαιώματα %1 2006-2024 Το εγχείρημα qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Πνευματικά Δικαιώματα %1 2006-2025 Το εγχείρημα qBittorrent diff --git a/src/lang/qbittorrent_en.ts b/src/lang/qbittorrent_en.ts index 6a78dff56..ffee3b25d 100644 --- a/src/lang/qbittorrent_en.ts +++ b/src/lang/qbittorrent_en.ts @@ -93,7 +93,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_en_AU.ts b/src/lang/qbittorrent_en_AU.ts index b5cb2a56e..f7ee9ffa6 100644 --- a/src/lang/qbittorrent_en_AU.ts +++ b/src/lang/qbittorrent_en_AU.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_en_GB.ts b/src/lang/qbittorrent_en_GB.ts index 614dd35f1..333ed2a6a 100644 --- a/src/lang/qbittorrent_en_GB.ts +++ b/src/lang/qbittorrent_en_GB.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_eo.ts b/src/lang/qbittorrent_eo.ts index 872204a19..ae9e70335 100644 --- a/src/lang/qbittorrent_eo.ts +++ b/src/lang/qbittorrent_eo.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Kopirajto %1 2006-2024 La qBittorrent-projekto + Copyright %1 2006-2025 The qBittorrent project + Kopirajto %1 2006-2025 La qBittorrent-projekto diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index cdec9ecaf..d8874bfc6 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 El Proyecto qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 El Proyecto qBittorrent @@ -6414,7 +6414,7 @@ Deshabilitar encriptación: Solo conectar a pares sin encriptación de protocolo Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. Dirección IP que la interfaz Web escuchará. -Especifique una dirección IPv4 o IPv6. +Especifique una dirección IPv4 o IPv6. "0.0.0.0" para cualquier dirección IPv4. "::" para cualquier dirección IPv6. "*" para cualquier dirección IPv4 O IPv6 diff --git a/src/lang/qbittorrent_et.ts b/src/lang/qbittorrent_et.ts index 516d3a17c..f06adebbc 100644 --- a/src/lang/qbittorrent_et.ts +++ b/src/lang/qbittorrent_et.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Autoriõigus %1 2006-2024 Projekt qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Autoriõigus %1 2006-2025 Projekt qBittorrent diff --git a/src/lang/qbittorrent_eu.ts b/src/lang/qbittorrent_eu.ts index 4b74b9ec3..4a49c808a 100644 --- a/src/lang/qbittorrent_eu.ts +++ b/src/lang/qbittorrent_eu.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 qBittorrent proiektua + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 qBittorrent proiektua @@ -4207,7 +4207,7 @@ Please install it manually. Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - Python beharrezkoa da bilaketa gailua erabiltzeko baina ez dirudi ezarrita dagoenik. + Python beharrezkoa da bilaketa gailua erabiltzeko baina ez dirudi ezarrita dagoenik. Orain ezartzea nahi duzu? diff --git a/src/lang/qbittorrent_fa.ts b/src/lang/qbittorrent_fa.ts index 21229eff0..69acf54e9 100644 --- a/src/lang/qbittorrent_fa.ts +++ b/src/lang/qbittorrent_fa.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - کپی رایت %1 2006-2024 - پروژه کیوبیت‌تورنت + Copyright %1 2006-2025 The qBittorrent project + کپی رایت %1 2006-2025 - پروژه کیوبیت‌تورنت diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index 563918d06..b207523fb 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Tekijänoikeus %1 2006-2024 qBittorrent -hanke + Copyright %1 2006-2025 The qBittorrent project + Tekijänoikeus %1 2006-2025 qBittorrent -hanke diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index e104b42e4..b4d6bdc9a 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 Le projet qBitTorrent + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 Le projet qBitTorrent @@ -6222,7 +6222,7 @@ Configuration minimale requise : %2. Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption Autoriser le chiffrement : Se connecter aux pairs indépendamment de la configuration -Exiger le chiffrement : Se connecter uniquement aux pairs avec protocole de chiffrement +Exiger le chiffrement : Se connecter uniquement aux pairs avec protocole de chiffrement Désactiver le chiffrement : Se connecter uniquement aux pairs sans protocole de chiffrement @@ -8191,7 +8191,7 @@ readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mai Some plugins could not be uninstalled because they are included in qBittorrent. Only the ones you added yourself can be uninstalled. Those plugins were disabled. - Certains greffons n'ont pas pu être désinstallés car ils sont inclus dans qBitTorrent. Seulement ceux que vous avez vous-même ajoutés peuvent être désinstallés. + Certains greffons n'ont pas pu être désinstallés car ils sont inclus dans qBitTorrent. Seulement ceux que vous avez vous-même ajoutés peuvent être désinstallés. Ces derniers ont été désactivés. diff --git a/src/lang/qbittorrent_gl.ts b/src/lang/qbittorrent_gl.ts index 37b0ec368..606f78ced 100644 --- a/src/lang/qbittorrent_gl.ts +++ b/src/lang/qbittorrent_gl.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Dereitos de autor %1 ©2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Dereitos de autor %1 ©2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_he.ts b/src/lang/qbittorrent_he.ts index 64d6aa2f4..4892d27c2 100644 --- a/src/lang/qbittorrent_he.ts +++ b/src/lang/qbittorrent_he.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - זכויות יוצרים %1 2006-2024 מיזם qBittorrent + Copyright %1 2006-2025 The qBittorrent project + זכויות יוצרים %1 2006-2025 מיזם qBittorrent diff --git a/src/lang/qbittorrent_hi_IN.ts b/src/lang/qbittorrent_hi_IN.ts index 7e239bd26..18c427084 100644 --- a/src/lang/qbittorrent_hi_IN.ts +++ b/src/lang/qbittorrent_hi_IN.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - सर्वाधिकार %1 2006-2024 qBittorrent परियोजना + Copyright %1 2006-2025 The qBittorrent project + सर्वाधिकार %1 2006-2025 qBittorrent परियोजना diff --git a/src/lang/qbittorrent_hr.ts b/src/lang/qbittorrent_hr.ts index 58e2b9cdc..f023485e3 100644 --- a/src/lang/qbittorrent_hr.ts +++ b/src/lang/qbittorrent_hr.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Autorsko pravo %1 2006-2024 qBittorrent projekt + Copyright %1 2006-2025 The qBittorrent project + Autorsko pravo %1 2006-2025 qBittorrent projekt diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index 41b757047..0f75a0f9f 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Szerzői joggal védve %1 2006-2024 A qBittorrent projekt + Copyright %1 2006-2025 The qBittorrent project + Szerzői joggal védve %1 2006-2025 A qBittorrent projekt diff --git a/src/lang/qbittorrent_hy.ts b/src/lang/qbittorrent_hy.ts index 9afdc13e4..c3367beed 100644 --- a/src/lang/qbittorrent_hy.ts +++ b/src/lang/qbittorrent_hy.ts @@ -93,7 +93,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_id.ts b/src/lang/qbittorrent_id.ts index 3ae52e437..1f5b6b2a6 100644 --- a/src/lang/qbittorrent_id.ts +++ b/src/lang/qbittorrent_id.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Hak cipta %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Hak cipta %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_is.ts b/src/lang/qbittorrent_is.ts index 889652b79..a9459be35 100644 --- a/src/lang/qbittorrent_is.ts +++ b/src/lang/qbittorrent_is.ts @@ -97,7 +97,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index 4b53340c6..af0ed3e8b 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project @@ -114,7 +114,7 @@ The free IP to Country Lite database by DB-IP is used for resolving the countries of peers. The database is licensed under the Creative Commons Attribution 4.0 International License - Il database gratuito da IP a Country Lite di DB-IP viene usato per determinare i paesi dei peer. + Il database gratuito da IP a Country Lite di DB-IP viene usato per determinare i paesi dei peer. Il database è concesso in licenza con la licenza internazionale Creative Commons Attribution 4.0.
@@ -480,19 +480,19 @@ Il database è concesso in licenza con la licenza internazionale Creative Common Downloading torrent... Source: "%1" - Download torrent... + Download torrent... Sorgente: "%1" Failed to add torrent. Source: "%1". Reason: "%2" - Impossibile aggiungere il torrent. + Impossibile aggiungere il torrent. Sorgente: "%1" Motivo: "%2" Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Rilevato un tentativo di aggiungere un torrent duplicato. + Rilevato un tentativo di aggiungere un torrent duplicato. Sorgente: %1 Torrent esistente: %2 Risultato: %3 @@ -1428,7 +1428,7 @@ Risultato: %3 Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - Rilevato flag della riga di comando ridondante: "%1". + Rilevato flag della riga di comando ridondante: "%1". La modalità portatile implica una relativa ripresa rapida. @@ -1487,7 +1487,7 @@ Motivo: %2. The WebUI administrator password was not set. A temporary password is provided for this session: %1 - La password dell'amministratore WebUI non è stata impostata. + La password dell'amministratore WebUI non è stata impostata. Per questa sessione viene fornita una password temporanea: %1 @@ -1498,7 +1498,7 @@ Per questa sessione viene fornita una password temporanea: %1 The WebUI is disabled! To enable the WebUI, edit the config file manually. - L'interfaccia utente Web è disabilitata! + L'interfaccia utente Web è disabilitata! Per abilitare l'interfaccia utente Web, modificare manualmente il file di configurazione. @@ -1509,8 +1509,8 @@ Per abilitare l'interfaccia utente Web, modificare manualmente il file di c Failed to run external program. Torrent: "%1". Command: `%2` - Impossibile eseguire il programma esterno. -Torrent: "%1". + Impossibile eseguire il programma esterno. +Torrent: "%1". Comando: `%2` @@ -1615,7 +1615,7 @@ Motivo: %2 The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - Il torrent '%1' contiene file .torrent. + Il torrent '%1' contiene file .torrent. Vuoi procedere con il loro download? @@ -1626,24 +1626,24 @@ Vuoi procedere con il loro download? Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - Download ricorsivo di file .torrent all'interno di torrent. -Sorgente torrent: "%1" + Download ricorsivo di file .torrent all'interno di torrent. +Sorgente torrent: "%1" File: "%2" Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - Impossibile impostare il limite di uso della memoria fisica (RAM). -Codice di errore: %1. + Impossibile impostare il limite di uso della memoria fisica (RAM). +Codice di errore: %1. Messaggio di errore: "%2". Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - Impossibile impostare il limite fisso di uso della memoria fisica (RAM). -Dimensione richiesta: %1. -Limite fisso del sistema: %2. -Codice errore: %3. + Impossibile impostare il limite fisso di uso della memoria fisica (RAM). +Dimensione richiesta: %1. +Limite fisso del sistema: %2. +Codice errore: %3. Messaggio di errore: "%4" @@ -1728,13 +1728,13 @@ Messaggio di errore: "%4" Auto downloading of RSS torrents is currently disabled. You can enable it in application settings. - Il download automatico dei torrent RSS è attualmente disabilitato. + Il download automatico dei torrent RSS è attualmente disabilitato. Puoi abilitarlo nelle impostazioni dell'applicazione. Rename selected rule. You can also use the F2 hotkey to rename. - Rinomina la regola selezionata. + Rinomina la regola selezionata. Per rinominare puoi anche usare il tasto di scelta rapida F2. @@ -2137,13 +2137,13 @@ Supporta i formati: S01E01, 1x1, 2017.12.31 e 31.12.2017 (I formati a data suppo Couldn't save torrent metadata to '%1'. Error: %2. - Impossibile salvare i metadati del torrent in '%1'. + Impossibile salvare i metadati del torrent in '%1'. Errore: %2. Couldn't save torrent resume data to '%1'. Error: %2. - Impossibile salvare i dati di ripristino del torrent in '%1'. + Impossibile salvare i dati di ripristino del torrent in '%1'. Errore: %2. @@ -2165,7 +2165,7 @@ Errore: %2. Couldn't save data to '%1'. Error: %2 - Impossibile salvare i dati in '%1'. + Impossibile salvare i dati in '%1'. Errore: %2
@@ -2179,7 +2179,7 @@ Errore: %2 Couldn't load resume data of torrent '%1'. Error: %2 - Impossibile caricare dati ripresa torrent '%1'. + Impossibile caricare dati ripresa torrent '%1'. Errore: %2. @@ -2229,7 +2229,7 @@ Errore: '%1'. Couldn't begin transaction. Error: %1 - Impossibile iniziare la transazione. + Impossibile iniziare la transazione. Errore: %1
@@ -2238,13 +2238,13 @@ Errore: %1 Couldn't save torrent metadata. Error: %1. - Impossibile salvare i metadati del torrent. + Impossibile salvare i metadati del torrent. Errore: %1. Couldn't store resume data for torrent '%1'. Error: %2 - Impossibile salvare dati ripresa torrent '%1'. + Impossibile salvare dati ripresa torrent '%1'. Errore: %2. @@ -2306,53 +2306,53 @@ Errore: %2. Failed to resume torrent. Torrent: "%1". Reason: "%2" - Impossibile riprendere il torrent. + Impossibile riprendere il torrent. Torrent: "%1". Motivo: "%2" Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - Impossibile riprendere il torrent: è stato rilevato un ID torrent incoerente. + Impossibile riprendere il torrent: è stato rilevato un ID torrent incoerente. Torrent: "%1" Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - Rilevati dati incoerenti: la categoria non è presente nel file di configurazione. -La categoria verrà ripristinata ma le sue impostazioni verranno ripristinate ai valori predefiniti. + Rilevati dati incoerenti: la categoria non è presente nel file di configurazione. +La categoria verrà ripristinata ma le sue impostazioni verranno ripristinate ai valori predefiniti. Torrent: "%1". categoria: "%2" Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - Rilevati dati incoerenti: categoria non valida. + Rilevati dati incoerenti: categoria non valida. Torrent: "%1". categoria: "%2" Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - Rilevata mancata corrispondenza tra i percorsi di salvataggio della categoria recuperata e il percorso di salvataggio attuale del torrent. -Il torrent è ora passato alla modalità manuale. + Rilevata mancata corrispondenza tra i percorsi di salvataggio della categoria recuperata e il percorso di salvataggio attuale del torrent. +Il torrent è ora passato alla modalità manuale. Torrent: "%1". categoria: "%2" Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - Rilevati dati incoerenti: tag mancante nel file di configurazione. -Il tag verrà recuperato. + Rilevati dati incoerenti: tag mancante nel file di configurazione. +Il tag verrà recuperato. Torrent: "%1". etichetta: "%2" Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - Rilevati dati incoerenti: tag non valido. + Rilevati dati incoerenti: tag non valido. Torrent: "%1". etichetta: "%2" System wake-up event detected. Re-announcing to all the trackers... - Rilevato evento di riattivazione del sistema. + Rilevato evento di riattivazione del sistema. Nuovo annuncio a tutti i tracker... @@ -2391,7 +2391,7 @@ Nuovo annuncio a tutti i tracker... Could not find GUID of network interface. Interface: "%1" - Impossibile trovare la GUID dell'interfaccia di rete. + Impossibile trovare la GUID dell'interfaccia di rete. Interfaccia: "%1" @@ -2427,13 +2427,13 @@ Interfaccia: "%1" Failed to load torrent. Reason: "%1" - Impossibile caricare il torrent. + Impossibile caricare il torrent. Motivo: "%1" I2P error. Message: "%1". - Errore I2P. + Errore I2P. Messaggio: "%1". @@ -2488,8 +2488,8 @@ Messaggio: "%1". Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Rilevato un tentativo di aggiungere un torrent duplicato. -Torrente esistente: %1. + Rilevato un tentativo di aggiungere un torrent duplicato. +Torrente esistente: %1. Risultato: %2 @@ -2515,34 +2515,34 @@ Risultato: %2 Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - Impossibile esportare il torrent. -Torrent: "%1". -Destinazione: "%2". + Impossibile esportare il torrent. +Torrent: "%1". +Destinazione: "%2". Motivo: "%3" Aborted saving resume data. Number of outstanding torrents: %1 - Salvataggio dei dati di ripristino interrotto. + Salvataggio dei dati di ripristino interrotto. Numero di torrent in sospeso: %1 The configured network address is invalid. Address: "%1" - L'indirizzo di rete configurato non è valido. + L'indirizzo di rete configurato non è valido. Indirizzo "%1" Failed to find the configured network address to listen on. Address: "%1" - Impossibile trovare l'indirizzo di rete configurato su cui ascoltare. + Impossibile trovare l'indirizzo di rete configurato su cui ascoltare. Indirizzo "%1" The configured network interface is invalid. Interface: "%1" - L'interfaccia di rete configurata non è valida. + L'interfaccia di rete configurata non è valida. Interfaccia: "%1" @@ -2559,35 +2559,35 @@ Motivo: %1 Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - Indirizzo IP non valido rifiutato durante l'applicazione dell'elenco di indirizzi IP vietati. + Indirizzo IP non valido rifiutato durante l'applicazione dell'elenco di indirizzi IP vietati. IP: "%1" Added tracker to torrent. Torrent: "%1". Tracker: "%2" - Aggiunto tracker a torrent. -Torrent: "%1" + Aggiunto tracker a torrent. +Torrent: "%1" Tracker: "%2" Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - Tracker rimosso dal torrent. -Torrent: "%1" + Tracker rimosso dal torrent. +Torrent: "%1" Tracker: "%2" Added URL seed to torrent. Torrent: "%1". URL: "%2" - Aggiunto seed URL al torrent. -Torrent: "%1" + Aggiunto seed URL al torrent. +Torrent: "%1" URL: "%2" Removed URL seed from torrent. Torrent: "%1". URL: "%2" - Seed URL rimosso dal torrent. -Torrent: "%1" + Seed URL rimosso dal torrent. +Torrent: "%1" URL: "%2" @@ -2598,21 +2598,21 @@ URL: "%2" Torrent resumed. Torrent: "%1" - Torrent ripreso. + Torrent ripreso. Torrent: "%1" Torrent download finished. Torrent: "%1" - Download del torrent completato. + Download del torrent completato. Torrent: "%1" Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - Spostamento torrent annullato. -Torrent: "%1" -Sorgente: "%2" + Spostamento torrent annullato. +Torrent: "%1" +Sorgente: "%2" Destinazione: "%3" @@ -2635,54 +2635,54 @@ Destinazione: "%3" Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - Impossibile accodare lo spostamento del torrent. -Torrent: "%1" -Sorgente: "%2" -Destinazione: "%3" + Impossibile accodare lo spostamento del torrent. +Torrent: "%1" +Sorgente: "%2" +Destinazione: "%3" Motivo: il torrent si sta attualmente spostando verso la destinazione Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - Impossibile accodare lo spostamento del torrent. -Torrent: "%1" + Impossibile accodare lo spostamento del torrent. +Torrent: "%1" Sorgente: "%2" -Destinazione: "%3" +Destinazione: "%3" Motivo: entrambi i percorsi puntano alla stessa posizione Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - Spostamento torrent in coda. -Torrent: "%1" -Sorgente: "%2" + Spostamento torrent in coda. +Torrent: "%1" +Sorgente: "%2" Destinazione: "%3" Start moving torrent. Torrent: "%1". Destination: "%2" - Avvio spostamento torrent. -Torrent: "%1" + Avvio spostamento torrent. +Torrent: "%1" Destinazione: "%2" Failed to save Categories configuration. File: "%1". Error: "%2" - Impossibile salvare la configurazione delle categorie. -File: "%1" + Impossibile salvare la configurazione delle categorie. +File: "%1" Errore: "%2" Failed to parse Categories configuration. File: "%1". Error: "%2" - Impossibile analizzare la configurazione delle categorie. -File: "%1" + Impossibile analizzare la configurazione delle categorie. +File: "%1" Errore: "%2" Successfully parsed the IP filter file. Number of rules applied: %1 - Analisi completata file del filtro IP. + Analisi completata file del filtro IP. Numero di regole applicate: %1 @@ -2693,47 +2693,47 @@ Numero di regole applicate: %1 Restored torrent. Torrent: "%1" - Torrente ripristinato. + Torrente ripristinato. Torrent: "%1" Added new torrent. Torrent: "%1" - Aggiunto nuovo torrent. + Aggiunto nuovo torrent. Torrent: "%1" Torrent errored. Torrent: "%1". Error: "%2" - Errore torrent. -Torrent: "%1" + Errore torrent. +Torrent: "%1" Errore: "%2" Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - Torrent privo dei parametri SSL. -Torrent: "%1". + Torrent privo dei parametri SSL. +Torrent: "%1". Messaggio: "%2" File error alert. Torrent: "%1". File: "%2". Reason: "%3" - Avviso di errore del file. -Torrent: "%1" -File: "%2" + Avviso di errore del file. +Torrent: "%1" +File: "%2" Motivo: "%3" UPnP/NAT-PMP port mapping failed. Message: "%1" - Mappatura porta UPnP/NAT-PMP non riuscita. + Mappatura porta UPnP/NAT-PMP non riuscita. Messaggio: "%1" UPnP/NAT-PMP port mapping succeeded. Message: "%1" - Mappatura porta UPnP/NAT-PMP riuscita. + Mappatura porta UPnP/NAT-PMP riuscita. Messaggio: "%1" @@ -2765,14 +2765,14 @@ Errore: %3. BitTorrent session encountered a serious error. Reason: "%1" - La sessione BitTorrent ha riscontrato un errore grave. + La sessione BitTorrent ha riscontrato un errore grave. Motivo: "%1" SOCKS5 proxy error. Address: %1. Message: "%2". - Errore proxy SOCKS5. -Indirizzo "%1". + Errore proxy SOCKS5. +Indirizzo "%1". Messaggio: "%2". @@ -2789,8 +2789,8 @@ Messaggio: "%2". Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - Impossibile caricare la configurazione delle categorie. -File: "%1". + Impossibile caricare la configurazione delle categorie. +File: "%1". Errore: "formato dati non valido" @@ -2808,24 +2808,24 @@ Errore: "formato dati non valido" Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - Messaggio di errore ricevuto dal seed dell'URL. -Torrent: "%1" -URL: "%2" + Messaggio di errore ricevuto dal seed dell'URL. +Torrent: "%1" +URL: "%2" Messaggio: "%3" Successfully listening on IP. IP: "%1". Port: "%2/%3" - Ascolto riuscito su IP. -IP: "%1" + Ascolto riuscito su IP. +IP: "%1" Porta: "%2/%3" Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - Impossibile ascoltare su IP. -IP: "%1" -Porta: "%2/%3" + Impossibile ascoltare su IP. +IP: "%1" +Porta: "%2/%3" Motivo: "%4" @@ -2836,24 +2836,24 @@ Motivo: "%4" Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - Errore: la coda degli avvisi interna è piena e gli avvisi vengono eliminati, potresti notare un peggioramento delle prestazioni. -Tipo di avviso eliminato: "%1" + Errore: la coda degli avvisi interna è piena e gli avvisi vengono eliminati, potresti notare un peggioramento delle prestazioni. +Tipo di avviso eliminato: "%1" Messaggio: "%2" Moved torrent successfully. Torrent: "%1". Destination: "%2" - Spostamento torrent completato. -Torrent: "%1" + Spostamento torrent completato. +Torrent: "%1" Destinazione: "%2" Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" - Impossibile spostare il torrent. -Torrent: "%1" -Sorgente: "%2" -Destinazione: "%3" + Impossibile spostare il torrent. +Torrent: "%1" +Sorgente: "%2" +Destinazione: "%3" Motivo: "%4"
@@ -2876,7 +2876,7 @@ Motivo: "%4" Create new torrent file failed. Reason: %1. - Impossibile creare un nuovo file torrent. + Impossibile creare un nuovo file torrent. Motivo: %1.
@@ -2895,8 +2895,8 @@ Motivo: %1. Unexpected data detected. Torrent: %1. Data: total_wanted=%2 total_wanted_done=%3. - Rilevati dati imprevisti. -Torrent: %1. + Rilevati dati imprevisti. +Torrent: %1. Dati: total_wanted=%2 total_wanted_done=%3. @@ -2922,14 +2922,14 @@ Dati: total_wanted=%2 total_wanted_done=%3. Failed to reload torrent. Torrent: %1. Reason: %2 - Impossibile ricaricare il torrent. -Torrente: %1. + Impossibile ricaricare il torrent. +Torrente: %1. Motivo: %2 Generate resume data failed. Torrent: "%1". Reason: "%2" - Generazione dei dati per la ripresa del download non riuscita. + Generazione dei dati per la ripresa del download non riuscita. Torrent: "%1". Motivo: "%2" @@ -2950,7 +2950,7 @@ Torrent: "%1". Motivo: "%2" Performance alert: %1. More info: %2 - Avviso sul rendimento: %1. + Avviso sul rendimento: %1. Ulteriori informazioni: %2.
@@ -3124,7 +3124,7 @@ Ulteriori informazioni: %2. Assign torrents to category. If the category doesn't exist, it will be created. - Assegna torrent a categoria. + Assegna torrent a categoria. Se la categoria non esiste, verrà creata. @@ -3145,8 +3145,8 @@ Se la categoria non esiste, verrà creata. Option values may be supplied via environment variables. For option named 'parameter-name', environment variable name is 'QBT_PARAMETER_NAME' (in upper case, '-' replaced with '_'). To pass flag values, set the variable to '1' or 'TRUE'. For example, to disable the splash screen: - I valori delle opzioni possono essere passati tramite variabili d'ambiente. Per l'opzione chiamata 'parameter-name', la variable d'ambiente è 'QBT_PARAMETER_NAME' (tutte maiuscole, '-' sostituito da '_'). -Per passare valori flag, imposta la variabile a '1' o 'TRUE'. + I valori delle opzioni possono essere passati tramite variabili d'ambiente. Per l'opzione chiamata 'parameter-name', la variable d'ambiente è 'QBT_PARAMETER_NAME' (tutte maiuscole, '-' sostituito da '_'). +Per passare valori flag, imposta la variabile a '1' o 'TRUE'. Per esempio, per disabilitare la schermata d'avvio: @@ -3546,7 +3546,7 @@ Per esempio, per disabilitare la schermata d'avvio: Downloading torrent... Source: "%1" - Download torrent... + Download torrent... Sorgente: "%1" @@ -3562,7 +3562,7 @@ Sorgente: "%1" Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? - Il torrent '%1' è già nell'elenco dei trasferimenti. + Il torrent '%1' è già nell'elenco dei trasferimenti. Vuoi unire i tracker da una nuova fonte?
@@ -3610,19 +3610,19 @@ Vuoi unire i tracker da una nuova fonte? Http request size exceeds limitation, closing socket. Limit: %1, IP: %2 - La dimensione della richiesta HTTP supera il limite, chiusura socket. + La dimensione della richiesta HTTP supera il limite, chiusura socket. Limite: %1, IP: %2 Bad Http request method, closing socket. IP: %1. Method: "%2" - Metodo di richiesta Http errato, chiusura socket. + Metodo di richiesta Http errato, chiusura socket. IP: %1. Metodo: "%2" Bad Http request, closing socket. IP: %1 - Richiesta HTTP errata, chiusura socket. + Richiesta HTTP errata, chiusura socket. IP: %1
@@ -3700,15 +3700,15 @@ Interfaccia: %1 Power management error. Action: %1. Error: %2 - Errore gestione alimentazione. -Azione: %1. + Errore gestione alimentazione. +Azione: %1. Errore: %2. Power management unexpected error. State: %1. Error: %2 - Errore imprevisto gestione alimentazione. -Stato: %1. + Errore imprevisto gestione alimentazione. +Stato: %1. Errore: %2
@@ -3731,7 +3731,7 @@ Errore: %2 qBittorrent is a file sharing program. When you run a torrent, its data will be made available to others by means of upload. Any content you share is your sole responsibility. - qBittorrent è un programma di condivisione file. + qBittorrent è un programma di condivisione file. Quando si esegue un torrent, i suoi dati saranno resi disponibili agli altri per mezzo dell'upload. Ogni contenuto che tu condividi è una tua responsabilità. @@ -3757,7 +3757,7 @@ Ogni contenuto che tu condividi è una tua responsabilità. %1 was blocked. Reason: %2. 0.0.0.0 was blocked. Reason: reason for blocking. - %1 è stato bloccato. + %1 è stato bloccato. Motivo: %2. @@ -3820,15 +3820,15 @@ Motivo: %2. Found unexpected qBittorrent instance. Exiting this instance. Current process ID: %1. - Trovata istanza qBittorrent inaspettata. -Uscita da questa istanza. + Trovata istanza qBittorrent inaspettata. +Uscita da questa istanza. ID processo corrente: %1. Error when daemonizing. Reason: "%1". Error code: %2. - Errore durante la demonizzazione. -Motivo: '%1'. + Errore durante la demonizzazione. +Motivo: '%1'. Codice errore: %2.
@@ -4310,15 +4310,15 @@ Codice errore: %2. Python installer could not be downloaded. Error: %1. Please install it manually. - Impossibile scaricare il programma di installazione di Python. + Impossibile scaricare il programma di installazione di Python. Errore: %1. Scarica il programma di installazione manualmente. Rename Python installer failed. Source: "%1". Destination: "%2". - Rinomina del programma di installazione di Python non riuscita. -Sorgente: "%1". + Rinomina del programma di installazione di Python non riuscita. +Sorgente: "%1". Destinazione: "%2". @@ -4414,7 +4414,7 @@ Vuoi installare una versione più recente adesso? Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - La versione Python (%1) è obsoleta. + La versione Python (%1) è obsoleta. Per far funzionare i motori di ricerca aggiorna alla versione più recente. Requisito minimo: v. %2. @@ -4447,17 +4447,17 @@ File: %1. Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - Controllo hash MD5 programma installazione Python non riuscito. -File: "%1". -Hash risultato: "%2". + Controllo hash MD5 programma installazione Python non riuscito. +File: "%1". +Hash risultato: "%2". Hash previsto: "%3". Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". Controllo hash SHA3-512 programma installazione Python non risucito. -File: "%1". -Hash risultato: "%2". +File: "%1". +Hash risultato: "%2". Hash previsto: "%3". @@ -4753,14 +4753,14 @@ Hash previsto: "%3". IP geolocation database loaded. Type: %1. Build time: %2. - Database geolocalizzazione IP caricato. + Database geolocalizzazione IP caricato. Tipo: %1 - Data build: %2. Couldn't load IP geolocation database. Reason: %1 - Impossibile caricare database geolocalizzazione IP. + Impossibile caricare database geolocalizzazione IP. Motivo: %1 @@ -5786,7 +5786,7 @@ Motivo: %1 Couldn't download IP geolocation database file. Reason: %1 - Impossibile scaricare il file del database geolocalizzazione IP. + Impossibile scaricare il file del database geolocalizzazione IP. Motivo: %1 @@ -7001,7 +7001,7 @@ Usa ';' per dividere più voci. Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - Alloca lo spazio pieno per il file su disco prima di avviare i download, per ridurre al minimo la frammentazione. + Alloca lo spazio pieno per il file su disco prima di avviare i download, per ridurre al minimo la frammentazione. Utile solo per gli HDD. @@ -7122,7 +7122,7 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not I nomi dei file filtrati nella blacklist non vengono scaricati da torrent. I file che corrispondono a uno qualsiasi dei filtri in questo elenco avranno la priorità impostata automaticamente su "Non scaricare". -Usa le nuove righe per separare più voci. +Usa le nuove righe per separare più voci. Puoi usare caratteri jolly come descritto di seguito. *: corrisponde a zero o più caratteri. ?: corrisponde a qualsiasi singolo carattere. @@ -7421,7 +7421,7 @@ readme[0-9].txt: filtro 'readme1.txt', 'readme2.txt' ma non <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - <html><head/><body><p>ISe abilitato "modo mixed" i torrent I2P sono autorizzati ad ottenere anche peer da altre sorgenti rispetto al tracker e connettersi a IPS regolari, non fornendo alcuna anonimizzazione. + <html><head/><body><p>ISe abilitato "modo mixed" i torrent I2P sono autorizzati ad ottenere anche peer da altre sorgenti rispetto al tracker e connettersi a IPS regolari, non fornendo alcuna anonimizzazione. Ciò può essere utile se l'utente non è interessato all'anonimizzazione di I2P, ma vuole comunque essere in grado di connettersi ai peer I2P.</p></body></html> @@ -7781,7 +7781,7 @@ Ciò può essere utile se l'utente non è interessato all'anonimizzazi WebUI configuration failed. Reason: %1 - Configurazione WebUI non riuscita. + Configurazione WebUI non riuscita. Motivo: %1 @@ -7853,7 +7853,7 @@ Motivo: %1 When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well - Quando queste opzioni sono abilitate, qBittorrent <strong>eliminerà</strong> i file .torrent dopo che sono stati aggiunti alla sua coda di download correttamente (prima opzione) o meno (seconda opzione). + Quando queste opzioni sono abilitate, qBittorrent <strong>eliminerà</strong> i file .torrent dopo che sono stati aggiunti alla sua coda di download correttamente (prima opzione) o meno (seconda opzione). Questa modalità verrà applicato <strong>non solo</strong> ai file aperti tramite l'azione del menu &ldquo;Aggiungi torrent&rdquo;, ma anche a quelli aperti tramite l'associazione del tipo di file @@ -8144,7 +8144,7 @@ Questa modalità verrà applicato <strong>non solo</strong> ai file Some peers cannot be added. Check the Log for details. - Alcuni peer non possono essere aggiunti. + Alcuni peer non possono essere aggiunti. Per i dettagli controlla il registro eventi. @@ -8489,19 +8489,19 @@ Interfaccia: %1 Power management error. Did not found suitable D-Bus interface. - Errore gestione dell'alimentazione. + Errore gestione dell'alimentazione. Non è stata trovata l'interfaccia D-Bus adatta. Power management error. Action: %1. Error: %2 - Errore gestione alimentazione. -Azione: %1. + Errore gestione alimentazione. +Azione: %1. Errore: %2. Power management unexpected error. State: %1. Error: %2 - Errore imprevisto gestione alimentazione. -Stato: %1. + Errore imprevisto gestione alimentazione. +Stato: %1. Errore: %2
@@ -8937,7 +8937,7 @@ Errore: %2 RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - L'articolo RSS '%1' è accettato dalla regola '%2'. + L'articolo RSS '%1' è accettato dalla regola '%2'. Tentativo di aggiunta torrent... @@ -8971,7 +8971,7 @@ Tentativo di aggiunta torrent... RSS feed at '%1' is successfully downloaded. Starting to parse it. - Download completato feed RSS in '%1'. + Download completato feed RSS in '%1'. Avvio analisi.
@@ -8985,25 +8985,25 @@ Avvio analisi. Failed to save RSS feed in '%1', Reason: %2 - Impossibile salvare il feed RSS in '%1'. + Impossibile salvare il feed RSS in '%1'. Motivo: %2 Couldn't parse RSS Session data. Error: %1 - Impossibile analizzare i dati della sessione RSS. + Impossibile analizzare i dati della sessione RSS. Errore: %1 Couldn't load RSS Session data. Invalid data format. - Impossibile caricare i dati della sessione RSS. + Impossibile caricare i dati della sessione RSS. Formato dati non valido. Couldn't load RSS article '%1#%2'. Invalid data format. - Impossibile caricare l'articolo RSS '%1#%2'. + Impossibile caricare l'articolo RSS '%1#%2'. Formato dati non valido.
@@ -9076,15 +9076,15 @@ Formato dati non valido. Failed to parse RSS session data. File: "%1". Error: "%2" - Impossibile analizzare i dati della sessione RSS. -File: "%1". + Impossibile analizzare i dati della sessione RSS. +File: "%1". Errore: "%2" Failed to load RSS session data. File: "%1". Error: "Invalid data format." - Impossibile caricare i dati della sessione RSS. -File: "%1". + Impossibile caricare i dati della sessione RSS. +File: "%1". Errore: "formato dati non valido". @@ -9815,45 +9815,45 @@ Fai clic sul pulsante "Estensioni di ricerca..." in basso a destra per Failed to load Search UI saved state data. File: "%1". Error: "%2" - Impossibile caricare i dati dello stato salvato dell'interfaccia utente. -File: "%1". + Impossibile caricare i dati dello stato salvato dell'interfaccia utente. +File: "%1". Errore: "%2" Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - Impossibile caricare i risultati di ricerca salvati. -Scheda: "%1". -File: "%2". + Impossibile caricare i risultati di ricerca salvati. +Scheda: "%1". +File: "%2". Errore: "%3" Failed to save Search UI state. File: "%1". Error: "%2" - Impossibile salvare lo stato dell'interfaccia utente ricerca. -File: "%1". + Impossibile salvare lo stato dell'interfaccia utente ricerca. +File: "%1". Errore: "%2" Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - Impossibile salvare i risultati della ricerca. -Scheda: "%1". -File: "%2". + Impossibile salvare i risultati della ricerca. +Scheda: "%1". +File: "%2". Errore: "%3" Failed to load Search UI history. File: "%1". Error: "%2" - Impossibile caricare la cronologia dell'interfaccia utente. -File: "%1". + Impossibile caricare la cronologia dell'interfaccia utente. +File: "%1". Errore: "%2" Failed to save search history. File: "%1". Error: "%2" - Impossibile salvare la cronologia della ricerca. -File: "%1". + Impossibile salvare la cronologia della ricerca. +File: "%1". Errore: "%2"
@@ -9862,7 +9862,7 @@ Errore: "%2" Detected unclean program exit. Using fallback file to restore settings: %1 - Rilevata uscita dal programma non corretta. + Rilevata uscita dal programma non corretta. Uso il file di riserva per ripristinare le impostazioni: %1 @@ -11071,13 +11071,13 @@ Scegli un nome diverso e riprova. Failed to parse Watched Folders configuration from %1. Error: "%2" - Impossibile analizzare la configurazione delle cartelle controllate da %1. + Impossibile analizzare la configurazione delle cartelle controllate da %1. Errore: "%2" Failed to load Watched Folders configuration from %1. Error: "Invalid data format." - Impossibile caricare la configurazione delle cartelle controllate da %1. + Impossibile caricare la configurazione delle cartelle controllate da %1. Errore: "formato dati non valido". @@ -11102,14 +11102,14 @@ Errore: %2 Invalid Magnet URI. URI: %1. Reason: %2 - URI Magnet non valido. -URI: %1. + URI Magnet non valido. +URI: %1. Motivo: %2 Magnet file too big. File: %1 - File magnet troppo grande. + File magnet troppo grande. File: %1 @@ -11744,7 +11744,7 @@ File: %1 Error occurred when downloading the trackers list. Reason: "%1" - Si è verificato un errore durante il download dell'elenco tracker. + Si è verificato un errore durante il download dell'elenco tracker. Motivo: "%1"
@@ -12241,7 +12241,7 @@ Motivo: "%1" Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - Sei sicuro di voler abilitare la gestione automatica torrent per i torrent selezionati? + Sei sicuro di voler abilitare la gestione automatica torrent per i torrent selezionati? I torrent potranno essere spostati. @@ -12455,7 +12455,7 @@ I torrent potranno essere spostati. Errors occurred when exporting .torrent files. Check execution log for details. - Si sono verificati errori durante l'esportazione di file .torrent. + Si sono verificati errori durante l'esportazione di file .torrent. Per i dettagli controlla il registro di esecuzione. @@ -12550,27 +12550,27 @@ Per i dettagli controlla il registro di esecuzione. The UI Theme changes could not be fully applied. The details can be found in the Log. - Non è stato possibile applicare completamente le modifiche al tema dell'interfaccia utente. + Non è stato possibile applicare completamente le modifiche al tema dell'interfaccia utente. Per i dettagli sul problema consulta il registro eventi. Couldn't save UI Theme configuration. Reason: %1 - Impossibile salvare la configurazione del tema dell'interfaccia utente. + Impossibile salvare la configurazione del tema dell'interfaccia utente. Motivo: %1 Couldn't remove icon file. File: %1. - Impossibile rimuovere il file dell'icona. + Impossibile rimuovere il file dell'icona. File: %1. Couldn't copy icon file. Source: %1. Destination: %2. - Impossibile copiare il file dell'icona. -Sorgente: %1. + Impossibile copiare il file dell'icona. +Sorgente: %1. Destinazione: %2.
@@ -12579,7 +12579,7 @@ Destinazione: %2. Set app style failed. Unknown style: "%1" - Impostazione stile app non riuscita. + Impostazione stile app non riuscita. Stile sconosciuto: "%1". @@ -12599,7 +12599,7 @@ Motivo: %1 UI Theme configuration file has invalid format. Reason: %1 - Il file di configurazione del tema dell'interfaccia utente ha un formato non valido. + Il file di configurazione del tema dell'interfaccia utente ha un formato non valido. Motivo: %1 @@ -12635,8 +12635,8 @@ errore: "%2" Invalid value found in configuration file, reverting it to default. Key: "%1". Invalid value: "%2". Trovato valore non valido nel file di configurazione, -Verrà ripristinato al valore predefinito. -Chiave: "%1". +Verrà ripristinato al valore predefinito. +Chiave: "%1". Valore non valido: "%2".
@@ -12645,26 +12645,26 @@ Valore non valido: "%2". Found Python executable. Name: "%1". Version: "%2" - Trovato eseguibile Python. -Nome: "%1". + Trovato eseguibile Python. +Nome: "%1". Versione: "%2" Failed to find Python executable. Path: "%1". - Impossibile trovare l'eseguibile Python. + Impossibile trovare l'eseguibile Python. Percorso: "%1". Failed to find `python3` executable in PATH environment variable. PATH: "%1" - Impossibile trovare l'eseguibile `python3` nella variabile di ambiente PATH. + Impossibile trovare l'eseguibile `python3` nella variabile di ambiente PATH. PERCORSO: "%1" Failed to find `python` executable in PATH environment variable. PATH: "%1" - Impossibile trovare l'eseguibile `python` nella variabile di ambiente PATH. + Impossibile trovare l'eseguibile `python` nella variabile di ambiente PATH. PERCORSO: "%1" @@ -12683,39 +12683,39 @@ PERCORSO: "%1" File open error. File: "%1". Error: "%2" - Errore apertura file. -File: "%1". + Errore apertura file. +File: "%1". Errore: "%2" File size exceeds limit. File: "%1". File size: %2. Size limit: %3 - La dimensione del file supera il limite. -File: "%1". -Dimensione file: %2. + La dimensione del file supera il limite. +File: "%1". +Dimensione file: %2. Limite dimensione: %3 File size exceeds data size limit. File: "%1". File size: %2. Array limit: %3 - La dimensione del file supera il limite della dimensione dei dati. -File: "%1". -Dimensione file: %2. + La dimensione del file supera il limite della dimensione dei dati. +File: "%1". +Dimensione file: %2. Limite matrice: %3 File read error. File: "%1". Error: "%2" - Errore di lettura del file. -File: "%1". + Errore di lettura del file. +File: "%1". Errore: "%2" Read size mismatch. File: "%1". Expected: %2. Actual: %3 - Dimensione òettura non corrispondente. -File: "%1". -Prevista: %2. + Dimensione òettura non corrispondente. +File: "%1". +Prevista: %2. Effettiva: %3
@@ -12780,7 +12780,7 @@ Effettiva: %3 Unacceptable session cookie name is specified: '%1'. Default one is used. - È stato specificato un nome di cookie di sessione non accettabile: '%1'. + È stato specificato un nome di cookie di sessione non accettabile: '%1'. Verrà utilizzato quello predefinito. @@ -12801,7 +12801,7 @@ Verrà utilizzato quello predefinito. Using custom WebUI. Location: "%1". - Usa WebUI personalizzata. + Usa WebUI personalizzata. Percorso: "%1". @@ -12827,7 +12827,7 @@ Percorso: "%1". Web server error. Unknown error. - Errore server web. + Errore server web. Errore sconosciuto. @@ -12876,7 +12876,7 @@ Errore sconosciuto. Unable to bind to IP: %1, port: %2. Reason: %3 - Impossibile eseguire il collegamento all'IP: %1, porta: %2. + Impossibile eseguire il collegamento all'IP: %1, porta: %2. Motivo: %3
diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index 7948719ef..1fc6337d7 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_ka.ts b/src/lang/qbittorrent_ka.ts index cd1c38b43..279c14ae1 100644 --- a/src/lang/qbittorrent_ka.ts +++ b/src/lang/qbittorrent_ka.ts @@ -93,7 +93,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index a27ecfd7c..9ded662fd 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 qBittorrent 프로젝트 + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 qBittorrent 프로젝트 @@ -6413,7 +6413,7 @@ Disable encryption: Only connect to peers without protocol encryption Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. 웹 UI가 결합할 IP 주소입니다. -IPv4나 IPV6 주소를 지정하십시오. IPv4 주소에 "0.0.0.0"을, IPV6 주소에 "::"을, +IPv4나 IPV6 주소를 지정하십시오. IPv4 주소에 "0.0.0.0"을, IPV6 주소에 "::"을, 또는 IPV4/IPv6 모두 "*"를 지정할 수 있습니다. diff --git a/src/lang/qbittorrent_lt.ts b/src/lang/qbittorrent_lt.ts index 3c2993811..4d9f4fe11 100644 --- a/src/lang/qbittorrent_lt.ts +++ b/src/lang/qbittorrent_lt.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Autorių teisės %1 2006-2024 qBittorrent projektas + Copyright %1 2006-2025 The qBittorrent project + Autorių teisės %1 2006-2025 qBittorrent projektas diff --git a/src/lang/qbittorrent_ltg.ts b/src/lang/qbittorrent_ltg.ts index cc40a79e1..dd01973cd 100644 --- a/src/lang/qbittorrent_ltg.ts +++ b/src/lang/qbittorrent_ltg.ts @@ -91,7 +91,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project @@ -12550,4 +12550,4 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. < 1m
- \ No newline at end of file + diff --git a/src/lang/qbittorrent_lv_LV.ts b/src/lang/qbittorrent_lv_LV.ts index 6e9fc01e9..b35dc425b 100644 --- a/src/lang/qbittorrent_lv_LV.ts +++ b/src/lang/qbittorrent_lv_LV.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Autortiesības %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Autortiesības %1 2006-2025 The qBittorrent project @@ -1533,7 +1533,7 @@ Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. Reason: disk is full. - Ievades/Izvades kļūda torrentam '%1'. + Ievades/Izvades kļūda torrentam '%1'. Iemesls: %2 @@ -4204,7 +4204,7 @@ Lūdzu, uzstādiet to paši. Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - Lai lietotu meklētāju, ir nepieciešams uzinstalēt Python. + Lai lietotu meklētāju, ir nepieciešams uzinstalēt Python. Vai vēlaties to instalēt tagad? @@ -4237,7 +4237,7 @@ Vai vēlaties to instalēt tagad? No updates available. You are already using the latest version. - Atjauninājumi nav pieejami. + Atjauninājumi nav pieejami. Jūs jau lietojat jaunāko versiju. @@ -6850,7 +6850,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot viettu Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - Automātiski: nozīmē, ka torrenta uzstādījumi (piem. saglabāšanas vieta), tiks iestatīti atbilstoši izvēlētajai kategorijai. + Automātiski: nozīmē, ka torrenta uzstādījumi (piem. saglabāšanas vieta), tiks iestatīti atbilstoši izvēlētajai kategorijai. Manuāli: Nozīmē, ka torrenta uzstādījumi (piem. saglabāšanas vieta) būs jānorāda pašam. @@ -8187,7 +8187,7 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet Some plugins could not be uninstalled because they are included in qBittorrent. Only the ones you added yourself can be uninstalled. Those plugins were disabled. - Dažus spraudņus nav iespējams atinstalēt, jo tie ir iekļauti qBittorrent. Jūs varat atinstalēt tikai tos spraudņus, kurus pats ieinstalējāt. + Dažus spraudņus nav iespējams atinstalēt, jo tie ir iekļauti qBittorrent. Jūs varat atinstalēt tikai tos spraudņus, kurus pats ieinstalējāt. Esošie spraudņi tika atslēgti. diff --git a/src/lang/qbittorrent_mn_MN.ts b/src/lang/qbittorrent_mn_MN.ts index 919dfdc17..f1dedb7f2 100644 --- a/src/lang/qbittorrent_mn_MN.ts +++ b/src/lang/qbittorrent_mn_MN.ts @@ -93,7 +93,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project @@ -1810,7 +1810,7 @@ Error: %2 Smart Episode Filter will check the episode number to prevent downloading of duplicates. Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also support - as a separator) - Ангийн ухаалаг шүүлтүүр нь ангийн дугаарыг шалгаж, давхардсан анги татахаас сэргийлэх боломжыг олгоно. + Ангийн ухаалаг шүүлтүүр нь ангийн дугаарыг шалгаж, давхардсан анги татахаас сэргийлэх боломжыг олгоно. Дэмжих хэлбэржүүлэлт: S01E01, 1x1, 2017.12.31 болон 31.12.2017 (Огноон хэлбэржүүлэлтэнд мөн дундуур зураасаар бичсэнийг уншина) diff --git a/src/lang/qbittorrent_ms_MY.ts b/src/lang/qbittorrent_ms_MY.ts index 2cd44eb23..975ee2d10 100644 --- a/src/lang/qbittorrent_ms_MY.ts +++ b/src/lang/qbittorrent_ms_MY.ts @@ -93,7 +93,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index c0f1d7100..ce9824394 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Opphavsrett %1 2006-2024 qBittorrent-prosjektet + Copyright %1 2006-2025 The qBittorrent project + Opphavsrett %1 2006-2025 qBittorrent-prosjektet @@ -4260,7 +4260,7 @@ Vil du installere en nyere versjon nå? Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - Din Python-versjon (%1) er utdatert. Oppgrader til siste versjon for at søkemotorene skal virke. + Din Python-versjon (%1) er utdatert. Oppgrader til siste versjon for at søkemotorene skal virke. Minimumskrav: %2. diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index fea874368..d8f0b8ad2 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Auteursrecht %1 2006-2024 het qBittorrent-project + Copyright %1 2006-2025 The qBittorrent project + Auteursrecht %1 2006-2025 het qBittorrent-project diff --git a/src/lang/qbittorrent_oc.ts b/src/lang/qbittorrent_oc.ts index 6da4b3118..54de16d23 100644 --- a/src/lang/qbittorrent_oc.ts +++ b/src/lang/qbittorrent_oc.ts @@ -93,7 +93,7 @@ - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index d687cd35e..7a690ab00 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 Projekt qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 Projekt qBittorrent diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index 20fef76ed..33462385b 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 O Projeto do qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 O Projeto do qBittorrent diff --git a/src/lang/qbittorrent_pt_PT.ts b/src/lang/qbittorrent_pt_PT.ts index 202dac433..a04356e41 100644 --- a/src/lang/qbittorrent_pt_PT.ts +++ b/src/lang/qbittorrent_pt_PT.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 O projeto qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 O projeto qBittorrent @@ -6408,7 +6408,7 @@ Desativar encriptação: Apenas liga a fontes sem protocolo de encriptação Endereço IP com o qual a interface web irá ligar. -Especifique um endereço IPv4 ou IPv6. Você pode especificar "0.0.0.0" para qualquer endereço IPv4, +Especifique um endereço IPv4 ou IPv6. Você pode especificar "0.0.0.0" para qualquer endereço IPv4, "::" para qualquer endereço IPv6, ou "*" para IPv4 e IPv6. diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index d6c3c8ca6..ac59c1ef8 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Drept de autor %1 2006-2024 Proiectul qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Drept de autor %1 2006-2025 Proiectul qBittorrent diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 8d02edc85..8c648c39c 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Авторское право %1 2006-2024 Проект qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Авторское право %1 2006-2025 Проект qBittorrent diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index a28d6d340..780a03550 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project @@ -1733,7 +1733,7 @@ Dôvod: %2 Smart Episode Filter will check the episode number to prevent downloading of duplicates. Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also support - as a separator) - Chytrý Filter Epizód skontroluje číslo epizódy pre zabránenie sťahovanie duplikátov. + Chytrý Filter Epizód skontroluje číslo epizódy pre zabránenie sťahovanie duplikátov. Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty dátumu - ako oddeľovač) diff --git a/src/lang/qbittorrent_sl.ts b/src/lang/qbittorrent_sl.ts index 47896f6ec..91d8db5d5 100644 --- a/src/lang/qbittorrent_sl.ts +++ b/src/lang/qbittorrent_sl.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Avtorske pravice %1 2006-2024 Projekt qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Avtorske pravice %1 2006-2025 Projekt qBittorrent @@ -1733,7 +1733,7 @@ Razlog: %2 Smart Episode Filter will check the episode number to prevent downloading of duplicates. Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also support - as a separator) Pametni filter za epizode bo preveril številko epizode v izogibu prejemanja dvojnikov. -Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 +Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Formati datume so tudi podprti z "-" kot ločilnikom) diff --git a/src/lang/qbittorrent_sr.ts b/src/lang/qbittorrent_sr.ts index 631a1e4de..91da377f9 100644 --- a/src/lang/qbittorrent_sr.ts +++ b/src/lang/qbittorrent_sr.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Ауторска права заштићена %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Ауторска права заштићена %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index bfb974267..e3f976f79 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_th.ts b/src/lang/qbittorrent_th.ts index 3ed8b0b2b..f5c00a136 100644 --- a/src/lang/qbittorrent_th.ts +++ b/src/lang/qbittorrent_th.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - ลิขสิทธิ์ %1 2006-2024 โครงการ qBittorrent + Copyright %1 2006-2025 The qBittorrent project + ลิขสิทธิ์ %1 2006-2025 โครงการ qBittorrent diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index 56c899892..34b3a6196 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Telif hakkı %1 2006-2024 qBittorrent projesi + Copyright %1 2006-2025 The qBittorrent project + Telif hakkı %1 2006-2025 qBittorrent projesi diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 4be189fc6..2dcb49a2a 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Авторські права %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + Авторські права %1 2006-2025 The qBittorrent project @@ -1533,7 +1533,7 @@ Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. Reason: disk is full. - Сталася помилка введення-виведення для торрента «%1». + Сталася помилка введення-виведення для торрента «%1». Причина: %2 @@ -4253,14 +4253,14 @@ You are already using the latest version. Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - Ваша версія Python (%1) застаріла. Мінімальна вимога: %2 + Ваша версія Python (%1) застаріла. Мінімальна вимога: %2 Ви бажаєте встановити більш нову версію зараз? Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - Ваша версія Python (%1) застаріла. Будь ласка, оновіться до останньої версії, щоб пошукові системи працювали. + Ваша версія Python (%1) застаріла. Будь ласка, оновіться до останньої версії, щоб пошукові системи працювали. Мінімально необхідна версія: %2. diff --git a/src/lang/qbittorrent_uz@Latn.ts b/src/lang/qbittorrent_uz@Latn.ts index 34121ebfa..037236d6a 100644 --- a/src/lang/qbittorrent_uz@Latn.ts +++ b/src/lang/qbittorrent_uz@Latn.ts @@ -91,8 +91,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Mualliflik huquqi %1 2006-2024 qBittorrent loyihasi + Copyright %1 2006-2025 The qBittorrent project + Mualliflik huquqi %1 2006-2025 qBittorrent loyihasi @@ -12549,4 +12549,4 @@ Please choose a different name and try again.
- \ No newline at end of file + diff --git a/src/lang/qbittorrent_vi.ts b/src/lang/qbittorrent_vi.ts index a657cb17c..6611484a9 100644 --- a/src/lang/qbittorrent_vi.ts +++ b/src/lang/qbittorrent_vi.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Bản quyền %1 2006-2024 Dự án qBittorrent + Copyright %1 2006-2025 The qBittorrent project + Bản quyền %1 2006-2025 Dự án qBittorrent diff --git a/src/lang/qbittorrent_zh_CN.ts b/src/lang/qbittorrent_zh_CN.ts index 459210c30..52eb69975 100644 --- a/src/lang/qbittorrent_zh_CN.ts +++ b/src/lang/qbittorrent_zh_CN.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - 版权所有 %1 2006-2024 The qBittorrent project + Copyright %1 2006-2025 The qBittorrent project + 版权所有 %1 2006-2025 The qBittorrent project diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index 396d532fb..ac4565c3a 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 qBittorrent 專案 + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 qBittorrent 專案 diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index 3bb9c8e03..9579cdc6a 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -93,8 +93,8 @@ - Copyright %1 2006-2024 The qBittorrent project - Copyright %1 2006-2024 qBittorrent 專案 + Copyright %1 2006-2025 The qBittorrent project + Copyright %1 2006-2025 qBittorrent 專案 diff --git a/src/qbittorrent.rc b/src/qbittorrent.rc index 9e1550c08..0032dcbd1 100644 --- a/src/qbittorrent.rc +++ b/src/qbittorrent.rc @@ -35,7 +35,7 @@ BEGIN VALUE "FileDescription", "qBittorrent - A Bittorrent Client" VALUE "FileVersion", VER_FILEVERSION_STR VALUE "InternalName", "qbittorrent" - VALUE "LegalCopyright", "Copyright ©2006-2024 The qBittorrent Project" + VALUE "LegalCopyright", "Copyright ©2006-2025 The qBittorrent Project" VALUE "OriginalFilename", "qbittorrent.exe" VALUE "ProductName", "qBittorrent" VALUE "ProductVersion", VER_PRODUCTVERSION_STR diff --git a/src/webui/www/private/views/about.html b/src/webui/www/private/views/about.html index 506b773f8..cf265f585 100644 --- a/src/webui/www/private/views/about.html +++ b/src/webui/www/private/views/about.html @@ -5,7 +5,7 @@

qBittorrent

QBT_TR(An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar.)QBT_TR[CONTEXT=AboutDialog]

-

Copyright © 2006-2024 The qBittorrent project

+

Copyright © 2006-2025 The qBittorrent project

From 0187f19f60ed685902480e115400253f2eae85d6 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Mon, 21 Apr 2025 17:21:18 +0800 Subject: [PATCH 78/80] WebUI: migrate away from recursion calls Browsers have limited recursion depth about ~10000. PR #22580. --- src/webui/www/private/scripts/file-tree.js | 126 +++++++++++---------- 1 file changed, 69 insertions(+), 57 deletions(-) diff --git a/src/webui/www/private/scripts/file-tree.js b/src/webui/www/private/scripts/file-tree.js index 3622b5842..328806988 100644 --- a/src/webui/www/private/scripts/file-tree.js +++ b/src/webui/www/private/scripts/file-tree.js @@ -72,14 +72,17 @@ window.qBittorrent.FileTree ??= (() => { return this.root; }, - generateNodeMap: function(node) { - // don't store root node in map - if (node.root !== null) - this.nodeMap[node.rowId] = node; + generateNodeMap: function(root) { + const stack = [root]; + while (stack.length > 0) { + const node = stack.pop(); - node.children.each((child) => { - this.generateNodeMap(child); - }); + // don't store root node in map + if (node.root !== null) + this.nodeMap[node.rowId] = node; + + stack.push(...node.children); + } }, getNode: function(rowId) { @@ -93,21 +96,17 @@ window.qBittorrent.FileTree ??= (() => { }, /** - * Returns the nodes in dfs order + * Returns the nodes in DFS in-order */ toArray: function() { - const nodes = []; - this.root.children.each((node) => { - this._getArrayOfNodes(node, nodes); - }); - return nodes; - }, - - _getArrayOfNodes: function(node, array) { - array.push(node); - node.children.each((child) => { - this._getArrayOfNodes(child, array); - }); + const ret = []; + const stack = this.root.children.toReversed(); + while (stack.length > 0) { + const node = stack.pop(); + ret.push(node); + stack.push(...node.children.toReversed()); + } + return ret; } }); @@ -140,55 +139,68 @@ window.qBittorrent.FileTree ??= (() => { this.isFolder = true; }, - addChild(node) { + addChild: function(node) { this.children.push(node); }, /** - * Recursively calculate size of node and its children + * Calculate size of node and its children */ calculateSize: function() { - let size = 0; - let remaining = 0; - let progress = 0; - let availability = 0; - let checked = TriState.Unchecked; - let priority = FilePriority.Normal; + const stack = [this]; + const visited = []; - let isFirstFile = true; + while (stack.length > 0) { + const root = stack.at(-1); - this.children.each((node) => { - if (node.isFolder) - node.calculateSize(); + if (root.isFolder) { + if (visited.at(-1) !== root) { + visited.push(root); + stack.push(...root.children); + continue; + } - size += node.size; + visited.pop(); - if (isFirstFile) { - priority = node.priority; - checked = node.checked; - isFirstFile = false; - } - else { - if (priority !== node.priority) - priority = FilePriority.Mixed; - if (checked !== node.checked) - checked = TriState.Partial; + // process children + root.size = 0; + root.remaining = 0; + root.progress = 0; + root.availability = 0; + root.checked = TriState.Unchecked; + root.priority = FilePriority.Normal; + let isFirstFile = true; + + for (const child of root.children) { + root.size += child.size; + + if (isFirstFile) { + root.priority = child.priority; + root.checked = child.checked; + isFirstFile = false; + } + else { + if (root.priority !== child.priority) + root.priority = FilePriority.Mixed; + if (root.checked !== child.checked) + root.checked = TriState.Partial; + } + + const isIgnored = (child.priority === FilePriority.Ignored); + if (!isIgnored) { + root.remaining += child.remaining; + root.progress += (child.progress * child.size); + root.availability += (child.availability * child.size); + } + } + + root.checked = root.autoCheckFolders ? root.checked : TriState.Checked; + root.progress /= root.size; + root.availability /= root.size; } - const isIgnored = (node.priority === FilePriority.Ignored); - if (!isIgnored) { - remaining += node.remaining; - progress += (node.progress * node.size); - availability += (node.availability * node.size); - } - }); - - this.size = size; - this.remaining = remaining; - this.checked = this.autoCheckFolders ? checked : TriState.Checked; - this.progress = (progress / size); - this.priority = priority; - this.availability = (availability / size); + stack.pop(); + } } }); From 0160aa28b6b9f347125be7d9e8820c1dcb62b14c Mon Sep 17 00:00:00 2001 From: bolshoytoster <91278344+bolshoytoster@users.noreply.github.com> Date: Mon, 21 Apr 2025 10:23:09 +0100 Subject: [PATCH 79/80] WebUI: Don't update UI if the page is hidden Currently, there is unnecessary CPU/network usage by the web UI when it's running in the background, this PR prevents it from refreshing in the background. Closes #22565. PR #22567. --- src/webui/www/private/scripts/client.js | 17 +++++++++++++++++ src/webui/www/private/scripts/prop-files.js | 2 ++ src/webui/www/private/scripts/prop-general.js | 2 ++ src/webui/www/private/scripts/prop-peers.js | 2 ++ src/webui/www/private/scripts/prop-trackers.js | 2 ++ src/webui/www/private/scripts/prop-webseeds.js | 2 ++ src/webui/www/private/views/log.html | 3 +++ 7 files changed, 30 insertions(+) diff --git a/src/webui/www/private/scripts/client.js b/src/webui/www/private/scripts/client.js index 6a7511293..15e7af365 100644 --- a/src/webui/www/private/scripts/client.js +++ b/src/webui/www/private/scripts/client.js @@ -750,6 +750,8 @@ window.addEventListener("DOMContentLoaded", () => { let syncMainDataTimeoutID = -1; let syncRequestInProgress = false; const syncMainData = () => { + if (document.hidden) + return; syncRequestInProgress = true; const url = new URL("api/v2/sync/maindata", window.location); url.search = new URLSearchParams({ @@ -1774,6 +1776,21 @@ window.addEventListener("DOMContentLoaded", () => { } } }); + + addEventListener("visibilitychange", (event) => { + if (document.hidden) + return; + + switch (LocalPreferences.get("selected_window_tab")) { + case "log": + window.qBittorrent.Log.load(); + break; + case "transfers": + syncData(100); + updatePropertiesPanel(); + break; + } + }); }); window.addEventListener("load", async () => { diff --git a/src/webui/www/private/scripts/prop-files.js b/src/webui/www/private/scripts/prop-files.js index 482781112..1aa2665b9 100644 --- a/src/webui/www/private/scripts/prop-files.js +++ b/src/webui/www/private/scripts/prop-files.js @@ -305,6 +305,8 @@ window.qBittorrent.PropFiles ??= (() => { let loadTorrentFilesDataTimer = -1; const loadTorrentFilesData = () => { + if (document.hidden) + return; if ($("propFiles").classList.contains("invisible") || $("propertiesPanel_collapseToggle").classList.contains("panel-expand")) { // Tab changed, don't do anything diff --git a/src/webui/www/private/scripts/prop-general.js b/src/webui/www/private/scripts/prop-general.js index dbf80e8a9..d93c9b746 100644 --- a/src/webui/www/private/scripts/prop-general.js +++ b/src/webui/www/private/scripts/prop-general.js @@ -76,6 +76,8 @@ window.qBittorrent.PropGeneral ??= (() => { let loadTorrentDataTimer = -1; const loadTorrentData = () => { + if (document.hidden) + return; if ($("propGeneral").classList.contains("invisible") || $("propertiesPanel_collapseToggle").classList.contains("panel-expand")) { // Tab changed, don't do anything diff --git a/src/webui/www/private/scripts/prop-peers.js b/src/webui/www/private/scripts/prop-peers.js index 80120c86e..8ccb2cbd1 100644 --- a/src/webui/www/private/scripts/prop-peers.js +++ b/src/webui/www/private/scripts/prop-peers.js @@ -43,6 +43,8 @@ window.qBittorrent.PropPeers ??= (() => { let show_flags = true; const loadTorrentPeersData = () => { + if (document.hidden) + return; if ($("propPeers").classList.contains("invisible") || $("propertiesPanel_collapseToggle").classList.contains("panel-expand")) { syncTorrentPeersLastResponseId = 0; diff --git a/src/webui/www/private/scripts/prop-trackers.js b/src/webui/www/private/scripts/prop-trackers.js index fbf5c0eef..e75709724 100644 --- a/src/webui/www/private/scripts/prop-trackers.js +++ b/src/webui/www/private/scripts/prop-trackers.js @@ -43,6 +43,8 @@ window.qBittorrent.PropTrackers ??= (() => { let loadTrackersDataTimer = -1; const loadTrackersData = () => { + if (document.hidden) + return; if ($("propTrackers").classList.contains("invisible") || $("propertiesPanel_collapseToggle").classList.contains("panel-expand")) { // Tab changed, don't do anything diff --git a/src/webui/www/private/scripts/prop-webseeds.js b/src/webui/www/private/scripts/prop-webseeds.js index 96cfbd4ea..7fd517597 100644 --- a/src/webui/www/private/scripts/prop-webseeds.js +++ b/src/webui/www/private/scripts/prop-webseeds.js @@ -43,6 +43,8 @@ window.qBittorrent.PropWebseeds ??= (() => { let loadWebSeedsDataTimer = -1; const loadWebSeedsData = () => { + if (document.hidden) + return; if ($("propWebSeeds").classList.contains("invisible") || $("propertiesPanel_collapseToggle").classList.contains("panel-expand")) { // Tab changed, don't do anything diff --git a/src/webui/www/private/views/log.html b/src/webui/www/private/views/log.html index 99fe8660a..bbafca8cc 100644 --- a/src/webui/www/private/views/log.html +++ b/src/webui/www/private/views/log.html @@ -336,6 +336,9 @@ }; const syncLogData = (curTab) => { + if (document.hidden) + return; + if (curTab === undefined) curTab = currentSelectedTab; From 0b3bce89933c0323b1cd4309ace310af4c309a21 Mon Sep 17 00:00:00 2001 From: sledgehammer999 Date: Mon, 21 Apr 2025 12:29:58 +0300 Subject: [PATCH 80/80] Sync translations from Transifex and run lupdate --- src/lang/qbittorrent_ar.ts | 51 +- src/lang/qbittorrent_az@latin.ts | 2491 +++++++++--------- src/lang/qbittorrent_be.ts | 84 +- src/lang/qbittorrent_bg.ts | 31 +- src/lang/qbittorrent_ca.ts | 84 +- src/lang/qbittorrent_cs.ts | 84 +- src/lang/qbittorrent_da.ts | 25 +- src/lang/qbittorrent_de.ts | 84 +- src/lang/qbittorrent_el.ts | 84 +- src/lang/qbittorrent_en_AU.ts | 80 +- src/lang/qbittorrent_en_GB.ts | 82 +- src/lang/qbittorrent_eo.ts | 19 +- src/lang/qbittorrent_es.ts | 84 +- src/lang/qbittorrent_et.ts | 51 +- src/lang/qbittorrent_eu.ts | 84 +- src/lang/qbittorrent_fa.ts | 31 +- src/lang/qbittorrent_fi.ts | 41 +- src/lang/qbittorrent_fr.ts | 84 +- src/lang/qbittorrent_gl.ts | 84 +- src/lang/qbittorrent_he.ts | 39 +- src/lang/qbittorrent_hi_IN.ts | 27 +- src/lang/qbittorrent_hr.ts | 84 +- src/lang/qbittorrent_hu.ts | 84 +- src/lang/qbittorrent_hy.ts | 13 +- src/lang/qbittorrent_id.ts | 29 +- src/lang/qbittorrent_it.ts | 141 +- src/lang/qbittorrent_ja.ts | 84 +- src/lang/qbittorrent_ka.ts | 15 +- src/lang/qbittorrent_ko.ts | 84 +- src/lang/qbittorrent_lt.ts | 43 +- src/lang/qbittorrent_ltg.ts | 2487 ++++++++--------- src/lang/qbittorrent_lv_LV.ts | 80 +- src/lang/qbittorrent_ms_MY.ts | 25 +- src/lang/qbittorrent_nb.ts | 84 +- src/lang/qbittorrent_nl.ts | 84 +- src/lang/qbittorrent_oc.ts | 2 +- src/lang/qbittorrent_pl.ts | 122 +- src/lang/qbittorrent_pt_BR.ts | 122 +- src/lang/qbittorrent_pt_PT.ts | 55 +- src/lang/qbittorrent_ro.ts | 35 +- src/lang/qbittorrent_ru.ts | 126 +- src/lang/qbittorrent_sk.ts | 80 +- src/lang/qbittorrent_sl.ts | 57 +- src/lang/qbittorrent_sr.ts | 45 +- src/lang/qbittorrent_sv.ts | 122 +- src/lang/qbittorrent_th.ts | 17 +- src/lang/qbittorrent_tr.ts | 122 +- src/lang/qbittorrent_uk.ts | 84 +- src/lang/qbittorrent_uz@Latn.ts | 2487 ++++++++--------- src/lang/qbittorrent_vi.ts | 84 +- src/lang/qbittorrent_zh_CN.ts | 122 +- src/lang/qbittorrent_zh_HK.ts | 31 +- src/lang/qbittorrent_zh_TW.ts | 122 +- src/webui/www/translations/webui_ar.ts | 52 +- src/webui/www/translations/webui_az@latin.ts | 60 +- src/webui/www/translations/webui_be.ts | 60 +- src/webui/www/translations/webui_bg.ts | 52 +- src/webui/www/translations/webui_ca.ts | 62 +- src/webui/www/translations/webui_cs.ts | 62 +- src/webui/www/translations/webui_da.ts | 50 +- src/webui/www/translations/webui_de.ts | 62 +- src/webui/www/translations/webui_el.ts | 56 +- src/webui/www/translations/webui_en_AU.ts | 54 +- src/webui/www/translations/webui_en_GB.ts | 60 +- src/webui/www/translations/webui_eo.ts | 34 +- src/webui/www/translations/webui_es.ts | 58 +- src/webui/www/translations/webui_et.ts | 56 +- src/webui/www/translations/webui_eu.ts | 56 +- src/webui/www/translations/webui_fa.ts | 54 +- src/webui/www/translations/webui_fi.ts | 52 +- src/webui/www/translations/webui_fr.ts | 66 +- src/webui/www/translations/webui_gl.ts | 56 +- src/webui/www/translations/webui_he.ts | 56 +- src/webui/www/translations/webui_hi_IN.ts | 50 +- src/webui/www/translations/webui_hr.ts | 60 +- src/webui/www/translations/webui_hu.ts | 62 +- src/webui/www/translations/webui_hy.ts | 34 +- src/webui/www/translations/webui_id.ts | 48 +- src/webui/www/translations/webui_it.ts | 119 +- src/webui/www/translations/webui_ja.ts | 56 +- src/webui/www/translations/webui_ka.ts | 48 +- src/webui/www/translations/webui_ko.ts | 62 +- src/webui/www/translations/webui_lt.ts | 52 +- src/webui/www/translations/webui_ltg.ts | 46 +- src/webui/www/translations/webui_lv_LV.ts | 60 +- src/webui/www/translations/webui_mn_MN.ts | 2 +- src/webui/www/translations/webui_ms_MY.ts | 50 +- src/webui/www/translations/webui_nb.ts | 62 +- src/webui/www/translations/webui_nl.ts | 58 +- src/webui/www/translations/webui_oc.ts | 22 +- src/webui/www/translations/webui_pl.ts | 114 +- src/webui/www/translations/webui_pt_BR.ts | 118 +- src/webui/www/translations/webui_pt_PT.ts | 56 +- src/webui/www/translations/webui_ro.ts | 52 +- src/webui/www/translations/webui_ru.ts | 123 +- src/webui/www/translations/webui_sk.ts | 56 +- src/webui/www/translations/webui_sl.ts | 56 +- src/webui/www/translations/webui_sr.ts | 46 +- src/webui/www/translations/webui_sv.ts | 119 +- src/webui/www/translations/webui_th.ts | 34 +- src/webui/www/translations/webui_tr.ts | 119 +- src/webui/www/translations/webui_uk.ts | 62 +- src/webui/www/translations/webui_vi.ts | 60 +- src/webui/www/translations/webui_zh_CN.ts | 114 +- src/webui/www/translations/webui_zh_HK.ts | 52 +- src/webui/www/translations/webui_zh_TW.ts | 119 +- 106 files changed, 5927 insertions(+), 8278 deletions(-) diff --git a/src/lang/qbittorrent_ar.ts b/src/lang/qbittorrent_ar.ts index 92cd1eea2..645213f8a 100644 --- a/src/lang/qbittorrent_ar.ts +++ b/src/lang/qbittorrent_ar.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" فشل أضافة التورنت. المصدر: "%1". السبب: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - تم الكشف عن محاولة اضافة تورينت مكرر. المصدر: %1. التورينت الموجود: %2. النتيجة: %3 - Merging of trackers is disabled @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - لا يمكن تحليل بيانات الاستئناف: %1 + لا يمكن تحليل بيانات الاستئناف: %1 Cannot parse torrent info: %1 - لا يمكن تحليل معلومات التورنت: %1 + لا يمكن تحليل معلومات التورنت: %1 @@ -6146,10 +6142,6 @@ Minimum requirement: %2. Mixed mode وضع مختلط - - Some options are incompatible with the chosen proxy type! - بعض الخيارات غير متوافقة مع نوع الوكيل الذي تم اختياره! - If checked, hostname lookups are done via the proxy @@ -7133,10 +7125,6 @@ readme.txt: تصفية اسم الملف الدقيق. A&uthentication المصادقة - - Info: The password is saved unencrypted - معلومة: كلمة السر يتم حفظها بشكل غير مشفّر - Filter path (.dat, .p2p, .p2b): @@ -8295,13 +8283,6 @@ Those plugins were disabled. رابط موقع - - PowerManagement - - qBittorrent is active - كيوبت‎تورنت نشط - - PreviewSelectDialog @@ -8845,10 +8826,6 @@ Those plugins were disabled. Item doesn't exist: %1. العنصر غير موجود: %1. - - Couldn't move folder into itself. - تعذر نقل المجلد إلى نفسه. - Can't move a folder into itself or its subfolders. @@ -8925,7 +8902,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - الموجز غير موجود: %1. + الموجز غير موجود: %1. @@ -8938,7 +8915,7 @@ Those plugins were disabled. URL: - الرابط: + الرابط: @@ -8948,12 +8925,12 @@ Those plugins were disabled. sec - ث + ث Default - + إهمال @@ -9058,14 +9035,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - تحرير رابط الموجز... - - - Edit feed URL - تحرير رابط الموجز - Please choose a folder name @@ -9081,14 +9050,6 @@ Those plugins were disabled. New folder مجلد جديد - - Please type a RSS feed URL - يرجى كتابة رابط موجز RSS - - - Feed URL: - رابط الموجز: - Deletion confirmation diff --git a/src/lang/qbittorrent_az@latin.ts b/src/lang/qbittorrent_az@latin.ts index 88152a92a..18898bbfc 100644 --- a/src/lang/qbittorrent_az@latin.ts +++ b/src/lang/qbittorrent_az@latin.ts @@ -229,25 +229,25 @@ Dayanma vəziyyəti: - - + + None Heç nə - - + + Metadata received Meta məlumatları alındı - + Torrents that have metadata initially will be added as stopped. Öncədən meta məlumatlara malik olan torrentlər dayandırılmış kimi əılavə ediləcək. - + Files checked Fayllar yoxlanıldı @@ -362,112 +362,112 @@ .torrent faylı kimi saxla... - + I/O Error Giriş/Çıxış Xətası - + Not Available This comment is unavailable Mövcud Deyil - + Not Available This date is unavailable Mövcud Deyil - + Not available Mövcud Deyil - + Magnet link Magnet linki - + Retrieving metadata... Meta məlumatlar alınır... - - + + Choose save path Saxlama yolunu seçin - + No stop condition is set. Dayanma vəziyyəti təyin edilməyib. - + Torrent will stop after metadata is received. Meta məlumatları alındıqdan sonra torrent dayanacaq. - + Torrent will stop after files are initially checked. Faylların ilkin yoxlanışından sonra torrrent daynacaq. - + This will also download metadata if it wasn't there initially. Əgər başlanğıcda meta məlumatlar olmasa onlar da yüklənəcək. - + N/A Əlçatmaz - + %1 (Free space on disk: %2) %1 (Diskin boş sahəsi: %2) - + Not available This size is unavailable. Mövcud deyil - + Torrent file (*%1) Torrent fayl (*%1) - + Save as torrent file Torrent faylı kimi saxlamaq - + Couldn't export torrent metadata file '%1'. Reason: %2. '%1' meta verilənləri faylı ixrac edilə bilmədi. Səbəb: %2. - + Cannot create v2 torrent until its data is fully downloaded. Tam verilənləri endirilməyənədək v2 torrent yaradıla bilməz. - + Filter files... Faylları süzgəclə... - + Parsing metadata... Meta məlumatlarının analizi... - + Metadata retrieval complete Meta məlumatlarının alınması başa çatdı @@ -475,35 +475,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" Torrent endirilir... Mənbə: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" Torrent əlavə edilə bilmədi. Mənbə: "%1", Səbəb: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Torrentin dublikatının əlavə edilməsinə cəhd aşkarlandı. Mənbə: %1. Mövcud torrent: %2. Nəticə: %3 - - - + Merging of trackers is disabled İzləyicilərin birləşdirilməsi söndürülüb - + Trackers cannot be merged because it is a private torrent izləyicilər birləşdirilə bilməz, çünki bu fərdi torrentdir - + Trackers are merged from new source Yeni torrentdən izləyicilər birləşdirildi + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -666,706 +666,717 @@ AdvancedSettings - - - - + + + + MiB MB - + Recheck torrents on completion Yüklənmə tamamlandıqdan sonra torrentləri yoxlamaq - - + + ms milliseconds msan - + Setting Ayarlar - + Value Value set for this setting Dəyər - + (disabled) (söndürülüb) - + (auto) (avtomatik) - - + + min minutes dəq - + All addresses Bütün ünvanlar - + qBittorrent Section qBittorrent Bölməsi - - + + Open documentation Sənədləri açmaq - + All IPv4 addresses Bütün İPv4 ünvanları - + All IPv6 addresses Bütün İPv6 ünvanları - + libtorrent Section libtorrent bölməsi - + Fastresume files Tez bərpa olunan fayllar - + SQLite database (experimental) SQLite verilənlər bazası (təcrübi) - + Resume data storage type (requires restart) Verilənləri saxlama növünü davam etdirin (yenidən başlatmaq tələb olunur) - + Normal Normal - + Below normal Normadan aşağı - + Medium Orta - + Low Aşağı - + Very low Çox aşağı - + Physical memory (RAM) usage limit Fiziki yaddaş (RAM) istifadəsi limiti - + Asynchronous I/O threads Zamanla bir birinə uzlaşmayan Giriş/Çıxış axınları - + Hashing threads Ünvanlanan axınlar - + File pool size Dinamik yaddaş ehtiyatı faylının ölçüsü - + Outstanding memory when checking torrents Torrentləri yoxlayarkən icrası gözlənilən yaddaş - + Disk cache Disk keşi - - - - + + + + + s seconds san - + Disk cache expiry interval Disk keşinin sona çatma müddəti - + Disk queue size Disk növbəsi ölçüsü - - + + Enable OS cache ƏS keşini aktiv etmək - + Coalesce reads & writes Oxuma, yazma əməliyyatlarını birləşdirmək - + Use piece extent affinity Hissələrin yaxınlıq dərəcəsindən istifadə etmək - + Send upload piece suggestions Göndərmə parçası təkliflərini göndərmək - - - - - + + + + + 0 (disabled) 0 (söndürülüb) - + Save resume data interval [0: disabled] How often the fastresume file is saved. Davametmə məlumatlarının saxlanılması aralığı (0: söndürülüb) - + Outgoing ports (Min) [0: disabled] Çıxış portları (Ən az)[0: söndürülüb] - + Outgoing ports (Max) [0: disabled] Çıxış portları (Ən çox) [0: söndürülüb] - + 0 (permanent lease) 0 (daimi icarə) - + UPnP lease duration [0: permanent lease] UPnP icarə müddəti [0: daimi icarə] - + Stop tracker timeout [0: disabled] İzləyici vaxtını dayandır [0: söndürülb] - + Notification timeout [0: infinite, -1: system default] Bildirişin bitmə vaxtı [0: sonsuz, -1: sistemdəki standart] - + Maximum outstanding requests to a single peer Hər iştirakçıya düşən ən çox icra olunmamış sorğu - - - - - + + + + + KiB KB - + (infinite) (sonsuz) - + (system default) (sistemdəki standart) - + Delete files permanently Faylları həmişəlik silmək - + Move files to trash (if possible) Faylları səbətə atmaq (mümkün olduqda) - + Torrent content removing mode Torrent məzmununun silinməsi rejimi - + This option is less effective on Linux Bu seçim Linuxda az effektlidir - + Process memory priority Proses yaddaşının üstünlüyü - + Bdecode depth limit Bdecode dərinliyi həddi - + Bdecode token limit Bdecode tokenləri həddi - + Default Standart - + Memory mapped files Yaddaş ilə əlaqəli fayllar - + POSIX-compliant POSİX ilə uyğun - + Simple pread/pwrite Sadə oxuma/yazma - + Disk IO type (requires restart) Disk giriş/çıxış növü (yenidən başladılmalıdır) - - + + Disable OS cache ƏS keşini söndür - + Disk IO read mode Diskin giriş/çıxışının oxu rejimi - + Write-through Başdan sona yazma - + Disk IO write mode Diskin giriş/çıxışının yazı rejimi - + Send buffer watermark Buferin su nişanını göndərmək - + Send buffer low watermark Buferin zəif su nişanını göndərin - + Send buffer watermark factor Bufer su nişanı əmsalını göndərmək - + Outgoing connections per second Hər saniyədə sərf olunan bağlantı - - + + 0 (system default) 0 (sistemdəki standart) - + Socket send buffer size [0: system default] Soket göndərmə bufer ölçüsü [0: sistemdəki standart] - + Socket receive buffer size [0: system default] Soket qəbul etmə bufer ölçüsü [0: sistemdəki standart] - + Socket backlog size Soket yığma ölçüsü - + Save statistics interval [0: disabled] How often the statistics file is saved. Statistik intervalı saxlamaq [0: sönülü] - + .torrent file size limit .torrent faylı ölçüsünün həddi - + Type of service (ToS) for connections to peers Iştirakçılarla bağlantı üçün xidmət növü (ToS) - + Prefer TCP TCP tərcihi - + Peer proportional (throttles TCP) İştirakçılarla mütənasib (TCP'ni məhdudlaşdırır) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) Beynəlxalq domen adı (İDN) dəstəkləmək - + Allow multiple connections from the same IP address Eyni İP ünvanından çoxsaylı bağlantılara icazə vermək - + Validate HTTPS tracker certificates HTTPS izləyici sertifikatlarını təsdiq etmək - + Server-side request forgery (SSRF) mitigation Server tərəfindən saxta sorğulardan (SSRF) qorunma - + Disallow connection to peers on privileged ports İmtiyazlı portlarda iştirakçılara qoşulmanı qadağan etmək - + It appends the text to the window title to help distinguish qBittorent instances O, qBittorent nümunələrini fərqləndirmək üçün pəncərə başlığına mətn əlavə edir. - + Customize application instance name Tətbiq nümunəsi adının dəyişdirilməsi - + It controls the internal state update interval which in turn will affect UI updates Bu yenilənmə tezliyinin daxili vəziyətini idarə edir, bu da öz növəsində İİ yenilənmələrinə təsir edəcək - + Refresh interval Yenilənmə aralığı - + Resolve peer host names İştirakçıların host adlarını müəyyən etmək - + IP address reported to trackers (requires restart) İP ünvanı izləyicilərə bildirildi (yenidən başladılmalıdır) - + Port reported to trackers (requires restart) [0: listening port] Port izləyicilərə məlumat verdi (yenidən başladaılmalı) [0: dinləmə portu] - + Reannounce to all trackers when IP or port changed İP və ya port dəyişdirildiyi zaman təkrar bildirmək - + Enable icons in menus Menyudakı nişanları aktiv edin - + + Attach "Add new torrent" dialog to main window + Əsas pəncərəyə "Yeni torrent əlavə edin" dialoqunu əlavə edin + + + Enable port forwarding for embedded tracker Daxildə olan izləyicilər üçün port yönləndirməsini aktiv et. - + Enable quarantine for downloaded files Endirilmiş fayllar üçün qarantini aktiv edin - + Enable Mark-of-the-Web (MOTW) for downloaded files Endirilmiş fayllar üçün veb markasını (Mark-of-the-Web - MOTW) aktiv edin - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) Sertifikatın doğrulanmasına və qeyri-torrent protokol fəaliyyətlərinə təsir göstərir (məs., RSS lentləri, proqram yenilənmələri, torrent faylları, GeoİP məlumatları, və sair) - + Ignore SSL errors SSL xətalarını gözardı etmək - + (Auto detect if empty) (Boş olmasının avtomatik aşkarlanması) - + Python executable path (may require restart) Python icra faylı yolu (yenidən başlatmaq tələb oluna bilər) - + Start BitTorrent session in paused state BitTorrent sesiyasını fasilə vəziyyətində başlatmaq - + sec seconds san - + -1 (unlimited) -1 (limitsiz) - + BitTorrent session shutdown timeout [-1: unlimited] BitTorrent sesiyasının sönmə vaxtı [-1: limitsiz] - + Confirm removal of tracker from all torrents Bütün torrentlərdən izləyicilərin kənarlaşdırılmasını təsdiq etmək - + Peer turnover disconnect percentage İştirakçı axınının kəsilməsi faizi - + Peer turnover threshold percentage İştirakçı axını həddinin faizi - + Peer turnover disconnect interval İştirakçı axınının kəsilmə müddəti - + Resets to default if empty Boş olduqda ilkin vəziyyətinə qaytarmaq - + DHT bootstrap nodes DHT özüyükləmə qovşaqları - + I2P inbound quantity I2P daxilolma miqdarı - + I2P outbound quantity I2P çıxma miqdarı - + I2P inbound length I2P daxilolma uzunluğu - + I2P outbound length I2P çıxma uzunluğu - + Display notifications Bildirişləri göstərmək - + Display notifications for added torrents Əlavə edilmiş torrentlər üçün bildirişləri göstərmək - + Download tracker's favicon İzləyici nişanlarını yükləmək - + Save path history length Saxlama yolunun tarixçəsinin uzunluğu - + Enable speed graphs Sürət qrafikini aktiv etmək - + Fixed slots Sabitləşdirilmiş yuvalar - + Upload rate based Yükləmə sürəti əsasında - + Upload slots behavior Göndərmə yuvalarının davranışı - + Round-robin Dairəvi - + Fastest upload Ən sürətli yükləmə - + Anti-leech Sui-istifadəni əngəlləmək - + Upload choking algorithm Göndərmənin məhdudlaşdırılması alqoritmi - + Confirm torrent recheck Torrentin yenidən yoxlanılmasını təsdiqləmək - + Confirm removal of all tags Bütün yarlıqların silinməsini təsdiq etmək - + Always announce to all trackers in a tier Bir səviyyədəki bütün iştirakçılara həmişə bildirmək - + Always announce to all tiers Bütün səviyyələrə həmişə bildirmək - + Any interface i.e. Any network interface İstənilən interfeys - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm Qarışıq %1-TCP rejimi alqoritmi - + Resolve peer countries İştirakçıların ölkələrini müəyyən etmək - + Network interface Şəbəkə interfeysi - + Optional IP address to bind to Qoşulmaq üçün ixtiyari İP ünvanı - + Max concurrent HTTP announces Ən çox paralel HTTP elanıları - + Enable embedded tracker Yerləşdirilmiş izləyicini aktiv etmək - + Embedded tracker port Yerləşdirilmiş izləyici portu @@ -1397,121 +1408,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 Portativ rejimdə işləyir. Burada avtomatik profil qovluğu aşkar edildi: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. Lazımsız əmr sətri bayrağı aşkarlandı: "%1". Portativ rejim işin nisbətən daha tez bərpa olunması anlamına gəlir. - + Using config directory: %1 Bu ayarlar qovluğu istifadə olunur: %1 - + Torrent name: %1 Torrentin adı: %1 - + Torrent size: %1 Torrentin ölçüsü: %1 - + Save path: %1 Saxlama yolu: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrent %1 qovluğuna yükləndi. - - + + Thank you for using qBittorrent. qBittorrent istifadə etdiyiniz üçün sizə təşəkkür edirik. - + Torrent: %1, sending mail notification Torrent: %1, poçt bildirişi göndərmək - + Add torrent failed Torrent əlavə edilməsi baş tutmadı - + Couldn't add torrent '%1', reason: %2. "%1" torrentini əlavə etmək mümkün olmadı, səbəb: %2 - + The WebUI administrator username is: %1 Veb istfadəçi interfeysi inzibatçısının istifadəçi adı: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 Veb istifadəçi interfeysi inzibatçı şifrəsi təyin edilməyib. Bu sesiya üçün müvəqqəti şifrə təqdim olunur: %1 - + You should set your own password in program preferences. Öz şifrənizi proramın ayarlarında təyin etməlisiniz. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. Veb istifadəçi interfeysi söndürülüb. Onu aktiv etmək üçün tənzimləmə faylınında dəyişiklik edin. - + Running external program. Torrent: "%1". Command: `%2` Xarici proqram işə düşür. Torrent: "%1". Əmr: "%2" - + Failed to run external program. Torrent: "%1". Command: `%2` Xarici proqramı başlatmaq mümkün olmadı. Torrent: "%1". Əmr: "%2" - + Torrent "%1" has finished downloading "%1" torrenti yükləməni başa çatdırdı - + WebUI will be started shortly after internal preparations. Please wait... Veb İİ daxili hazırlıqdan sonra qısa zamanda başladılacaqdır. Lütfən gözləyin... - - + + Loading torrents... Torrentlər yüklənir... - + E&xit Çı&xış - + I/O Error i.e: Input/Output Error Giriş/Çıxış xətası - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1520,110 +1531,110 @@ Səbəb: %2 - + Torrent added Torrent əlavə edildi - + '%1' was added. e.g: xxx.avi was added. "%1" əlavə edildi. - + Download completed Endirmə tamamlandı - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started qBittorrent %1 başladıldı. Proses İD-si: %2 - + This is a test email. Bu slnaq e-poçtudur. - + Test email E-poçtu sınamaq - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. "%1" endirməni tamamladı. - + Information Məlumat - + To fix the error, you may need to edit the config file manually. Xətanı aradan qaldırmaq üçün tənzimləmə faylında dəyişiklik etməniz lazımdır. - + To control qBittorrent, access the WebUI at: %1 qBittorrent'i idarə etmək üçün, bu ünvandan Veb istifadəçi interfeysinə daxil olun: %1 - + Exit Çıxış - + Recursive download confirmation Rekursiv endirmənin təsdiqi - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? "%1" torrenti torrent fayllarından ibarətdir, endirilməsinə davam etmək istəyirsinizmi? - + Never Heç vaxt - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" Torrentdən .torrent faylnın rekursiv endirilməsi. Torrentin mənbəyi: "%1". Fayl: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" Fiziki yaddaş (RAM) limitini təyin etmək mümkün olmadı. Xəta kodu: %1. Xəta bildirişi: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" Fiziki yaddaşın (RAM) ciddi limitini təyin etmək mümkün olmadı. Tələb olunan ölçü: %1. Sistemin ciddi limiti: %2. Xəta kodu: %3. Xəta ismarıcı: "%4" - + qBittorrent termination initiated qBittorrent-in bağlanması başladıldı - + qBittorrent is shutting down... qBittorrent söndürülür... - + Saving torrent progress... Torrentin vəziyyəti saxlanılır... - + qBittorrent is now ready to exit qBittorrent indi çıxışa hazırdır @@ -1760,263 +1771,263 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin İx&rac... - + Matches articles based on episode filter. Bölüm süzgəcinə əsaslanan oxşar məqalələr - + Example: Nümunə: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match sezonun 2, 5, 8 - 15, 30 və sonrakı epizodları ilə eyniləşəcək - + Episode filter rules: Bölüm filtri qaydaları: - + Season number is a mandatory non-zero value Sezonun nömrəsi mütləq sıfırdan fərqli dəyər olmalıdır - + Filter must end with semicolon Filtr nöqtəli vergül ilə bitməlidir - + Three range types for episodes are supported: Bölümlər üçün, üç aralıq növü dəstəklənir: - + Single number: <b>1x25;</b> matches episode 25 of season one Tək nömrə: <b>1x25;</b> birinci sezonun 25-ci bölümü deməkdir - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normal aralıq: <b>1x25-40;</b> birinci sezonun 25-ci ilə 40-cı arasındakı bölümləri göstərir - + Episode number is a mandatory positive value Bölümün nömrəsi, mütləq müsbət dəyər olmalıdır - + Rules Qaydalar - + Rules (legacy) Qaydalar (köhnəlmiş) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Sonsuz aralıq: <b>1x25-;</b> birinci sezonun 25-ci ilə ondan yuxarı bölümləri və sonrakı sezonun bütün bölümlərini göstərir - + Last Match: %1 days ago Sonuncu oxşar: %1 gün əvvəl - + Last Match: Unknown Sonuncu oxşar: Naməlum - + New rule name Yeni qaydanın adı - + Please type the name of the new download rule. Lütfən, yeni endirmə qaydasının adını yazın. - - + + Rule name conflict Qaydanın adında ziddiyyət - - + + A rule with this name already exists, please choose another name. Bu adla qayda adı artıq mövcuddur, lütfən başqa ad seçin. - + Are you sure you want to remove the download rule named '%1'? Siz, "%1" adlı qaydanı silmək istədiyinizə əminsiniz? - + Are you sure you want to remove the selected download rules? Siz, seçilmiş endirmə qaydalarını silmək istədiyinizə əminsiniz? - + Rule deletion confirmation Qaydanın silinməsinin təsdiq edilməsi - + Invalid action Yalnız əməl - + The list is empty, there is nothing to export. Siyahı boşdur, ixrac edilməcək heç nə yoxdur. - + Export RSS rules RSS qaydalarının ixracı - + I/O Error Giriş/Çıxış xətası - + Failed to create the destination file. Reason: %1 Təyinat faylı yaradıla bilmədi. Səbəb: %1 - + Import RSS rules RSS qaydalarının idxalı - + Failed to import the selected rules file. Reason: %1 Seçilmiş qaydalar faylı idxalı edilə bilmədi. Səbəbi: %1 - + Add new rule... Yeni qayda əlavə edin... - + Delete rule Qaydanı silmək - + Rename rule... Qaydanın adını dəyişin... - + Delete selected rules Seçilmiş qaydaları silmək - + Clear downloaded episodes... Endirilmiş bölümləri silin... - + Rule renaming Qaydanın adının dəyişdirilməsi - + Please type the new rule name Lütfən, qayda adı yazın - + Clear downloaded episodes Endirilmiş bölümləri silmək - + Are you sure you want to clear the list of downloaded episodes for the selected rule? Seçilmiş qayda üçün endirilmiş bölümlərin siyahısını silmək istədiyinizə əminsiniz? - + Regex mode: use Perl-compatible regular expressions Regex rejimi: Perl üslubunda müntəzəm ifadələrdən istifadə edin - - + + Position %1: %2 Mövqe: %1: %2 - + Wildcard mode: you can use Əvəzedici işarə rejimi: istifadə edə bilərsiniz - - + + Import error İdxaletmə xətası - + Failed to read the file. %1 Faylı oxumaq mümkün olmadı. %1 - + ? to match any single character «?» istənilən tək simvola uyğundur - + * to match zero or more of any characters «*» sıfıra və ya bir çox istənilən simvollara uyğundur - + Whitespaces count as AND operators (all words, any order) Boşluqlar VƏ əməlləri kimi hesab edilir (bütün sözlər, istənilən sıra) - + | is used as OR operator «|», VƏ YA əməli kimi istifadə olunur - + If word order is important use * instead of whitespace. Əgər sözlərin sıralanmasının istifadəsi vacibdirsə boşluq əvəzinə «*» istifadə edin. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) %1 şərti ilə boş ifadə (məs., %2) - + will match all articles. bütün məqalələrlə oxşar olacaq - + will exclude all articles. bütün məqalələri istisna olunacaq @@ -2068,28 +2079,38 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Davam etmək üçün verilənlər təmin edilmədi: torrent formatı səhvdir - - + + Cannot parse torrent info: %1 Torrent məlumatı təmin edilə bilmədi: %1 - + Cannot parse torrent info: invalid format Torrent təhlil edilə bilmədi: format səhvdir - + Mismatching info-hash detected in resume data Bərpaetmə verilənlərində heş daxili uyğunsuzluq aşkarlandı - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. Torrent meta verilənləri "%1"-də/da saxılanıla bilmədi. Xəta: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. Torrentin bərpası üçün verilənlər '%1'-də/da saxlanıla bilmədi. Xəta: %2. @@ -2100,16 +2121,17 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin + Cannot parse resume data: %1 Davam etmək üçün verilənlər təmin edilmədi: %1 - + Resume data is invalid: neither metadata nor info-hash was found Davam etdirmək üçün verilənlər səhvdir: nə meta verilənləri nə də heş-məlumat tapılmadı - + Couldn't save data to '%1'. Error: %2 Verilənləri "%1"-də/da saxlamaq mümkün olmadı. Xəta: %2 @@ -2117,38 +2139,60 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::DBResumeDataStorage - + Not found. Tapılmadı - + Couldn't load resume data of torrent '%1'. Error: %2 "%1" torentinin bərpa üçün məlumatlarını göndərmək mümkün olmadı. Xəta: %2 - - + + Database is corrupted. Verilənlər bazası zədələnib. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. Öncədən Yazma Gündəliyi (ing. - WAL) jurnallama rejimi. Xəta: %1 - + Couldn't obtain query result. Sorğu nəticələrini əldə etmək mümkün olmadı. - + WAL mode is probably unsupported due to filesystem limitations. Öncədən Yazma Gündəliyi rejimi, ehtimal ki, fayl sistemindəki məhdudiyyət səbəbindən dəstəklənmir. - + + + Cannot parse resume data: %1 + Davam etmək üçün verilənlər təmin edilmədi: %1 + + + + + Cannot parse torrent info: %1 + Torrent məlumatı təmin edilə bilmədi: %1 + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 Köçürməni başlatmaq mümkün olmadı. Xəta: %1 @@ -2156,22 +2200,22 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. Torrent meta verilənləri saxlanıla bilmədi. Xəta: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 "%1" torrenti üçün bərpa məlumatlarını saxlamaq mümkün olmadı. Xəta: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 "%1" torentinin bərpa üçün məlumatlarını silmək mümkün olmadı. Xəta: %2 - + Couldn't store torrents queue positions. Error: %1 Torrentin növbədəki yerini saxlamaq mümkün olmadı. Xəta: %1 @@ -2179,498 +2223,503 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 Bölüşdürülən heş cədvəli (DHT) cədvəli: %1 - - - - - - - - - + + + + + + + + + ON AÇIQ - - - - - - - - - + + + + + + + + + OFF BAĞLI - - + + Local Peer Discovery support: %1 Yerli iştirakçəların aşkarlanması: %1 - + Restart is required to toggle Peer Exchange (PeX) support İştirakçı mübadiləsi (PeX) dəstəklənməsini aktiv etmək üçün yenidən başlatmaq tələb olunur - + Failed to resume torrent. Torrent: "%1". Reason: "%2" Torrenti davam etdirmək mümkün olmadı: "%1". Səbəb: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" Torrenti davam etdirmək mümkün olmadı: ziddiyyətli torrent İD aşkarlandı. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" Zİddiyyətli məluymat aşkarlandı: tənzimləmə faylında kateqoriya çatışmır. Kateqoriya bərpa olunacaq, lakin onun ayarları ilkin vəziyyətə sıfırlanacaq. Torrent: "%1". Kateqoriya: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" Ziddiyyətli məlumat aşkarlandı: kateqoriya səhvdir. Torrent: "%1". Kateqoriya: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" Bərpa olunmuş kateqoriyanın saxlanma yolları və hazırkı torrentin saxlama yolu araında uyğunsuzluq aşkarlandı. Torrent indi əl ilə ayarlama rejiminə dəyişdirildi. Torrent: "%1". Kateqorya: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" Tutarsız verilənlər aşkarlandı: tənzimləmə faylında etiketlər çatımır. Etiket bərpa olunacaqdır. Torrent: "%1". Etiket: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" Tutarsız verilənlər aşkarlandı: etiket səhvdir. Torrent: "%1". Etiket: "%2" - + System wake-up event detected. Re-announcing to all the trackers... Sistemin oyanması hadisəsi aşkar edildi. Bütün izləyicilərə yenidən bildirilir... - + Peer ID: "%1" İştirakçı İD-si: "%1" - + HTTP User-Agent: "%1" HTTP İstifadəçi Tanıtımı: "%1" - + Peer Exchange (PeX) support: %1 İştirakçı mübadiləsi (PeX) dəstəkkənməsi: %1 - - + + Anonymous mode: %1 Anonim rejim: %1 - - + + Encryption support: %1 Şifrələmə dəstəyi: %1 - - + + FORCED MƏCBURİ - + Could not find GUID of network interface. Interface: "%1" Şəbəkə interfeysinə aid GUİD tapılmadı: İnterfeys: "%1" - + Trying to listen on the following list of IP addresses: "%1" Aşağıdakı İP ünvanları siyahısını dinləməyə cəhd edilir: "%1" - + Torrent reached the share ratio limit. Torrent paylaşım nisbəti həddinə çatdı. - + Torrent: "%1". Torrent: "%1". - + Super seeding enabled. Super göndərmə aktiv edildi. - + Torrent reached the seeding time limit. Torrent göndərmə vaxtı limitinə çatdı. - + Torrent reached the inactive seeding time limit. Torrent qeyri-aktiv göndərmə vaxtı həddinə çatdı. - + Failed to load torrent. Reason: "%1" Torrent yüklənə bimədi. Səbəb: "%1" - + I2P error. Message: "%1". I2P xətası. Bildiriş: "%1". - + UPnP/NAT-PMP support: ON UPnP/NAT-PMP dəstəkləməsi: AÇIQ - + Saving resume data completed. Bərpa verilənlərinin saxlanılması tamamlandı. - + BitTorrent session successfully finished. BitTorrent sesiyası uğurla tamamlandı. - + Session shutdown timed out. Sesiaynın sönmə vaxtı sona çatdı. - + Removing torrent. Torrentin silinməsi. - + Removing torrent and deleting its content. Torrent və tərkibləri silinir. - + Torrent stopped. Torrent dayandırıldı. - + Torrent content removed. Torrent: "%1" Torrentin məzmunu silindi. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" Torrentin məzmununu silmək ümkün olmadı. Torrent: "%1". Xəta: "%2" - + Torrent removed. Torrent: "%1" Torrent silindi. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Təkrarlanan torrent əlavə etmək cəhdi aşkarlandı. Mövcud torrent: %1. Nəticə: %2 - - - + Merging of trackers is disabled İzləyicilərin birləşdirilməsi söndürülüb - + Trackers cannot be merged because it is a private torrent izləyicilər birləşdirilə bilməz, çünki bu fərdi torrentdir - + Trackers are merged from new source Yeni torrentdən izləyicilər birləşdirildi - + UPnP/NAT-PMP support: OFF UPnP / NAT-PMP dəstəklənməsi: BAĞLI - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" Torrent ixrac edilmədi. Torrent: "%1". Təyinat: "%2". Səbəb: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 Davam etdirmə məlumatları ləğv edildi. İcra olunmamış torrentlərin sayı: %1 - + The configured network address is invalid. Address: "%1" Ayarlanmış şəbəkə ünvanı səhvdir. Ünvan: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" Dinləmək üçün ayarlanmış şəbəkə ünvanını tapmaq mümkün olmadı. Ünvan: "%1" - + The configured network interface is invalid. Interface: "%1" Ayarlanmış şəbəkə ünvanı interfeysi səhvdir. İnterfeys: "%1" - + Tracker list updated İzləyici siyahısı yeniləndi - + Failed to update tracker list. Reason: "%1" İzləyici siyahısını yeniləmək mümkün olmadı. Səbəb: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" Qadağan olunmuş İP ünvanları siyahısını tətbiq edərkən səhv İP ünvanları rədd edildi. İP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" Torrentə izləyici əlavə olundu. Torrent: "%1". İzləyici: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" İzləyici torrentdən çıxarıldı. Torrent: "%1". İzləyici: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" Torrent URL göndərişi əlavə olundu. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" URL göndərişi torrentdən çıxarıldı. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". Fayl hissəsini silmək mümkün olmadı. Torrent: "%1". Səbəb:"%2". - + Torrent resumed. Torrent: "%1" Torrent davam etdirildi: Torrent: "%1" - + Torrent download finished. Torrent: "%1" Torrent endirilməsi başa çatdı. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" Torrentin köçürülməsi ləğv edildi. Torrent: "%1". Mənbə: "%2". Təyinat: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" Torrent dayandırıldı. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination Torrentin köçürülməsini növbələmək mümkün olmadı. Torrent: "%1". Mənbə; "%2". Təyinat: "%3". Səbəb: torrent hal-hazırda təyinat yerinə köçürülür - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location Torrentin köçürülməsini növbələmək mümkün olmadı. Torrent: "%1". Mənbə; "%2". Təyinat: "%3". Səbəb: hər iki yol eyni məkanı göstərir - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" Torrentin köçürülməsi növbəyə qoyuıdu. Torrent: "%1". Mənbə: "%2". Təyinat: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" Torrent köçürülməsini başladın. Torrent: "%1". Təyinat: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" Kateqoriyalar tənzimləmələrini saxlamaq mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" Kateoriya tənzimləmələrini təhlil etmək mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 İP filter faylı təhlili uğurlu oldu. Tətbiq olunmuş qaydaların sayı: %1 - + Failed to parse the IP filter file İP filter faylının təhlili uğursuz oldu - + Restored torrent. Torrent: "%1" Bərpa olunmuş torrent. Torrent; "%1" - + Added new torrent. Torrent: "%1" Əlavə olunmuş yeni torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" Xətalı torrent. Torrent: "%1". Xəta: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" Torrentdə SSL parametrləri çatışmır. Torrent: "%1". İsmarıc: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" Fayldakı xəta bildirişi. Torrent: "%1". Fayl: "%2". Səbəb: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" UPnP/NAT-PMP: Portun palanması uğursuz oldu. Bildiriş: %1 - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" UPnP/NAT-PMP: Portun palanması uğurlu oldu. Bildiriş: %1 - + IP filter this peer was blocked. Reason: IP filter. İP filtr - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). filtrlənmiş port (%1) - + privileged port (%1) this peer was blocked. Reason: privileged port (80). imtiyazlı port (%1) - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" İştirakçı URL ünvanı ilə bağlantı alınmadı. Torrent: "%1". URL ünvanı: "%2". Xəta: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" BitTorrent sesiyası bir sıra xətalarla qarşılaşdı. Səbəb: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". SOCKS5 proksi xətası. Ünvan: %1. İsmarıc: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. %1 qarışıq rejimi məhdudiyyətləri - + Failed to load Categories. %1 Kateqoriyaları yükləmək mümkün olmadı. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" Kateqoriya tənzimləmələrini yükləmək mümkün olmadı. Fayl: "%1". Xəta: "Səhv verilən formatı" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. %1 söndürülüb - + %1 is disabled this peer was blocked. Reason: TCP is disabled. %1 söndürülüb - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" İştirakçının ünvanından xəta haqqında bildiriş alındı. Torrent: "%1". URL: "%2". Bildiriş: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" İP uöurla dinlənilir. İP: "%1". port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" İP-nin dinlənilməsi uğursuz oldu. İP: "%1". port: "%2/%3". Səbəb: "%4" - + Detected external IP. IP: "%1" Kənar İP aşkarlandı. İP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" Xəta: Daxili xəbərdarlıq sırası doludur və xəbərdarlıq bildirişlər kənarlaşdırıldı, sistemin işinin zəiflədiyini görə bilərsiniz. Kənarlaşdırılan xəbərdarlıq növləri: %1. Bildiriş: %2 - + Moved torrent successfully. Torrent: "%1". Destination: "%2" Torrent uğurla köçürüldü. Torrent: "%1". Təyinat: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" Torrentin köçürülməsi uğursuz oldu. Torrent: "%1". Mənbə: "%2". Təyinat: "%3". Səbəb: "%4" @@ -2720,47 +2769,47 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Fayla yazıla bilmir. Səbəb: "%1" Torrent indi "yalnız göndərmək" rejimindədir. - + Download first and last piece first: %1, torrent: '%2' Öncə ilk və son hissəni endirmək: %1, torrent: "%2" - + On Açıq - + Off Bağlı - + Failed to reload torrent. Torrent: %1. Reason: %2 Torrenti yenidən başlatmaq mümkün olmadı. Torrent: %1. Səbəb: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" Torrenti davam etdirmək üçün məlumatlar yaradıla bilmədi: "%1". Səbəb: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" Torrent bərpa oluna bilmədi. Güman ki, fayl köçürülüb və ya yaddaşa giriş əlçatmazdır. Torrent: "%1". Səbəb: "%2" - + Missing metadata Meta verilənləri çatışmır - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" Faylın adı dəyişdirilmədi. Torrent: "%1", fayl: "%2", səbəb: "%3" - + Performance alert: %1. More info: %2 Performans xəbərdarlığı: %1. Daha çox məlumat: %2 @@ -3352,22 +3401,22 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin GUIAddTorrentManager - + Downloading torrent... Source: "%1" Torrent endirilir... Mənbə: "%1" - + Torrent is already present Torrent artıq mövcuddur - + Trackers cannot be merged because it is a private torrent. İzləyicilər birləşdirilə bilməz, çünki bu məxfi torrentdir. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? Torrent '%1' artıq köçürülmə siyahısındadır. Mənbədən izləyiciləri birləçdirmək istəyirsiniz? @@ -3485,6 +3534,40 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Dəstəklənən şəkil faylları + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + Elektrik qidalanması idarəetmə vasitəsi uyğun D-Bus interfeysi tapdı. İnterfeys: %1 + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + Elektrik qidalanması idarəetməsi xətası. Əməl: %1. Xəta: %2 + + + + Power management unexpected error. State: %1. Error: %2 + Elektrik qidalanması idarəetməsində gözlənilməz xəta baş verdi. Vəziyyət: %1. Xəta: %2 + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3875,12 +3958,12 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin - + Show Göstərmək - + Check for program updates Proqram yenilənmələrini yoxlamaq @@ -3895,383 +3978,383 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin qBittorrent'i bəyənirsinizsə ianə edin! - + Execution Log İcra jurnalı - + Clear the password Şifrəni silmək - + &Set Password Şifrə &təyin etmək - + Preferences Tərcihlər - + &Clear Password Şifrəni silmə&k - + Transfers Köçürmələr - - + + qBittorrent is minimized to tray qBittorent treyə yığıldı - - - + + + This behavior can be changed in the settings. You won't be reminded again. Bu davranış ayarlarda dəyişdirilə bilər. Sizə bir daha xatırladılmayacaq. - + Icons Only Yalnız Nişanlar - + Text Only Yalnlız Mətn - + Text Alongside Icons Nişanlar yanında mətn - + Text Under Icons Nişanlar altında mətn - + Follow System Style Sistem üslubuna uyğun - - + + UI lock password İİ-nin kilid şifrəsi - - + + Please type the UI lock password: Lütfən, İİ-nin kilid şifrəsini yazın - + Are you sure you want to clear the password? Şifrəni silmək istədiyinizə əminsiniz? - + Use regular expressions Müntəzəm ifadədən istifadə etmək - - + + Search Engine Axtarış sistemi - + Search has failed Axtarış alınmadı - + Search has finished Axtarış sona çatdı - + Search Axtarış - + Transfers (%1) Köçürmələr (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. qBittorrent indicə yeniləndi və dəyişikliklərin qüvvəyə minməsi üçün yenidən başladılmalıdır. - + qBittorrent is closed to tray qBittorrent treyə yığıldı - + Some files are currently transferring. Hazırda bəzi fayllar ötürülür - + Are you sure you want to quit qBittorrent? qBittorent'dən çıxmaq istədiyinizə əminsiniz? - + &No &Xeyr - + &Yes &Bəli - + &Always Yes &Həmişə bəli - + Options saved. Parametrlər saxlanıldı. - + [PAUSED] %1 %1 is the rest of the window title [FASİLƏDƏ] %1 - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title [D: %1, U: %2] %3 - + Python installer could not be downloaded. Error: %1. Please install it manually. Python quraşdırıcısı endirilə bilməz. Xəta: %1. Onu əllə quraşdırın. - + Rename Python installer failed. Source: "%1". Destination: "%2". Python quraşdırıcısının adını dəyişmək mümkün olmadı. Mənbə: "%1". Hədəf: "%2". - + Python installation success. Python quraşdırılması uğurlu oldu. - + Exit code: %1. Çıxış kodu: %1 - + Reason: installer crashed. Səbəb: Quraşdırılmada qəza baş verdi. - + Python installation failed. Python quraşdırılması baş tutmadı. - + Launching Python installer. File: "%1". Python quraşdırılması başlayır. Fayl: "%1". - - + + Missing Python Runtime Python icraçısı çatışmır - + qBittorrent Update Available qBittorrent yenilənməsi mövcuddur - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Python axtarş vasitəsindən istifadə etməyi tələb edir, lakin, belə görünür ki, bu vasitə quraşdırılmayıb. Bunu indi quraşdırmaq istəyirsiniz? - + Python is required to use the search engine but it does not seem to be installed. Python axtarış vasitəsi istifadə etməyi tələb edir, lakin belə görünür ki, o quraşdırılmayıb. - - + + Old Python Runtime Köhnə Python iş mühiti - + A new version is available. Yeni versiya mövcuddur. - + Do you want to download %1? %1 yükləmək istəyirsiniz? - + Open changelog... Dəyişikliklər jurnalını açın... - + No updates available. You are already using the latest version. Yenilənmələr yoxdur. Siz artıq sonuncu versiyadan istifadə edirsiniz. - + &Check for Updates Yenilənmələri yo&xlamaq - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? Sizin Python versiyanız (%1) köhnədir. Minimum tələb olunan versiya: %2. Yeni versiyanı quraşdırmaq istəyirsiniz? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. Sizin Python versiyanız (%1) köhnədir. Lütfən axtarış vasitələrinin işləməsi üçün son versiyaya yeniləyin. Minimum tələb olunan versiya: %2. - + Paused Fasilədə - + Checking for Updates... Yenilənmələr yoxlanılır... - + Already checking for program updates in the background Proqramın yenilənmələri, artıq arxa planda yoxlanılır - + Python installation in progress... Python quraşdırılması davam edir... - + Failed to open Python installer. File: "%1". Python quraşdırıcısını açmaq mümkün olmadı. Fayl: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". Python quraşdırıcısının MD5 heş yoxlaması mümkün olmadı. Fayl: "%1". Alınan heş: "%2". Gözlənilən heş: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". Python quraşdırıcısının SHA3-512 heş yoxlaması mümkün olmadı. Fayl: "%1". Alınan heş: "%2". Gözlənilən heş: "%3". - + Download error Endirilmə xətası - - + + Invalid password Səhv şifrə - + Filter torrents... Torrentləri süzgəclə... - + Filter by: Buna görə süzgəclə: - + The password must be at least 3 characters long Şifrə ən az 3 işarədən ibarət olmalıdır - - - + + + RSS (%1) RSS (%1) - + The password is invalid Şifrə səhvdir - + DL speed: %1 e.g: Download speed: 10 KiB/s EN sürəti: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s GN sürəti: %1 - + Hide Gizlətmək - + Exiting qBittorrent qBittorrentü'dən çıxılır - + Open Torrent Files Torrent faylları açmaq - + Torrent Files Torrent faylları @@ -5765,47 +5848,47 @@ Minimum tələb olunan versiya: %2. Net::Smtp - + Connection failed, unrecognized reply: %1 Bağlantı uğursuz oldu, naməlum cavab: %1 - + Authentication failed, msg: %1 Kimlik doğrulaması uğursuz oldu, bild: %1 - + <mail from> was rejected by server, msg: %1 <mail from>, server tərəfindən rədd edildi, bild: %1 - + <Rcpt to> was rejected by server, msg: %1 <Rcpt to>, server tərəfindən rədd edildi, bild: %1 - + <data> was rejected by server, msg: %1 <data>, server tərəfindən rədd edildi, bild: %1 - + Message was rejected by the server, error: %1 Bildiriş server tərəfindən rədd edildi, bild: %1 - + Both EHLO and HELO failed, msg: %1 Hər iki, EHLO və HELO əmrləri uğursuz oldu, bild: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 Belə görünür ki, SMTP serveri bizim dəstəklədiyimiz kimlik doğrulaması rejimlərini [CRAM-MD5|PLAIN|LOGIN] dəstəkləmir. Kimlik doğrulamasının uğursuz olaçağı məlum olduğundan o ötürülür... Server doğrulama rejimləri: %1 - + Email Notification Error: %1 E-poçt bildiriş xətası: %1 @@ -5951,175 +6034,175 @@ Minimum tələb olunan versiya: %2. KB - + + Show free disk space in status bar + + + + Torrent content layout: Torrent məzmunu maketi: - + Original Orijinal - + Create subfolder Alt qovluq yaratmaq - + Don't create subfolder Alt qovluq yaratmamaq - + The torrent will be added to the top of the download queue Torrent, fasilə vəziyyətində yükləmə siyahısına əlavə ediləcək - + Add to top of queue The torrent will be added to the top of the download queue Növbənin ən üst sırasına əlavə et - + When duplicate torrent is being added Torrentin təkrar nüsxəsi əlavə olunduqda - + Merge trackers to existing torrent İzləyiciləri mövcud torrentdə birləşdirin - + Keep unselected files in ".unwanted" folder Seçilməmiş faylları "baxılmamışlar" qovluğunda saxlamaq - + Add... Əlavə edin... - + Options.. Seçimlər... - + Remove Silin - + Email notification &upon download completion Endirilmə başa çatdıqdan so&nra e-poçt bildirişi - + Send test email Yoxlamaq üçün e-poçt göndərmək - + Run on torrent added: Torrent əlavə edildikdə başlatmaq: - + Run on torrent finished: Torrent tmamlandıqda başlatmaq: - + Peer connection protocol: İştirakçı bağlantı protokolu - + Any Hər hansı - + I2P (experimental) I2P (təcrübə üçün) - + Mixed mode Qarışıq rejim - - Some options are incompatible with the chosen proxy type! - Bəzi parametrlıər seçilmiş proksi növü ilə uyğun gəlmir! - - - + If checked, hostname lookups are done via the proxy Əgər işarələnərsə, host adı axtarışı proksi ilə icra olunur. - + Perform hostname lookup via proxy Proksi vasitəsilə host adı axtarışını icra etmək - + Use proxy for BitTorrent purposes Proksini BitTorrent məqsədləri üçün istifadə et - + RSS feeds will use proxy RSS xəbər lentləri proksi istifadə edəcək - + Use proxy for RSS purposes RSS məqsədləri üçün proksi istifadə et - + Search engine, software updates or anything else will use proxy Axtarış mühərriki, proqram təminatı yenilənmələri və başqaları proksi istifdə edəcək - + Use proxy for general purposes Əsas məqsədlər üçün proksi istifadə et - + IP Fi&ltering İP fi&ltirləmə - + Schedule &the use of alternative rate limits Alternativ sürət limitinin istifadəsini planlaşdırmaq - + From: From start time Bu vaxtdan: - + To: To end time Bu vaxta: - + Find peers on the DHT network DHT şəbəkəsindəki iştirakçıları tapmaq - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption @@ -6128,180 +6211,190 @@ Disable encryption: Only connect to peers without protocol encryption Şifrələməni söndürmək: İştirakşılara yalnız şifrələmə protokolu olmadan qoşulmaq - + Allow encryption Şifrələməyə icazə vermək - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Daha ətraflı</a>) - + Maximum active checking torrents: Maksimum aktiv torrent yoxlamaları: - + &Torrent Queueing &Torrent növbələnməsi - + When total seeding time reaches Ümumi göndərmə həddinə çatdıqda - + When inactive seeding time reaches Qeyri-aktiv göndərmə həddinə çatdıqda - + RSS Reader RSS Oxuyucu - + Enable fetching RSS feeds RSS lentlərinin alınmasını aktiv etmək - + Feeds refresh interval: Lentlərin yenilənmə intervalı: - + Same host request delay: Eyni host tələbi gecikməsi: - + Maximum number of articles per feed: Hər iştirakçıya ən çox məqalə sayı: - - - + + + min minutes dəq - + Seeding Limits Paylaşım limitləri - + Remove torrent Torrenti silmək - + Remove torrent and its files Torrenti ə fayllarını silmək - + Enable super seeding for torrent Torrent üçün super göndərişi aktivləşdirmək - + When ratio reaches Göstəricini aşdıqda - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent Torrenti dayandırmaq - + A&utomatically append these trackers to new downloads: Bu izləyiciləri yeni endirmələrə a&vtomatik əlavə etmək: - + Automatically append trackers from URL to new downloads: URL-dakı izləyiciləri avtomatik yeni endirmələrə əlavə etmək: - + URL: URL: - + Fetched trackers İzləyicilər alındı - + Search UI Axtarış interfeysi - + Store opened tabs Açıq vərəqləri saxlamaq - + Also store search results Həmçinin axtarış nəticələrini saxlamaq - + History length Tarixçənin uzunluğu - + RSS Torrent Auto Downloader RSS torrent avto yükləyici - + Enable auto downloading of RSS torrents RSS torrentlərinin avtomatik yüklənməsini aktiv etmək - + Edit auto downloading rules... Avtomatik yükləmə qaydalarına düzəliş... - + RSS Smart Episode Filter RSS Ağıllı Bölmə Filtri - + Download REPACK/PROPER episodes REPACK/PROPER bölümlərini endirmək - + Filters: Filtrlər: - + Web User Interface (Remote control) Veb İstifadəçi İnterfeysi (Uzaqdan idarəetmə) - + IP address: İP ünvanları: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. @@ -6309,37 +6402,37 @@ Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv İPv4 və ya İPv6 ünvanı göstərin. Siz hər hansı İPv4 ünvanı üçün "0.0.0.0", hər hansı İPv6 ünvanı üçün "::", və ya İPv4 və İPv6-lərin hər ikisi üçün "*" göstərə bilərsiniz. - + Ban client after consecutive failures: Belə ardıcıl xətalardan sonra müştərini bloklamaq: - + Never Heç vaxt - + ban for: bundan sonra bloklamaq: - + Session timeout: Sessiya bitmə vaxtı: - + Disabled Söndürülüb - + Server domains: Server domenləri: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6352,37 +6445,37 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Çoxsaylı elementləri bölmək üçün ';' istifadə edin. '*' ümumi nişanından istifadə edə bilərsiniz - + &Use HTTPS instead of HTTP HTTP əvəzinə HTTPS &istifadə edin - + Bypass authentication for clients on localhost Locahosst-da müştəri üçün kimlik doğrulamasını ötürmək - + Bypass authentication for clients in whitelisted IP subnets İP alt şəbəkələri ağ siyahısında müştəri üçün kimlik doğrulamasını ötürmək - + IP subnet whitelist... İP al şəbəkəsi ağ siyahısı... - + Use alternative WebUI Alternativ WebUI istifadə edin - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. Yönləndirilmiş müştəri ünvanından (X-Forwarded-For header) istifadə etmək üçün əks proxy IP-lərini (və ya alt şəbəkələri, məs., 0.0.0.0/24) göstərin. Birdən çox girişi bölmək üçün ';' işarəsindən istifadə edin. - + Upda&te my dynamic domain name Dinamik domen adını &yeniləmək @@ -6495,99 +6588,99 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Bundan köhnə jurnal fayllarını silmək: - + Show external IP in status bar Xarici İP-ni vəziyyət çubuğunda göstərmək - + When adding a torrent Torrent əlavə edildikdə: - + Bring torrent dialog to the front Torrent dialoqunu ön plana çıxarmaq - + The torrent will be added to download list in a stopped state Torrent, endirmə siyahısına dayandırılmış vəziyyətdə əlavə ediləcək - + Also delete .torrent files whose addition was cancelled Həmçinin əlavə edilməsi ləğv olunan .torrent fayllarını silmək - + Also when addition is cancelled Həmçinin əlavə edilməsi ləğv edildikdə - + Warning! Data loss possible! Xəbərdarlıq! Verilənlərin itirilə bilər! - + Saving Management Yaddaşa yazılmanın idarə edilməsi - + Default Torrent Management Mode: Standart Torrent İdarəetmə Rejimi: - + Manual Əl ilə - + Automatic Avtomatik - + When Torrent Category changed: Torrent Kateqoriyaları dəyişdirildikdə: - + Relocate torrent Torrentin yerini dəyişmək - + Switch torrent to Manual Mode Torrenti əl ilə idarə rrejiminə keçirmək - - + + Relocate affected torrents Təsirə məruz qalan torrentlərin yerini dəyişmək - - + + Switch affected torrents to Manual Mode Təsirə məruz qalan torrentləri əl ilə idarə rejiminə keçirmək - + Use Subcategories Alt kateqoriyaları istifadə etmək - + Default Save Path: Standart saxlama yolu: - + Copy .torrent files to: Torrent fayllarını buraya kopyalamaq: @@ -6597,22 +6690,22 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. &qBittorrenti bu bildiriş sahəsində göstərmək: - + Display &torrent content and some options &Torrent tərkibini və bəzi seçimləri göstərmək - + De&lete .torrent files afterwards Əlavə edildikdən sonra torrent fayllarını si&lmək - + Copy .torrent files for finished downloads to: Bitmiş yükləmələr üçün .torrent fayllarını buraya kopyalamq: - + Pre-allocate disk space for all files Bütün fayllar üçün əvvəlcədən yer ayırmaq @@ -6707,65 +6800,65 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. illər - + Log performance warnings Performans xəbərdarlıqlarını qeydə alamaq - + Do not start the download automatically The torrent will be added to download list in a stopped state Endirməni avtomatik başlatmamaq - + Whether the .torrent file should be deleted after adding it Əlavə edildikdən sonra .torrent faylın silinib silinməməsi - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. Daha çox hissələrə bölünmənin qarşısını almaq üçün diskdə tam fayl ölçüsündə yer ayrılır. Yalnız HDD-lər (Sərt Disklər) üçün yararlıdır. - + Append .!qB extension to incomplete files Tamamlanmamış fayllara .!qB uzantısı əlavə etmək - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it Torrent endirilən zaman onun daxilindəki .torrent fayllarını endirməyi təklif etmək - + Enable recursive download dialog Təkrarlanan yükləmə dialoqunu aktiv etmək - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually Avtomatik: Müxtəlif torrent xüsusiyyətləri (məs., saxlama yolu) əlaqəli kateqoriyalar tərəfindən təyin ediləcəkdir. Əl ilə: Müxtəlif torrent xüsusiyyətləri (məs., saxlama yolu) əl ilə daxil edilməlidir - + When Default Save/Incomplete Path changed: Standart saxlam/tamamlanmamış yolu dəyişdirildiyi zaman: - + When Category Save Path changed: Saxlama Yolu Kateqoriyası dəyişdirildiyində: - + Use Category paths in Manual Mode Kateqoriya yollarını Əl ilə Rejimində istifadə edin - + Resolve relative Save Path against appropriate Category path instead of Default one Nisbi saxlama yolunu, standarta yola görə deyil, uyğun kateqriya yoluna görə təyin edin @@ -6785,50 +6878,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manuallySistemin açılışında qBittorrent pəncərəsinin vəziyyəti - + Torrent stop condition: Torrentin dayanma vəziyyəti: - - + + None Heç nə - - + + Metadata received Meta məlumatları alındı - - + + Files checked Fayllar yoxlanıldı - + Ask for merging trackers when torrent is being added manually Torrent əl ilə əlavə olunduqda izləyicilərin birləşdirilməsini soruşmaq - + Use another path for incomplete torrents: Tamamlanmamış torrentlər üçün başqa yoldan istifadə edin: - + Automatically add torrents from: Torrenti buradan avtomatik əlavə etmək: - + Excluded file names Fayl adları istisna edilir - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6858,511 +6951,506 @@ readme.txt: dəqiq fayl adını seçir. readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, lakin "readme10.txt"-ni seçmir. - + Receiver Qəbuledici - + To: To receiver Buraya: - + SMTP server: SMTP server: - + Sender Göndərən - + From: From sender Buradan: - + This server requires a secure connection (SSL) Bu server təhlükəsiz bağlantı (SSL) tələb edir - - + + Authentication Kimlik doğrulaması - - - - + + + + Username: İstifadəçi adı: - - - - + + + + Password: Şifrə: - + Run external program Xarici proqramı başladın - + Show console window Konsol pəncərəsini göstərmək - + TCP and μTP TCP və μTP - + Listening Port Dinlənilən port - + Port used for incoming connections: Daxil olan bağlantılar üçün istifadə olunan port - + Set to 0 to let your system pick an unused port Dəyəri 0 təyin edin ki, sistem istifadə olunmayan portu seçsin - + Random Təsadüfi - + Use UPnP / NAT-PMP port forwarding from my router UPnP / NAT-PMP portlarının yönləndirməsi üçün routerimdən istifadə etmək - + Connections Limits Bağlantı limiti - + Maximum number of connections per torrent: Hər torrent üçün ən çox bağlantı limiti: - + Global maximum number of connections: Ən çox ümumi bağlantı sayı: - + Maximum number of upload slots per torrent: Hər torrent üçün ən çox göndərmə yuvası sayı: - + Global maximum number of upload slots: Ən çox ümumi göndərmə yuvaları sayı: - + Proxy Server Proksi server: - + Type: Növ: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Host: - - - + + + Port: Port: - + Otherwise, the proxy server is only used for tracker connections Əks halda proksi server yalnız izləyici bağlantıları üçün istifadə olunur - + Use proxy for peer connections Proksi serveri, iştirakçı bağlantıları üçün istifadə etmək - + A&uthentication Kimlik doğr&ulaması - - Info: The password is saved unencrypted - Məlumat: Parol, şifrələnməmiş şəkildə saxlanıldı - - - + Filter path (.dat, .p2p, .p2b): Filtr yolu (.dat, .p2p, .p2b): - + Reload the filter Filtri təkrarlamaq - + Manually banned IP addresses... İstifadəçinin qadağan etdiyi İP ünvanları... - + Apply to trackers İzləyicilərə tətbiq etmək - + Global Rate Limits Ümumi sürət limitləri - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KB/san - - + + Upload: Göndərmə: - - + + Download: Yükləmə: - + Alternative Rate Limits Alternativ sürət limitləri - + Start time Başlama vaxtı - + End time Bitmə tarixi - + When: Nə zaman: - + Every day Hər gün - + Weekdays Həftəiçi: - + Weekends Həstə sonları: - + Rate Limits Settings Sürət limitləri ayarları - + Apply rate limit to peers on LAN Sürət limitini LAN şəbəkəsindəki hər iştirakçıya tətbiq etmək - + Apply rate limit to transport overhead Sürət limitini trafik mübadiləsinə tətbiq etmək - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> <html><head/><body><p>Əgər "qarışıq rejim" aktiv edilərsə I2P torrentlər izləyicilərdən başqa digər mənbələrdən iştirakçılar əldə etməyə və heç bir anonimləşdirmə təqdim etmədən müntəzəm İP-lərə qoşulmağa icazə verir. Bu, əgər istifadəçi üçün I2P anonimləşdirilməsi maraqlı deyilsə və o, hələ də I2P iştirakçılarına qoşulmaq istədiyi halda faydalı ola bilər, </p></body></html> - + Apply rate limit to µTP protocol Sürət limitini µTP protokoluna tətbiq etmək - + Privacy Məxfi - + Enable DHT (decentralized network) to find more peers Daha çox iştirakçılar tapmaq üçün DHT (mərkəzləşməmiş şəbəkə) aktiv etmək - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) İştirakçıları uyğun qBittorrent müştəriləri ilə əvəzləmək (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Daha çox iştirakçılar tapmaq üçün İştirakçı mübadiləsini (PeX) aktiv etmək - + Look for peers on your local network Yerli şəbəkədəki iştirakçıları axtarmaq - + Enable Local Peer Discovery to find more peers Daha çox iştirakçılar tapmaq üçün Yerli İştirakçı Axtarışını aktiv etmək - + Encryption mode: Şifrələmə rejimi: - + Require encryption Şifrələmə tələbi - + Disable encryption Şifrələməni söndürmək: - + Enable when using a proxy or a VPN connection Proksi və ya VPN bağlantıları istifadə oluduqda - + Enable anonymous mode Anonim rejimi aktiv etmək - + Maximum active downloads: Ən çox aktiv yükləmələr: - + Maximum active uploads: Ən çox aktiv göndərmələr: - + Maximum active torrents: Ən çox aktiv torrentlər: - + Do not count slow torrents in these limits Bu limitlərdə yavaş torrentləri saymamaq - + Upload rate threshold: Göndərmə sürəti həddi: - + Download rate threshold: Yükləmə sürəti həddi: - - - - + + + + sec seconds san - + Torrent inactivity timer: Torrent boşdayanma zamanlayıcısı: - + then sonra - + Use UPnP / NAT-PMP to forward the port from my router UPnP / NAT-PMP portlarının yönləndirməsi üçün routerimdən istifadə etmək - + Certificate: Sertifikat: - + Key: Açar: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>sertifikatlar haqqında məlumat</a> - + Change current password Hazırkı şifrəni dəyişmək - + Files location: Fayl yerləşməsi: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">Alternativ Veb İİ siyahısı</a> - + Security Təhlükəsizlik - + Enable clickjacking protection Klikdən sui-istifadənin qarşısının alınmasını aktiv etnək - + Enable Cross-Site Request Forgery (CSRF) protection Saytlar arası sorğuların saxtalaşdırılmasından (CSRF) mühafizəni aktiv etmək - + Enable cookie Secure flag (requires HTTPS or localhost connection) Kuk təhlükəsizliyi bayrağını aktiv etmək (HTTPS və ya yerli host bağlantısı tələb olunur) - + Enable Host header validation Host başlığı doğrulamasını aktiv etmək - + Add custom HTTP headers Başqa HTTP başlıqları əlavə etmək - + Header: value pairs, one per line Başlıq: hər sətir başına bir dəyər cütü - + Enable reverse proxy support Əks proksi dəstəklənməsini açın - + Trusted proxies list: Etibarlı proksilər siyahısı: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Əks proksi quraşdırma nümunələri</a> - + Service: Xidmət: - + Register Qeydiyyat - + Domain name: Domen adı: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! Bu seçimi aktiv etmək torrent fayllarınızı <strong>birdəfəlik itirmək</strong> ilə nəticələnə bilər! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog İkinci seçimi aktiv etdikdə (&ldquo;Həmçinin əlavə edilmə ləğv edildikdə&rdquo;) torrent faylları hətta &ldquo;Torrent əlavə etmək&rdquo; dialoqunda &ldquo;<strong>İmtina</strong>&rdquo; vurduqda belə <strong>silinəcəkdir</strong> @@ -7372,12 +7460,12 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l qBittorrent İstifadəçi İnterfeysi mövzusu faylını seçmək - + Choose Alternative UI files location Alternativ İİ faylları yerini seçmək - + Supported parameters (case sensitive): Dəstəklnən parametrlər (böyük-kiçik hərflərə həssas) @@ -7397,183 +7485,183 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l Sistem çəkməcəsinin mövcudluğunu aşkar edə bilmədiyinə görə söndürüldü - + No stop condition is set. Dayanma vəziyyəti təyin edilməyib. - + Torrent will stop after metadata is received. Meta məlumatları alındıqdan sonra torrent dayanacaq. - + Torrent will stop after files are initially checked. Faylların ilkin yoxlanışından sonra torrrent daynacaq. - + This will also download metadata if it wasn't there initially. Əgər başlanğıcda meta məlumatlar olmasa onlar da yüklənəcək. - + %N: Torrent name %N: Torrentin adı - + %L: Category %L: Kateqoriyası - + %F: Content path (same as root path for multifile torrent) %F: Məzmun yolu (çoxsaylı torrentlər üçün kök (root) yolu kimi) - + %R: Root path (first torrent subdirectory path) %R: Kök (root) yolu (ilk torrent alt qovluqları yolu) - + %D: Save path %D: Saxlama yolu - + %C: Number of files %C: Faylların sayı - + %Z: Torrent size (bytes) %Z: Torrentin ölçüsü (bayt) - + %T: Current tracker %T: Cari izləyici - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") Növ: Mətni, ara boşluğunda kəsilmələrndən qorumaq üçün parametrləri dırnaq işarəsinə alın (məs., "%N") - + Test email E-poçtu sınamaq - + Attempted to send email. Check your inbox to confirm success E-poçt göndərməyə cəhd edildi. Uğurlu olduğunu təsdiqləmək üçün poçtunuzu yoxlayın. - + (None) (Heç nə) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds Bir torrent endirmə və göndərmə sürəti, "Torrent boşdayanma zamanlayıcısı"nın saniyələrlə dəyərindən az olarsa, o, yavaş torrent hesab olunacaq - + Certificate Sertifikat - + Select certificate Sertifakatı seçin - + Private key Məxfi açar - + Select private key Məxfi açarı seçin - + WebUI configuration failed. Reason: %1 Veb İİ tənzimləməsini dəyişmək mümkün olmadı. Səbəb: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode Windows qaranlıq rejimi ilə daha yaxşı uyğunluq üçün %1 tövsiyyə olunur - + System System default Qt style Sistem - + Let Qt decide the style for this system Qt-yə bu sistem üçün üslub seçməyə icazə vermək - + Dark Dark color scheme Qaranlıq - + Light Light color scheme İşıqlı - + System System color scheme Sistem - + Select folder to monitor İzləmək üçün qovluğu seçin - + Adding entry failed Girişin əlavə edilməsi alınmadı - + The WebUI username must be at least 3 characters long. Veb İİ istifadəçi adı ən az 3 işarədən ibarət olmalıdır. - + The WebUI password must be at least 6 characters long. Veb İİ şifrəsi ən az 6 işarədən ibarət olmalıdır. - + Location Error Yerləşmə xətası - - + + Choose export directory İxrac qovluğunu seçmək - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well Bu seçim aktiv olduqda qBittorrent, yükləmə növbəsinə uğurla əlavə olunduqdan (ilk seçim) və ya olunmadıqdan (ikinci seçim) sonra, .torrent fayllarını <strong>siləcək</strong>. Bu sadəcə &ldquo;Torrent əlavə etmək&rdquo; menyusu vasitəsi ilə açılmış fayllara <strong>deyil</strong>, həmçinin, <strong>fayl növü əlaqələri</strong> vasitəsi ilə açılanlara da tətbiq ediləcəkdir @@ -7583,69 +7671,69 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l qBittorrent İİ mövzusu faylı (*.qbtheme config.json) - + %G: Tags (separated by comma) %G: Etiketlər (vergüllə ayrılmış) - + %I: Info hash v1 (or '-' if unavailable) %I: Məlumat heş'i v1 (və ya əgər əlçatmazdırsa '-') - + %J: Info hash v2 (or '-' if unavailable) %J: məlumat heş'i v2 (və ya əgər əlçatmazdırsa '-') - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) %K: Torrent İD-si (ya məlumat heş'i sha-1 v1 üçün və ya v2/hibrid torrenti üçün qısaldılmış sha-256 məlumat heş' i) - - + + Choose a save directory Saxlama qovluğunu seçmək - + Torrents that have metadata initially will be added as stopped. Əvvəlcədən meta məlumatlara malik olan torrentlər dayandırılmış kimi əılavə ediləcək. - + Choose an IP filter file İP filtri faylını seçmək - + All supported filters Bütün dəstəklənən filtrlər - + The alternative WebUI files location cannot be blank. Alternativ Veb İİ faylları üçün boş ola bilməz. - + Parsing error Təhlil xətası - + Failed to parse the provided IP filter Təqdim olunan İP filtrinin təhlil baş tutmadı - + Successfully refreshed Uğurla təzələndi - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Təqdim olunan İP filtri uğurla təhlil olundu: %1 qayda tətbiq olundu. @@ -7656,18 +7744,18 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l Tərcihlər - + Time Error Vaxt xətası - + The start time and the end time can't be the same. Başlama və bitmə vaxtı eyni ola bilməz. - - + + Length Error Ölçü xətası @@ -7758,163 +7846,163 @@ readme[0-9].txt: "readme1ştxt", "readme2ştxt"-ni seçir, l PeerListWidget - + Country/Region Ölkə/Bölgə - + IP/Address İP/Ünvanlar - + Port Port - + Flags Bayraqlar - + Connection Bağlantı - + Client i.e.: Client application Müştəri - + Peer ID Client i.e.: Client resolved from Peer ID İştirakçının İD müştərisi - + Progress i.e: % downloaded İrəliləyiş - + Down Speed i.e: Download speed Endirmə sürəti - + Up Speed i.e: Upload speed Göndərmə sürəti - + Downloaded i.e: total data downloaded Endirildi - + Uploaded i.e: total data uploaded Göndərildi - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Uyğunluq - + Files i.e. files that are being downloaded right now Fayllar - + Column visibility Sütunun görünməsi - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək - + Add peers... İştirakçı əlavə edin... - - + + Adding peers İştirakçılar əlavə edilir - + Some peers cannot be added. Check the Log for details. Bəzi iştirakçılar əlavə edilə bilməz. Təfsilatı üçün Jurnal faylına baxın. - + Peers are added to this torrent. İştirakçılar bi torrentə əlavə edildilər. - - + + Ban peer permanently İştirakçını birdəfəlik əngəlləmək - + Cannot add peers to a private torrent Məxfi torrentə iştirakçı əlavə edilə bilməz - + Cannot add peers when the torrent is checking Torrent yoxlanılan zaman iştirakçı əlavə edilə bilməz - + Cannot add peers when the torrent is queued Torrent növbədə olduqda iştirakçı əlavə edilə bilməz - + No peer was selected İştirakçı seçilməyib - + Are you sure you want to permanently ban the selected peers? Siz seçilmiş iştirakçını birdəfəlik əngəlləmək istədiyinizə əminsiniz? - + Peer "%1" is manually banned İştirakçı "%1" həmişəlik əngəlləndi - + N/A Ə/D - + Copy IP:port İP portunu kopyalamaq @@ -8192,39 +8280,6 @@ Bu qoşmalar söndürülüb. Veb keçidi - - PowerManagement - - - qBittorrent is active - qBittorrent aktivdir - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - Elektrik qidalanması idarəetmə vasitəsi uyğun D-Bus interfeysi tapdı. İnterfeys: %1 - - - - Power management error. Did not found suitable D-Bus interface. - Elektrik qidalanması idarəetməsi xətası. Uyğun D-Bus interfeysi tapılmadı. - - - - - - Power management error. Action: %1. Error: %2 - Elektrik qidalanması idarəetməsi xətası. Əməl: %1. Xəta: %2 - - - - Power management unexpected error. State: %1. Error: %2 - Elektrik qidalanması idarəetməsində gözlənilməz xəta baş verdi. Vəziyyət: %1. Xəta: %2 - - PreviewSelectDialog @@ -8514,124 +8569,124 @@ Bu qoşmalar söndürülüb. Saxlama yolu: - + Never Heç zaman - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (%3 var) - - + + %1 (%2 this session) %1 (%2 bu sesiyada) - - + + N/A Əlçatmaz - + Yes Bəli - + No Xeyr - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (%2 üçün göndərilmə) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 ən çox) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 ümumi) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 orta.) - + Add web seed Add HTTP source Veb iştirakçı əlavə etmək - + Add web seed: Veb iştirakçı əlavə etmək: - - + + This web seed is already in the list. Bu veb iştirakçı artıq siyahıdadır. - + Filter files... Faylları filtrləmək... - + Add web seed... Veb iştirakçı əlavə etmək... - + Remove web seed Veb iştirakçını silmək - + Copy web seed URL Veb iştirakçı ünvanını kopyalamaq - + Edit web seed URL... Veb iştirakçı ünvanına düzəliş etmək... - + Speed graphs are disabled Tezlik qrafiki söndürülüb - + You can enable it in Advanced Options Siz bunu Əlavə Seçimlər-də aktiv edə bilərsiniz - + Web seed editing Veb göndəriminə düzəliş edilir - + Web seed URL: Veb göndərim URL-u: @@ -8639,33 +8694,33 @@ Bu qoşmalar söndürülüb. RSS::AutoDownloader - - + + Invalid data format. Səhv tarix formatı - + Couldn't save RSS AutoDownloader data in %1. Error: %2 RSS avtomatik yükləmə tarixini %1 daxilində saxlamaq mümkün olmadı:. Xəta: %2 - + Invalid data format Səhv tarix formatı - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... "%1" RSS məqaləsi "%2" qaydası tərəfindən qəbul edildi. Torrent əlavə edilməyə cəhd edilir... - + Failed to read RSS AutoDownloader rules. %1 RSS avtomatik yükləmə qaydalarını oxumaq mümkün olmadı. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 RSS avtomatik yükləmə qaydaları yüklənə bilmədi. Səbəb: %1 @@ -8673,22 +8728,22 @@ Bu qoşmalar söndürülüb. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 RSS lentini "%1"-də/da yükləmək baş tutmadı. Səbəb: %2 - + RSS feed at '%1' updated. Added %2 new articles. RSS lenti "%1"-də/da yeniləndi. %2 yeni məqalə əlavə edildi. - + Failed to parse RSS feed at '%1'. Reason: %2 RSS lentini "%1"-də/da analiz etmək baş alınmadı. Səbəb: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. RSS lenti "%1"-də/da uğurla yükləndi. Təhlili başlayır. @@ -8737,12 +8792,12 @@ Bu qoşmalar söndürülüb. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" RSS sessiyası tənzimləməsi saxlanıla bilmədi. Fayl: "%1". Xəta:"%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" RSS sessiyası verilənləri saxlanıla bilmədi. Fayl: "%1". Xəta: "%2" @@ -8764,76 +8819,117 @@ Bu qoşmalar söndürülüb. - + Item doesn't exist: %1. Element tapılmadı: %1. - Couldn't move folder into itself. - Qovluğu öz daxilinə köçürmək mümkün deyil + Can't move a folder into itself or its subfolders. + - + Cannot delete root folder. Kök qovluğu silinə bilmir. - + Failed to read RSS session data. %1 RSS sesiya verilənlərini oxumaq mümkün olmadı. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" RSS sesiya verilənlərini həll etmək mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." RSS sesiya verilənlərini yükləmək mümkün olmadı. Fayl: "%1". Xəta: "Səhv verilənlər formatı." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. RSS xəbər lenti yüklənə bilmədi. Xəbər lenti: "%1". Səbəb: URL tələb olunur. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. RSS xəbər lentini yükləmək alınmadı. Xəbər lenti: "%1". Səbəb: UİD səhvdir. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. RSS xəbər lentinin təkrarı aşkarlandı. UİD: "%1". Xəta: Belə görünür ki, tənzimləmə pozulub. - + Couldn't load RSS item. Item: "%1". Invalid data format. RSS elemntlərini yüləmək mümkün olmadı. Element: "%1". Verilənlər formatı səhvdir. - + Corrupted RSS list, not loading it. RSS siyahısı pozulub, o, yüklənmir. - + Incorrect RSS Item path: %1. Düzgün olmayan RSS elementi yolu: %1 - + RSS item with given path already exists: %1. Verilmiş yol ilə RSS elementi artıq mövcuddur: %1 - + Parent folder doesn't exist: %1. Ana qovluq yoxdur; %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + Xəbər lenti mövcud deyil: %1 + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + URL: + + + + Refresh interval: + Təzələnmə aralığı: + + + + sec + san + + + + Default + Standart + + RSSWidget @@ -8933,78 +9029,61 @@ Bu qoşmalar söndürülüb. - Edit feed URL... - Xəbər lenti ünvanına düzəliş et... + Feed options... + - - Edit feed URL - Xəbər lenti ünvanına düzəliş et - - - + Please choose a folder name Qovluğu ad verin - + Folder name: Qovluğun adı: - + New folder Yeni qovluq - - - Please type a RSS feed URL - RSS lenti URL-nu yazın - - - - - Feed URL: - Lent URL-u: - - - + Deletion confirmation Silinmənin təsdiqlənməsi - + Are you sure you want to delete the selected RSS feeds? Seçilmiş RSS lentlərini silmək istədiyinizə əminsiniz? - + Please choose a new name for this RSS feed RSS lenti üçün yeni ad seçin - + New feed name: Yeni lent adı: - + Rename failed Adı dəyişdirilə bilmədi - + Date: Tarix: - + Feed: Lent: - + Author: Müəllif: @@ -9261,104 +9340,104 @@ Bu qoşmalar söndürülüb. SearchPluginManager - + Unknown search engine plugin file format. Naməlum axtarış vasitəsi qoşması fayl formatı. - + Plugin already at version %1, which is greater than %2 Qoşma artıq %2 versiyasından böyük olan %1 versiyasındadır - + A more recent version of this plugin is already installed. Bu qoşmanın artıq ən son versiyası quraşdırılıb. - + Plugin %1 is not supported. %1 qoşması dəstəklənmir. - - + + Plugin is not supported. Qoşma dəstəklənmir. - + Plugin %1 has been successfully updated. %1 qoşması uğurla yeniləndi. - + All categories Bütün kateqoriyalar - + Movies Filmlər - + TV shows TV verilişləri - + Music Musiqi - + Games Oyun - + Anime Cizgi filmləri - + Software Proqram təminatı - + Pictures Şəkillər - + Books Kitablar - + Update server is temporarily unavailable. %1 Yeniləmə serveri müvəqqəti işləmir. %1 - - + + Failed to download the plugin file. %1 Qoşma faylının endrilməsi alınmadı. %1 - + Plugin "%1" is outdated, updating to version %2 "%1" qoşmasının bersiyası köhnədir, %2 versiyasına yenilənir - + Incorrect update info received for %1 out of %2 plugins. %2 qoşmalarından %1 yenilənməsi haqqında səhv məlumatı alındı. - + Search plugin '%1' contains invalid version string ('%2') '%1' axtarış qoşması versiyası ('%2') səhv sətirlərdən ibarətdir @@ -9384,94 +9463,94 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı Axtarış qoşmaları... - + A phrase to search for. Axtarış ifadəsi. - + Spaces in a search term may be protected by double quotes. Axtarış sorğusundakı boşluq cüt dırnaq işarəsi ilə qorunur. - + Example: Search phrase example Nümunə: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted <b>&quot;foo bar&quot;</b>: <b>foo bar</b> axtarmaq üçün - + All plugins Bütün qoşmalar - + Only enabled Yalnız aktiv edilənlər - - + + Invalid data format. Səhv tarix formatı - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted <b>foo bar</b>: <b>foo</b> və <b>bar</b> axtarmaq üçün - + Refresh Təzələmək - + Close tab Vərəqi bağlayın - + Close all tabs Bütün vərəqləri bağlayın - + Select... Seçin... - - + + Search Engine Axtarış sistemi - - + + Please install Python to use the Search Engine. Axtarış sistemini istifadə etmək üçün Python quraşdırın. - + Empty search pattern Boş axtarış nümunəsi - + Please type a search pattern first Öncə axtarış nümunəsini daxil edin - + Stop Dayandırmaq @@ -9479,32 +9558,32 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" Axtarış İİ-nin saxlanılması vəziyyəti haqqında məlumatı yükləmək mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" Saxlanılmış axtarış nəticələrini yükləmək mümkün olmadı. Vərəq: "%1". Fayl: "%2". Xəta: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" Axtarıç İİ vəziyyətini saxlamaq mümüknü olmadı. Fayl: "%1". Xəta: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" Axtarış nəticələrini saxlamaq mümkün olmadı: Vərəq: "%1". Fayl: "%2". Xəta: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" Axtarış İİ tarixçəsini yükləmək mümkün olmadı. Fayl: "%1". Xəta: "%2" - + Failed to save search history. File: "%1". Error: "%2" Axtarış tarixçəsini saxlamaq mümkün olmadı. Fayl: "%1". Xəta: "%2" @@ -9902,67 +9981,77 @@ Onlardan bəzilərini quraşdırmaq üçün pəncərənin aşağı-sağındakı StatusBar - + Connection status: Bağlantının vəziyyəti: - - + + No direct connections. This may indicate network configuration problems. Birbaşa bağlantılar yoxdur. Bu şəbəkə bağlantısı probleminə işarədir. - - + + Free space: N/A + + + + + External IP: N/A Xarici İP: Ə/D - - + + DHT: %1 nodes DHT: %1 qovşaqlar - + qBittorrent needs to be restarted! qBittorrenti yenidən başlatmaq lazımdır! - - + + Connection Status: Bağlantının vəziyyəti: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. Şəbəkədən kənar: Bu, adətən o deməkdir ki, qBittorrent-in daxil olan bağlantılar üçün seçilmiş portları dinləməsi baş tutmadı - + Online Şəbəkədə - + + Free space: + + + + External IPs: %1, %2 Xarici İP-lər: %1, %2 - + External IP: %1%2 Xarici İP: %1%2 - + Click to switch to alternative speed limits Alternativ sürət limitlərinə keçmək üçün vurun - + Click to switch to regular speed limits Müntəzəm sürət limitlərinə keçmək üçün vurun @@ -10501,17 +10590,17 @@ Başqa ad verin və yenidən cəhd edin. TorrentCreatorController - + Too many active tasks Həddindən çox aktiv tapşırıqlar - + Torrent creation is still unfinished. Torrent yaradılması hələ başa çatmayıb. - + Torrent creation failed. Torrent yaradılması uğursuz oldu @@ -10991,78 +11080,78 @@ Başqa ad verin və yenidən cəhd edin. TorrentsController - + Error: '%1' is not a valid torrent file. Xəta: '%1' torrent faylı düzgün deyil. - + Priority must be an integer Üstünlük tam ədəd olmalıdır - + Priority is not valid Üstünlük etibarsızdır - + Torrent's metadata has not yet downloaded Torrent meta verilənləri hələlik yüklənməyib - + File IDs must be integers Fayl İD-ləri uyğunlaşdırılmalıdır - + File ID is not valid Fayl İD-ləri etibarlı deyil - - - - + + + + Torrent queueing must be enabled Torrent növbələnməsi aktiv edilməlidir - - + + Save path cannot be empty Saxlama yolu boş ola bilməz - - + + Cannot create target directory Hədəf kataloqu yaradıla bilmir - - + + Category cannot be empty Kateqoriya boş ola bilməz - + Unable to create category Kateqoriya yaratmaq mümkün olmadı - + Unable to edit category Kateqoriyaya düzəliş etmək mümkün olmadı - + Unable to export torrent file. Error: %1 Torrent faylın ixracı mümkün deyil. Xəta: %1 - + Cannot make save path Saxlama yolu yaradıla bilmədi @@ -11082,39 +11171,39 @@ Başqa ad verin və yenidən cəhd edin. 'çeşid' parametri səhvdir - + "%1" is not an existing URL "%1" mövcud URL deyil - + "%1" is not a valid file index. "%1" düzgün indeks faylı deyil. - + Index %1 is out of bounds. %1 indeksi hüdülardan kənardadır. - - + + Cannot write to directory Qovluğa yazmaq mümkün olmadı - + WebUI Set location: moving "%1", from "%2" to "%3" Veb İİ, yerdəyişmə: "%1" "%2"-dən/dan "%3"-ə\a - + Incorrect torrent name Səhv torrent adı - - + + Incorrect category name Səhv kateqoriya adı @@ -11263,73 +11352,73 @@ Başqa ad verin və yenidən cəhd edin. Bu torrent məxfidir - + Tracker editing İzləyicilərə düzəliş edilir - + Tracker URL: İzləyici URL-u: - - + + Tracker editing failed İzləyicilərə düzəliş alınmadı - + The tracker URL entered is invalid. Daxil edilən izləyici URL-u səhvdir - + The tracker URL already exists. İzləyici URL-u artıq mövcuddur. - + Edit tracker URL... İzləyici URL-na düzəliş edin... - + Remove tracker İzləyicini silmək - + Copy tracker URL İzləyici URL-nu kopyalamaq - + Force reannounce to selected trackers Seçilmiş izləyicilərə məcburi təkrar anons etmək - + Force reannounce to all trackers Bütün izləyicilərə məcburi təkrar anons etmək - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək - + Add trackers... İzləyicilər əlavə edin... - + Column visibility Sütunun görünməsi @@ -11818,319 +11907,319 @@ Başqa ad verin və yenidən cəhd edin. TransferListWidget - + Column visibility Sütunun görünməsi - + Recheck confirmation Yenidən yoxlamanı təsdiq etmək - + Are you sure you want to recheck the selected torrent(s)? Seçilmiş torrent(lər)i yenidən yoxlamaq istədiyinizə əminsiniz? - + Rename Adını dəyişmək - + New name: Yeni ad: - + Choose save path Saxlama yolunu seçmək - + Unable to preview Öncədən baxış alınmadı - + The selected torrent "%1" does not contain previewable files "%1" seçilmiş torrent öncədən baxıla bilən fayllardan ibarət deyil - + Resize columns Sütunların ölçüsünü dəyişin - + Resize all non-hidden columns to the size of their contents Bütün gizli olmayan sütunların ölçüsünü tərkiblərinin ölçüsünə görə dəyişmək - + Enable automatic torrent management Avtomatik Torrent İdarəetməsini aktiv edin - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. Seçilmiş torrent(lər) üçün avtomatik torrent idarəetməsini aktiv etmək istədiyinizə əminsiniz? Torrentlər başqa yerə köçürülə bilər. - + Choose folder to save exported .torrent files İxrac edilmiş .torrent fayllarının saxlanılması üçün qovluq seçin - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" ştorrent faylın ixracı baş tutmadı. Torrent: "%1". Saxlama yolu: "%2". Səbəb: "%3" - + A file with the same name already exists Eyni adlı fayl artıq mövcuddur - + Export .torrent file error .torrent faylın ixracı xətası - + Remove All Tags Bütün etiketləri silmək - + Remove all tags from selected torrents? Seçilmiş torrentlərdən bütün etiketlər silinsin? - + Comma-separated tags: Vergüllə ayrılan etiketlər: - + Invalid tag Yalnış etiket - + Tag name: '%1' is invalid Etiket adı: "%1" səhvdir - + Pre&view file... &Fayla öncədən baxış... - + Torrent &options... T&orrent seçimləri... - + Open destination &folder Təyinat &qovluğunu açın - + Move &up i.e. move up in the queue Y&uxarı köçürün - + Move &down i.e. Move down in the queue &Aşağı köçürün - + Move to &top i.e. Move to top of the queue Ən üs&tə köçürün - + Move to &bottom i.e. Move to bottom of the queue Ən aşağı&ya köçürün - + Set loc&ation... Y&er təyin edin... - + Force rec&heck Məcburi tə&krar yoxlayın - + Force r&eannounce Məcburi təkrar anons &edin - + &Magnet link &Maqnit keçid - + Torrent &ID Torrent &İD-si - + &Comment &Şərh - + &Name A&d - + Info &hash v1 Məlumat &heşi v1 - + Info h&ash v2 Məlum&at heşi v2 - + Re&name... Adı&nı dəyişin... - + Edit trac&kers... İz&ləyicilərə düzəliş... - + E&xport .torrent... .torrent faylı i&xrac edin... - + Categor&y Kateqori&ya - + &New... New category... Ye&ni... - + &Reset Reset category Sıfı&rlayın - + Ta&gs Etike&tlər - + &Add... Add / assign multiple tags... Əl&avə edin... - + &Remove All Remove all tags &Hamısını silin - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking Fasilədə/Növbədə/Xətalı/Yoxlamada olduqda torrent təkrar məcburi anons etmək mümkün deyil - + &Queue &Növbə - + &Copy &Kopyalayın - + Exported torrent is not necessarily the same as the imported İxrac edilən torrent idxal edilən torrent kimi vacib deyil - + Download in sequential order Ardıcıl şəkildə yükləmək - + Add tags Etiket əlavə etmək - + Errors occurred when exporting .torrent files. Check execution log for details. Torrent faylı ixrac olunarkən xətalar baş verdi. Ətraflı məlumat üçün icra olunma jurnalına baxın. - + &Start Resume/start the torrent &Başlatmaq - + Sto&p Stop the torrent &Dayandırmaq - + Force Star&t Force Resume/start the torrent Məcburi başla&tmaq - + &Remove Remove the torrent &Silin - + Download first and last pieces first Öncə İlk və son hissələri endirmək - + Automatic Torrent Management Avtomatik Torrent İdarəetməsi - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category Avtomatik rejim o deməkdir ki, müxtəlif torrent xüsusiyyətləri (məs., saxlama yolu) uyğun kateqoriyalara görə müəyyən ediləcəkdir - + Super seeding mode Super göndərmə rejimi @@ -12262,32 +12351,32 @@ Başqa ad verin və yenidən cəhd edin. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" Python icra faylı tapıldı. Adı:"%1". Versiya: "%2" - + Failed to find Python executable. Path: "%1". Python icra faylını tapmaq mümkün olmadı. Yol: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" PATH mühit dəyişənində `python3` icra faylını tapmaq mümkün olmadı. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" `python` icra faylını PATH mühit dəyişənində tapmaq mümkün olmadı. PATH: "%1" - + Failed to find `python` executable in Windows Registry. `python` icra faylını Windows registrində tapmaq mümkün olmadı. - + Failed to find Python executable Python icra faylını tapmaq mükün olmadı @@ -12379,52 +12468,52 @@ Başqa ad verin və yenidən cəhd edin. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. Sessiya kuki faylına verilmiş bu ad qəbuledilməzdir: "%1". Standart bir ad istifadə edildi. - + Unacceptable file type, only regular file is allowed. Qəbuledilməz fayl növü, yalnız müntəzəm fayllar qəbul edilir. - + Symlinks inside alternative UI folder are forbidden. Alternativ İstifadəçi İnterfeysi daxilində simvolik bağlantılar qadağandır. - + Using built-in WebUI. Daxili Veb İİ istifadə edilir. - + Using custom WebUI. Location: "%1". Xüsusi Veb İİ-nin istifadəsi. Yeri: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. Seçilmiş məkan (%1) üçün Veb İİ tərcüməsi uğurla yükləndi. - + Couldn't load WebUI translation for selected locale (%1). Seçilmiş məkan (%1) üçün Veb İİ tərcüməsini yükləmək mümkün olmadı. - + Missing ':' separator in WebUI custom HTTP header: "%1" Veb İİ fərdi HTTP başlığında ":" ayırıcısı çatışmır: "%1" - + Web server error. %1 Veb server xətası. %1 - + Web server error. Unknown error. Veb server xətası. Naməlum xəta. @@ -12584,4 +12673,4 @@ Başqa ad verin və yenidən cəhd edin. < 1dəq - + \ No newline at end of file diff --git a/src/lang/qbittorrent_be.ts b/src/lang/qbittorrent_be.ts index 76e42bdef..fc2eb1404 100644 --- a/src/lang/qbittorrent_be.ts +++ b/src/lang/qbittorrent_be.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Не ўдалося дадаць торэнт. Крыніца: "%1". Прычына: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Выяўлена спроба паўторнага дадавання наяўнага торэнта. Крыніца: %1. Наяўны торэнт: %2. Вынік: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Прымацаваць акно дадавання торэнта да галоўнага @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Немагчыма прааналізаваць даныя ўзнаўлення: %1 + Немагчыма прааналізаваць даныя ўзнаўлення: %1 Cannot parse torrent info: %1 - Не ўдаецца прааналізаваць звесткі пра торэнт: : %1 + Не ўдаецца прааналізаваць звесткі пра торэнт: : %1 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Торэнт выдалены. Торэнт: «%1» - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Выяўлена спроба паўторнага дадавання наяўнага торэнта. Наяўны торэнт: %1. Вынік: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Кіраванне сілкаваннем знайшло падыходны інтэрфейс D-Bus. Інтэрфейс: %1 + Кіраванне сілкаваннем знайшло падыходны інтэрфейс D-Bus. Інтэрфейс: %1 @@ -3561,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - Памылка кіравання энергаспажываннем. Дзеянне: %1. Памылка: %2 + Памылка кіравання энергаспажываннем. Дзеянне: %1. Памылка: %2 Power management unexpected error. State: %1. Error: %2 - Нечаканая памылка кіравання энергаспажываннем. Стан: %1. Памылка: %2 + Нечаканая памылка кіравання энергаспажываннем. Стан: %1. Памылка: %2 @@ -6148,10 +6140,6 @@ Minimum requirement: %2. Mixed mode Змяшаны рэжым - - Some options are incompatible with the chosen proxy type! - Некаторыя параметры несумяшчальныя з выбраным тыпам проксі! - If checked, hostname lookups are done via the proxy @@ -7124,10 +7112,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication &Аўтэнтыфікацыя - - Info: The password is saved unencrypted - Інфармацыя: пароль будзе захаваны ў незашыфраваным выглядзе - Filter path (.dat, .p2p, .p2b): @@ -8286,32 +8270,6 @@ Those plugins were disabled. Web-спасылка - - PowerManagement - - qBittorrent is active - qBittorrent актыўны - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Кіраванне сілкаваннем знайшло падыходны інтэрфейс D-Bus. Інтэрфейс: %1 - - - Power management error. Did not found suitable D-Bus interface. - Памылка кіравання сілкаваннем. Не знойдзены падыодны інтэрфейс D-Bus. - - - Power management error. Action: %1. Error: %2 - Памылка кіравання энергаспажываннем. Дзеянне: %1. Памылка: %2 - - - Power management unexpected error. State: %1. Error: %2 - Нечаканая памылка кіравання энергаспажываннем. Стан: %1. Памылка: %2 - - PreviewSelectDialog @@ -8855,10 +8813,6 @@ Those plugins were disabled. Item doesn't exist: %1. Элемент не існуе: %1. - - Couldn't move folder into itself. - Немагчыма перамясціць папку саму ў сябе. - Can't move a folder into itself or its subfolders. @@ -8935,7 +8889,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - Канал не існуе: %1. + Канал не існуе: %1. @@ -8948,22 +8902,22 @@ Those plugins were disabled. URL: - Адрас: + Адрас: Refresh interval: - + Інтэрвал абнаўлення: sec - с + с Default - Па змаўчанні + Прадвызначана @@ -9068,14 +9022,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - Змяніць URL канала... - - - Edit feed URL - Змяніць URL канала - Please choose a folder name @@ -9091,14 +9037,6 @@ Those plugins were disabled. New folder Новая папка - - Please type a RSS feed URL - Увядзіце адрас RSS-канала - - - Feed URL: - Адрас канала: - Deletion confirmation diff --git a/src/lang/qbittorrent_bg.ts b/src/lang/qbittorrent_bg.ts index a23e5a61a..172edd98c 100644 --- a/src/lang/qbittorrent_bg.ts +++ b/src/lang/qbittorrent_bg.ts @@ -2175,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Не могат да се предадат данни за продължение: %1 + Не могат да се предадат данни за продължение: %1 Cannot parse torrent info: %1 - Не може да се анализират данни за торент: %1 + Не може да се анализират данни за торент: %1 @@ -7119,10 +7119,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication У&достоверяване - - Info: The password is saved unencrypted - Информация: Паролата е запазена некриптирана - Filter path (.dat, .p2p, .p2b): @@ -8281,13 +8277,6 @@ Those plugins were disabled. Уеб линк - - PowerManagement - - qBittorrent is active - qBittorrent е активен - - PreviewSelectDialog @@ -8920,22 +8909,22 @@ Those plugins were disabled. URL: - URL: + URL: Refresh interval: - + Интервал на опресняване: sec - сек + сек Default - По подразбиране + По подразбиране @@ -9055,14 +9044,6 @@ Those plugins were disabled. New folder Нова папка - - Please type a RSS feed URL - Моля въведете URL на RSS канал - - - Feed URL: - URL на канал: - Deletion confirmation diff --git a/src/lang/qbittorrent_ca.ts b/src/lang/qbittorrent_ca.ts index 8012c9ad0..dddb742e0 100644 --- a/src/lang/qbittorrent_ca.ts +++ b/src/lang/qbittorrent_ca.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" No s'ha pogut afegir el torrent. Font: "%1". Raó: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - S'ha detectat un intent d'afegir un torrent duplicat. Font: %1. Torrent existent: %2. Resultat: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Adjunta el diàleg "Afegeix un torrent nou" a la finestra principal. @@ -2179,13 +2175,13 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Cannot parse resume data: %1 - No es poden analitzar les dades de represa: %1 + No es poden analitzar les dades de represa: %1 Cannot parse torrent info: %1 - No es pot analitzar la informació del torrent: %1 + No es pot analitzar la informació del torrent: %1 @@ -2440,10 +2436,6 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Torrent removed. Torrent: "%1" Torrent suprimit. Torrent: %1 - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - S'ha detectat un intent d'afegir un torrent duplicat. Torrent existent: %1. Resultat: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Power management found suitable D-Bus interface. Interface: %1 - La gestió d'energia ha trobat la interfície D-Bus adequada. Interfície: %1 + La gestió d'energia ha trobat la interfície D-Bus adequada. Interfície: %1 @@ -3561,12 +3553,12 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Power management error. Action: %1. Error: %2 - Error de gestió d'energia. Acció: %1. Error: %2 + Error de gestió d'energia. Acció: %1. Error: %2 Power management unexpected error. State: %1. Error: %2 - Error inesperat de gestió d'energia. Estat: %1. Error: %2 + Error inesperat de gestió d'energia. Estat: %1. Error: %2 @@ -6149,10 +6141,6 @@ Requisit mínim: %2. Mixed mode Mode mixte - - Some options are incompatible with the chosen proxy type! - Algunes opcions són incompatibles amb el tipus d'intermediari triat! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt: filtra "readme1.txt", "readme2.txt" però n A&uthentication A&utenticació - - Info: The password is saved unencrypted - Informació: la contrasenya es desa sense encriptació. - Filter path (.dat, .p2p, .p2b): @@ -8300,32 +8284,6 @@ Aquests connectors s'han inhabilitat. Enllaç web - - PowerManagement - - qBittorrent is active - El qBittorrent està actiu. - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - La gestió d'energia ha trobat la interfície D-Bus adequada. Interfície: %1 - - - Power management error. Did not found suitable D-Bus interface. - Error de gestió d'energia. No s'ha trobat la interfície D-Bus adequada. - - - Power management error. Action: %1. Error: %2 - Error de gestió d'energia. Acció: %1. Error: %2 - - - Power management unexpected error. State: %1. Error: %2 - Error inesperat de gestió d'energia. Estat: %1. Error: %2 - - PreviewSelectDialog @@ -8869,10 +8827,6 @@ Aquests connectors s'han inhabilitat. Item doesn't exist: %1. No existeix l'element %1. - - Couldn't move folder into itself. - No s'ha pogut moure la carpeta a si mateixa. - Can't move a folder into itself or its subfolders. @@ -8949,7 +8903,7 @@ Aquests connectors s'han inhabilitat. Feed doesn't exist: %1. - Feed no existeix: %1. + Feed no existeix: %1. @@ -8962,22 +8916,22 @@ Aquests connectors s'han inhabilitat. URL: - URL: + URL: Refresh interval: - + Interval d'actualització: sec - s + s Default - Per defecte + Per defecte @@ -9082,14 +9036,6 @@ Aquests connectors s'han inhabilitat. Feed options... - - Edit feed URL... - Editar URL de feed... - - - Edit feed URL - Editar URL de feed - Please choose a folder name @@ -9105,14 +9051,6 @@ Aquests connectors s'han inhabilitat. New folder Carpeta nova - - Please type a RSS feed URL - Escriviu l'URL d'un canal d'RSS - - - Feed URL: - URL del canal: - Deletion confirmation diff --git a/src/lang/qbittorrent_cs.ts b/src/lang/qbittorrent_cs.ts index 3f39da392..779e32bbe 100644 --- a/src/lang/qbittorrent_cs.ts +++ b/src/lang/qbittorrent_cs.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Selhalo přidání torrentu. Zdroj: "%1". Důvod: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Rozpoznán pokus o přidání duplicitního torrentu. Zdroj: %1. Stávající torrent: %2. Výsledek: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Připojit dialog "Přidat nový torrent" k hlavnímu oknu @@ -2179,13 +2175,13 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Cannot parse resume data: %1 - Data obnovení nelze analyzovat: %1 + Data obnovení nelze analyzovat: %1 Cannot parse torrent info: %1 - Info torrentu nelze analyzovat: %1 + Info torrentu nelze analyzovat: %1 @@ -2440,10 +2436,6 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Torrent removed. Torrent: "%1" Torrent odebrán. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Rozpoznán pokus o přidání duplicitního torrentu. Stávající torrent: %1. Výsledek: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Power management found suitable D-Bus interface. Interface: %1 - Správa napájení nalezla vyhovující rozhraní D-Bus. Rozhraní: %1 + Správa napájení nalezla vyhovující rozhraní D-Bus. Rozhraní: %1 @@ -3561,12 +3553,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Power management error. Action: %1. Error: %2 - Chyba správy napájení. Akce: %1. Chyba: %2 + Chyba správy napájení. Akce: %1. Chyba: %2 Power management unexpected error. State: %1. Error: %2 - Neočekávaný chyba správy napájení. Stav: %1. Chyba: %2 + Neočekávaný chyba správy napájení. Stav: %1. Chyba: %2 @@ -6149,10 +6141,6 @@ Minimální požadavky: %2 Mixed mode Smíšený režim - - Some options are incompatible with the chosen proxy type! - Některé volby se neslučují s vybraným typem proxy serveru! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale A&uthentication Ověření - - Info: The password is saved unencrypted - Info: Heslo je uloženo nešifrované - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Tyto pluginy byly vypnuty. Webový odkaz - - PowerManagement - - qBittorrent is active - qBittorrent je aktivní - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Správa napájení nalezla vyhovující rozhraní D-Bus. Rozhraní: %1 - - - Power management error. Did not found suitable D-Bus interface. - Chyba správy napájení. Nebylo nalezeno vyhovující rozhraní D-Bus. - - - Power management error. Action: %1. Error: %2 - Chyba správy napájení. Akce: %1. Chyba: %2 - - - Power management unexpected error. State: %1. Error: %2 - Neočekávaný chyba správy napájení. Stav: %1. Chyba: %2 - - PreviewSelectDialog @@ -8867,10 +8825,6 @@ Tyto pluginy byly vypnuty. Item doesn't exist: %1. Položka neexistuje: %1. - - Couldn't move folder into itself. - Nebylo možné přesunout adresář do sebe. - Can't move a folder into itself or its subfolders. @@ -8947,7 +8901,7 @@ Tyto pluginy byly vypnuty. Feed doesn't exist: %1. - Feed neexistuje: %1. + Feed neexistuje: %1. @@ -8960,22 +8914,22 @@ Tyto pluginy byly vypnuty. URL: - URL: + URL: Refresh interval: - + Interval obnovení: sec - sec + sec Default - Výchozí + Výchozí @@ -9080,14 +9034,6 @@ Tyto pluginy byly vypnuty. Feed options... - - Edit feed URL... - Upravit adresu feedu... - - - Edit feed URL - Upravit adresu feedu - Please choose a folder name @@ -9103,14 +9049,6 @@ Tyto pluginy byly vypnuty. New folder Nová složka - - Please type a RSS feed URL - Prosím vložte odkaz RSS feedu - - - Feed URL: - Odkaz feedu - Deletion confirmation diff --git a/src/lang/qbittorrent_da.ts b/src/lang/qbittorrent_da.ts index f36a07116..d5947fe2a 100644 --- a/src/lang/qbittorrent_da.ts +++ b/src/lang/qbittorrent_da.ts @@ -7105,10 +7105,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication &Godkendelse - - Info: The password is saved unencrypted - Info: Adgangskoden gemmes ukrypteret - Filter path (.dat, .p2p, .p2b): @@ -8267,13 +8263,6 @@ Pluginsne blev deaktiveret. Weblink - - PowerManagement - - qBittorrent is active - qBittorrent er aktiv - - PreviewSelectDialog @@ -8906,7 +8895,7 @@ Pluginsne blev deaktiveret. URL: - URL: + URL: @@ -8916,12 +8905,12 @@ Pluginsne blev deaktiveret. sec - sek. + sek. Default - Standard + Standard @@ -9041,14 +9030,6 @@ Pluginsne blev deaktiveret. New folder Ny mappe - - Please type a RSS feed URL - Skriv venligst en URL for RSS-feed - - - Feed URL: - URL for feed: - Deletion confirmation diff --git a/src/lang/qbittorrent_de.ts b/src/lang/qbittorrent_de.ts index f4537ac09..3f9d8d0c8 100644 --- a/src/lang/qbittorrent_de.ts +++ b/src/lang/qbittorrent_de.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Konnte Torrent nicht hinzufügen. Quelle: "%1". Grund: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Das Hinzufügen eines doppelten Torrents wurde erkannt. Quelle: %1. Bestehender Torrent: %2. Ergebnis: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Dialog "Neuen Torrent hinzufügen" an das Hauptfenster anhängen @@ -2179,13 +2175,13 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Cannot parse resume data: %1 - Fortsetzungsdaten können nicht analysiert werden: %1 + Fortsetzungsdaten können nicht analysiert werden: %1 Cannot parse torrent info: %1 - Torrent-Infos können nicht analysiert werden: %1 + Torrent-Infos können nicht analysiert werden: %1 @@ -2440,10 +2436,6 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Torrent removed. Torrent: "%1" Torrent entfernt. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Das Hinzufügen eines doppelten Torrents wurde erkannt. Bestehender Torrent: %1. Ergebnis: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Power management found suitable D-Bus interface. Interface: %1 - Das Power Management hat eine geeignete D-Bus-Schnittstelle gefunden. Schnittstelle: %1 + Das Power Management hat eine geeignete D-Bus-Schnittstelle gefunden. Schnittstelle: %1 @@ -3561,12 +3553,12 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Power management error. Action: %1. Error: %2 - Fehler im Power Management. Aktion: %1. Fehler: %2 + Fehler im Power Management. Aktion: %1. Fehler: %2 Power management unexpected error. State: %1. Error: %2 - Unerwarteter Fehler im Power Management. Status: %1. Fehler: %2 + Unerwarteter Fehler im Power Management. Status: %1. Fehler: %2 @@ -6149,10 +6141,6 @@ Mindestens erforderlich ist: %2. Mixed mode Gemischter Modus - - Some options are incompatible with the chosen proxy type! - Einige Optionen sind mit dem gewählten Proxy-Typ nicht kompatibel! - If checked, hostname lookups are done via the proxy @@ -7138,10 +7126,6 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt', aber A&uthentication A&uthentifizierung - - Info: The password is saved unencrypted - Info: Das Passwort wird unverschlüsselt gespeichert! - Filter path (.dat, .p2p, .p2b): @@ -8301,32 +8285,6 @@ Diese Plugins wurden jetzt aber deaktiviert. Web-Link - - PowerManagement - - qBittorrent is active - qBittorrent ist aktiv - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Das Power Management hat eine geeignete D-Bus-Schnittstelle gefunden. Schnittstelle: %1 - - - Power management error. Did not found suitable D-Bus interface. - Fehler im Power Management. Es wurde keine geeignete D-Bus-Schnittstelle gefunden. - - - Power management error. Action: %1. Error: %2 - Fehler im Power Management. Aktion: %1. Fehler: %2 - - - Power management unexpected error. State: %1. Error: %2 - Unerwarteter Fehler im Power Management. Status: %1. Fehler: %2 - - PreviewSelectDialog @@ -8870,10 +8828,6 @@ Diese Plugins wurden jetzt aber deaktiviert. Item doesn't exist: %1. Das existiert nicht: %1. - - Couldn't move folder into itself. - Verzeichnis kann nicht in sich selbst verschoben werden. - Can't move a folder into itself or its subfolders. @@ -8950,7 +8904,7 @@ Diese Plugins wurden jetzt aber deaktiviert. Feed doesn't exist: %1. - Feed existiert nicht: %1. + Feed existiert nicht: %1. @@ -8963,22 +8917,22 @@ Diese Plugins wurden jetzt aber deaktiviert. URL: - URL: + URL: Refresh interval: - + Aktualisierungsintervall: sec - Sek. + Sek. Default - Standard + Standard @@ -9083,14 +9037,6 @@ Diese Plugins wurden jetzt aber deaktiviert. Feed options... - - Edit feed URL... - Feed-URL editieren ... - - - Edit feed URL - Feed-URL editieren - Please choose a folder name @@ -9106,14 +9052,6 @@ Diese Plugins wurden jetzt aber deaktiviert. New folder Neues Verzeichnis - - Please type a RSS feed URL - Bitte eine RSS-Feed Adresse eingeben - - - Feed URL: - Feed-URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_el.ts b/src/lang/qbittorrent_el.ts index c70854cff..6837132e0 100644 --- a/src/lang/qbittorrent_el.ts +++ b/src/lang/qbittorrent_el.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Αποτυχία προσθήκης torrent. Πηγή: "%1". Αιτία: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Εντοπίστηκε μια προσπάθεια προσθήκης διπλού torrent. Πηγή: %1. Υπάρχον torrent: %2. Αποτέλεσμα: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Επισυνάψτε το παράθυρο διαλόγου "Προσθήκη νέου torrent" στο κύριο παράθυρο @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Δεν είναι δυνατή η ανάλυση των δεδομένων συνέχισης: %1 + Δεν είναι δυνατή η ανάλυση των δεδομένων συνέχισης: %1 Cannot parse torrent info: %1 - Δεν είναι δυνατή η ανάλυση των πληροφοριών torrent: %1 + Δεν είναι δυνατή η ανάλυση των πληροφοριών torrent: %1 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Το torrent αφαιρέθηκε. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Εντοπίστηκε μια προσπάθεια προσθήκης διπλότυπου torrent. Υπάρχον torrent: %1. Αποτέλεσμα: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Η διαχείριση ενέργειας βρήκε κατάλληλη διεπαφή D-Bus. Διασύνδεση: %1 + Η διαχείριση ενέργειας βρήκε κατάλληλη διεπαφή D-Bus. Διασύνδεση: %1 @@ -3561,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - Σφάλμα διαχείρισης ενέργειας. Δράση: %1. Σφάλμα: %2 + Σφάλμα διαχείρισης ενέργειας. Δράση: %1. Σφάλμα: %2 Power management unexpected error. State: %1. Error: %2 - Μη αναμενόμενο σφάλμα διαχείρισης ενέργειας. Πολιτεία: %1. Σφάλμα: %2 + Μη αναμενόμενο σφάλμα διαχείρισης ενέργειας. Πολιτεία: %1. Σφάλμα: %2 @@ -6148,10 +6140,6 @@ Minimum requirement: %2. Mixed mode Μικτή λειτουργία - - Some options are incompatible with the chosen proxy type! - Ορισμένες επιλογές δεν είναι συμβατές με τον επιλεγμένο τύπο proxy! - If checked, hostname lookups are done via the proxy @@ -7135,10 +7123,6 @@ readme[0-9].txt: φίλτρο για «readme1.txt», «readme2.txt» αλλά A&uthentication Έλεγχος &Ταυτότητας - - Info: The password is saved unencrypted - Πληροφορία: Ο κωδικός πρόσβασης έχει αποθηκευθεί μη κρυπτογραφημένος - Filter path (.dat, .p2p, .p2b): @@ -8297,32 +8281,6 @@ Those plugins were disabled. Σύνδεσμος στο web - - PowerManagement - - qBittorrent is active - Το qBittorrent είναι ενεργό - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Η διαχείριση ενέργειας βρήκε κατάλληλη διεπαφή D-Bus. Διασύνδεση: %1 - - - Power management error. Did not found suitable D-Bus interface. - Σφάλμα διαχείρισης ενέργειας. Δεν βρέθηκε κατάλληλη διασύνδεση D-Bus. - - - Power management error. Action: %1. Error: %2 - Σφάλμα διαχείρισης ενέργειας. Δράση: %1. Σφάλμα: %2 - - - Power management unexpected error. State: %1. Error: %2 - Μη αναμενόμενο σφάλμα διαχείρισης ενέργειας. Πολιτεία: %1. Σφάλμα: %2 - - PreviewSelectDialog @@ -8866,10 +8824,6 @@ Those plugins were disabled. Item doesn't exist: %1. Το στοιχείο δεν υπάρχει: %1. - - Couldn't move folder into itself. - Δεν ήταν δυνατή η μετακίνηση του φακέλου στον εαυτό του. - Can't move a folder into itself or its subfolders. @@ -8946,7 +8900,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - Η ροή δεν υπάρχει: %1. + Η ροή δεν υπάρχει: %1. @@ -8959,22 +8913,22 @@ Those plugins were disabled. URL: - URL: + URL: Refresh interval: - + Χρονικό διάστημα ανανέωσης sec - sec + sec Default - Προεπιλογή + Προεπιλογή @@ -9079,14 +9033,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - Επεξεργασία URL ροής... - - - Edit feed URL - Επεξεργασία URL ροής - Please choose a folder name @@ -9102,14 +9048,6 @@ Those plugins were disabled. New folder Νέος φάκελος - - Please type a RSS feed URL - Παρακαλώ εισάγετε ένα URL ροής RSS - - - Feed URL: - URL ροής: - Deletion confirmation diff --git a/src/lang/qbittorrent_en_AU.ts b/src/lang/qbittorrent_en_AU.ts index f7ee9ffa6..a4f8e49d1 100644 --- a/src/lang/qbittorrent_en_AU.ts +++ b/src/lang/qbittorrent_en_AU.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Attach "Add new torrent" dialog to main window @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Cannot parse resume data: %1 + Cannot parse resume data: %1 Cannot parse torrent info: %1 - Cannot parse torrent info: %1 + Cannot parse torrent info: %1 @@ -3545,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Power management found suitable D-Bus interface. Interface: %1 + Power management found suitable D-Bus interface. Interface: %1 @@ -3557,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - Power management error. Action: %1. Error: %2 + Power management error. Action: %1. Error: %2 Power management unexpected error. State: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 + Power management unexpected error. State: %1. Error: %2 @@ -6144,10 +6140,6 @@ Minimum requirement: %2. Mixed mode Mixed mode - - Some options are incompatible with the chosen proxy type! - Some options are incompatible with the chosen proxy type! - If checked, hostname lookups are done via the proxy @@ -7131,10 +7123,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication A&uthentication - - Info: The password is saved unencrypted - Info: The password is saved unencrypted - Filter path (.dat, .p2p, .p2b): @@ -8293,32 +8281,6 @@ Those plugins were disabled. Web link - - PowerManagement - - qBittorrent is active - qBittorrent is active - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Power management found suitable D-Bus interface. Interface: %1 - - - Power management error. Did not found suitable D-Bus interface. - Power management error. Did not found suitable D-Bus interface. - - - Power management error. Action: %1. Error: %2 - Power management error. Action: %1. Error: %2 - - - Power management unexpected error. State: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 - - PreviewSelectDialog @@ -8862,10 +8824,6 @@ Those plugins were disabled. Item doesn't exist: %1. Item doesn't exist: %1. - - Couldn't move folder into itself. - Couldn't move folder into itself. - Can't move a folder into itself or its subfolders. @@ -8942,7 +8900,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - Feed doesn't exist: %1. + Feed doesn't exist: %1. @@ -8955,22 +8913,22 @@ Those plugins were disabled. URL: - URL: + URL: Refresh interval: - + Refresh interval: sec - sec + sec Default - Default + Default @@ -9075,14 +9033,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - Edit feed URL... - - - Edit feed URL - Edit feed URL - Please choose a folder name @@ -9098,14 +9048,6 @@ Those plugins were disabled. New folder New folder - - Please type a RSS feed URL - Please type a RSS feed URL - - - Feed URL: - Feed URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_en_GB.ts b/src/lang/qbittorrent_en_GB.ts index 333ed2a6a..eb34cec27 100644 --- a/src/lang/qbittorrent_en_GB.ts +++ b/src/lang/qbittorrent_en_GB.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Merging of trackers is disabled @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Cannot parse resume data: %1 + Cannot parse resume data: %1 Cannot parse torrent info: %1 - Cannot parse torrent info: %1 + Cannot parse torrent info: %1 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Torrent removed. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Power management found suitable D-Bus interface. Interface: %1 + Power management found suitable D-Bus interface. Interface: %1 @@ -3561,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - Power management error. Action: %1. Error: %2 + Power management error. Action: %1. Error: %2 Power management unexpected error. State: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 + Power management unexpected error. State: %1. Error: %2 @@ -6149,10 +6141,6 @@ Minimum requirement: %2. Mixed mode Mixed mode - - Some options are incompatible with the chosen proxy type! - Some options are incompatible with the chosen proxy type! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication A&uthentication - - Info: The password is saved unencrypted - Info: The password is saved unencrypted - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Those plugins were disabled. Web link - - PowerManagement - - qBittorrent is active - qBittorrent is active - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Power management found suitable D-Bus interface. Interface: %1 - - - Power management error. Did not found suitable D-Bus interface. - Power management error. Did not found suitable D-Bus interface. - - - Power management error. Action: %1. Error: %2 - Power management error. Action: %1. Error: %2 - - - Power management unexpected error. State: %1. Error: %2 - Power management unexpected error. State: %1. Error: %2 - - PreviewSelectDialog @@ -8867,10 +8825,6 @@ Those plugins were disabled. Item doesn't exist: %1. Item doesn't exist: %1. - - Couldn't move folder into itself. - Couldn't move folder into itself. - Can't move a folder into itself or its subfolders. @@ -8947,7 +8901,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - Feed doesn't exist: %1. + Feed doesn't exist: %1. @@ -8960,22 +8914,22 @@ Those plugins were disabled. URL: - URL: + URL: Refresh interval: - + Refresh interval: sec - sec + sec Default - Default + Default @@ -9080,14 +9034,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - Edit feed URL... - - - Edit feed URL - Edit feed URL - Please choose a folder name @@ -9103,14 +9049,6 @@ Those plugins were disabled. New folder New folder - - Please type a RSS feed URL - Please type a RSS feed URL - - - Feed URL: - Feed URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_eo.ts b/src/lang/qbittorrent_eo.ts index ae9e70335..8c2993353 100644 --- a/src/lang/qbittorrent_eo.ts +++ b/src/lang/qbittorrent_eo.ts @@ -7099,10 +7099,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication - - Info: The password is saved unencrypted - Informo: La pasvorto estas konservita senĉifrite - Filter path (.dat, .p2p, .p2b): @@ -8261,13 +8257,6 @@ Tiuj kromprogramoj malebliĝis. TTT-ligilo - - PowerManagement - - qBittorrent is active - qBittorrent estas aktiva - - PreviewSelectDialog @@ -8887,7 +8876,7 @@ Tiuj kromprogramoj malebliĝis. Feed doesn't exist: %1. - Fluo ne ekzistas: %1. + Fluo ne ekzistas: %1. @@ -8900,7 +8889,7 @@ Tiuj kromprogramoj malebliĝis. URL: - URL-adreso: + URL-adreso: @@ -8910,12 +8899,12 @@ Tiuj kromprogramoj malebliĝis. sec - sek + sek Default - Defaŭlto + Defaŭlto diff --git a/src/lang/qbittorrent_es.ts b/src/lang/qbittorrent_es.ts index d8874bfc6..f972a67e2 100644 --- a/src/lang/qbittorrent_es.ts +++ b/src/lang/qbittorrent_es.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Error al agregar el torrent. Fuente: "%1". Razón: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Se a detectado un intento de agregar un torrent duplicado. Origen: %1. Torrent existente: %2. Resultado: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Adjunte el cuadro de diálogo "Añadir nuevo torrent" a la ventana principal @@ -2179,13 +2175,13 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Cannot parse resume data: %1 - No se puede analizar los datos de reanudación: %1 + No se puede analizar los datos de reanudación: %1 Cannot parse torrent info: %1 - No se puede analizar la información del torrent: %1 + No se puede analizar la información del torrent: %1 @@ -2440,10 +2436,6 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Torrent removed. Torrent: "%1" Torrent eliminado. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Detectado un intento de añadir un torrent duplicado. Torrent existente: %1. Resultado: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Power management found suitable D-Bus interface. Interface: %1 - El administrador de Energía encontró una interfaz D-Bus adecuada. Interfaz: %1 + El administrador de Energía encontró una interfaz D-Bus adecuada. Interfaz: %1 @@ -3561,12 +3553,12 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Power management error. Action: %1. Error: %2 - Error de administración de energía. Acción: %1. Error: %2 + Error de administración de energía. Acción: %1. Error: %2 Power management unexpected error. State: %1. Error: %2 - Error inesperado en la administración de energía. Estado: %1. Error: %2 + Error inesperado en la administración de energía. Estado: %1. Error: %2 @@ -6150,10 +6142,6 @@ Requisito mínimo: %2. Mixed mode Modo mixto - - Some options are incompatible with the chosen proxy type! - ¡Algunas opciones son incompatibles con el tipo de proxy elegido! - If checked, hostname lookups are done via the proxy @@ -7139,10 +7127,6 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no A&uthentication Autenticación - - Info: The password is saved unencrypted - Info: La contraseña se guarda sin cifrar - Filter path (.dat, .p2p, .p2b): @@ -8300,32 +8284,6 @@ Those plugins were disabled. Enlace web - - PowerManagement - - qBittorrent is active - qBittorrent está activo - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - El administrador de Energía encontró una interfaz D-Bus adecuada. Interfaz: %1 - - - Power management error. Did not found suitable D-Bus interface. - Error de administración de energía. No se encontró la interfaz D-Bus adecuada. - - - Power management error. Action: %1. Error: %2 - Error de administración de energía. Acción: %1. Error: %2 - - - Power management unexpected error. State: %1. Error: %2 - Error inesperado en la administración de energía. Estado: %1. Error: %2 - - PreviewSelectDialog @@ -8869,10 +8827,6 @@ Those plugins were disabled. Item doesn't exist: %1. El item no existe: %1. - - Couldn't move folder into itself. - No se pudo mover la carpeta a sí misma. - Can't move a folder into itself or its subfolders. @@ -8949,7 +8903,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - El feed no existe %1. + El feed no existe %1. @@ -8962,22 +8916,22 @@ Those plugins were disabled. URL: - URL: + URL: Refresh interval: - + Intervalo de actualización: sec - seg + seg Default - Por defecto + Por defecto @@ -9082,14 +9036,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - Guardar URL de feed... - - - Edit feed URL - Editar URL de feed - Please choose a folder name @@ -9105,14 +9051,6 @@ Those plugins were disabled. New folder Nueva carpeta - - Please type a RSS feed URL - Por favor escribe una URL de un Canal RSS - - - Feed URL: - URL del canal: - Deletion confirmation diff --git a/src/lang/qbittorrent_et.ts b/src/lang/qbittorrent_et.ts index f06adebbc..cb42d9a1d 100644 --- a/src/lang/qbittorrent_et.ts +++ b/src/lang/qbittorrent_et.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Nurjus torrenti lisamine. Allikas: "%1". Selgitus: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Tuvastati katse lisada duplikaat torrent. Allikas: %1. Olemasolev torrent: %2. Tulemus: %3 - Merging of trackers is disabled @@ -2118,7 +2114,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Couldn't save torrent resume data to '%1'. Error: %2. - Ei õnnestunud salvestada torrendi jätkamise andmeid '%1'. Viga: %2. + Ei saanud salvestada torrenti jätkamise andmeid '%1'. Viga: %2. @@ -2218,7 +2214,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Couldn't delete resume data of torrent '%1'. Error: %2 - Ei õnnestunud kustutada torrenti '%1' jätkamise andmeid. Viga: %2 + Ei saanud kustutada torrenti '%1' jätkamise andmeid. Viga: %2 @@ -6144,10 +6140,6 @@ Vajalik on vähemalt: %2. Mixed mode - - Some options are incompatible with the chosen proxy type! - Osad valikud ei ühildu valitud proksi tüübiga! - If checked, hostname lookups are done via the proxy @@ -7113,10 +7105,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication A&udentimine - - Info: The password is saved unencrypted - Info: See parool on salvestatud krüpteeringuta - Filter path (.dat, .p2p, .p2b): @@ -8275,13 +8263,6 @@ Need pistikprogrammid olid välja lülitatud. Veebi link - - PowerManagement - - qBittorrent is active - qBittorrent on aktiivne - - PreviewSelectDialog @@ -8858,7 +8839,7 @@ Need pistikprogrammid olid välja lülitatud. Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - Ei saanud RSS-voogu laadida. Voog: "%1". Põhjus: UID on kehtetu. + Ei saanud RSS-voogu laadida. Voog: "%1". Selgitus: UID on kehtetu. @@ -8901,7 +8882,7 @@ Need pistikprogrammid olid välja lülitatud. Feed doesn't exist: %1. - Voogu pole olemas: %1. + Voogu pole olemas: %1. @@ -8914,22 +8895,22 @@ Need pistikprogrammid olid välja lülitatud. URL: - URL + URL Refresh interval: - + Värskendamise intervall: sec - sek + sek Default - Vaikimisi + Vaikimisi @@ -9034,14 +9015,6 @@ Need pistikprogrammid olid välja lülitatud. Feed options... - - Edit feed URL... - Muuda voogu URLi... - - - Edit feed URL - Muuda voogu URLi - Please choose a folder name @@ -9057,14 +9030,6 @@ Need pistikprogrammid olid välja lülitatud. New folder Uus kaust - - Please type a RSS feed URL - Palun sisesta RSS-voo URL - - - Feed URL: - Feedi URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_eu.ts b/src/lang/qbittorrent_eu.ts index 4a49c808a..d57bfcc7c 100644 --- a/src/lang/qbittorrent_eu.ts +++ b/src/lang/qbittorrent_eu.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Torrenta gehitzeak huts egin du. Irurria: "%1". Arrazoia: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Bikoiztutako torrent bat gehitzeko saiakera bat detektatu da. Iturria: %1. Dagoen torrenta: %2. Emaitza: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Erantsi "Gehitu torrent berria" elkarrizketa-koadroa leiho nagusian @@ -2179,13 +2175,13 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Cannot parse resume data: %1 - Ezin dira berrekiteko datuak analizatu: %1 + Ezin dira berrekiteko datuak analizatu: %1 Cannot parse torrent info: %1 - Ezin da torrentaren informazioa analizatu: %1 + Ezin da torrentaren informazioa analizatu: %1 @@ -2440,10 +2436,6 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Torrent removed. Torrent: "%1" Torrenta kenduta. Torrenta: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Bikoiztutako torrent bat gehitzeko saiakera bat detektatu da. Dagoen torrenta: %1. Emaitza: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Power management found suitable D-Bus interface. Interface: %1 - Energia-kudeaketak D-Bus interfaze egokia aurkitu du. Interfazea: %1 + Energia-kudeaketak D-Bus interfaze egokia aurkitu du. Interfazea: %1 @@ -3561,12 +3553,12 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Power management error. Action: %1. Error: %2 - Energia-kudeaketa errorea. Ekintza: %1. Errorea: %2 + Energia-kudeaketa errorea. Ekintza: %1. Errorea: %2 Power management unexpected error. State: %1. Error: %2 - Energia-kudeaketan ustekabeko errorea. Egoera: %1. Errorea: %2 + Energia-kudeaketan ustekabeko errorea. Egoera: %1. Errorea: %2 @@ -6148,10 +6140,6 @@ Beharrezko gutxiena: %2. Mixed mode Modu mistoa - - Some options are incompatible with the chosen proxy type! - Aukera batzuk ez dira bateragarriak aukeratutako proxy-motarekin! - If checked, hostname lookups are done via the proxy @@ -7135,10 +7123,6 @@ readme[0-9].txt: iragazi 'readme1.txt', 'readme2.txt' baina A&uthentication E&giaztapena - - Info: The password is saved unencrypted - Argibidea: Sarhitza enkriptatu gabe gordetzen da - Filter path (.dat, .p2p, .p2b): @@ -8297,32 +8281,6 @@ Plugin hauek ezgaituta daude. Web lotura - - PowerManagement - - qBittorrent is active - qBittorrent ekinean dago - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Energia-kudeaketak D-Bus interfaze egokia aurkitu du. Interfazea: %1 - - - Power management error. Did not found suitable D-Bus interface. - Energia-kudeaketako errorea. Ez da aurkitu D-Bus interfaze egokia. - - - Power management error. Action: %1. Error: %2 - Energia-kudeaketa errorea. Ekintza: %1. Errorea: %2 - - - Power management unexpected error. State: %1. Error: %2 - Energia-kudeaketan ustekabeko errorea. Egoera: %1. Errorea: %2 - - PreviewSelectDialog @@ -8866,10 +8824,6 @@ Plugin hauek ezgaituta daude. Item doesn't exist: %1. Gaia ez dago: %1 - - Couldn't move folder into itself. - Ezin izan da karpeta bere burura mugitu. - Can't move a folder into itself or its subfolders. @@ -8946,7 +8900,7 @@ Plugin hauek ezgaituta daude. Feed doesn't exist: %1. - Jarioa ez da existitzen: %1. + Jarioa ez da existitzen: %1. @@ -8959,22 +8913,22 @@ Plugin hauek ezgaituta daude. URL: - URL-a: + URL-a: Refresh interval: - + Freskatze-tartea sec - seg + seg Default - + Berezkoa @@ -9079,14 +9033,6 @@ Plugin hauek ezgaituta daude. Feed options... - - Edit feed URL... - Editatu jarioaren URL-a... - - - Edit feed URL - Editatu jarioaren URL-a - Please choose a folder name @@ -9102,14 +9048,6 @@ Plugin hauek ezgaituta daude. New folder Agiritegi berria - - Please type a RSS feed URL - Mesedez idatzi RSS jario URL bat - - - Feed URL: - Kopiatu harpidetza URL-a - Deletion confirmation diff --git a/src/lang/qbittorrent_fa.ts b/src/lang/qbittorrent_fa.ts index 69acf54e9..1bf14beeb 100644 --- a/src/lang/qbittorrent_fa.ts +++ b/src/lang/qbittorrent_fa.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" شکست در افزودن تورنت. منبع: "%1". دلیل: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - تلاش برای افزودن یک تورنت تکراری شناسایی شد. منبع: %1. تورنت موجود: %2. نتیجه: %3 - Merging of trackers is disabled @@ -7101,10 +7097,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication - - Info: The password is saved unencrypted - اطلاعات: کلمه عبور بدون رمزگذاری ذخیره شده - Filter path (.dat, .p2p, .p2b): @@ -8263,13 +8255,6 @@ Those plugins were disabled. پیوند وب - - PowerManagement - - qBittorrent is active - کیوبیت‌تورنت فعال است - - PreviewSelectDialog @@ -8902,22 +8887,22 @@ Those plugins were disabled. URL: - آدرس: + آدرس: Refresh interval: - + فاصله بازخوانی: sec - ثانیه + ثانیه Default - پیش فرض + پیش فرض @@ -9037,14 +9022,6 @@ Those plugins were disabled. New folder پوشه جدید - - Please type a RSS feed URL - لطفا آدرس فید را تایپ کنید - - - Feed URL: - آدرس فید: - Deletion confirmation diff --git a/src/lang/qbittorrent_fi.ts b/src/lang/qbittorrent_fi.ts index b207523fb..c7923a044 100644 --- a/src/lang/qbittorrent_fi.ts +++ b/src/lang/qbittorrent_fi.ts @@ -2175,13 +2175,13 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Cannot parse resume data: %1 - Jatkotietoja ei voida jäsentää: %1 + Jatkotietoja ei voida jäsentää: %1 Cannot parse torrent info: %1 - Torrentin tietoja ei voida jäsentää: %1 + Torrentin tietoja ei voida jäsentää: %1 @@ -7104,10 +7104,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication T&unnistautuminen - - Info: The password is saved unencrypted - Tärkeää: Salasana tallennetaan salaamattomana - Filter path (.dat, .p2p, .p2b): @@ -8266,13 +8262,6 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Web-linkki - - PowerManagement - - qBittorrent is active - qBittorrent on käynnissä - - PreviewSelectDialog @@ -8892,7 +8881,7 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Feed doesn't exist: %1. - Syötettä ei ole olemassa: %1 + Syötettä ei ole olemassa: %1 @@ -8905,22 +8894,22 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. URL: - URL: + URL: Refresh interval: - + Päivitystiheys: sec - s + s Default - Oletus + Oletus @@ -9025,14 +9014,6 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. Feed options... - - Edit feed URL... - Muokkaa syötteen osoitetta... - - - Edit feed URL - Muokkaa syötteen osoitetta - Please choose a folder name @@ -9048,14 +9029,6 @@ Valitut alkuperäisliitännäiset ovat poistettu käytöstä. New folder Uusi kansio - - Please type a RSS feed URL - Anna RSS-syötteen verkko-osoite. - - - Feed URL: - Syötteen osoite: - Deletion confirmation diff --git a/src/lang/qbittorrent_fr.ts b/src/lang/qbittorrent_fr.ts index b4d6bdc9a..1ae949511 100644 --- a/src/lang/qbittorrent_fr.ts +++ b/src/lang/qbittorrent_fr.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Échec de l'ajout du torrent. Source : "%1". Raison : "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Détection d'une tentative d'ajouter un torrent en double. Source : %1. Torrent existant : %2. Résultat : %3 - Merging of trackers is disabled @@ -1157,7 +1153,7 @@ Attach "Add new torrent" dialog to main window - + Ancrer la boîte de dialogue « Ajouter un nouveau torrent » à la fenêtre principale @@ -2180,13 +2176,13 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Cannot parse resume data: %1 - Impossible d'analyser les données de reprise : %1 + Impossible d'analyser les données de reprise : %1 Cannot parse torrent info: %1 - Impossible d'analyser l'information du torrent : %1 + Impossible d'analyser l'information du torrent : %1 @@ -2441,10 +2437,6 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Torrent removed. Torrent: "%1" Torrent retiré. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Détection d'une tentative d'ajouter un torrent en double. Torrent existant : %1. Résultat : %2 - Merging of trackers is disabled @@ -3550,7 +3542,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Power management found suitable D-Bus interface. Interface: %1 - La gestion de l'alimentation a trouvé une interface D-Bus approprié. Interface : %1 + La gestion de l'alimentation a trouvé une interface D-Bus approprié. Interface : %1 @@ -3562,12 +3554,12 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Power management error. Action: %1. Error: %2 - Erreur de la gestion de l'alimentation. Action : %1. Erreur : %2 + Erreur de la gestion de l'alimentation. Action : %1. Erreur : %2 Power management unexpected error. State: %1. Error: %2 - Erreur Inattendue de la gestion de l'alimentation. Etat : %1. Erreur : %2 + Erreur Inattendue de la gestion de l'alimentation. Etat : %1. Erreur : %2 @@ -6150,10 +6142,6 @@ Configuration minimale requise : %2. Mixed mode Mode mixte - - Some options are incompatible with the chosen proxy type! - Certaines options sont incompatibles avec le type de proxy choisi ! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt : filtre 'readme1.txt' et 'readme2.txt', mai A&uthentication A&uthentification - - Info: The password is saved unencrypted - Info : le mot de passe est enregistré en texte clair - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Ces derniers ont été désactivés. Lien Web - - PowerManagement - - qBittorrent is active - qBitTorrent est actif - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - La gestion de l'alimentation a trouvé une interface D-Bus approprié. Interface : %1 - - - Power management error. Did not found suitable D-Bus interface. - Erreur de la gestion de l'alimentation. Interface D-Bus appropriée non trouvée. - - - Power management error. Action: %1. Error: %2 - Erreur de la gestion de l'alimentation. Action : %1. Erreur : %2 - - - Power management unexpected error. State: %1. Error: %2 - Erreur Inattendue de la gestion de l'alimentation. Etat : %1. Erreur : %2 - - PreviewSelectDialog @@ -8867,10 +8825,6 @@ Ces derniers ont été désactivés. Item doesn't exist: %1. L'élément n'existe pas : %1. - - Couldn't move folder into itself. - Impossible de déplacer le dossier vers lui-même. - Can't move a folder into itself or its subfolders. @@ -8947,7 +8901,7 @@ Ces derniers ont été désactivés. Feed doesn't exist: %1. - Flux inexistant : %1. + Flux inexistant : %1. @@ -8960,22 +8914,22 @@ Ces derniers ont été désactivés. URL: - URL : + URL : Refresh interval: - + Intervalle d'actualisation sec - sec. + sec. Default - Par défaut + Par défaut @@ -9080,14 +9034,6 @@ Ces derniers ont été désactivés. Feed options... - - Edit feed URL... - Éditer l'URL du flux… - - - Edit feed URL - Éditer l'URL du flux - Please choose a folder name @@ -9103,14 +9049,6 @@ Ces derniers ont été désactivés. New folder Nouveau dossier - - Please type a RSS feed URL - Veuillez entrer une URL de flux RSS - - - Feed URL: - URL du flux : - Deletion confirmation diff --git a/src/lang/qbittorrent_gl.ts b/src/lang/qbittorrent_gl.ts index 606f78ced..5588765b6 100644 --- a/src/lang/qbittorrent_gl.ts +++ b/src/lang/qbittorrent_gl.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Produciuse un erro ao engadir o torrent. Fonte: "%1". Motivo: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detectouse un intento de engadir un torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Engade o diálogo "Engadir novo torrent" á xanela principal @@ -2179,13 +2175,13 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Cannot parse resume data: %1 - Non se puideron entender os datos de continuación: %1 + Non se puideron entender os datos de continuación: %1 Cannot parse torrent info: %1 - Non se puido entender a información do torrent: %1 + Non se puido entender a información do torrent: %1 @@ -2440,10 +2436,6 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Torrent removed. Torrent: "%1" Eliminouse o torrent. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Detectouse un intento de engadir un torrent duplicado. Torrent existente: %1. Resultado: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Power management found suitable D-Bus interface. Interface: %1 - A xestión de enerxía atopou a interface D-Bus adecuada. Interface: %1 + A xestión de enerxía atopou a interface D-Bus adecuada. Interface: %1 @@ -3561,12 +3553,12 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Power management error. Action: %1. Error: %2 - Erro de xestión de enerxía. Acción: %1. Erro: %2 + Erro de xestión de enerxía. Acción: %1. Erro: %2 Power management unexpected error. State: %1. Error: %2 - Erro inesperado na xestión de enerxía. Estado: %1. Erro: %2 + Erro inesperado na xestión de enerxía. Estado: %1. Erro: %2 @@ -6148,10 +6140,6 @@ Requirimento mínimo: %2. Mixed mode Modo mixto - - Some options are incompatible with the chosen proxy type! - Algunhas opcións son incompatibles co tipo de proxy escollido! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt' pero no A&uthentication A&utenticación - - Info: The password is saved unencrypted - Información: o contrasinal gárdase sen cifrar - Filter path (.dat, .p2p, .p2b): @@ -8299,32 +8283,6 @@ Desactiváronse estes engadidos. Ligazón web - - PowerManagement - - qBittorrent is active - O qBittorrent está activo - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - A xestión de enerxía atopou a interface D-Bus adecuada. Interface: %1 - - - Power management error. Did not found suitable D-Bus interface. - Erro de xestión de enerxía. Non se atopou a interface D-Bus adecuada. - - - Power management error. Action: %1. Error: %2 - Erro de xestión de enerxía. Acción: %1. Erro: %2 - - - Power management unexpected error. State: %1. Error: %2 - Erro inesperado na xestión de enerxía. Estado: %1. Erro: %2 - - PreviewSelectDialog @@ -8868,10 +8826,6 @@ Desactiváronse estes engadidos. Item doesn't exist: %1. O elemento non existe: %1. - - Couldn't move folder into itself. - Non se puido mover o cartafol dentro de si mesmo. - Can't move a folder into itself or its subfolders. @@ -8948,7 +8902,7 @@ Desactiváronse estes engadidos. Feed doesn't exist: %1. - O feed non existe: %1. + O feed non existe: %1. @@ -8961,22 +8915,22 @@ Desactiváronse estes engadidos. URL: - URL: + URL: Refresh interval: - + Intervalo de actualización: sec - s + s Default - Predeterminado + Predeterminado @@ -9081,14 +9035,6 @@ Desactiváronse estes engadidos. Feed options... - - Edit feed URL... - Editar URL do feed... - - - Edit feed URL - Editar URL do feed - Please choose a folder name @@ -9104,14 +9050,6 @@ Desactiváronse estes engadidos. New folder Cartafol novo - - Please type a RSS feed URL - Escriba unha URL de fonte RSS - - - Feed URL: - URL da fonte: - Deletion confirmation diff --git a/src/lang/qbittorrent_he.ts b/src/lang/qbittorrent_he.ts index 4892d27c2..a195c1105 100644 --- a/src/lang/qbittorrent_he.ts +++ b/src/lang/qbittorrent_he.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - ניסיון להוסיף טורנט כפול התגלה. מקור: %1. טורנט קיים: %2. תוצאה: %3 - Merging of trackers is disabled @@ -7114,10 +7110,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication &אימות - - Info: The password is saved unencrypted - מידע: הסיסמה נשמרת באופן בלתי מוצפן - Filter path (.dat, .p2p, .p2b): @@ -8276,13 +8268,6 @@ Those plugins were disabled. קישור רשת - - PowerManagement - - qBittorrent is active - qBittorrent פעיל - - PreviewSelectDialog @@ -8915,22 +8900,22 @@ Those plugins were disabled. URL: - כתובת: + כתובת: Refresh interval: - + מרווח ריענון: sec - שניות + שניות Default - ברירת מחדל + ברירת מחדל @@ -9035,14 +9020,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - ערוך כתובת הזנה… - - - Edit feed URL - ערוך כתובת הזנה - Please choose a folder name @@ -9058,14 +9035,6 @@ Those plugins were disabled. New folder תיקייה חדשה - - Please type a RSS feed URL - אנא הקלד כתובת של הזנת RSS - - - Feed URL: - כתובת הזנה: - Deletion confirmation diff --git a/src/lang/qbittorrent_hi_IN.ts b/src/lang/qbittorrent_hi_IN.ts index 18c427084..648967847 100644 --- a/src/lang/qbittorrent_hi_IN.ts +++ b/src/lang/qbittorrent_hi_IN.ts @@ -2181,7 +2181,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse torrent info: %1 - टॉरेंट की जानकारी ज्ञात पायी: %1 + टॉरेंट की जानकारी ज्ञात पायी: %1 @@ -7100,10 +7100,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication प्रमाणीकरण (&U) - - Info: The password is saved unencrypted - सूचना : कूटशब्द को कूटबद्ध किये बिना संचित किया गया है - Filter path (.dat, .p2p, .p2b): @@ -8263,13 +8259,6 @@ Those plugins were disabled. वेब लिंक - - PowerManagement - - qBittorrent is active - क्यूबिटटोरेंट सक्रिय है - - PreviewSelectDialog @@ -8902,7 +8891,7 @@ Those plugins were disabled. URL: - URL: + URL: @@ -8912,12 +8901,12 @@ Those plugins were disabled. sec - सेक + सेक Default - पूर्व निर्धारित + पूर्व निर्धारित @@ -9037,14 +9026,6 @@ Those plugins were disabled. New folder नया फोल्डर - - Please type a RSS feed URL - RSS स्रोत का URL भरें - - - Feed URL: - स्रोत URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_hr.ts b/src/lang/qbittorrent_hr.ts index f023485e3..e708485c3 100644 --- a/src/lang/qbittorrent_hr.ts +++ b/src/lang/qbittorrent_hr.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Dodavanje torrenta nije uspjelo. Izvor: "%1". Razlog: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Otkriven je pokušaj dodavanja duplikata torrenta. Izvor: %1. Postojeći torrent: %2. Rezultat: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Priloži dijalog "Dodaj novi torrent" u glavni prozor @@ -2177,13 +2173,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Nije moguće analizirati podatke o nastavku: %1 + Nije moguće analizirati podatke o nastavku: %1 Cannot parse torrent info: %1 - Ne mogu analizirati informacije o torrentu: %1 + Ne mogu analizirati informacije o torrentu: %1 @@ -2438,10 +2434,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Torrent uklonjen. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Otkriven je pokušaj dodavanja duplikata torrenta. Postojeći torrent: %1. Rezultat: %2 - Merging of trackers is disabled @@ -3547,7 +3539,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Upravljanje napajanjem pronašlo je odgovarajuće D-Bus sučelje. Sučelje: %1 + Upravljanje napajanjem pronašlo je odgovarajuće D-Bus sučelje. Sučelje: %1 @@ -3559,12 +3551,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - Pogreška upravljanja napajanjem. Radnja: %1. Pogreška: %2 + Pogreška upravljanja napajanjem. Radnja: %1. Pogreška: %2 Power management unexpected error. State: %1. Error: %2 - Neočekivana pogreška upravljanja napajanjem. Stanje: %1. Pogreška: %2 + Neočekivana pogreška upravljanja napajanjem. Stanje: %1. Pogreška: %2 @@ -6146,10 +6138,6 @@ Minimum requirement: %2. Mixed mode Mješoviti način rada - - Some options are incompatible with the chosen proxy type! - Neke opcije nisu kompatibilne s odabranom vrstom proxyja! - If checked, hostname lookups are done via the proxy @@ -7129,10 +7117,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' ali ne A&uthentication A&utentifikacija - - Info: The password is saved unencrypted - Info: Lozinka je spremljena nekriptirana - Filter path (.dat, .p2p, .p2b): @@ -8292,32 +8276,6 @@ Ti dodaci su onemogućeni. Web link - - PowerManagement - - qBittorrent is active - qBittorrent je aktivan - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Upravljanje napajanjem pronašlo je odgovarajuće D-Bus sučelje. Sučelje: %1 - - - Power management error. Did not found suitable D-Bus interface. - Pogreška upravljanja napajanjem. Nije pronađeno odgovarajuće D-Bus sučelje. - - - Power management error. Action: %1. Error: %2 - Pogreška upravljanja napajanjem. Radnja: %1. Pogreška: %2 - - - Power management unexpected error. State: %1. Error: %2 - Neočekivana pogreška upravljanja napajanjem. Stanje: %1. Pogreška: %2 - - PreviewSelectDialog @@ -8861,10 +8819,6 @@ Ti dodaci su onemogućeni. Item doesn't exist: %1. Stavka ne postoji: %1. - - Couldn't move folder into itself. - Nije moguće premjestiti mapu u samu mapu. - Can't move a folder into itself or its subfolders. @@ -8941,7 +8895,7 @@ Ti dodaci su onemogućeni. Feed doesn't exist: %1. - Feed ne postoji: %1. + Feed ne postoji: %1. @@ -8954,22 +8908,22 @@ Ti dodaci su onemogućeni. URL: - URL: + URL: Refresh interval: - + Interval osvježavanja: sec - sek + sek Default - Zadano + Zadano @@ -9074,14 +9028,6 @@ Ti dodaci su onemogućeni. Feed options... - - Edit feed URL... - Uredi URL feeda... - - - Edit feed URL - Uredi URL feeda - Please choose a folder name @@ -9097,14 +9043,6 @@ Ti dodaci su onemogućeni. New folder Nova mapa - - Please type a RSS feed URL - Molimo upišite URL RSS kanala - - - Feed URL: - URL kanala: - Deletion confirmation diff --git a/src/lang/qbittorrent_hu.ts b/src/lang/qbittorrent_hu.ts index 0f75a0f9f..a52f2879b 100644 --- a/src/lang/qbittorrent_hu.ts +++ b/src/lang/qbittorrent_hu.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Torrent hozzáadása sikertelen. Forrás: "%1". Indok: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Duplikált torrent hozzáadási kísérlet észlelve. Forrás: %1. Meglévő torrent: %2. Eredmény: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + "Új torrent hozzáadása" párbeszédpanel csatolása a főablakhoz @@ -2179,13 +2175,13 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Cannot parse resume data: %1 - Nem lehet feldolgozni a folytatási adatot: %1 + Nem lehet feldolgozni a folytatási adatot: %1 Cannot parse torrent info: %1 - Nem lehet feldolgozni a torrent infót: %1 + Nem lehet feldolgozni a torrent infót: %1 @@ -2440,10 +2436,6 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Torrent removed. Torrent: "%1" Torrent eltávolítva. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Duplikált torrent hozzáadásának kísérlete észlelve. Létező torrent: %1. Eredmény: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Power management found suitable D-Bus interface. Interface: %1 - Az energiakezelés megfelelő D-Bus interfészt talált. Interfész: %1 + Az energiakezelés megfelelő D-Bus interfészt talált. Interfész: %1 @@ -3561,12 +3553,12 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Power management error. Action: %1. Error: %2 - Energiagazdálkodási hiba. Művelet: %1. Hiba: %2 + Energiagazdálkodási hiba. Művelet: %1. Hiba: %2 Power management unexpected error. State: %1. Error: %2 - Energiagazdálkodási váratlan hiba. Állapot: %1. Hiba: %2 + Energiagazdálkodási váratlan hiba. Állapot: %1. Hiba: %2 @@ -6148,10 +6140,6 @@ Minimális követelmény: %2. Mixed mode Kevert mód - - Some options are incompatible with the chosen proxy type! - Egyes beállítások nem kompatibilisek a kiválasztott proxy típussal! - If checked, hostname lookups are done via the proxy @@ -7135,10 +7123,6 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt' szűrő, de ne A&uthentication &Hitelesítés - - Info: The password is saved unencrypted - Infó: Jelszó titkosítás nélkül kerül elmentésre - Filter path (.dat, .p2p, .p2b): @@ -8297,32 +8281,6 @@ Azok a modulok letiltásra kerültek. Web link - - PowerManagement - - qBittorrent is active - A qBittorrent aktív - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Az energiakezelés megfelelő D-Bus interfészt talált. Interfész: %1 - - - Power management error. Did not found suitable D-Bus interface. - Energiagazdálkodási hiba. Nem található megfelelő D-Bus interfész. - - - Power management error. Action: %1. Error: %2 - Energiagazdálkodási hiba. Művelet: %1. Hiba: %2 - - - Power management unexpected error. State: %1. Error: %2 - Energiagazdálkodási váratlan hiba. Állapot: %1. Hiba: %2 - - PreviewSelectDialog @@ -8866,10 +8824,6 @@ Azok a modulok letiltásra kerültek. Item doesn't exist: %1. Elem nem létezik: %1. - - Couldn't move folder into itself. - Nem lehetett áthelyezni a mappát önmagába. - Can't move a folder into itself or its subfolders. @@ -8946,7 +8900,7 @@ Azok a modulok letiltásra kerültek. Feed doesn't exist: %1. - RSS csatorna nem létezik: %1. + RSS csatorna nem létezik: %1. @@ -8959,22 +8913,22 @@ Azok a modulok letiltásra kerültek. URL: - URL: + URL: Refresh interval: - + Frissítési időköz: sec - mp + mp Default - Alapértelmezett + Alapértelmezett @@ -9079,14 +9033,6 @@ Azok a modulok letiltásra kerültek. Feed options... - - Edit feed URL... - Csatorna URL szerkesztése... - - - Edit feed URL - Csatorna URL szerkesztése - Please choose a folder name @@ -9102,14 +9048,6 @@ Azok a modulok letiltásra kerültek. New folder Új mappa - - Please type a RSS feed URL - Kérem írjon be egy RSS csatorna URL-t - - - Feed URL: - Csatorna URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_hy.ts b/src/lang/qbittorrent_hy.ts index c3367beed..37ccce578 100644 --- a/src/lang/qbittorrent_hy.ts +++ b/src/lang/qbittorrent_hy.ts @@ -8255,13 +8255,6 @@ Those plugins were disabled. Վեբ հղում - - PowerManagement - - qBittorrent is active - qBittorrent-ը գործուն է - - PreviewSelectDialog @@ -8894,7 +8887,7 @@ Those plugins were disabled. URL: - URL՝ + URL՝ @@ -8904,12 +8897,12 @@ Those plugins were disabled. sec - վ + վ Default - Լռելայն + Լռելայն diff --git a/src/lang/qbittorrent_id.ts b/src/lang/qbittorrent_id.ts index 1f5b6b2a6..c5227dd2e 100644 --- a/src/lang/qbittorrent_id.ts +++ b/src/lang/qbittorrent_id.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Gagal menambahkan torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Terdeteksi duplikat dalam penambahan torrent. Source: %1. Existing torrent: %2. Result: %3 - Merging of trackers is disabled @@ -7111,10 +7107,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication &Otentikasi - - Info: The password is saved unencrypted - Info: Sandi disimpan tanpa enkripsi - Filter path (.dat, .p2p, .p2b): @@ -8273,13 +8265,6 @@ Plugin ini semua dinonaktifkan. Tautan Web - - PowerManagement - - qBittorrent is active - qBittorrent sedang aktif - - PreviewSelectDialog @@ -8912,7 +8897,7 @@ Plugin ini semua dinonaktifkan. URL: - URL: + URL: @@ -8922,12 +8907,12 @@ Plugin ini semua dinonaktifkan. sec - det + det Default - Bawaan + Bawaan @@ -9047,14 +9032,6 @@ Plugin ini semua dinonaktifkan. New folder Folder baru - - Please type a RSS feed URL - Silakan ketik URL umpan RSS - - - Feed URL: - URL Umpan: - Deletion confirmation diff --git a/src/lang/qbittorrent_it.ts b/src/lang/qbittorrent_it.ts index af0ed3e8b..0fc4858e9 100644 --- a/src/lang/qbittorrent_it.ts +++ b/src/lang/qbittorrent_it.ts @@ -489,13 +489,6 @@ Sorgente: "%1" Impossibile aggiungere il torrent. Sorgente: "%1" Motivo: "%2" - - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Rilevato un tentativo di aggiungere un torrent duplicato. -Sorgente: %1 -Torrent esistente: %2 -Risultato: %3 @@ -515,7 +508,11 @@ Risultato: %3 Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + Rilevato un tentativo di aggiungere un torrente duplicato. +Sorgente: %1. +Torrent esistente: "%2". +Info hash torrent: %3. +Risultato: %4 @@ -1088,7 +1085,7 @@ Risultato: %3 Internal hostname resolver cache expiry interval - + Intervallo scadenza cache resolver host interno @@ -1163,7 +1160,7 @@ Risultato: %3 Attach "Add new torrent" dialog to main window - + Collega la finestra di dialogo "Aggiungi nuovo torrent" alla finestra principale @@ -2127,12 +2124,12 @@ Supporta i formati: S01E01, 1x1, 2017.12.31 e 31.12.2017 (I formati a data suppo Corrupted resume data: %1 - + Dati recupero corrotti: %1 save_path is invalid - + save_path non è valido @@ -2208,23 +2205,23 @@ Errore: '%1'. Cannot parse resume data: %1 - Impossibile analizzare i dati di recupero: %1 + Impossibile analizzare i dati di recupero: %1 Cannot parse torrent info: %1 - Impossibile analizzare informazioni sul torrent: %1 + Impossibile analizzare informazioni sul torrent: %1 Corrupted resume data: %1 - + Dati recupero corrotti: %1 save_path is invalid - + save_path non è valido @@ -2486,12 +2483,6 @@ Messaggio: "%1". Torrent removed. Torrent: "%1" Torrent rimosso. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Rilevato un tentativo di aggiungere un torrent duplicato. -Torrente esistente: %1. -Risultato: %2 - Merging of trackers is disabled @@ -2618,14 +2609,17 @@ Destinazione: "%3" Duplicate torrent - + Torrent duplicato Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + Rilevato un tentativo di aggiungere un torrente duplicato. +Torrent esistente: "%1". +Info hash torrent: %2. +Risultato: %3 @@ -3687,27 +3681,28 @@ IP: %1 Power management found suitable D-Bus interface. Interface: %1 - La gestione alimentazione ha trovato un'interfaccia D-Bus adatta. + La gestione alimentazione ha trovato un'interfaccia D-Bus adatta. Interfaccia: %1 Power management error. Did not find a suitable D-Bus interface. - + Errore gestione alimentazione. +Impossibile trovare un'interfaccia D-Bus adatta. Power management error. Action: %1. Error: %2 - Errore gestione alimentazione. + Errore gestione alimentazione. Azione: %1. Errore: %2. Power management unexpected error. State: %1. Error: %2 - Errore imprevisto gestione alimentazione. + Errore imprevisto gestione alimentazione. Stato: %1. Errore: %2 @@ -3718,7 +3713,7 @@ Errore: %2 PMMacOS qBittorrent is active - + PMMacOS @@ -6212,7 +6207,7 @@ Motivo: %1 Show free disk space in status bar - + Visualizza lo spazio disco libero nella barra di stato @@ -6315,10 +6310,6 @@ Motivo: %1 Mixed mode Modo mixed - - Some options are incompatible with the chosen proxy type! - Alcune opzioni sono incompatibili con il tipo di proxy scelto! - If checked, hostname lookups are done via the proxy @@ -6481,12 +6472,12 @@ Disabilita la crittografia: connettiti solo ai peer senza crittografia protocoll Some functions are unavailable with the chosen proxy type! - + Con il tipo proxy scelto alcune funzioni non sono disponibili! Note: The password is saved unencrypted - + Nota: la password viene salvata non crittografata @@ -7306,10 +7297,6 @@ readme[0-9].txt: filtro 'readme1.txt', 'readme2.txt' ma non A&uthentication A&utenticazione - - Info: The password is saved unencrypted - Info: La password è salvata in chiaro - Filter path (.dat, .p2p, .p2b): @@ -8473,38 +8460,6 @@ Questi plugin verranno disabilitati. Collegamento web - - PowerManagement - - qBittorrent is active - qBittorrent è attivo - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - La gestione alimentazione ha trovato un'interfaccia D-Bus adatta. -Interfaccia: %1 - - - Power management error. Did not found suitable D-Bus interface. - Errore gestione dell'alimentazione. -Non è stata trovata l'interfaccia D-Bus adatta. - - - Power management error. Action: %1. Error: %2 - Errore gestione alimentazione. -Azione: %1. -Errore: %2. - - - Power management unexpected error. State: %1. Error: %2 - Errore imprevisto gestione alimentazione. -Stato: %1. -Errore: %2 - - PreviewSelectDialog @@ -9054,14 +9009,10 @@ Formato dati non valido. Item doesn't exist: %1. L'elemento non esiste: %1. - - Couldn't move folder into itself. - Impossibile spostare la cartella in se stessa. - Can't move a folder into itself or its subfolders. - + Impossibile spostare una cartella in se stessa o nelle sue sottocartelle. @@ -9133,12 +9084,12 @@ Errore: "formato dati non valido". Invalid 'refreshInterval' value - + Valore 'refreshInterval' non valido Feed doesn't exist: %1. - Il feed non esiste: %1. + Il feed non esiste: %1. @@ -9146,27 +9097,27 @@ Errore: "formato dati non valido". RSS Feed Options - + Opzioni feed RSS URL: - URL: + URL: Refresh interval: - + Intervallo aggiornamento: sec - s + s Default - Predefinito + Predefinito @@ -9269,15 +9220,7 @@ Errore: "formato dati non valido". Feed options... - - - - Edit feed URL... - Modifica URL feed... - - - Edit feed URL - Modifica URL feed + Opzioni feed... @@ -9294,14 +9237,6 @@ Errore: "formato dati non valido". New folder Nuova cartella - - Please type a RSS feed URL - Inserisci una URL fonte RSS - - - Feed URL: - URL fonte: - Deletion confirmation @@ -10264,7 +10199,7 @@ Uso il file di riserva per ripristinare le impostazioni: %1 Free space: N/A - + Spazio libero: n/d @@ -10303,7 +10238,7 @@ Uso il file di riserva per ripristinare le impostazioni: %1 Free space: - + Spazio libero: diff --git a/src/lang/qbittorrent_ja.ts b/src/lang/qbittorrent_ja.ts index 1fc6337d7..eaa66fd1f 100644 --- a/src/lang/qbittorrent_ja.ts +++ b/src/lang/qbittorrent_ja.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Torrentが追加できませんでした。 ソース: "%1". 理由: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 重複したTorrentの追加が検出されました。ソース: %1. 既存Torrent: %2. 結果: %3. - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + 「新しいTorrernの追加」ダイアログをメインウィンドウに追加します @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - 再開データの解析ができませんでした: %1 + 再開データの解析ができませんでした: %1 Cannot parse torrent info: %1 - Torrent情報の解析ができませんでした: %1 + Torrent情報の解析ができませんでした: %1 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Torrent(%1)が削除されました。 - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - 重複したTorrentの追加が検出されました。既存Torrent: %1. 結果: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - 電源管理で適切なD-Busインターフェースが見つかりました。インターフェース: %1 + 電源管理で適切なD-Busインターフェースが見つかりました。インターフェース: %1 @@ -3561,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - 電源管理エラー。 操作: %1. エラー: %2 + 電源管理エラー。 操作: %1. エラー: %2 Power management unexpected error. State: %1. Error: %2 - 電源管理の予期せぬエラー。 状態: %1. エラー: %2 + 電源管理の予期せぬエラー。 状態: %1. エラー: %2 @@ -6149,10 +6141,6 @@ Minimum requirement: %2. Mixed mode 混合モード - - Some options are incompatible with the chosen proxy type! - 一部のオプションは、選択したプロキシタイプと互換性がありません。 - If checked, hostname lookups are done via the proxy @@ -7137,10 +7125,6 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'をフィルタ A&uthentication 認証(&U) - - Info: The password is saved unencrypted - 注意: パスワードは暗号化せずに保存されます - Filter path (.dat, .p2p, .p2b): @@ -8300,32 +8284,6 @@ Those plugins were disabled. ウェブリンク - - PowerManagement - - qBittorrent is active - qBittorrentは稼働中です - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - 電源管理で適切なD-Busインターフェースが見つかりました。インターフェース: %1 - - - Power management error. Did not found suitable D-Bus interface. - 電源管理エラー。適切なD-Busインターフェースが見つかりませんでした。 - - - Power management error. Action: %1. Error: %2 - 電源管理エラー。 操作: %1. エラー: %2 - - - Power management unexpected error. State: %1. Error: %2 - 電源管理の予期せぬエラー。 状態: %1. エラー: %2 - - PreviewSelectDialog @@ -8869,10 +8827,6 @@ Those plugins were disabled. Item doesn't exist: %1. アイテムが存在しません: %1. - - Couldn't move folder into itself. - フォルダーをフォルダー自身に移動できませんでした。 - Can't move a folder into itself or its subfolders. @@ -8949,7 +8903,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - フィードが存在しません: %1. + フィードが存在しません: %1. @@ -8962,22 +8916,22 @@ Those plugins were disabled. URL: - URL: + URL: Refresh interval: - + 更新間隔: sec - + Default - デフォルト + デフォルト @@ -9082,14 +9036,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - フィードURLを編集... - - - Edit feed URL - フィードURLの編集 - Please choose a folder name @@ -9105,14 +9051,6 @@ Those plugins were disabled. New folder 新しいフォルダー - - Please type a RSS feed URL - RSSフィードのURLを入力してください - - - Feed URL: - フィード URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_ka.ts b/src/lang/qbittorrent_ka.ts index 279c14ae1..8566bb3ef 100644 --- a/src/lang/qbittorrent_ka.ts +++ b/src/lang/qbittorrent_ka.ts @@ -7100,10 +7100,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication &აუტენფიკაცია - - Info: The password is saved unencrypted - შენიშვნა: პაროლი არადაშიფრულად არის შენახული - Filter path (.dat, .p2p, .p2b): @@ -8261,13 +8257,6 @@ Those plugins were disabled. ვებ ბმული - - PowerManagement - - qBittorrent is active - qBittorrent-ი აქტიურია - - PreviewSelectDialog @@ -8900,7 +8889,7 @@ Those plugins were disabled. URL: - ბმული: + ბმული: @@ -8910,7 +8899,7 @@ Those plugins were disabled. sec - წამი + წამი diff --git a/src/lang/qbittorrent_ko.ts b/src/lang/qbittorrent_ko.ts index 9ded662fd..9ba51defa 100644 --- a/src/lang/qbittorrent_ko.ts +++ b/src/lang/qbittorrent_ko.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" 토렌트를 추가하지 못했습니다. 소스 : "%1". 이유 : "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 중복 토렌트를 추가하려는 시도를 감지했습니다. 소스 : %1. 기존 토렌트 : %2. 결과 : %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + 기본 창에 "새 토렌트 추가" 대화 상자를 첨부합니다 @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - 이어받기 데이터를 분석할 수 없음: %1 + 이어받기 데이터를 분석할 수 없음: %1 Cannot parse torrent info: %1 - 토렌트 정보를 분석할 수 없음: %1 + 토렌트 정보를 분석할 수 없음: %1 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" 토렌트가 제거되었습니다. 토렌트: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - 중복된 토렌트를 추가하려는 시도를 감지했습니다. 기존 토런트 : %1. 결과 : %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - 전원 관리에서 적합한 D-Bus 인터페이스를 찾았습니다. 인터페이스 : %1 + 전원 관리에서 적합한 D-Bus 인터페이스를 찾았습니다. 인터페이스 : %1 @@ -3561,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - 전원 관리 오류입니다. 작업 : %1. 오류 : %2 + 전원 관리 오류입니다. 작업 : %1. 오류 : %2 Power management unexpected error. State: %1. Error: %2 - 전원 관리 예기치 않은 오류가 발생했습니다. 상태 : %1. 오류 : %2 + 전원 관리 예기치 않은 오류가 발생했습니다. 상태 : %1. 오류 : %2 @@ -6149,10 +6141,6 @@ Minimum requirement: %2. Mixed mode 혼합 모드 - - Some options are incompatible with the chosen proxy type! - 일부 옵션은 선택한 프록시 유형과 호환되지 않습니다! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt: 'readme1.txt', 'readme2.txt'를 필터링 A&uthentication 인증(&A) - - Info: The password is saved unencrypted - 정보: 암호는 평문으로 저장됩니다 - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Those plugins were disabled. 웹 링크 - - PowerManagement - - qBittorrent is active - qBittorrent가 실행 중입니다 - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - 전원 관리에서 적합한 D-Bus 인터페이스를 찾았습니다. 인터페이스 : %1 - - - Power management error. Did not found suitable D-Bus interface. - 전원 관리 오류입니다. 적합한 D-Bus 인터페이스를 찾지 못했습니다. - - - Power management error. Action: %1. Error: %2 - 전원 관리 오류입니다. 작업 : %1. 오류 : %2 - - - Power management unexpected error. State: %1. Error: %2 - 전원 관리 예기치 않은 오류가 발생했습니다. 상태 : %1. 오류 : %2 - - PreviewSelectDialog @@ -8867,10 +8825,6 @@ Those plugins were disabled. Item doesn't exist: %1. 항목이 존재하지 않습니다: %1. - - Couldn't move folder into itself. - 폴더를 자체적으로 이동할 수 없습니다. - Can't move a folder into itself or its subfolders. @@ -8947,7 +8901,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - 피드가 존재하지 않습니다: %1. + 피드가 존재하지 않습니다: %1. @@ -8960,22 +8914,22 @@ Those plugins were disabled. URL: - URL: + URL: Refresh interval: - + 새로고침 간격: sec - + Default - + 기본 @@ -9080,14 +9034,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - 피드 URL 편집... - - - Edit feed URL - 피드 URL 편집 - Please choose a folder name @@ -9103,14 +9049,6 @@ Those plugins were disabled. New folder 새 폴더 - - Please type a RSS feed URL - RSS 피드 URL을 입력하십시오 - - - Feed URL: - 피드 URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_lt.ts b/src/lang/qbittorrent_lt.ts index 4d9f4fe11..08659ec5e 100644 --- a/src/lang/qbittorrent_lt.ts +++ b/src/lang/qbittorrent_lt.ts @@ -2175,13 +2175,13 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Cannot parse resume data: %1 - Nepavyko išanalizuoti atnaujinimo duomenų: %1 + Nepavyko išanalizuoti atnaujinimo duomenų: %1 Cannot parse torrent info: %1 - Nepavyko išanalizuoti torento informacijos: %1 + Nepavyko išanalizuoti torento informacijos: %1 @@ -7111,10 +7111,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication A&tpažinimas - - Info: The password is saved unencrypted - Informacija: Slaptažodis yra išsaugomas nešifruotai - Filter path (.dat, .p2p, .p2b): @@ -8273,13 +8269,6 @@ Tie papildiniai buvo išjungti. Tinklo nuoroda - - PowerManagement - - qBittorrent is active - qBittorrent aktyvi - - PreviewSelectDialog @@ -8824,10 +8813,6 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1".Item doesn't exist: %1. Elemento nėra: %1. - - Couldn't move folder into itself. - Nepavyko perkelti aplanko į jį patį. - Can't move a folder into itself or its subfolders. @@ -8904,7 +8889,7 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". Feed doesn't exist: %1. - Kanalo nėra: %1. + Kanalo nėra: %1. @@ -8917,7 +8902,7 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". URL: - URL: + URL: @@ -8927,12 +8912,12 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1". sec - sek. + sek. Default - + Numatytasis @@ -9037,14 +9022,6 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1".Feed options... - - Edit feed URL... - Taisyti kanalo URL... - - - Edit feed URL - Taisyti kanalo URL - Please choose a folder name @@ -9060,14 +9037,6 @@ Atsiprašome, tačiau negalime parodyti šio failo: "%1".New folder Naujas aplankas - - Please type a RSS feed URL - Įrašykite RSS kanalo URL - - - Feed URL: - Kanalo URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_ltg.ts b/src/lang/qbittorrent_ltg.ts index dd01973cd..d8dbc1560 100644 --- a/src/lang/qbittorrent_ltg.ts +++ b/src/lang/qbittorrent_ltg.ts @@ -229,25 +229,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -362,112 +362,112 @@ Izglobuot kai .torrent failu... - + I/O Error I/O klaida - + Not Available This comment is unavailable Nav daīmams - + Not Available This date is unavailable Nav daīmams - + Not available Nav daīmams - + Magnet link Magnetsaita - + Retrieving metadata... Tiek izdabuoti metadati... - - + + Choose save path Izalaseit izglobuošonas vītu - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A Navā zynoms - + %1 (Free space on disk: %2) %1 (Breivas vītas uz diska: %2) - + Not available This size is unavailable. Nav daīmams - + Torrent file (*%1) Torrenta fails (*%1) - + Save as torrent file Izglobuot kai torrenta failu - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... Meklēt failuos... - + Parsing metadata... Tiek apdareiti metadati... - + Metadata retrieval complete Metadatu izdabuošana dabeigta @@ -475,35 +475,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -666,706 +666,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Atkuortuotai puorsavērt torrentus piec atsasyuteišonas dabeigšonas. - - + + ms milliseconds ms - + Setting Fuņkcejas - + Value Value set for this setting Vierteiba - + (disabled) (atslēgts) - + (auto) (automatiski) - - + + min minutes myn - + All addresses Vysas adresas - + qBittorrent Section qBittorent izdola - - + + Open documentation Skaiteit dokumentaceju - + All IPv4 addresses Vysas IPv4 adresas - + All IPv6 addresses Vysas IPv6 adresas - + libtorrent Section libtorrent izdola - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Norma - + Below normal Zam normu - + Medium Vydyskys - + Low Zams - + Very low Cīši zams - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache Cītdiska vydatguods - - - - + + + + + s seconds s - + Disk cache expiry interval Cītdiska vydatguoda dereiguma iņtervals - + Disk queue size - - + + Enable OS cache Lītuot sistemys vydatguodu - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP Dūt pyrmaileibu TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address Atļaut nazcik salaidumus nu vīnas IP adress - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Ruodeit kūplītuotuoju datoru pasaukas - + IP address reported to trackers (requires restart) IP adress kū paviesteit trakeriem (vajadzeigs restarts) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds sek - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications Ruodeit viesteņas - + Display notifications for added torrents Ruodeit viesteņas par daliktajiem torrentiem - + Download tracker's favicon Atsasyuteit trakera lopys ikonu - + Save path history length Izglobuošonas vītu viesturis garums - + Enable speed graphs Īslēgt dreizumu grafiku - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload Dreižuokā nūsasyuteišona - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck Apstyprynuot atkuortuotu torrenta puorvēri - + Confirm removal of all tags Apstyprynuot vysu byrku nūjimšonu - + Always announce to all trackers in a tier Vysod atjaunynuot datus ar vysim trakeriem grupā - + Always announce to all tiers Vysod atjaunynuot datus ar vysim trakeriem vysuos grupās - + Any interface i.e. Any network interface Automatiski - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries Ruodeit kūplītuotuoju vaļsteibas - + Network interface Škārsteikla sadurs: - + Optional IP address to bind to Dasaisteit papyldoma IP adresi: - + Max concurrent HTTP announces - + Enable embedded tracker Īslēgt īmontātuo trakeri - + Embedded tracker port Īmontāta trakera ports @@ -1397,121 +1408,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 Niulejuos koņfiguracejis apvuocis: %1 - + Torrent name: %1 Torrenta pasauka: %1 - + Torrent size: %1 Torrenta lelums: %1 - + Save path: %1 Izglobuošonas vīta: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds Torrents tika atsasyuteits %1 - - + + Thank you for using qBittorrent. Paļdis, ka lītojat qBittorrent. - + Torrent: %1, sending mail notification Torrents: %1, syuta posta viesteņu - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit Izīt - + I/O Error i.e: Input/Output Error I/O klaida - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1520,110 +1531,110 @@ Īmesls: %2 - + Torrent added Torrents dalikts - + '%1' was added. e.g: xxx.avi was added. '%1' tika dalikts. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. '%1' atsasyuteišona ir dabeigta. - + Information Inpormaceja - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Nikod - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Izglobuo torrenta progressu... - + qBittorrent is now ready to exit @@ -1760,263 +1771,263 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." &Izglobuot fiļtrys... - + Matches articles based on episode filter. Meklej rezultatus piec epizozu fiļtra. - + Example: Pīvadums: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match filtrys atlaseis 2., 5., nū 8. leidz 15., 30. i tuoluokās pirmous sezonys epizozes. - + Episode filter rules: Epizozu filtrys: - + Season number is a mandatory non-zero value Sezonys numurs navar byut 0 - + Filter must end with semicolon Filtri vajag dabeigt ar komatpunkti - + Three range types for episodes are supported: Filtrym lītojami 3 parametri: - + Single number: <b>1x25;</b> matches episode 25 of season one Parametris: <b>1x25;</b> atlaseis tik 1. sezonys 25. epizodi - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Parametris: <b>1x25-40;</b> atlaseis tik 1. sezonys epizodes, nū 25. leidz 40. - + Episode number is a mandatory positive value Epizodys numurs navar byut negativs - + Rules Filtrys - + Rules (legacy) Filtrys (vacajs) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons Parametris: <b>1x25-;</b> atlaseis vysas sezonas i epizodes, suokot ar 1. sezonas 25. epizodi. - + Last Match: %1 days ago Pādejī rezultati: pyrms %1 dīnu - + Last Match: Unknown Pādejī rezultati: nav - + New rule name Jauna fiļtra pasauka - + Please type the name of the new download rule. Lyudzu Īvoduot jauna fiļtra pasauku. - - + + Rule name conflict - - + + A rule with this name already exists, please choose another name. Fiļtrys ar itaidu pasauku jau ir, lyudzu izalaseit cytu pasauku. - + Are you sure you want to remove the download rule named '%1'? - + Are you sure you want to remove the selected download rules? - + Rule deletion confirmation Apstyprynuot iztreišonu - + Invalid action Nadereiga darbeiba - + The list is empty, there is nothing to export. Saroksts tukšs, nav kū izglobuot. - + Export RSS rules Izglobuot RSS fiļtru - + I/O Error I/O klaida - + Failed to create the destination file. Reason: %1 Naīsadevās radeit failu. Īmesls: %1 - + Import RSS rules Dalikt RSS fiļtru - + Failed to import the selected rules file. Reason: %1 Naīsadevās dalikt izalaseituo fiļtru. Īmesls: %1 - + Add new rule... Pīlikt jaunu fiļtri... - + Delete rule Iztreit fiļtri - + Rename rule... Puorsaukt fiļtri - + Delete selected rules Iztreit izalaseituos fiļtrus - + Clear downloaded episodes... - + Rule renaming Fiļtra puorsaukšona - + Please type the new rule name Lyudzu Īvoduot jauna fiļtra pasauku - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 Poziceja %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2068,28 +2079,38 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2100,16 +2121,17 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2117,38 +2139,60 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2156,22 +2200,22 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2179,498 +2223,503 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON ĪGRĪZTS - - - - - - - - - + + + + + + + + + OFF NŪGRĪZTS - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED DASTATEIGS - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2720,47 +2769,47 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - + Download first and last piece first: %1, torrent: '%2' Paprīšķu atsasyuteit pyrmuos i pādejuos dalenis: %1, torrents: '%2' - + On Īslēgts - + Off Atslēgts - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3352,22 +3401,22 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present Itys torrents jau ir dalikts - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3485,6 +3534,40 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3875,12 +3958,12 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - + Show Ruodeit - + Check for program updates Meklēt aplikacejis atjaunynuojumus @@ -3895,379 +3978,379 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." - + Execution Log - + Clear the password Nūteireit paroli - + &Set Password &Īstateit paroli - + Preferences Īstatejumi - + &Clear Password &Nūteireit paroli - + Transfers Torrenti - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only - + Text Only - + Text Alongside Icons - + Text Under Icons - + Follow System Style - - + + UI lock password - - + + Please type the UI lock password: - + Are you sure you want to clear the password? Voi drūši zini, ka gribi nūteireit paroli? - + Use regular expressions Lītuot Reguļaras izsaceibas - - + + Search Engine Maklātivs - + Search has failed Mekliešona naīsadevās - + Search has finished Mekliešona dabeigta - + Search Meklēt - + Transfers (%1) Torrenti (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? Voi drūši zini, ka gribi aiztaiseit qBittorrent? - + &No &Nā - + &Yes &Nui - + &Always Yes &Vysod nui - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime - + qBittorrent Update Available Daīmams qBittorrent atjaunynuojums - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? - + Python is required to use the search engine but it does not seem to be installed. - - + + Old Python Runtime - + A new version is available. Daīmama jaunuoka verseja. - + Do you want to download %1? Voi gribi atsasyuteit %1? - + Open changelog... - + No updates available. You are already using the latest version. Navā atjaunynuojumu. Jyusim jau irā pošjaunais qBittorrent izlaidums. - + &Check for Updates &Meklēt atjaunynuojumus - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused Nūstuodeits - + Checking for Updates... Meklē atjaunynuojumus... - + Already checking for program updates in the background - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Atsasyuteišonas kleida - - + + Invalid password Nadereiga paroļs - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid Paroļs navā dereigs - + DL speed: %1 e.g: Download speed: 10 KiB/s Atsasyut. dreizums: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Nūsasyut. dreizums: %1 - + Hide Naruodeit - + Exiting qBittorrent Aiztaiseit qBittorrent - + Open Torrent Files Izalaseit Torrentu failus - + Torrent Files Torrentu faili @@ -5761,47 +5844,47 @@ Minimum requirement: %2. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5947,392 +6030,402 @@ Minimum requirement: %2. KiB - + + Show free disk space in status bar + + + + Torrent content layout: Torrenta satvora izlikaliejums: - + Original - + Create subfolder Radeit zamapvuoci - + Don't create subfolder Naradeit zamapvuoci - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... Pīlikt byrku... - + Options.. - + Remove - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: Kūplītuotuoju salaidumu protokols: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits Īstateit laiku Aļternativuo kūpeiguo dreizumu lītuošonai - + From: From start time Nu: - + To: To end time Leidz: - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">Vaira dazynuošonys</a>) - + Maximum active checking torrents: - + &Torrent Queueing Torrentu saroksts - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader RSS laseituojs - + Enable fetching RSS feeds Īgrīzt RSS laseituoju - + Feeds refresh interval: Īrokstu atsvīžeišonas iņtervals: - + Same host request delay: - + Maximum number of articles per feed: Īrokstu skaits uz vīnu kanalu: - - - + + + min minutes myn - + Seeding Limits Nūsasyuteišonas rūbežas - + Remove torrent Nūjimt torrentu - + Remove torrent and its files Nūjimt torrentu i failus - + Enable super seeding for torrent Īgrīzt super-nūsasyuteišonu - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: Adress: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader RSS Automatiskys torrentu atsasyuteituojs - + Enable auto downloading of RSS torrents Īgrīzt RSS Automatiskuo atsasyuteišonu - + Edit auto downloading rules... Labuot RSS Automatiskys atsasyuteišonys īstatejumus... - + RSS Smart Episode Filter RSS Gudrais epizozu fiļtrys - + Download REPACK/PROPER episodes Atsasyuteit REPACK/PROPER epizodes - + Filters: Fiļtri: - + Web User Interface (Remote control) Tuolvaļdis sadurs (Web UI) - + IP address: IP adress: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Nikod - + ban for: nūlīgt dativi uz: - + Session timeout: - + Disabled Nūgrīzts - + Server domains: Servera domeni: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6341,37 +6434,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP HTTP vītā lītuot HTTPS - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name Atjaunynuot muna dinamiskuo domena pasauku @@ -6484,99 +6577,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management Saglabuošonas puorvoļds - + Default Torrent Management Mode: Nūklusiejuma Torrenta puorvaļdis režims: - + Manual Rūkvaļde - + Automatic Automatiskuo - + When Torrent Category changed: - + Relocate torrent Puorceļt torrentu - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories Lītuot zamkategorejas - + Default Save Path: Nūklusiejuma izglobuošonys vīta: - + Copy .torrent files to: Radeit .torrent failu puorspīdumu ite: @@ -6586,22 +6679,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: Radeit .torrent failu puorspīdumu dabeigtīm torrentīm ite: - + Pre-allocate disk space for all files Laiceigi puordrūsynuot vītu uz diska jaunīm failīm @@ -6696,64 +6789,64 @@ Use ';' to split multiple entries. Can use wildcard '*'.godim - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state Nasuokt atsasyuteišonu automatiski - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files Dalikt .!qB golaini nadabeigtīm failīm - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6773,50 +6866,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6833,511 +6926,506 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver Dabuojiejs - + To: To receiver Iz: - + SMTP server: SMTP servers: - + Sender Syuteituojs - + From: From sender Nu: - + This server requires a secure connection (SSL) - - + + Authentication - - - - + + + + Username: Lītuotuojs: - - - - + + + + Password: Paroļs: - + Run external program - + Show console window - + TCP and μTP TCP i μTP - + Listening Port - + Port used for incoming connections: Ports priekš atīmūšim salaidumim: - + Set to 0 to let your system pick an unused port - + Random Navuošai - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits Salaidumu skaita rūbežas - + Maximum number of connections per torrent: Salaidumu skaits uz vīnu torrentu: - + Global maximum number of connections: Kūpeigais salaidumu skaits: - + Maximum number of upload slots per torrent: Nūsasyuteišonas slotu skaits uz vīnu torrentu: - + Global maximum number of upload slots: Kūpeigais nūsasyuteišonas slotu skaits: - + Proxy Server Vidinīkservers - + Type: Lītuot: - + SOCKS4 SOCKS4 - + SOCKS5 SOCKS5 - + HTTP HTTP - - + + Host: Saiminīks: - - - + + + Port: Ports: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections Lītuot vidinīkserveri kūplītuotuoju salaidumim - + A&uthentication - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): Fiļtrys vīta (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... Nūblokētās IP adresas... - + Apply to trackers Lītuot trakerym - + Global Rate Limits Golvonais kūpeigā dreizuma rūbežs - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s KiB/s - - + + Upload: Nūsasyuteišona: - - + + Download: Atsasyuteišona: - + Alternative Rate Limits Aļternativais kūpeigā dreizuma rūbežs - + Start time Suokšonas laiks - + End time Beigšonas laiks - + When: Kod: - + Every day Kas dīnys - + Weekdays Dorbadīnās - + Weekends Nedeļgolās - + Rate Limits Settings Dreizuma rūbežs īstatejumi - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy Privatums - + Enable DHT (decentralized network) to find more peers Īgrīzt DHT (nacentralizātū teiklu), lai atrastu vēļ vaira kūplītuotuoju - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers Īgrīzt Datu Meitu kūplītuotuoju vydā (PeX), lai atrastu vēļ vaira kūplītuotuoju - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers Īgrīzt Vītejuo kūplītuotuoju mekliešonu, lai atrastu vēļ vaira kūplītuotuoju - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode Īgrīzt anonimū režimu - + Maximum active downloads: Kūpegais aktivuo atsasyuteišonu skaits: - + Maximum active uploads: Kūpegais aktivuo nūsasyuteišonu skaits: - + Maximum active torrents: Kūpegais aktivuo torrentu skaits: - + Do not count slow torrents in these limits Najimt vārā lānuos torrentus - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds sek - + Torrent inactivity timer: Torrenta stibniešonys skaiteklis: - + then tod - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: Sertifikats: - + Key: Atslāgs: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Inpormaceja par sertifikatim</a> - + Change current password Puormeit niulejuo paroli - + Files location: Failu vīta: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security Drūsums - + Enable clickjacking protection Īgrīzt apsardzeibu pret clickjacking - + Enable Cross-Site Request Forgery (CSRF) protection Īgrīzt apsardzeibu pret Cross-Site Request Forgery (CSRF) - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: Serviss: - + Register Registrētīs - + Domain name: Domena pasauka: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7347,12 +7435,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Izlaseit qBittorrent sadurs failu - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7372,183 +7460,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name %N: Torrenta pasauka - + %L: Category %L: Kategoreja - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path %D: Izglobuošonas vīta - + %C: Number of files %C: Failu skaits - + %Z: Torrent size (bytes) %Z: Torrenta lelums (baitos) - + %T: Current tracker %T: Niulejais trakeris - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) (Nivīnu) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate Sertifikats - + Select certificate Izlaseit sertifikatu - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error Atsarasšonys vītys kleida - - + + Choose export directory Izalaseit izglobuošonas vītu - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7558,69 +7646,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) %G: Byrkas (atdaleitas ar komatu) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory Izalaseit izglobuošonas vītu - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file Izalaseit IP fiļtra failu - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number @@ -7631,18 +7719,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not Īstatejumi - + Time Error Laika klaida - + The start time and the end time can't be the same. Suokšonas un beigšonas laiki navar byut vīnaiži. - - + + Length Error Garuma kleida @@ -7733,163 +7821,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region Vaļsteiba/Apgabaļs - + IP/Address - + Port Ports - + Flags Karūgi - + Connection Salaidums: - + Client i.e.: Client application Aplikaceja - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded Progress - + Down Speed i.e: Download speed Atsasyuteišonas dreizums - + Up Speed i.e: Upload speed Nūsasyuteišonas dreizums - + Downloaded i.e: total data downloaded Atsasyuteiti - + Uploaded i.e: total data uploaded Nūsasyuteiti - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. Kūplītuotuoja progress - + Files i.e. files that are being downloaded right now Faili - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers Dalikt kūplītuotuojus - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently Nūblokēt kūplītuotuoju - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A Navā atrasta - + Copy IP:port Puorspīst IP i portu @@ -8166,39 +8254,6 @@ Those plugins were disabled. - - PowerManagement - - - qBittorrent is active - qBittorrent ir aktīvs - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - - - PreviewSelectDialog @@ -8488,124 +8543,124 @@ Those plugins were disabled. Izglobuošonas vīta: - + Never Nikod - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) %1 x %2 (atsasyuteiti %3) - - + + %1 (%2 this session) %1 (%2 itymā sesejā) - - + + N/A Navā zynoms - + Yes Nui - + No - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) %1 (daleits %2) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) %1 (%2 maks.) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) %1 (%2 kūpā) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) %1 (%2 videjais) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - + Filter files... Meklēt failuos... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - + Web seed editing Lobuot puorstaipteikla devieju - + Web seed URL: Puorstaipteikla devieju adress: @@ -8613,33 +8668,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8647,22 +8702,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8711,12 +8766,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8738,76 +8793,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. RSS kanals ar itaidu adresi jau ir: %1 - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + Adress: + + + + Refresh interval: + + + + + sec + sek + + + + Default + + + RSSWidget @@ -8907,78 +9003,61 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name Lyudzu izalaseit apvuoča pasauku - + Folder name: Apvuoča pasauka: - + New folder Jauns apvuocis - - - Please type a RSS feed URL - Lyudzu īvoduot RSS kanala adresi - - - - - Feed URL: - Kanala adress - - - + Deletion confirmation Apstyprynuot iztreišonu - + Are you sure you want to delete the selected RSS feeds? Voi drūši zini, ka gribi nūteireit izalaseituos RSS kanalus? - + Please choose a new name for this RSS feed - + New feed name: Jauna kanala pasauke: - + Rename failed Puorsaukšona nāisadevās - + Date: Data: - + Feed: - + Author: Autors: @@ -9235,104 +9314,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories Vysys kategorejas - + Movies Filmys - + TV shows Televizejis laidīņi - + Music Muzyka - + Games Datorspieles - + Anime Multiplikaceja - + Software Programatura - + Pictures Atvaigi - + Books Gruomotas - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9357,94 +9436,94 @@ Click the "Search plugins..." button at the bottom right of the window Maklātivu dapyldi... - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example Pīvadums: - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins Vysi dapyldi - + Only enabled Īgrīztī dapyldi - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab - + Close all tabs - + Select... Izlaseit... - - + + Search Engine Maklātivs - - + + Please install Python to use the Search Engine. - + Empty search pattern - + Please type a search pattern first - + Stop Puortraukt @@ -9452,32 +9531,32 @@ Click the "Search plugins..." button at the bottom right of the window SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9875,67 +9954,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: Škārsteikla salaiduma statuss: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes DHT: %1 serveri - + qBittorrent needs to be restarted! - - + + Connection Status: Škārsteikla salaiduma statuss: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -10472,17 +10561,17 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10962,78 +11051,78 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TorrentsController - + Error: '%1' is not a valid torrent file. Kleida: '%1' navā dareigs torrenta fails. - + Priority must be an integer - + Priority is not valid Prioritets nav dereigs - + Torrent's metadata has not yet downloaded Torrenta metadati vēļ navā atsasyuteiti - + File IDs must be integers - + File ID is not valid Faile ID nav dereigs - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty Izglobuošonas vītu navar pamest tukšu - - + + Cannot create target directory - - + + Category cannot be empty Katagoreju navar pamest tukšu - + Unable to create category Nāisadevās radeit kategoreju - + Unable to edit category Naīsadevās lobuot kategoreju - + Unable to export torrent file. Error: %1 - + Cannot make save path Navar īstateit izglobuošonas vītu @@ -11053,39 +11142,39 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory Itymā apvuocī navar izglobuot - + WebUI Set location: moving "%1", from "%2" to "%3" Puorceļšona: Puorceļ "%1", nū "%2" iz "%3" - + Incorrect torrent name Nadereiga torrenta pasauka - - + + Incorrect category name Nadereiga kategorejas pasauka @@ -11229,73 +11318,73 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. Privats torrents - + Tracker editing Trakeru lobuošona - + Tracker URL: Trakera adress: - - + + Tracker editing failed Trakeru lobuošona naīsadevās - + The tracker URL entered is invalid. Īvoduotā trakera adress navā dareiga. - + The tracker URL already exists. Trakers ar itaidu adresi jau ir. - + Edit tracker URL... Lobuot trakera adresi... - + Remove tracker Nūjimt trakeri - + Copy tracker URL Puorspīst trakera adresi - + Force reannounce to selected trackers Dastateigs kontakts ar izalaseitajim trakeriem - + Force reannounce to all trackers Dastateigs kontakts ar vysim trakeriem - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility @@ -11784,319 +11873,319 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. TransferListWidget - + Column visibility - + Recheck confirmation Apstyprynuot puorvēri - + Are you sure you want to recheck the selected torrent(s)? - + Rename Puorsaukt - + New name: Jauna pasauka: - + Choose save path Izalaseit izglobuošonas vītu - + Unable to preview Navar apsvavērt - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags Nūjimt vysys byrkas - + Remove all tags from selected torrents? Nūjimt vysys byrkas izalaseitajim torrentim? - + Comma-separated tags: Atdaleit byrkas ar komatu: - + Invalid tag Nadereiga byrka - + Tag name: '%1' is invalid Byrkas pasauka: '%1' navā dereiga - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order Atsasyuteit saksteiguo parādā - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first Paprīšķu atsasyuteit pyrmuos i pādejuos dalenis - + Automatic Torrent Management Automatisks torrentu puorvaļds - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode Super nūsasyuteišonas režims @@ -12228,32 +12317,32 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12345,52 +12434,52 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12550,4 +12639,4 @@ Lyudzu izalaseit cytu pasauku i raudzeit vēļreiz. < 1m - + \ No newline at end of file diff --git a/src/lang/qbittorrent_lv_LV.ts b/src/lang/qbittorrent_lv_LV.ts index b35dc425b..bc8dcaf57 100644 --- a/src/lang/qbittorrent_lv_LV.ts +++ b/src/lang/qbittorrent_lv_LV.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Neizdevās ielādēt torrentu. Avots: "%1". Iemesls: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Problēma mēģinājumā pievienot torrenta duplikātu. Avots: %1. Esošais torrents: %2. Rezultāts: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Pievienot "Pievienot jaunu torrentu" logu galvenajā logā @@ -2179,13 +2175,13 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Cannot parse resume data: %1 - Nespēj parsēt atsākšanas datus: %1 + Nespēj parsēt atsākšanas datus: %1 Cannot parse torrent info: %1 - Nespēj parsēt torrenta informāciju: %1 + Nespēj parsēt torrenta informāciju: %1 @@ -3545,7 +3541,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Power management found suitable D-Bus interface. Interface: %1 - Energoefektivitātes pārvaldnieks atrada piemērotu D-Bus interfeisu. Interfeiss: %1 + Energoefektivitātes pārvaldnieks atrada piemērotu D-Bus interfeisu. Interfeiss: %1 @@ -3557,12 +3553,12 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Power management error. Action: %1. Error: %2 - Energoefektivitātes pārvaldnieka kļūda. Darbība: %1. Kļūda: %2 + Energoefektivitātes pārvaldnieka kļūda. Darbība: %1. Kļūda: %2 Power management unexpected error. State: %1. Error: %2 - Negaidīta energoefektivitātes pārvaldnieka kļūda. Stāvoklis: %1. Kļūda: %2 + Negaidīta energoefektivitātes pārvaldnieka kļūda. Stāvoklis: %1. Kļūda: %2 @@ -6145,10 +6141,6 @@ Vecākā atļautā: %2. Mixed mode Jauktais režīms - - Some options are incompatible with the chosen proxy type! - Dažas iespējas nav sadrīgas ar izvēlēto starpniekserveri! - If checked, hostname lookups are done via the proxy @@ -7132,10 +7124,6 @@ readme[0-9].txt: neatļaus 'readme1.txt', 'readme2.txt', bet A&uthentication Pierakstīšanas - - Info: The password is saved unencrypted - Brīdinājums: Šī parole netiek glabāta šifrētā veidā - Filter path (.dat, .p2p, .p2b): @@ -8294,32 +8282,6 @@ Esošie spraudņi tika atslēgti. Internetā - - PowerManagement - - qBittorrent is active - qBittorrent ir aktīvs - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Energoefektivitātes pārvaldnieks atrada piemērotu D-Bus interfeisu. Interfeiss: %1 - - - Power management error. Did not found suitable D-Bus interface. - Energoefektivitātes pārvaldnieka kļūda. Netika atrasts piemērots D-Bus interfeiss. - - - Power management error. Action: %1. Error: %2 - Energoefektivitātes pārvaldnieka kļūda. Darbība: %1. Kļūda: %2 - - - Power management unexpected error. State: %1. Error: %2 - Negaidīta energoefektivitātes pārvaldnieka kļūda. Stāvoklis: %1. Kļūda: %2 - - PreviewSelectDialog @@ -8863,10 +8825,6 @@ Esošie spraudņi tika atslēgti. Item doesn't exist: %1. Fails nepastāv: %1. - - Couldn't move folder into itself. - Nevar mapi ievietot sevī. - Can't move a folder into itself or its subfolders. @@ -8943,7 +8901,7 @@ Esošie spraudņi tika atslēgti. Feed doesn't exist: %1. - Kanāls nepastāv: %1. + Kanāls nepastāv: %1. @@ -8956,22 +8914,22 @@ Esošie spraudņi tika atslēgti. URL: - Adrese: + Adrese: Refresh interval: - + Atsvaidzināšanas intervāls: sec - sek + sek Default - Noklusētais + Noklusētais @@ -9076,14 +9034,6 @@ Esošie spraudņi tika atslēgti. Feed options... - - Edit feed URL... - Rediģēt kanāla adresi... - - - Edit feed URL - Rediģēt kanāla adresi - Please choose a folder name @@ -9099,14 +9049,6 @@ Esošie spraudņi tika atslēgti. New folder Jauna mape - - Please type a RSS feed URL - Lūdzu ievadiet RSS kanāla adresi - - - Feed URL: - Kanāla adrese: - Deletion confirmation diff --git a/src/lang/qbittorrent_ms_MY.ts b/src/lang/qbittorrent_ms_MY.ts index 975ee2d10..95c7d88ed 100644 --- a/src/lang/qbittorrent_ms_MY.ts +++ b/src/lang/qbittorrent_ms_MY.ts @@ -7108,10 +7108,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication Pen&gesahihan - - Info: The password is saved unencrypted - Maklumat: Kata laluan disimpan secara tak sulit - Filter path (.dat, .p2p, .p2b): @@ -8270,13 +8266,6 @@ Pemalam tersebut telah dilumpuhkan. Pautan Sesawang - - PowerManagement - - qBittorrent is active - qBittorrent aktif - - PreviewSelectDialog @@ -8909,7 +8898,7 @@ Pemalam tersebut telah dilumpuhkan. URL: - URL: + URL: @@ -8919,12 +8908,12 @@ Pemalam tersebut telah dilumpuhkan. sec - saat + saat Default - Lalai + Lalai @@ -9044,14 +9033,6 @@ Pemalam tersebut telah dilumpuhkan. New folder Folder baharu - - Please type a RSS feed URL - Sila taip satu URL suapan RSS. - - - Feed URL: - URL Suapan: - Deletion confirmation diff --git a/src/lang/qbittorrent_nb.ts b/src/lang/qbittorrent_nb.ts index ce9824394..757423262 100644 --- a/src/lang/qbittorrent_nb.ts +++ b/src/lang/qbittorrent_nb.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Klarte ikke legge til torrent. Kilde: «%1». Årsak: «%2» - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Oppdaget et forsøk på å legge til duplisert torrent. Kilde: %1. Eksisterende torrent: %2. Resultat: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Fest dialogvinduet «Legg til ny torrent» til hovedvinduet @@ -2179,13 +2175,13 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Cannot parse resume data: %1 - Kan ikke tolke gjenopptakelsesdata: %1 + Kan ikke tolke gjenopptakelsesdata: %1 Cannot parse torrent info: %1 - Kan ikke tolke informasjon om torrent: %1 + Kan ikke tolke informasjon om torrent: %1 @@ -2440,10 +2436,6 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Torrent removed. Torrent: "%1" Fjernet torrent. Torrent: «%1» - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Oppdaget et forsøk på å legge til duplisert torrent. Eksisterende torrent: %1. Resultat: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Power management found suitable D-Bus interface. Interface: %1 - Strømstyringen fant passende D-Bus-grensesnitt. Grensesnitt: %1 + Strømstyringen fant passende D-Bus-grensesnitt. Grensesnitt: %1 @@ -3561,12 +3553,12 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Power management error. Action: %1. Error: %2 - Strømstyringsfeil. Handling: %1. Feil: %2 + Strømstyringsfeil. Handling: %1. Feil: %2 Power management unexpected error. State: %1. Error: %2 - Uventet feil ved strømstyring. Tilstand: %1. Feil: %2 + Uventet feil ved strømstyring. Tilstand: %1. Feil: %2 @@ -6149,10 +6141,6 @@ Minimumskrav: %2. Mixed mode Blandet modus - - Some options are incompatible with the chosen proxy type! - Noen alternativer passer ikke med valgt type mellomtjener. - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme{0-9].txt: filtrerer «readme1.txt», «readme2.txt», men ikke «readme10 A&uthentication Id&entitetsbekreftelse - - Info: The password is saved unencrypted - Info: Passordet er lagret ukryptert - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ De uavinstallerbare programtilleggene ble avskrudd. Nettlenke - - PowerManagement - - qBittorrent is active - qBittorrent er aktiv - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Strømstyringen fant passende D-Bus-grensesnitt. Grensesnitt: %1 - - - Power management error. Did not found suitable D-Bus interface. - Strømstyringsfeil. Fant ikke noe passende D-Bus-grensesnitt. - - - Power management error. Action: %1. Error: %2 - Strømstyringsfeil. Handling: %1. Feil: %2 - - - Power management unexpected error. State: %1. Error: %2 - Uventet feil ved strømstyring. Tilstand: %1. Feil: %2 - - PreviewSelectDialog @@ -8867,10 +8825,6 @@ De uavinstallerbare programtilleggene ble avskrudd. Item doesn't exist: %1. Elementet finnes ikke: %1 - - Couldn't move folder into itself. - Kan ikke flytte mappe til seg selv. - Can't move a folder into itself or its subfolders. @@ -8947,7 +8901,7 @@ De uavinstallerbare programtilleggene ble avskrudd. Feed doesn't exist: %1. - Informasjonskanal finnes ikke: %1. + Informasjonskanal finnes ikke: %1. @@ -8960,22 +8914,22 @@ De uavinstallerbare programtilleggene ble avskrudd. URL: - URL: + URL: Refresh interval: - + Oppdateringsintervall: sec - sek + sek Default - Forvalgt + Forvalgt @@ -9080,14 +9034,6 @@ De uavinstallerbare programtilleggene ble avskrudd. Feed options... - - Edit feed URL... - Rediger informasjonskanalens adresse … - - - Edit feed URL - Rediger informasjonskanalens adresse - Please choose a folder name @@ -9103,14 +9049,6 @@ De uavinstallerbare programtilleggene ble avskrudd. New folder Ny mappe - - Please type a RSS feed URL - Skriv inn informasjonskanalens nettadresse - - - Feed URL: - Informasjonskanalens adresse: - Deletion confirmation diff --git a/src/lang/qbittorrent_nl.ts b/src/lang/qbittorrent_nl.ts index d8f0b8ad2..9f4d6a6d3 100644 --- a/src/lang/qbittorrent_nl.ts +++ b/src/lang/qbittorrent_nl.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Toevoegen van torrent mislukt. Bron: "%1". Reden: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Poging gedetecteerd om een dubbele torrent toe te voegen. Bron: %1. Bestaande torrent: %2. Resultaat: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Dialoogvenster "nieuwe torrent toevoegen" vastmaken aan hoofdvenster @@ -2179,13 +2175,13 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Cannot parse resume data: %1 - Kan hervattingsgegevens niet verwerken: %1 + Kan hervattingsgegevens niet verwerken: %1 Cannot parse torrent info: %1 - Kan torrent-informatie niet verwerken: %1 + Kan torrent-informatie niet verwerken: %1 @@ -2440,10 +2436,6 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Torrent removed. Torrent: "%1" Torrent verwijderd. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Poging gedetecteerd om een dubbele torrent toe te voegen. Bestaande torrent: %1. Resultaat: %2. - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Power management found suitable D-Bus interface. Interface: %1 - Energiebeheer heeft geschikte D-Bus interface gevonden. Interface: %1 + Energiebeheer heeft geschikte D-Bus interface gevonden. Interface: %1 @@ -3561,12 +3553,12 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Power management error. Action: %1. Error: %2 - Fout in energiebeheer. Actie: %1. Fout: %2 + Fout in energiebeheer. Actie: %1. Fout: %2 Power management unexpected error. State: %1. Error: %2 - Onverwachte fout in energiebeheer. Status: %1. Error: %2 + Onverwachte fout in energiebeheer. Status: %1. Error: %2 @@ -6148,10 +6140,6 @@ Minimale vereiste: %2. Mixed mode Gemengde modus - - Some options are incompatible with the chosen proxy type! - Sommige opties zijn niet compatibel met het gekozen proxy-type! - If checked, hostname lookups are done via the proxy @@ -7135,10 +7123,6 @@ readme[0-9].txt: filtert 'readme1.txt', 'readme2.txt' maar n A&uthentication Authenticatie - - Info: The password is saved unencrypted - Info: het wachtwoord wordt onversleuteld opgeslagen - Filter path (.dat, .p2p, .p2b): @@ -8297,32 +8281,6 @@ Deze plugins zijn uitgeschakeld. Webkoppeling - - PowerManagement - - qBittorrent is active - qBittorrent is actief - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Energiebeheer heeft geschikte D-Bus interface gevonden. Interface: %1 - - - Power management error. Did not found suitable D-Bus interface. - Fout in energiebeheer. Geen geschikte D-Bus interface gevonden. - - - Power management error. Action: %1. Error: %2 - Fout in energiebeheer. Actie: %1. Fout: %2 - - - Power management unexpected error. State: %1. Error: %2 - Onverwachte fout in energiebeheer. Status: %1. Error: %2 - - PreviewSelectDialog @@ -8866,10 +8824,6 @@ Deze plugins zijn uitgeschakeld. Item doesn't exist: %1. Item bestaat niet: %1. - - Couldn't move folder into itself. - Kon map niet in zichzelf verplaatsen - Can't move a folder into itself or its subfolders. @@ -8946,7 +8900,7 @@ Deze plugins zijn uitgeschakeld. Feed doesn't exist: %1. - Feed bestaat niet: %1. + Feed bestaat niet: %1. @@ -8959,22 +8913,22 @@ Deze plugins zijn uitgeschakeld. URL: - URL: + URL: Refresh interval: - + Vernieuwinterval: sec - sec + sec Default - Standaard + Standaard @@ -9079,14 +9033,6 @@ Deze plugins zijn uitgeschakeld. Feed options... - - Edit feed URL... - Feed-URL bewerken... - - - Edit feed URL - Feed-URL bewerken - Please choose a folder name @@ -9102,14 +9048,6 @@ Deze plugins zijn uitgeschakeld. New folder Nieuwe map - - Please type a RSS feed URL - Typ een RSS-feed-URL - - - Feed URL: - Feed-URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_oc.ts b/src/lang/qbittorrent_oc.ts index 54de16d23..a390349af 100644 --- a/src/lang/qbittorrent_oc.ts +++ b/src/lang/qbittorrent_oc.ts @@ -8889,7 +8889,7 @@ Los empeutons en question son estats desactivats. URL: - URL: + URL: diff --git a/src/lang/qbittorrent_pl.ts b/src/lang/qbittorrent_pl.ts index 7a690ab00..ae331d1c8 100644 --- a/src/lang/qbittorrent_pl.ts +++ b/src/lang/qbittorrent_pl.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Nie udało się dodać torrenta. Źródło: "%1". Powód: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Wykryto próbę dodania zduplikowanego torrenta. Źródło: %1. Istniejący torrent: %2. Wynik: %3 - Merging of trackers is disabled @@ -508,7 +504,7 @@ Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + Wykryto próbę dodania zduplikowanego torrenta. Źródło: %1. Istniejący torrent: "%2". Infohash torrenta: %3. Wynik: %4 @@ -1081,7 +1077,7 @@ Internal hostname resolver cache expiry interval - + Interwał wygaśnięcia pamięci podręcznej wewnętrznego programu do rozpoznawania nazw hostów @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Dołącz okno dialogowe "Dodaj nowy torrent" do okna głównego @@ -2103,12 +2099,12 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Corrupted resume data: %1 - + Uszkodzone dane wznowienia: %1 save_path is invalid - + Ścieżka zapisu jest nieprawidłowa @@ -2179,23 +2175,23 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Cannot parse resume data: %1 - Nie można przetworzyć danych wznowienia: %1 + Nie można przetworzyć danych wznowienia: %1 Cannot parse torrent info: %1 - Nie można przetworzyć informacji torrenta: %1 + Nie można przetworzyć informacji torrenta: %1 Corrupted resume data: %1 - + Uszkodzone dane wznowienia: %1 save_path is invalid - + Ścieżka zapisu jest nieprawidłowa @@ -2440,10 +2436,6 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Torrent removed. Torrent: "%1" Torrent usunięto. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Wykryto próbę dodania duplikatu torrenta. Istniejący torrent: %1. Wynik: %2 - Merging of trackers is disabled @@ -2548,14 +2540,14 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Duplicate torrent - + Duplikat torrenta Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + Wykryto próbę dodania duplikatu torrenta. Istniejący torrent: "%1". Infohash torrenta: %2. Wynik: %3 @@ -3549,24 +3541,24 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi Power management found suitable D-Bus interface. Interface: %1 - Zarządzanie energią znalazło odpowiedni interfejs D-Bus. Interfejs: %1 + Zarządzanie energią znalazło odpowiedni interfejs D-Bus. Interfejs: %1 Power management error. Did not find a suitable D-Bus interface. - + Błąd zarządzania energią. Nie znaleziono odpowiedniego interfejsu D-Bus. Power management error. Action: %1. Error: %2 - Błąd zarządzania energią. Czynność: %1. Błąd: %2 + Błąd zarządzania energią. Czynność: %1. Błąd: %2 Power management unexpected error. State: %1. Error: %2 - Nieoczekiwany błąd zarządzania energią. Stan: %1. Błąd: %2 + Nieoczekiwany błąd zarządzania energią. Stan: %1. Błąd: %2 @@ -3575,7 +3567,7 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi PMMacOS qBittorrent is active - + PMMacOS @@ -6046,7 +6038,7 @@ Minimalny wymóg: %2. Show free disk space in status bar - + Pokaż wolne miejsce na dysku na pasku stanu @@ -6149,10 +6141,6 @@ Minimalny wymóg: %2. Mixed mode Tryb mieszany - - Some options are incompatible with the chosen proxy type! - Niektóre opcje są niezgodne z wybranym typem proxy! - If checked, hostname lookups are done via the proxy @@ -6315,12 +6303,12 @@ Wyłącz szyfrowanie: łącz się tylko z partnerami bez szyfrowania protokołu< Some functions are unavailable with the chosen proxy type! - + Niektóre funkcje są niedostępne przy wybranym typie serwera proxy! Note: The password is saved unencrypted - + Uwaga: hasło jest zapisywane w postaci niezaszyfrowanej @@ -7136,10 +7124,6 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale A&uthentication U&wierzytelnianie - - Info: The password is saved unencrypted - Informacja: hasło jest zapisywane bez szyfrowania - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Te wtyczki zostały wyłączone. Odnośnik sieciowy - - PowerManagement - - qBittorrent is active - qBittorrent jest aktywny - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Zarządzanie energią znalazło odpowiedni interfejs D-Bus. Interfejs: %1 - - - Power management error. Did not found suitable D-Bus interface. - Błąd zarządzania energią. Nie znaleziono odpowiedniego interfejsu D-Bus. - - - Power management error. Action: %1. Error: %2 - Błąd zarządzania energią. Czynność: %1. Błąd: %2 - - - Power management unexpected error. State: %1. Error: %2 - Nieoczekiwany błąd zarządzania energią. Stan: %1. Błąd: %2 - - PreviewSelectDialog @@ -8867,14 +8825,10 @@ Te wtyczki zostały wyłączone. Item doesn't exist: %1. Element nie istnieje: %1. - - Couldn't move folder into itself. - Nie można przenieść folderu do siebie. - Can't move a folder into itself or its subfolders. - + Nie można przenieść folderu do niego samego ani do jego podfolderów. @@ -8942,12 +8896,12 @@ Te wtyczki zostały wyłączone. Invalid 'refreshInterval' value - + Nieprawidłowa wartość 'refreshInterval' Feed doesn't exist: %1. - Kanał nie istnieje: %1. + Kanał nie istnieje: %1. @@ -8955,27 +8909,27 @@ Te wtyczki zostały wyłączone. RSS Feed Options - + Opcje kanału RSS URL: - Adres URL: + Adres URL: Refresh interval: - + Częstotliwość odświeżania: sec - s + s Default - + Domyślny @@ -9078,15 +9032,7 @@ Te wtyczki zostały wyłączone. Feed options... - - - - Edit feed URL... - Edytuj adres URL kanału... - - - Edit feed URL - Edytuj adres URL kanału + Opcje kanału... @@ -9103,14 +9049,6 @@ Te wtyczki zostały wyłączone. New folder Nowy folder - - Please type a RSS feed URL - Proszę wpisać adres URL kanału RSS - - - Feed URL: - Adres URL kanału: - Deletion confirmation @@ -10058,7 +9996,7 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, Free space: N/A - + Wolne miejsce: niedostępne @@ -10097,7 +10035,7 @@ Kliknij przycisk "Wtyczki wyszukiwania..." w prawym dolnym rogu okna, Free space: - + Wolne miejsce: diff --git a/src/lang/qbittorrent_pt_BR.ts b/src/lang/qbittorrent_pt_BR.ts index 33462385b..e43804846 100644 --- a/src/lang/qbittorrent_pt_BR.ts +++ b/src/lang/qbittorrent_pt_BR.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Falha ao adicionar o torrent. Fonte: "%1". Motivo: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detectada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 - Merging of trackers is disabled @@ -508,7 +504,7 @@ Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + Detectada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Hash de informação do torrent: %3. Resultado: %4 @@ -1081,7 +1077,7 @@ Internal hostname resolver cache expiry interval - + Intervalo de expiração do cache do resolvedor de nome de host interno @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Anexar diálogo "Adicionar novo torrent" à janela principal @@ -2103,12 +2099,12 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Corrupted resume data: %1 - + Dados de resumo corrompidos: %1 save_path is invalid - + save_path é inválido @@ -2179,23 +2175,23 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Cannot parse resume data: %1 - Não foi possível analisar os dados de retomada: %1 + Não foi possível analisar os dados de retomada: %1 Cannot parse torrent info: %1 - Não foi possível analisar as informações do torrent: %1 + Não foi possível analisar as informações do torrent: %1 Corrupted resume data: %1 - + Dados de resumo corrompidos: %1 save_path is invalid - + save_path é inválido @@ -2440,10 +2436,6 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Torrent removed. Torrent: "%1" Torrent removido. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Detectada uma tentativa de adicionar um torrent duplicado. Torrent existente: %1. Resultado: %2 - Merging of trackers is disabled @@ -2548,14 +2540,14 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Duplicate torrent - + Torrent duplicado Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + Detectada uma tentativa de adicionar um torrent duplicado. Torrent existente: %1. Hash de informação do torrent: %2. Resultado: %3 @@ -3549,24 +3541,24 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t Power management found suitable D-Bus interface. Interface: %1 - O gerenciamento de energia encontrou uma interface D-Bus adequada. Interface: %1 + O gerenciamento de energia encontrou uma interface D-Bus adequada. Interface: %1 Power management error. Did not find a suitable D-Bus interface. - + Erro de gerenciamento de energia. Não foi encontrada uma interface D-Bus adequada. Power management error. Action: %1. Error: %2 - Erro de gerenciamento de energia. Ação: %1. Erro: %2 + Erro de gerenciamento de energia. Ação: %1. Erro: %2 Power management unexpected error. State: %1. Error: %2 - Erro inesperado do gerenciamento de energia. Estado: %1. Erro: %2 + Erro inesperado do gerenciamento de energia. Estado: %1. Erro: %2 @@ -3575,7 +3567,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t PMMacOS qBittorrent is active - + PMMacOS @@ -6046,7 +6038,7 @@ Requerimento mínimo: %2. Show free disk space in status bar - + Mostrar espaço livre em disco na barra de status @@ -6149,10 +6141,6 @@ Requerimento mínimo: %2. Mixed mode Modo misto - - Some options are incompatible with the chosen proxy type! - Algumas opções são incompatíveis com o tipo de proxy escolhido! - If checked, hostname lookups are done via the proxy @@ -6315,12 +6303,12 @@ Desativar encriptação: Só conectar com os pares sem encriptação do protocol Some functions are unavailable with the chosen proxy type! - + Algumas funções não estão disponíveis com o tipo de proxy escolhido! Note: The password is saved unencrypted - + Aviso: A senha é salva sem criptografia @@ -7136,10 +7124,6 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n A&uthentication A&utenticação - - Info: The password is saved unencrypted - Info: A senha é salva desencriptada - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Esses plugins foram desativados. Link da web - - PowerManagement - - qBittorrent is active - O qBittorrent está ativo - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - O gerenciamento de energia encontrou uma interface D-Bus adequada. Interface: %1 - - - Power management error. Did not found suitable D-Bus interface. - Erro de gerenciamento de energia. Não foi encontrada uma interface D-Bus adequada. - - - Power management error. Action: %1. Error: %2 - Erro de gerenciamento de energia. Ação: %1. Erro: %2 - - - Power management unexpected error. State: %1. Error: %2 - Erro inesperado do gerenciamento de energia. Estado: %1. Erro: %2 - - PreviewSelectDialog @@ -8867,14 +8825,10 @@ Esses plugins foram desativados. Item doesn't exist: %1. O item não existe: %1. - - Couldn't move folder into itself. - Não foi possível mover a pasta para dentro dela. - Can't move a folder into itself or its subfolders. - + Não foi possível mover a pasta para dentro dela mesma ou de suas subpastas. @@ -8942,12 +8896,12 @@ Esses plugins foram desativados. Invalid 'refreshInterval' value - + Valor 'refreshInterval' inválido Feed doesn't exist: %1. - O feed não existe: %1. + O feed não existe: %1. @@ -8955,27 +8909,27 @@ Esses plugins foram desativados. RSS Feed Options - + Opções do feed RSS URL: - URL: + URL: Refresh interval: - + Intervalo de atualização: sec - seg + seg Default - Padrão + Padrão @@ -9078,15 +9032,7 @@ Esses plugins foram desativados. Feed options... - - - - Edit feed URL... - Editar URL do feed... - - - Edit feed URL - Editar URL do feed + Opções do feed... @@ -9103,14 +9049,6 @@ Esses plugins foram desativados. New folder Nova pasta - - Please type a RSS feed URL - Por favor digite uma URL de feed do RSS - - - Feed URL: - URL do feed: - Deletion confirmation @@ -10058,7 +9996,7 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel Free space: N/A - + Espaço livre: N/A @@ -10097,7 +10035,7 @@ Clique no botão "Plugins de busca" na parte inferior direita da janel Free space: - + Espaço livre: diff --git a/src/lang/qbittorrent_pt_PT.ts b/src/lang/qbittorrent_pt_PT.ts index a04356e41..c4cce2fc1 100644 --- a/src/lang/qbittorrent_pt_PT.ts +++ b/src/lang/qbittorrent_pt_PT.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Ocorreu um erro ao adicionar o torrent. Fonte: "%1". Motivo: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Detetada uma tentativa de adicionar um torrent duplicado. Fonte: %1. Torrent existente: %2. Resultado: %3 - Merging of trackers is disabled @@ -2179,13 +2175,13 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Cannot parse resume data: %1 - Não foi possível analisar os dados de retomada: %1 + Não foi possível analisar os dados de retomada: %1 Cannot parse torrent info: %1 - Não foi possível analisar as informações do torrent: %1 + Não foi possível analisar as informações do torrent: %1 @@ -6144,10 +6140,6 @@ Requerimento mínimo: %2. Mixed mode Modo misto - - Some options are incompatible with the chosen proxy type! - Algumas opções são incompatíveis com o tipo de proxy escolhido! - If checked, hostname lookups are done via the proxy @@ -6408,7 +6400,7 @@ Desativar encriptação: Apenas liga a fontes sem protocolo de encriptaçãoEndereço IP com o qual a interface web irá ligar. -Especifique um endereço IPv4 ou IPv6. Você pode especificar "0.0.0.0" para qualquer endereço IPv4, +Especifique um endereço IPv4 ou IPv6. Você pode especificar "0.0.0.0" para qualquer endereço IPv4, "::" para qualquer endereço IPv6, ou "*" para IPv4 e IPv6. @@ -7131,10 +7123,6 @@ readme[0-9].txt: filtra 'readme1.txt', 'readme2.txt', mas n A&uthentication A&utenticação - - Info: The password is saved unencrypted - Informação: A palavra-passe é guardada sem encriptação - Filter path (.dat, .p2p, .p2b): @@ -8293,13 +8281,6 @@ Esses plugins foram desativados. Ligação da web - - PowerManagement - - qBittorrent is active - O qBittorrent encontra-se ativo - - PreviewSelectDialog @@ -8843,10 +8824,6 @@ Esses plugins foram desativados. Item doesn't exist: %1. O item não existe: %1. - - Couldn't move folder into itself. - Não foi possível mover a pasta para dentro da mesma. - Can't move a folder into itself or its subfolders. @@ -8923,7 +8900,7 @@ Esses plugins foram desativados. Feed doesn't exist: %1. - O feed não existe: %1. + O feed não existe: %1. @@ -8936,22 +8913,22 @@ Esses plugins foram desativados. URL: - URL: + URL: Refresh interval: - + Intervalo de atualização: sec - seg + seg Default - Padrão + Padrão @@ -9056,14 +9033,6 @@ Esses plugins foram desativados. Feed options... - - Edit feed URL... - Editar URL do feed... - - - Edit feed URL - Editar URL do feed - Please choose a folder name @@ -9079,14 +9048,6 @@ Esses plugins foram desativados. New folder Nova pasta - - Please type a RSS feed URL - Por favor, introduza um URL com fonte RSS - - - Feed URL: - URL fonte: - Deletion confirmation diff --git a/src/lang/qbittorrent_ro.ts b/src/lang/qbittorrent_ro.ts index ac59c1ef8..dd368b889 100644 --- a/src/lang/qbittorrent_ro.ts +++ b/src/lang/qbittorrent_ro.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Adăugarea torentului a eșuat. Sursă: „%1”. Motiv: „%2” - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - A fost detectată o încercare de a adăuga un torent duplicat. Sursa: %1. Torent existent: %2. Rezultat: %3 - Merging of trackers is disabled @@ -2179,13 +2175,13 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Cannot parse resume data: %1 - Datele despre reluare nu pot fi parcurse: %1 + Datele despre reluare nu pot fi parcurse: %1 Cannot parse torrent info: %1 - Informațiile despre torent nu pot fi parcurse: %1 + Informațiile despre torent nu pot fi parcurse: %1 @@ -7110,10 +7106,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication A&utentificare - - Info: The password is saved unencrypted - Informație: Parola este salvată fără criptare - Filter path (.dat, .p2p, .p2b): @@ -8273,13 +8265,6 @@ Totuși, acele module au fost dezactivate. Legătură Web - - PowerManagement - - qBittorrent is active - qBittorrent este activ - - PreviewSelectDialog @@ -8912,22 +8897,22 @@ Totuși, acele module au fost dezactivate. URL: - Adresă URL: + Adresă URL: Refresh interval: - + Interval de împrospătare: sec - sec + sec Default - Implicit + Implicit @@ -9047,14 +9032,6 @@ Totuși, acele module au fost dezactivate. New folder Dosar nou - - Please type a RSS feed URL - Introduceți un URL pentru fluxul RSS - - - Feed URL: - URL-ul fluxului: - Deletion confirmation diff --git a/src/lang/qbittorrent_ru.ts b/src/lang/qbittorrent_ru.ts index 8c648c39c..9ad0e0d43 100644 --- a/src/lang/qbittorrent_ru.ts +++ b/src/lang/qbittorrent_ru.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Не удалось добавить торрент. Источник: «%1». Причина: «%2» - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Обнаружена попытка добавления повторяющегося торрента. Источник: %1. Существующий торрент: %2. Результат: %3 - Merging of trackers is disabled @@ -508,7 +504,7 @@ Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + Обнаружена попытка добавления повторяющегося торрента. Источник: %1. Существующий торрент: «%2». Инфо-хеш торрента: %3. Результат: %4 @@ -1081,7 +1077,7 @@ Internal hostname resolver cache expiry interval - + Период истечения срока кэша внутреннего преобразователя имён хостов @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Привязать окно добавления торрента к главному @@ -1800,7 +1796,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Season number is a mandatory non-zero value - Номер сезона должен иметь ненулевое значение + Номер сезона должен быть ненулевым значением @@ -2103,12 +2099,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Corrupted resume data: %1 - + Повреждённые данные возобновления: %1 save_path is invalid - + save_path не является действительным @@ -2179,23 +2175,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Не удаётся разобрать данные возобновления: %1 + Не удаётся разобрать данные возобновления: %1 Cannot parse torrent info: %1 - Не удаётся разобрать информацию о торренте: %1 + Не удаётся разобрать информацию о торренте: %1 Corrupted resume data: %1 - + Повреждённые данные возобновления: %1 save_path is invalid - + save_path не является действительным @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Торрент удалён. Торрент: «%1» - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Обнаружена попытка добавления повторяющегося торрента. Существующий торрент: %1. Результат: %2 - Merging of trackers is disabled @@ -2548,14 +2540,14 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Duplicate torrent - + Повтор торрента Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + Обнаружена попытка добавления повторяющегося торрента. Существующий торрент: «%1». Инфо-хеш торрента: %2. Результат: %3 @@ -3549,24 +3541,24 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Управление питанием нашло подходящий интерфейс D-Bus. Интерфейс: %1 + Управление питанием нашло подходящий интерфейс D-Bus. Интерфейс: %1 Power management error. Did not find a suitable D-Bus interface. - + Ошибка управления питанием. Не был найден подходящий интерфейс D-Bus. Power management error. Action: %1. Error: %2 - Ошибка управления питанием. Действие: %1. Ошибка: %2 + Ошибка управления питанием. Действие: %1. Ошибка: %2 Power management unexpected error. State: %1. Error: %2 - Непредвиденная ошибка управления питанием. Состояние: %1. Ошибка: %2 + Непредвиденная ошибка управления питанием. Состояние: %1. Ошибка: %2 @@ -3575,7 +3567,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also PMMacOS qBittorrent is active - + PMMacOS @@ -6046,7 +6038,7 @@ Minimum requirement: %2. Show free disk space in status bar - + Показывать свободное место на диске в строке состояния @@ -6149,10 +6141,6 @@ Minimum requirement: %2. Mixed mode Смешанный режим - - Some options are incompatible with the chosen proxy type! - Некоторые параметры несовместимы с выбранным типом прокси-сервера! - If checked, hostname lookups are done via the proxy @@ -6315,12 +6303,12 @@ Disable encryption: Only connect to peers without protocol encryption Some functions are unavailable with the chosen proxy type! - + Некоторые функции недоступны при выбранном типе прокси! Note: The password is saved unencrypted - + Примечание: Пароль сохраняется в нешифрованном виде @@ -7136,10 +7124,6 @@ readme[0-9].txt: фильтровать «readme1.txt», «readme2.txt», но A&uthentication &Аутентификация - - Info: The password is saved unencrypted - Примечание: пароль хранится в нешифрованном виде - Filter path (.dat, .p2p, .p2b): @@ -8299,32 +8283,6 @@ Those plugins were disabled. Веб-ссылка - - PowerManagement - - qBittorrent is active - qBittorrent активен - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Управление питанием нашло подходящий интерфейс D-Bus. Интерфейс: %1 - - - Power management error. Did not found suitable D-Bus interface. - Ошибка управления питанием. Не найден подходящий интерфейс D-Bus. - - - Power management error. Action: %1. Error: %2 - Ошибка управления питанием. Действие: %1. Ошибка: %2 - - - Power management unexpected error. State: %1. Error: %2 - Непредвиденная ошибка управления питанием. Состояние: %1. Ошибка: %2 - - PreviewSelectDialog @@ -8868,14 +8826,10 @@ Those plugins were disabled. Item doesn't exist: %1. Элемент не существует: %1. - - Couldn't move folder into itself. - Не удалось переместить папку в саму себя. - Can't move a folder into itself or its subfolders. - + Нельзя переместить папку в саму себя или в её вложенные папки. @@ -8943,12 +8897,12 @@ Those plugins were disabled. Invalid 'refreshInterval' value - + Недействительное значение «refreshInterval» Feed doesn't exist: %1. - Лента не существует: %1. + Лента не существует: %1. @@ -8956,27 +8910,27 @@ Those plugins were disabled. RSS Feed Options - + Параметры RSS-ленты URL: - Адрес: + Адрес: Refresh interval: - + Период обновления: sec - с + с Default - Стандартно + Стандартно @@ -9079,15 +9033,7 @@ Those plugins were disabled. Feed options... - - - - Edit feed URL... - Править адрес ленты… - - - Edit feed URL - Править адрес ленты + Параметры ленты… @@ -9104,14 +9050,6 @@ Those plugins were disabled. New folder Новая папка - - Please type a RSS feed URL - Пожалуйста, введите адрес RSS-ленты - - - Feed URL: - Адрес ленты: - Deletion confirmation @@ -10059,7 +9997,7 @@ Click the "Search plugins..." button at the bottom right of the window Free space: N/A - + Свободное место: Н/Д @@ -10098,7 +10036,7 @@ Click the "Search plugins..." button at the bottom right of the window Free space: - + Свободное место: @@ -10752,7 +10690,7 @@ Please choose a different name and try again. Optimize alignment - Оптимизировать сортировку файлов + Оптимизировать выравнивание diff --git a/src/lang/qbittorrent_sk.ts b/src/lang/qbittorrent_sk.ts index 780a03550..bf8746386 100644 --- a/src/lang/qbittorrent_sk.ts +++ b/src/lang/qbittorrent_sk.ts @@ -487,10 +487,6 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené.Failed to add torrent. Source: "%1". Reason: "%2" Nepodarilo sa pridať torrent. Zdroj: "%1". Dôvod: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Bol zistený pokus o pridanie duplicitného torrentu. Zdroj: %1. Exitujúci torrent: %2. Výsledok: %3 - Merging of trackers is disabled @@ -1157,7 +1153,7 @@ Torrenty, ktoré majú iniciálne metadáta, budú pridané ako zastavené. Attach "Add new torrent" dialog to main window - + Pripnúť dialógové okno "Pridať nový torrent" k hlavnému oknu @@ -2180,13 +2176,13 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Cannot parse resume data: %1 - Nepodarilo sa spracovať dáta pre obnovenie: %1 + Nepodarilo sa spracovať dáta pre obnovenie: %1 Cannot parse torrent info: %1 - Nedajú sa spracovať informácie torrentu: %1 + Nedajú sa spracovať informácie torrentu: %1 @@ -3546,7 +3542,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Power management found suitable D-Bus interface. Interface: %1 - Správa napájania našla vhodné D-Bus rozhranie. Rozhranie: %1 + Správa napájania našla vhodné D-Bus rozhranie. Rozhranie: %1 @@ -3558,12 +3554,12 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Power management error. Action: %1. Error: %2 - Chyba správy napájania. Akcia: %1. Chyba: %2 + Chyba správy napájania. Akcia: %1. Chyba: %2 Power management unexpected error. State: %1. Error: %2 - Neočakávaná chyba správy napájania. Stav: %1. Chyba: %2 + Neočakávaná chyba správy napájania. Stav: %1. Chyba: %2 @@ -6145,10 +6141,6 @@ Minimálna verzia: %2. Mixed mode Zmiešaný režim - - Some options are incompatible with the chosen proxy type! - Niektoré voľby nie sú kompatibilné s vybraným typom proxy! - If checked, hostname lookups are done via the proxy @@ -7132,10 +7124,6 @@ readme[0-9].txt: filtruje 'readme1.txt', 'readme2.txt', ale A&uthentication Overenie - - Info: The password is saved unencrypted - Info: Heslo sa ukladá nezašifrované - Filter path (.dat, .p2p, .p2b): @@ -8296,32 +8284,6 @@ Tieto moduly však boli vypnuté. Webový odkaz - - PowerManagement - - qBittorrent is active - qBittorent je aktívný - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Správa napájania našla vhodné D-Bus rozhranie. Rozhranie: %1 - - - Power management error. Did not found suitable D-Bus interface. - Chyba správy napájania. Nebolo nájdené vhodné D-Bus rozhranie. - - - Power management error. Action: %1. Error: %2 - Chyba správy napájania. Akcia: %1. Chyba: %2 - - - Power management unexpected error. State: %1. Error: %2 - Neočakávaná chyba správy napájania. Stav: %1. Chyba: %2 - - PreviewSelectDialog @@ -8865,10 +8827,6 @@ Tieto moduly však boli vypnuté. Item doesn't exist: %1. Položka neexistuje: %1. - - Couldn't move folder into itself. - Nebolo možné presunúť adresár do seba. - Can't move a folder into itself or its subfolders. @@ -8945,7 +8903,7 @@ Tieto moduly však boli vypnuté. Feed doesn't exist: %1. - RSS kanál neexistuje: %1. + RSS kanál neexistuje: %1. @@ -8958,22 +8916,22 @@ Tieto moduly však boli vypnuté. URL: - URL: + URL: Refresh interval: - + Interval obnovenia: sec - sec + sec Default - Predvolený + Predvolený @@ -9078,14 +9036,6 @@ Tieto moduly však boli vypnuté. Feed options... - - Edit feed URL... - Upraviť URL kanálu... - - - Edit feed URL - Upraviť URL kanálu - Please choose a folder name @@ -9101,14 +9051,6 @@ Tieto moduly však boli vypnuté. New folder Nový priečinok - - Please type a RSS feed URL - Prosím, zadajte URL RSS kanálu - - - Feed URL: - URL kanálu: - Deletion confirmation diff --git a/src/lang/qbittorrent_sl.ts b/src/lang/qbittorrent_sl.ts index 91d8db5d5..c72d74bf9 100644 --- a/src/lang/qbittorrent_sl.ts +++ b/src/lang/qbittorrent_sl.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Dodajanje torrenta ni uspelo. Vir: "%1". Razlog: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Zaznan je bil poskus dodajanja podvojenega torrenta. Vir: %1. Obstoječi torrent: %2. Rezultat: %3 - Merging of trackers is disabled @@ -2180,13 +2176,13 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Cannot parse resume data: %1 - Podatkov o nadaljevanju ni mogoče razčleniti: %1 + Podatkov o nadaljevanju ni mogoče razčleniti: %1 Cannot parse torrent info: %1 - Podatkov o torrentu ni mogoče razčleniti: %1 + Podatkov o torrentu ni mogoče razčleniti: %1 @@ -2441,10 +2437,6 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Torrent removed. Torrent: "%1" Torrent odstranjen. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Zaznan poskus dodajanja dvojnika torrenta. Obstoječi torrent: %1. Rezultat: %2 - Merging of trackers is disabled @@ -6150,10 +6142,6 @@ Najnižja podprta različica: %2. Mixed mode - - Some options are incompatible with the chosen proxy type! - Nekatere možnosti so nezdružljive z izbrano vrsto posredniškega strežnika! - If checked, hostname lookups are done via the proxy @@ -7124,10 +7112,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not A&uthentication Overitev - - Info: The password is saved unencrypted - Obvestilo: Geslo je shranjeno nešifrirano - Filter path (.dat, .p2p, .p2b): @@ -8286,13 +8270,6 @@ Tisti vtičniki so bili onemogočeni. Spletna povezava - - PowerManagement - - qBittorrent is active - qBittorrent je dejaven - - PreviewSelectDialog @@ -8836,10 +8813,6 @@ Tisti vtičniki so bili onemogočeni. Item doesn't exist: %1. Predmet ne obsaja: %1. - - Couldn't move folder into itself. - Mape ni mogoče premakniti v njo samo. - Can't move a folder into itself or its subfolders. @@ -8916,7 +8889,7 @@ Tisti vtičniki so bili onemogočeni. Feed doesn't exist: %1. - Vir ne obstaja: %1. + Vir ne obstaja: %1. @@ -8929,22 +8902,22 @@ Tisti vtičniki so bili onemogočeni. URL: - URL: + URL: Refresh interval: - + Interval osveževanja: sec - sec + sec Default - Privzeto + Privzeto @@ -9049,14 +9022,6 @@ Tisti vtičniki so bili onemogočeni. Feed options... - - Edit feed URL... - Uredi URL vira ... - - - Edit feed URL - Uredi URL vira - Please choose a folder name @@ -9072,14 +9037,6 @@ Tisti vtičniki so bili onemogočeni. New folder Nova mapa - - Please type a RSS feed URL - Vpišite URL vira RSS - - - Feed URL: - Vir URL: - Deletion confirmation diff --git a/src/lang/qbittorrent_sr.ts b/src/lang/qbittorrent_sr.ts index 91da377f9..e9ed8fc8b 100644 --- a/src/lang/qbittorrent_sr.ts +++ b/src/lang/qbittorrent_sr.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Додавање торента није успело. Извор: "%1". Разлог: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Откривен је покушај додавања дупликата торента. Извор: %1. Постојећи торент: %2. Резултат: %3. - Merging of trackers is disabled @@ -2185,7 +2181,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse torrent info: %1 - Парсирање информација о торенту није успело: %1 + Парсирање информација о торенту није успело: %1 @@ -7120,10 +7116,6 @@ readme[0-9].txt: филтрирај "readme1.txt", "readme2.txt&q A&uthentication А&утентификација - - Info: The password is saved unencrypted - Инфо: шифра се чува у неенкриптованом стању - Filter path (.dat, .p2p, .p2b): @@ -8282,13 +8274,6 @@ Those plugins were disabled. Веб линк - - PowerManagement - - qBittorrent is active - qBittorrent је активан - - PreviewSelectDialog @@ -8832,10 +8817,6 @@ Those plugins were disabled. Item doesn't exist: %1. Ставка не постоји: %1. - - Couldn't move folder into itself. - Није могуће преместити фасциклу саму у себе. - Can't move a folder into itself or its subfolders. @@ -8912,7 +8893,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - Фид не постоји: %1. + Фид не постоји: %1. @@ -8925,7 +8906,7 @@ Those plugins were disabled. URL: - URL: + URL: @@ -8935,12 +8916,12 @@ Those plugins were disabled. sec - сек + сек Default - Подразумевано + Подразумевано @@ -9045,14 +9026,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - Уреди URL фида... - - - Edit feed URL - Уреди URL фида - Please choose a folder name @@ -9068,14 +9041,6 @@ Those plugins were disabled. New folder Нова фасцикла - - Please type a RSS feed URL - Молимо унесите URL RSS фида - - - Feed URL: - URL фида: - Deletion confirmation diff --git a/src/lang/qbittorrent_sv.ts b/src/lang/qbittorrent_sv.ts index e3f976f79..a86d2f3bb 100644 --- a/src/lang/qbittorrent_sv.ts +++ b/src/lang/qbittorrent_sv.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Misslyckades att lägga till torrent. Källa: "%1". Orsak: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Upptäckte ett försök att lägga till en dubblettorrent. Källa %1. Befintlig torrent: %2. Resultat: %3 - Merging of trackers is disabled @@ -508,7 +504,7 @@ Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + Upptäckte ett försök att lägga till en duplicerad torrent. Källa: %1. Befintlig torrent: ”%2”. Torrent infohash: %3. Resultat: %4 @@ -1081,7 +1077,7 @@ Internal hostname resolver cache expiry interval - + Utgångsintervall för cache för intern värdnamnsresolver @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Bifoga dialogrutan "Lägg till ny torrent" till huvudfönstret @@ -2103,12 +2099,12 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Corrupted resume data: %1 - + Skadat återupptagningsdata: %1 save_path is invalid - + save_path är ogiltig @@ -2179,23 +2175,23 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Cannot parse resume data: %1 - Det går inte att analysera återupptagningsdata: %1 + Det går inte att analysera återupptagningsdata: %1 Cannot parse torrent info: %1 - Det går inte att analysera torrentinformation: %1 + Det går inte att analysera torrentinformation: %1 Corrupted resume data: %1 - + Skadat återupptagningsdata: %1 save_path is invalid - + save_path är ogiltig @@ -2440,10 +2436,6 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Torrent removed. Torrent: "%1" Torrent borttagen. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Upptäckte ett försök att lägga till en dubblettorrent. Befintlig torrent: %1. Resultat: %2 - Merging of trackers is disabled @@ -2548,14 +2540,14 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Duplicate torrent - + Duplicerad torrent Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + Upptäckte ett försök att lägga till en duplicerad torrent. Källa: %1. Torrent infohash: %2. Resultat: %3 @@ -3549,24 +3541,24 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder Power management found suitable D-Bus interface. Interface: %1 - Strömhantering hittade lämpligt D-Bus-gränssnitt. Gränssnitt: %1 + Strömhantering hittade lämpligt D-Bus-gränssnitt. Gränssnitt: %1 Power management error. Did not find a suitable D-Bus interface. - + Fel i energihanteringen. Hittade inte ett lämpligt D-Bus-gränssnitt. Power management error. Action: %1. Error: %2 - Strömhanteringsfel. Åtgärd: %1. Fel: %2 + Strömhanteringsfel. Åtgärd: %1. Fel: %2 Power management unexpected error. State: %1. Error: %2 - Oväntat strömhanteringsfel. Tillstånd: %1. Fel: %2 + Oväntat strömhanteringsfel. Tillstånd: %1. Fel: %2 @@ -3575,7 +3567,7 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder PMMacOS qBittorrent is active - + PMMacOS @@ -6046,7 +6038,7 @@ Minimikrav: %2. Show free disk space in status bar - + Visa ledigt diskutrymme i statusfältet @@ -6149,10 +6141,6 @@ Minimikrav: %2. Mixed mode Blandat läge - - Some options are incompatible with the chosen proxy type! - Vissa alternativ är inkompatibla med den valda proxytypen! - If checked, hostname lookups are done via the proxy @@ -6315,12 +6303,12 @@ Inaktivera kryptering: Anslut endast till jämlikar utan protokollkryptering Some functions are unavailable with the chosen proxy type! - + Vissa funktioner är inte tillgängliga med den valda proxytypen! Note: The password is saved unencrypted - + Observera: Lösenordet sparas okrypterat @@ -7136,10 +7124,6 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' men int A&uthentication A&utentisering - - Info: The password is saved unencrypted - Info: Lösenordet sparas okrypterat - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ De här insticksmodulerna inaktiverades. Webblänk - - PowerManagement - - qBittorrent is active - qBittorrent är aktiv - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Strömhantering hittade lämpligt D-Bus-gränssnitt. Gränssnitt: %1 - - - Power management error. Did not found suitable D-Bus interface. - Strömhanteringsfel. Hittade inte lämpligt D-Bus-gränssnitt. - - - Power management error. Action: %1. Error: %2 - Strömhanteringsfel. Åtgärd: %1. Fel: %2 - - - Power management unexpected error. State: %1. Error: %2 - Oväntat strömhanteringsfel. Tillstånd: %1. Fel: %2 - - PreviewSelectDialog @@ -8867,14 +8825,10 @@ De här insticksmodulerna inaktiverades. Item doesn't exist: %1. Artikeln existerar inte: %1. - - Couldn't move folder into itself. - Kunde inte flytta mappen in i sig själv. - Can't move a folder into itself or its subfolders. - + Kan inte flytta en mapp till sig själv eller sina undermappar. @@ -8942,12 +8896,12 @@ De här insticksmodulerna inaktiverades. Invalid 'refreshInterval' value - + Ogiltigt värde för 'refreshInterval' Feed doesn't exist: %1. - Flödet finns inte: %1. + Flödet finns inte: %1. @@ -8955,27 +8909,27 @@ De här insticksmodulerna inaktiverades. RSS Feed Options - + Alternativ för RSS-flöde URL: - URL: + URL: Refresh interval: - + Uppdateringsintervall: sec - sek + sek Default - Standard + Standard @@ -9078,15 +9032,7 @@ De här insticksmodulerna inaktiverades. Feed options... - - - - Edit feed URL... - Redigera flödes-URL... - - - Edit feed URL - Redigera flödes-URL + Flödesalternativ... @@ -9103,14 +9049,6 @@ De här insticksmodulerna inaktiverades. New folder Ny mapp - - Please type a RSS feed URL - Skriv URL för ett RSS-flöde - - - Feed URL: - Flödets URL: - Deletion confirmation @@ -10058,7 +9996,7 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Free space: N/A - + Ledigt utrymme: inte tillgängligt @@ -10097,7 +10035,7 @@ Klicka på knappen "Sökinsticksmoduler..." längst ner till höger av Free space: - + Ledigt utrymme: diff --git a/src/lang/qbittorrent_th.ts b/src/lang/qbittorrent_th.ts index f5c00a136..c5bac7824 100644 --- a/src/lang/qbittorrent_th.ts +++ b/src/lang/qbittorrent_th.ts @@ -8257,13 +8257,6 @@ Those plugins were disabled. ลิงก์ของเว็บ - - PowerManagement - - qBittorrent is active - qBittorrent เปิดใช้งานอยู่ - - PreviewSelectDialog @@ -8896,7 +8889,7 @@ Those plugins were disabled. URL: - URL: + URL: @@ -8906,12 +8899,12 @@ Those plugins were disabled. sec - วินาที + วินาที Default - ค่าเริ่มต้น + ค่าเริ่มต้น @@ -9016,10 +9009,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - แก้ไข URL ของหน้าฟีด... - Please choose a folder name diff --git a/src/lang/qbittorrent_tr.ts b/src/lang/qbittorrent_tr.ts index 34b3a6196..d6d774917 100644 --- a/src/lang/qbittorrent_tr.ts +++ b/src/lang/qbittorrent_tr.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Torrent'i ekleme başarısız. Kaynak: "%1". Sebep: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Kopya bir torrent ekleme girişimi algılandı. Kaynak: %1. Varolan torrent: %2. Sonuç: %3 - Merging of trackers is disabled @@ -508,7 +504,7 @@ Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + Kopya bir torrent ekleme girişimi algılandı. Kaynak: %1. Varolan torrent: "%2". Torrent bilgisi adreslemesi: %3. Sonuç: %4 @@ -1081,7 +1077,7 @@ Internal hostname resolver cache expiry interval - + Dahili anamakine adı çözücü önbelleği sona erme aralığı @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Ana pencereye "Yeni torrent ekle" ileti penceresi ekle @@ -2103,12 +2099,12 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Corrupted resume data: %1 - + Bozulmuş devam etme verileri: %1 save_path is invalid - + save_path geçersiz @@ -2179,23 +2175,23 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Cannot parse resume data: %1 - Devam verileri ayrıştırılamıyor: %1 + Devam verileri ayrıştırılamıyor: %1 Cannot parse torrent info: %1 - Torrent bilgisi ayrıştırılamıyor: %1 + Torrent bilgisi ayrıştırılamıyor: %1 Corrupted resume data: %1 - + Bozulmuş devam etme verileri: %1 save_path is invalid - + save_path geçersiz @@ -2440,10 +2436,6 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Torrent removed. Torrent: "%1" Torrent kaldırıldı. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Kopya bir torrent ekleme girişimi algılandı. Varolan torrent: %1. Sonuç: %2 - Merging of trackers is disabled @@ -2548,14 +2540,14 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Duplicate torrent - + Kopya torrent Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + Kopya bir torrent ekleme girişimi algılandı. Varolan torrent: "%1". Torrent bilgisi adreslemesi: %2. Sonuç: %3 @@ -3549,24 +3541,24 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d Power management found suitable D-Bus interface. Interface: %1 - Güç yönetimi uygun D-Bus arayüzünü buldu. Arayüz: %1 + Güç yönetimi uygun D-Bus arayüzünü buldu. Arayüz: %1 Power management error. Did not find a suitable D-Bus interface. - + Güç yönetimi hatası. Uygun D-Bus arayüzü bulunamadı. Power management error. Action: %1. Error: %2 - Güç yönetimi hatası. Eylem: %1. Hata: %2 + Güç yönetimi hatası. Eylem: %1. Hata: %2 Power management unexpected error. State: %1. Error: %2 - Güç yönetimi beklenmeyen hata. Durum: %1. Hata: %2 + Güç yönetimi beklenmeyen hata. Durum: %1. Hata: %2 @@ -3575,7 +3567,7 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d PMMacOS qBittorrent is active - + PMMacOS @@ -6046,7 +6038,7 @@ En düşük gereksinim: %2. Show free disk space in status bar - + Durum çubuğunda boş disk alanını göster @@ -6149,10 +6141,6 @@ En düşük gereksinim: %2. Mixed mode Karışık kip - - Some options are incompatible with the chosen proxy type! - Bazı seçenekler, seçilen proksi türüyle uyumlu değil! - If checked, hostname lookups are done via the proxy @@ -6315,12 +6303,12 @@ Disable encryption: Only connect to peers without protocol encryption Some functions are unavailable with the chosen proxy type! - + Bazı işlevler seçilen proksi türüyle kullanılabilir değil! Note: The password is saved unencrypted - + Not: Parola şifrelenmeden kaydedilir @@ -7136,10 +7124,6 @@ benioku[0-9].txt: 'benioku1.txt', 'benioku2.txt' dosyasını A&uthentication Kimlik doğr&ulaması - - Info: The password is saved unencrypted - Bilgi: Parola şifrelenmeden kaydedilir - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Bu eklentiler etkisizleştirildi. Web bağlantısı - - PowerManagement - - qBittorrent is active - qBittorrent etkin - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Güç yönetimi uygun D-Bus arayüzünü buldu. Arayüz: %1 - - - Power management error. Did not found suitable D-Bus interface. - Güç yönetimi hatası. Uygun D-Bus arayüzü bulunamadı. - - - Power management error. Action: %1. Error: %2 - Güç yönetimi hatası. Eylem: %1. Hata: %2 - - - Power management unexpected error. State: %1. Error: %2 - Güç yönetimi beklenmeyen hata. Durum: %1. Hata: %2 - - PreviewSelectDialog @@ -8867,14 +8825,10 @@ Bu eklentiler etkisizleştirildi. Item doesn't exist: %1. Öğe mevcut değil: %1. - - Couldn't move folder into itself. - Klasör kendi içine taşınamadı. - Can't move a folder into itself or its subfolders. - + Bir klasör kendisine veya alt klasörlerine taşınamaz. @@ -8942,12 +8896,12 @@ Bu eklentiler etkisizleştirildi. Invalid 'refreshInterval' value - + Geçersiz 'refreshInterval' değeri Feed doesn't exist: %1. - Bildirim mevcut değil: %1. + Bildirim mevcut değil: %1. @@ -8955,27 +8909,27 @@ Bu eklentiler etkisizleştirildi. RSS Feed Options - + RSS Bildirim Ayarları URL: - URL: + URL: Refresh interval: - + Yenileme aralığı: sec - san + san Default - Varsayılan + Varsayılan @@ -9078,15 +9032,7 @@ Bu eklentiler etkisizleştirildi. Feed options... - - - - Edit feed URL... - Bildirim URLʼsini düzenle... - - - Edit feed URL - Bildirim URLʼsini düzenle + Bildirim seçenekleri... @@ -9103,14 +9049,6 @@ Bu eklentiler etkisizleştirildi. New folder Yeni klasör - - Please type a RSS feed URL - Lütfen bir RSS bildirim URL'si yazın - - - Feed URL: - Bildirim URL'si: - Deletion confirmation @@ -10058,7 +9996,7 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Free space: N/A - + Boş alan: Yok @@ -10097,7 +10035,7 @@ Bazılarını yüklemek için pencerenin sağ altındaki "Arama eklentileri Free space: - + Boş alan: diff --git a/src/lang/qbittorrent_uk.ts b/src/lang/qbittorrent_uk.ts index 2dcb49a2a..465d3037b 100644 --- a/src/lang/qbittorrent_uk.ts +++ b/src/lang/qbittorrent_uk.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Не вдалося додати торрент. Джерело: "%1". Причина: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Виявлено спробу додати дублікат торрента. Джерело: %1. Існуючий торрент: %2. Результат: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Додати "Додати новий торрент" на головне вікно @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Неможливо проаналізувати відновлені дані: %1 + Неможливо проаналізувати відновлені дані: %1 Cannot parse torrent info: %1 - Неможливо проаналізувати інформацію про торрент: %1 + Неможливо проаналізувати інформацію про торрент: %1 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Торрент видалено. Торрент: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Виявлено спробу додати дублікат торрента. Існуючий торрент: %1. Результат: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Керування живленням знайшло відповідний інтерфейс D-Bus. Інтерфейс: %1 + Керування живленням знайшло відповідний інтерфейс D-Bus. Інтерфейс: %1 @@ -3561,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - Помилка керування живленням. Дія: %1. Помилка: %2 + Помилка керування живленням. Дія: %1. Помилка: %2 Power management unexpected error. State: %1. Error: %2 - Неочікувана помилка керування живленням. Стан: %1. Помилка: %2 + Неочікувана помилка керування живленням. Стан: %1. Помилка: %2 @@ -6149,10 +6141,6 @@ Minimum requirement: %2. Mixed mode Змішаний режим - - Some options are incompatible with the chosen proxy type! - Деякі параметри несумісні з вибраним типом проксі! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt: фільтр 'readme1.txt', 'readme2.txt', A&uthentication &Автентифікація - - Info: The password is saved unencrypted - Увага: пароль зберігається в незашифрованому вигляді - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Those plugins were disabled. Веб-посилання - - PowerManagement - - qBittorrent is active - qBittorrent працює - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Керування живленням знайшло відповідний інтерфейс D-Bus. Інтерфейс: %1 - - - Power management error. Did not found suitable D-Bus interface. - Помилка керування живленням. Не знайдено відповідний інтерфейс D-Bus. - - - Power management error. Action: %1. Error: %2 - Помилка керування живленням. Дія: %1. Помилка: %2 - - - Power management unexpected error. State: %1. Error: %2 - Неочікувана помилка керування живленням. Стан: %1. Помилка: %2 - - PreviewSelectDialog @@ -8867,10 +8825,6 @@ Those plugins were disabled. Item doesn't exist: %1. Елемент не існує: %1. - - Couldn't move folder into itself. - Не вдалося перемістити папку в саму себе. - Can't move a folder into itself or its subfolders. @@ -8947,7 +8901,7 @@ Those plugins were disabled. Feed doesn't exist: %1. - Канал не існує: %1. + Канал не існує: %1. @@ -8960,22 +8914,22 @@ Those plugins were disabled. URL: - Адреса: + Адреса: Refresh interval: - + Інтервал оновлення: sec - сек + сек Default - + Типово @@ -9080,14 +9034,6 @@ Those plugins were disabled. Feed options... - - Edit feed URL... - Редагувати розсилку URL каналу... - - - Edit feed URL - Редагувати розсилку URL каналу... - Please choose a folder name @@ -9103,14 +9049,6 @@ Those plugins were disabled. New folder Нова тека - - Please type a RSS feed URL - Будь-ласка, введіть адресу подачі RSS - - - Feed URL: - Адреса подачі: - Deletion confirmation diff --git a/src/lang/qbittorrent_uz@Latn.ts b/src/lang/qbittorrent_uz@Latn.ts index 037236d6a..eebcefb08 100644 --- a/src/lang/qbittorrent_uz@Latn.ts +++ b/src/lang/qbittorrent_uz@Latn.ts @@ -229,25 +229,25 @@ - - + + None - - + + Metadata received - + Torrents that have metadata initially will be added as stopped. - + Files checked @@ -362,112 +362,112 @@ - + I/O Error I/O xatosi - + Not Available This comment is unavailable Mavjud emas - + Not Available This date is unavailable Mavjud emas - + Not available Mavjud emas - + Magnet link Magnet havola - + Retrieving metadata... Tavsif ma’lumotlari olinmoqda... - - + + Choose save path Saqlash yo‘lagini tanlang - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + N/A Noaniq - + %1 (Free space on disk: %2) %1 (Diskdagi boʻsh joy: %2) - + Not available This size is unavailable. Mavjud emas - + Torrent file (*%1) - + Save as torrent file Torrent fayl sifatida saqlash - + Couldn't export torrent metadata file '%1'. Reason: %2. - + Cannot create v2 torrent until its data is fully downloaded. - + Filter files... - + Parsing metadata... Tavsif ma’lumotlari ochilmoqda... - + Metadata retrieval complete Tavsif ma’lumotlari olindi @@ -475,35 +475,35 @@ AddTorrentManager - + Downloading torrent... Source: "%1" - + Failed to add torrent. Source: "%1". Reason: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source + + + Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 + + AddTorrentParamsWidget @@ -666,706 +666,717 @@ AdvancedSettings - - - - + + + + MiB MiB - + Recheck torrents on completion Torrentlar tugallanganidan so‘ng yana bir bor tekshirilsin - - + + ms milliseconds ms - + Setting Sozlama - + Value Value set for this setting Qiymat - + (disabled) (faolsizlantirilgan) - + (auto) (avtomatik) - - + + min minutes daq - + All addresses Barcha manzillar - + qBittorrent Section - - + + Open documentation Qoʻllanmani ochish - + All IPv4 addresses Barcha IPv4 manzillar - + All IPv6 addresses Barcha IPv6 manzillar - + libtorrent Section - + Fastresume files - + SQLite database (experimental) - + Resume data storage type (requires restart) - + Normal Normal - + Below normal - + Medium - + Low - + Very low - + Physical memory (RAM) usage limit - + Asynchronous I/O threads - + Hashing threads - + File pool size - + Outstanding memory when checking torrents - + Disk cache - - - - + + + + + s seconds s - + Disk cache expiry interval Disk keshining saqlanish muddati - + Disk queue size - - + + Enable OS cache OT keshi ishga tushirilsin - + Coalesce reads & writes - + Use piece extent affinity - + Send upload piece suggestions - - - - - + + + + + 0 (disabled) - + Save resume data interval [0: disabled] How often the fastresume file is saved. - + Outgoing ports (Min) [0: disabled] - + Outgoing ports (Max) [0: disabled] - + 0 (permanent lease) - + UPnP lease duration [0: permanent lease] - + Stop tracker timeout [0: disabled] - + Notification timeout [0: infinite, -1: system default] - + Maximum outstanding requests to a single peer - - - - - + + + + + KiB KiB - + (infinite) - + (system default) - + Delete files permanently - + Move files to trash (if possible) - + Torrent content removing mode - + This option is less effective on Linux - + Process memory priority - + Bdecode depth limit - + Bdecode token limit - + Default - + Memory mapped files - + POSIX-compliant - + Simple pread/pwrite - + Disk IO type (requires restart) - - + + Disable OS cache - + Disk IO read mode - + Write-through - + Disk IO write mode - + Send buffer watermark - + Send buffer low watermark - + Send buffer watermark factor - + Outgoing connections per second - - + + 0 (system default) - + Socket send buffer size [0: system default] - + Socket receive buffer size [0: system default] - + Socket backlog size - + Save statistics interval [0: disabled] How often the statistics file is saved. - + .torrent file size limit - + Type of service (ToS) for connections to peers - + Prefer TCP - + Peer proportional (throttles TCP) - + + Internal hostname resolver cache expiry interval + + + + Support internationalized domain name (IDN) - + Allow multiple connections from the same IP address - + Validate HTTPS tracker certificates - + Server-side request forgery (SSRF) mitigation - + Disallow connection to peers on privileged ports - + It appends the text to the window title to help distinguish qBittorent instances - + Customize application instance name - + It controls the internal state update interval which in turn will affect UI updates - + Refresh interval - + Resolve peer host names Pir xost nomlarini tahlillash - + IP address reported to trackers (requires restart) - + Port reported to trackers (requires restart) [0: listening port] - + Reannounce to all trackers when IP or port changed - + Enable icons in menus - + + Attach "Add new torrent" dialog to main window + + + + Enable port forwarding for embedded tracker - + Enable quarantine for downloaded files - + Enable Mark-of-the-Web (MOTW) for downloaded files - + Affects certificate validation and non-torrent protocol activities (e.g. RSS feeds, program updates, torrent files, geoip db, etc) - + Ignore SSL errors - + (Auto detect if empty) - + Python executable path (may require restart) - + Start BitTorrent session in paused state - + sec seconds - + -1 (unlimited) - + BitTorrent session shutdown timeout [-1: unlimited] - + Confirm removal of tracker from all torrents - + Peer turnover disconnect percentage - + Peer turnover threshold percentage - + Peer turnover disconnect interval - + Resets to default if empty - + DHT bootstrap nodes - + I2P inbound quantity - + I2P outbound quantity - + I2P inbound length - + I2P outbound length - + Display notifications - + Display notifications for added torrents - + Download tracker's favicon - + Save path history length - + Enable speed graphs - + Fixed slots - + Upload rate based - + Upload slots behavior - + Round-robin - + Fastest upload - + Anti-leech - + Upload choking algorithm - + Confirm torrent recheck Torrent qayta tekshirilishi tasdiqlansin - + Confirm removal of all tags - + Always announce to all trackers in a tier - + Always announce to all tiers - + Any interface i.e. Any network interface Har qanday interfeys - + %1-TCP mixed mode algorithm uTP-TCP mixed mode algorithm - + Resolve peer countries - + Network interface - + Optional IP address to bind to - + Max concurrent HTTP announces - + Enable embedded tracker Ichki o‘rnatilgan treker ishga tushirilsin - + Embedded tracker port Ichki o‘rnatilgan treker porti @@ -1397,121 +1408,121 @@ Application - + Running in portable mode. Auto detected profile folder at: %1 - + Redundant command line flag detected: "%1". Portable mode implies relative fastresume. - + Using config directory: %1 - + Torrent name: %1 - + Torrent size: %1 - + Save path: %1 - + The torrent was downloaded in %1. The torrent was downloaded in 1 hour and 20 seconds - - + + Thank you for using qBittorrent. - + Torrent: %1, sending mail notification - + Add torrent failed - + Couldn't add torrent '%1', reason: %2. - + The WebUI administrator username is: %1 - + The WebUI administrator password was not set. A temporary password is provided for this session: %1 - + You should set your own password in program preferences. - + The WebUI is disabled! To enable the WebUI, edit the config file manually. - + Running external program. Torrent: "%1". Command: `%2` - + Failed to run external program. Torrent: "%1". Command: `%2` - + Torrent "%1" has finished downloading - + WebUI will be started shortly after internal preparations. Please wait... - - + + Loading torrents... - + E&xit &Chiqish - + I/O Error i.e: Input/Output Error I/O xatosi - + An I/O error occurred for torrent '%1'. Reason: %2 e.g: An error occurred for torrent 'xxx.avi'. @@ -1520,110 +1531,110 @@ Sababi: %2 - + Torrent added - + '%1' was added. e.g: xxx.avi was added. - + Download completed - + qBittorrent %1 started. Process ID: %2 qBittorrent v3.2.0alpha started - + This is a test email. - + Test email - + '%1' has finished downloading. e.g: xxx.avi has finished downloading. “%1” yuklab olishni tamomladi. - + Information Ma’lumot - + To fix the error, you may need to edit the config file manually. - + To control qBittorrent, access the WebUI at: %1 - + Exit - + Recursive download confirmation Navbatma-navbat yuklab olishni tasdiqlash - + The torrent '%1' contains .torrent files, do you want to proceed with their downloads? - + Never Hech qachon - + Recursive download .torrent file within torrent. Source torrent: "%1". File: "%2" - + Failed to set physical memory (RAM) usage limit. Error code: %1. Error message: "%2" - + Failed to set physical memory (RAM) usage hard limit. Requested size: %1. System hard limit: %2. Error code: %3. Error message: "%4" - + qBittorrent termination initiated - + qBittorrent is shutting down... - + Saving torrent progress... Torrent rivoji saqlanmoqda... - + qBittorrent is now ready to exit @@ -1759,263 +1770,263 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also &Eksport qilish... - + Matches articles based on episode filter. Qism filtriga asoslangan maqolalar mosligini aniqlaydi. - + Example: Misol: - + will match 2, 5, 8 through 15, 30 and onward episodes of season one example X will match birinchi faslning 2, 5, 8-15, 30 va undan keyingi qismlariga mos keladi - + Episode filter rules: Qism filtri qoidalari: - + Season number is a mandatory non-zero value Fasl raqamiga nol bo‘lmagan qiymat kiritish shart - + Filter must end with semicolon Filtr oxirida nuqta-vergul qo‘yilishi shart - + Three range types for episodes are supported: Qismlar uchun uch xildagi miqyos qo‘llanadi: - + Single number: <b>1x25;</b> matches episode 25 of season one Bitta son: <b>1x25;</b> birinchi faslning 25-qismiga mos keladi - + Normal range: <b>1x25-40;</b> matches episodes 25 through 40 of season one Normal miqyos <b>1x25-40;</b> birinchi faslning 25-40 qismlariga mos keladi - + Episode number is a mandatory positive value - + Rules - + Rules (legacy) - + Infinite range: <b>1x25-;</b> matches episodes 25 and upward of season one, and all episodes of later seasons - + Last Match: %1 days ago Oxirgi marta %1 kun oldin mos kelgan - + Last Match: Unknown Oxirgi mos kelish sanasi noma’lum - + New rule name Yangi qoida nomi - + Please type the name of the new download rule. Yangi yuklab olish qoidasi uchun nom kiriting - - + + Rule name conflict Qoida nomida ziddiyat - - + + A rule with this name already exists, please choose another name. Bu nomdagi qoida oldindan mavjud, boshqa kiriting. - + Are you sure you want to remove the download rule named '%1'? Haqiqatan ham “%1” nomli yuklab olish qoidasini o‘chirib tashlamoqchimisiz? - + Are you sure you want to remove the selected download rules? Haqiqatan ham tanlangan yuklab olish qoidalarini o‘chirib tashlamoqchimisiz? - + Rule deletion confirmation Qoidani o‘chirib tashlashni tasdiqlash - + Invalid action Amal noto‘g‘ri - + The list is empty, there is nothing to export. Ro‘yxat bo‘m-bo‘sh, eksport qilinadigan narsa yo‘q. - + Export RSS rules - + I/O Error I/O xatosi - + Failed to create the destination file. Reason: %1 - + Import RSS rules - + Failed to import the selected rules file. Reason: %1 - + Add new rule... Yangi qoida qo‘shish... - + Delete rule Qoidani o‘chirib tashlash - + Rename rule... Qoida nomini o‘zgartirish... - + Delete selected rules Tanlangan qoidalarni o‘chirib tashlash - + Clear downloaded episodes... - + Rule renaming Qoida ismini o‘zgartirish - + Please type the new rule name Yangi qoida nomini kiriting - + Clear downloaded episodes - + Are you sure you want to clear the list of downloaded episodes for the selected rule? - + Regex mode: use Perl-compatible regular expressions - - + + Position %1: %2 - + Wildcard mode: you can use - - + + Import error - + Failed to read the file. %1 - + ? to match any single character - + * to match zero or more of any characters - + Whitespaces count as AND operators (all words, any order) - + | is used as OR operator - + If word order is important use * instead of whitespace. - + An expression with an empty %1 clause (e.g. %2) We talk about regex/wildcards in the RSS filters section here. So a valid sentence would be: An expression with an empty | clause (e.g. expr|) - + will match all articles. - + will exclude all articles. @@ -2067,28 +2078,38 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - - + + Cannot parse torrent info: %1 - + Cannot parse torrent info: invalid format - + Mismatching info-hash detected in resume data - + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't save torrent metadata to '%1'. Error: %2. - + Couldn't save torrent resume data to '%1'. Error: %2. @@ -2099,16 +2120,17 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + Cannot parse resume data: %1 - + Resume data is invalid: neither metadata nor info-hash was found - + Couldn't save data to '%1'. Error: %2 @@ -2116,38 +2138,60 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::DBResumeDataStorage - + Not found. - + Couldn't load resume data of torrent '%1'. Error: %2 - - + + Database is corrupted. - + Couldn't enable Write-Ahead Logging (WAL) journaling mode. Error: %1. - + Couldn't obtain query result. - + WAL mode is probably unsupported due to filesystem limitations. - + + + Cannot parse resume data: %1 + + + + + + Cannot parse torrent info: %1 + + + + + Corrupted resume data: %1 + + + + + save_path is invalid + + + + Couldn't begin transaction. Error: %1 @@ -2155,22 +2199,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::ResumeDataStorage - + Couldn't save torrent metadata. Error: %1. - + Couldn't store resume data for torrent '%1'. Error: %2 - + Couldn't delete resume data of torrent '%1'. Error: %2 - + Couldn't store torrents queue positions. Error: %1 @@ -2178,498 +2222,503 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also BitTorrent::SessionImpl - - + + Distributed Hash Table (DHT) support: %1 - - - - - - - - - + + + + + + + + + ON - - - - - - - - - + + + + + + + + + OFF - - + + Local Peer Discovery support: %1 - + Restart is required to toggle Peer Exchange (PeX) support - + Failed to resume torrent. Torrent: "%1". Reason: "%2" - - + + Failed to resume torrent: inconsistent torrent ID is detected. Torrent: "%1" - + Detected inconsistent data: category is missing from the configuration file. Category will be recovered but its settings will be reset to default. Torrent: "%1". Category: "%2" - + Detected inconsistent data: invalid category. Torrent: "%1". Category: "%2" - + Detected mismatch between the save paths of the recovered category and the current save path of the torrent. Torrent is now switched to Manual mode. Torrent: "%1". Category: "%2" - + Detected inconsistent data: tag is missing from the configuration file. Tag will be recovered. Torrent: "%1". Tag: "%2" - + Detected inconsistent data: invalid tag. Torrent: "%1". Tag: "%2" - + System wake-up event detected. Re-announcing to all the trackers... - + Peer ID: "%1" - + HTTP User-Agent: "%1" - + Peer Exchange (PeX) support: %1 - - + + Anonymous mode: %1 - - + + Encryption support: %1 - - + + FORCED - + Could not find GUID of network interface. Interface: "%1" - + Trying to listen on the following list of IP addresses: "%1" - + Torrent reached the share ratio limit. - + Torrent: "%1". - + Super seeding enabled. - + Torrent reached the seeding time limit. - + Torrent reached the inactive seeding time limit. - + Failed to load torrent. Reason: "%1" - + I2P error. Message: "%1". - + UPnP/NAT-PMP support: ON - + Saving resume data completed. - + BitTorrent session successfully finished. - + Session shutdown timed out. - + Removing torrent. - + Removing torrent and deleting its content. - + Torrent stopped. - + Torrent content removed. Torrent: "%1" - + Failed to remove torrent content. Torrent: "%1". Error: "%2" - + Torrent removed. Torrent: "%1" - - - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - - - - + Merging of trackers is disabled - + Trackers cannot be merged because it is a private torrent - + Trackers are merged from new source - + UPnP/NAT-PMP support: OFF - + Failed to export torrent. Torrent: "%1". Destination: "%2". Reason: "%3" - + Aborted saving resume data. Number of outstanding torrents: %1 - + The configured network address is invalid. Address: "%1" - - + + Failed to find the configured network address to listen on. Address: "%1" - + The configured network interface is invalid. Interface: "%1" - + Tracker list updated - + Failed to update tracker list. Reason: "%1" - + Rejected invalid IP address while applying the list of banned IP addresses. IP: "%1" - + Added tracker to torrent. Torrent: "%1". Tracker: "%2" - + Removed tracker from torrent. Torrent: "%1". Tracker: "%2" - + Added URL seed to torrent. Torrent: "%1". URL: "%2" - + Removed URL seed from torrent. Torrent: "%1". URL: "%2" - + Failed to remove partfile. Torrent: "%1". Reason: "%2". - + Torrent resumed. Torrent: "%1" - + Torrent download finished. Torrent: "%1" - + Torrent move canceled. Torrent: "%1". Source: "%2". Destination: "%3" - + + Duplicate torrent + + + + + + + Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 + + + + Torrent stopped. Torrent: "%1" - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2". Destination: "%3". Reason: torrent is currently moving to the destination - + Failed to enqueue torrent move. Torrent: "%1". Source: "%2" Destination: "%3". Reason: both paths point to the same location - + Enqueued torrent move. Torrent: "%1". Source: "%2". Destination: "%3" - + Start moving torrent. Torrent: "%1". Destination: "%2" - + Failed to save Categories configuration. File: "%1". Error: "%2" - + Failed to parse Categories configuration. File: "%1". Error: "%2" - + Successfully parsed the IP filter file. Number of rules applied: %1 - + Failed to parse the IP filter file - + Restored torrent. Torrent: "%1" - + Added new torrent. Torrent: "%1" - + Torrent errored. Torrent: "%1". Error: "%2" - + Torrent is missing SSL parameters. Torrent: "%1". Message: "%2" - + File error alert. Torrent: "%1". File: "%2". Reason: "%3" - + UPnP/NAT-PMP port mapping failed. Message: "%1" - + UPnP/NAT-PMP port mapping succeeded. Message: "%1" - + IP filter this peer was blocked. Reason: IP filter. - + filtered port (%1) this peer was blocked. Reason: filtered port (8899). - + privileged port (%1) this peer was blocked. Reason: privileged port (80). - + URL seed connection failed. Torrent: "%1". URL: "%2". Error: "%3" - + BitTorrent session encountered a serious error. Reason: "%1" - + SOCKS5 proxy error. Address: %1. Message: "%2". - + %1 mixed mode restrictions this peer was blocked. Reason: I2P mixed mode restrictions. - + Failed to load Categories. %1 - + Failed to load Categories configuration. File: "%1". Error: "Invalid data format" - + %1 is disabled this peer was blocked. Reason: uTP is disabled. - + %1 is disabled this peer was blocked. Reason: TCP is disabled. - + Received error message from URL seed. Torrent: "%1". URL: "%2". Message: "%3" - + Successfully listening on IP. IP: "%1". Port: "%2/%3" - + Failed to listen on IP. IP: "%1". Port: "%2/%3". Reason: "%4" - + Detected external IP. IP: "%1" - + Error: Internal alert queue is full and alerts are dropped, you might see degraded performance. Dropped alert type: "%1". Message: "%2" - + Moved torrent successfully. Torrent: "%1". Destination: "%2" - + Failed to move torrent. Torrent: "%1". Source: "%2". Destination: "%3". Reason: "%4" @@ -2719,47 +2768,47 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Download first and last piece first: %1, torrent: '%2' - + On - + Off - + Failed to reload torrent. Torrent: %1. Reason: %2 - + Generate resume data failed. Torrent: "%1". Reason: "%2" - + Failed to restore torrent. Files were probably moved or storage isn't accessible. Torrent: "%1". Reason: "%2" - + Missing metadata - + File rename failed. Torrent: "%1", file: "%2", reason: "%3" - + Performance alert: %1. More info: %2 @@ -3351,22 +3400,22 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also GUIAddTorrentManager - + Downloading torrent... Source: "%1" - + Torrent is already present - + Trackers cannot be merged because it is a private torrent. - + Torrent '%1' is already in the transfer list. Do you want to merge trackers from new source? @@ -3484,6 +3533,40 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also + + InhibitorDBus + + + Power management found suitable D-Bus interface. Interface: %1 + + + + + Power management error. Did not find a suitable D-Bus interface. + + + + + + + Power management error. Action: %1. Error: %2 + + + + + Power management unexpected error. State: %1. Error: %2 + + + + + InhibitorMacOS + + + PMMacOS + qBittorrent is active + + + LegalNotice @@ -3874,12 +3957,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also - + Show Ko‘rsatish - + Check for program updates Dastur yangilanishlarini tekshirish @@ -3894,380 +3977,380 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Sizga qBittorrent dasturi yoqqan bo‘lsa, marhamat qilib xayriya qiling! - + Execution Log Faoliyat logi - + Clear the password Parolni tozalash - + &Set Password &Parol qo‘yish - + Preferences - + &Clear Password Parolni &tozalash - + Transfers Oldi-berdilar - - + + qBittorrent is minimized to tray - - - + + + This behavior can be changed in the settings. You won't be reminded again. - + Icons Only Faqat ikonlar - + Text Only Faqat matn - + Text Alongside Icons Ikonlar yonida matn - + Text Under Icons Ikonlar tagida matn - + Follow System Style Tizim stiliga muvofiq - - + + UI lock password FI qulflash paroli - - + + Please type the UI lock password: UI qulflash parolini kiriting: - + Are you sure you want to clear the password? Haqiqatan ham parolni olib tashlamoqchimisiz? - + Use regular expressions - - + + Search Engine - + Search has failed - + Search has finished - + Search Qidiruv - + Transfers (%1) Oldi-berdi (%1) - + qBittorrent was just updated and needs to be restarted for the changes to be effective. - + qBittorrent is closed to tray - + Some files are currently transferring. - + Are you sure you want to quit qBittorrent? - + &No &Yo‘q - + &Yes &Ha - + &Always Yes &Doim ha - + Options saved. - + [PAUSED] %1 %1 is the rest of the window title - + [D: %1, U: %2] %3 D = Download; U = Upload; %3 is the rest of the window title - + Python installer could not be downloaded. Error: %1. Please install it manually. - + Rename Python installer failed. Source: "%1". Destination: "%2". - + Python installation success. - + Exit code: %1. - + Reason: installer crashed. - + Python installation failed. - + Launching Python installer. File: "%1". - - + + Missing Python Runtime - + qBittorrent Update Available qBittorrent uchun yangilanish mavjud - + Python is required to use the search engine but it does not seem to be installed. Do you want to install it now? Qidiruv vositasini ishlatish uchun Python kerak, ammo o‘rnatilmagan shekilli. Uni o‘rnatishni istaysizmi? - + Python is required to use the search engine but it does not seem to be installed. Qidiruv vositasini ishlatish uchun Python kerak, ammo o‘rnatilmagan shekilli. - - + + Old Python Runtime - + A new version is available. - + Do you want to download %1? - + Open changelog... - + No updates available. You are already using the latest version. Hech qanday yangilanish mavjud emas. Siz eng yangi versiyasidan foydalanmoqdasiz. - + &Check for Updates &Yangilanishlarni tekshirish - + Your Python version (%1) is outdated. Minimum requirement: %2. Do you want to install a newer version now? - + Your Python version (%1) is outdated. Please upgrade to latest version for search engines to work. Minimum requirement: %2. - + Paused Pauzada - + Checking for Updates... Yangilanishlar tekshirilmoqda... - + Already checking for program updates in the background Dastur yangilanishlar fonda tekshirilmoqda - + Python installation in progress... - + Failed to open Python installer. File: "%1". - + Failed MD5 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Failed SHA3-512 hash check for Python installer. File: "%1". Result hash: "%2". Expected hash: "%3". - + Download error Yuklab olish xatoligi - - + + Invalid password Parol noto‘g‘ri - + Filter torrents... - + Filter by: - + The password must be at least 3 characters long - - - + + + RSS (%1) RSS (%1) - + The password is invalid Parol yaroqsiz - + DL speed: %1 e.g: Download speed: 10 KiB/s YO tezligi: %1 - + UP speed: %1 e.g: Upload speed: 10 KiB/s Y tezligi: %1 - + Hide Yashirish - + Exiting qBittorrent qBittorrent dasturidan chiqilmoqda - + Open Torrent Files Torrent fayllarini ochish - + Torrent Files Torrent fayllari @@ -5761,47 +5844,47 @@ Minimum requirement: %2. Net::Smtp - + Connection failed, unrecognized reply: %1 - + Authentication failed, msg: %1 - + <mail from> was rejected by server, msg: %1 - + <Rcpt to> was rejected by server, msg: %1 - + <data> was rejected by server, msg: %1 - + Message was rejected by the server, error: %1 - + Both EHLO and HELO failed, msg: %1 - + The SMTP server does not seem to support any of the authentications modes we support [CRAM-MD5|PLAIN|LOGIN], skipping authentication, knowing it is likely to fail... Server Auth Modes: %1 - + Email Notification Error: %1 @@ -5947,392 +6030,402 @@ Minimum requirement: %2. KiB - + + Show free disk space in status bar + + + + Torrent content layout: - + Original Asli - + Create subfolder Quyi jild yaratish - + Don't create subfolder Quyi jild yaratilmasin - + The torrent will be added to the top of the download queue - + Add to top of queue The torrent will be added to the top of the download queue - + When duplicate torrent is being added - + Merge trackers to existing torrent - + Keep unselected files in ".unwanted" folder - + Add... - + Options.. - + Remove - + Email notification &upon download completion - + Send test email - + Run on torrent added: - + Run on torrent finished: - + Peer connection protocol: - + Any - + I2P (experimental) - + Mixed mode - - Some options are incompatible with the chosen proxy type! - - - - + If checked, hostname lookups are done via the proxy - + Perform hostname lookup via proxy - + Use proxy for BitTorrent purposes - + RSS feeds will use proxy - + Use proxy for RSS purposes - + Search engine, software updates or anything else will use proxy - + Use proxy for general purposes - + IP Fi&ltering - + Schedule &the use of alternative rate limits - + From: From start time - + To: To end time - + Find peers on the DHT network - + Allow encryption: Connect to peers regardless of setting Require encryption: Only connect to peers with protocol encryption Disable encryption: Only connect to peers without protocol encryption - + Allow encryption - + (<a href="https://github.com/qbittorrent/qBittorrent/wiki/Anonymous-Mode">More information</a>) - + Maximum active checking torrents: - + &Torrent Queueing - + When total seeding time reaches - + When inactive seeding time reaches - + RSS Reader - + Enable fetching RSS feeds - + Feeds refresh interval: - + Same host request delay: - + Maximum number of articles per feed: - - - + + + min minutes daq - + Seeding Limits - + Remove torrent - + Remove torrent and its files - + Enable super seeding for torrent - + When ratio reaches - + + Some functions are unavailable with the chosen proxy type! + + + + + Note: The password is saved unencrypted + + + + Stop torrent - + A&utomatically append these trackers to new downloads: - + Automatically append trackers from URL to new downloads: - + URL: - + Fetched trackers - + Search UI - + Store opened tabs - + Also store search results - + History length - + RSS Torrent Auto Downloader - + Enable auto downloading of RSS torrents - + Edit auto downloading rules... - + RSS Smart Episode Filter - + Download REPACK/PROPER episodes - + Filters: - + Web User Interface (Remote control) - + IP address: - + IP address that the Web UI will bind to. Specify an IPv4 or IPv6 address. You can specify "0.0.0.0" for any IPv4 address, "::" for any IPv6 address, or "*" for both IPv4 and IPv6. - + Ban client after consecutive failures: - + Never Hech qachon - + ban for: - + Session timeout: - + Disabled - + Server domains: - + Whitelist for filtering HTTP Host header values. In order to defend against DNS rebinding attack, you should put in domain names used by WebUI server. @@ -6341,37 +6434,37 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + &Use HTTPS instead of HTTP - + Bypass authentication for clients on localhost - + Bypass authentication for clients in whitelisted IP subnets - + IP subnet whitelist... - + Use alternative WebUI - + Specify reverse proxy IPs (or subnets, e.g. 0.0.0.0/24) in order to use forwarded client address (X-Forwarded-For header). Use ';' to split multiple entries. - + Upda&te my dynamic domain name @@ -6484,99 +6577,99 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Show external IP in status bar - + When adding a torrent - + Bring torrent dialog to the front - + The torrent will be added to download list in a stopped state - + Also delete .torrent files whose addition was cancelled - + Also when addition is cancelled - + Warning! Data loss possible! - + Saving Management - + Default Torrent Management Mode: - + Manual Mustaqil - + Automatic Avtomatik - + When Torrent Category changed: - + Relocate torrent - + Switch torrent to Manual Mode - - + + Relocate affected torrents - - + + Switch affected torrents to Manual Mode - + Use Subcategories - + Default Save Path: - + Copy .torrent files to: @@ -6586,22 +6679,22 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Display &torrent content and some options - + De&lete .torrent files afterwards - + Copy .torrent files for finished downloads to: - + Pre-allocate disk space for all files @@ -6696,64 +6789,64 @@ Use ';' to split multiple entries. Can use wildcard '*'. - + Log performance warnings - + Do not start the download automatically The torrent will be added to download list in a stopped state - + Whether the .torrent file should be deleted after adding it - + Allocate full file sizes on disk before starting downloads, to minimize fragmentation. Only useful for HDDs. - + Append .!qB extension to incomplete files - + When a torrent is downloaded, offer to add torrents from any .torrent files found inside it - + Enable recursive download dialog - + Automatic: Various torrent properties (e.g. save path) will be decided by the associated category Manual: Various torrent properties (e.g. save path) must be assigned manually - + When Default Save/Incomplete Path changed: - + When Category Save Path changed: - + Use Category paths in Manual Mode - + Resolve relative Save Path against appropriate Category path instead of Default one @@ -6773,50 +6866,50 @@ Manual: Various torrent properties (e.g. save path) must be assigned manually - + Torrent stop condition: - - + + None - - + + Metadata received - - + + Files checked - + Ask for merging trackers when torrent is being added manually - + Use another path for incomplete torrents: - + Automatically add torrents from: - + Excluded file names - + Blacklist filtered file names from being downloaded from torrent(s). Files matching any of the filters in this list will have their priority automatically set to "Do not download". @@ -6833,511 +6926,506 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Receiver - + To: To receiver - + SMTP server: - + Sender - + From: From sender - + This server requires a secure connection (SSL) - - + + Authentication - - - - + + + + Username: - - - - + + + + Password: - + Run external program - + Show console window - + TCP and μTP - + Listening Port - + Port used for incoming connections: - + Set to 0 to let your system pick an unused port - + Random - + Use UPnP / NAT-PMP port forwarding from my router - + Connections Limits - + Maximum number of connections per torrent: - + Global maximum number of connections: - + Maximum number of upload slots per torrent: - + Global maximum number of upload slots: - + Proxy Server - + Type: - + SOCKS4 - + SOCKS5 - + HTTP - - + + Host: - - - + + + Port: - + Otherwise, the proxy server is only used for tracker connections - + Use proxy for peer connections - + A&uthentication - - Info: The password is saved unencrypted - - - - + Filter path (.dat, .p2p, .p2b): - + Reload the filter - + Manually banned IP addresses... - + Apply to trackers - + Global Rate Limits - - - - - - - + + + + + + + - - - - - - + + + + + + KiB/s - - + + Upload: - - + + Download: - + Alternative Rate Limits - + Start time - + End time - + When: - + Every day Har kuni - + Weekdays - + Weekends - + Rate Limits Settings - + Apply rate limit to peers on LAN - + Apply rate limit to transport overhead - + <html><head/><body><p>If "mixed mode" is enabled I2P torrents are allowed to also get peers from other sources than the tracker, and connect to regular IPs, not providing any anonymization. This may be useful if the user is not interested in the anonymization of I2P, but still wants to be able to connect to I2P peers.</p></body></html> - + Apply rate limit to µTP protocol - + Privacy - + Enable DHT (decentralized network) to find more peers - + Exchange peers with compatible Bittorrent clients (µTorrent, Vuze, ...) - + Enable Peer Exchange (PeX) to find more peers - + Look for peers on your local network - + Enable Local Peer Discovery to find more peers - + Encryption mode: - + Require encryption - + Disable encryption - + Enable when using a proxy or a VPN connection - + Enable anonymous mode - + Maximum active downloads: - + Maximum active uploads: - + Maximum active torrents: - + Do not count slow torrents in these limits - + Upload rate threshold: - + Download rate threshold: - - - - + + + + sec seconds - + Torrent inactivity timer: - + then - + Use UPnP / NAT-PMP to forward the port from my router - + Certificate: - + Key: - + <a href=https://httpd.apache.org/docs/current/ssl/ssl_faq.html#aboutcerts>Information about certificates</a> - + Change current password - + Files location: - + <a href="https://github.com/qbittorrent/qBittorrent/wiki/List-of-known-alternate-WebUIs">List of alternative WebUI</a> - + Security - + Enable clickjacking protection - + Enable Cross-Site Request Forgery (CSRF) protection - + Enable cookie Secure flag (requires HTTPS or localhost connection) - + Enable Host header validation - + Add custom HTTP headers - + Header: value pairs, one per line - + Enable reverse proxy support - + Trusted proxies list: - + <a href=https://github.com/qbittorrent/qBittorrent/wiki#reverse-proxy-setup-for-webui-access>Reverse proxy setup examples</a> - + Service: - + Register - + Domain name: - + By enabling these options, you can <strong>irrevocably lose</strong> your .torrent files! - + If you enable the second option (&ldquo;Also when addition is cancelled&rdquo;) the .torrent file <strong>will be deleted</strong> even if you press &ldquo;<strong>Cancel</strong>&rdquo; in the &ldquo;Add torrent&rdquo; dialog @@ -7347,12 +7435,12 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Choose Alternative UI files location - + Supported parameters (case sensitive): @@ -7372,183 +7460,183 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + No stop condition is set. - + Torrent will stop after metadata is received. - + Torrent will stop after files are initially checked. - + This will also download metadata if it wasn't there initially. - + %N: Torrent name - + %L: Category - + %F: Content path (same as root path for multifile torrent) - + %R: Root path (first torrent subdirectory path) - + %D: Save path - + %C: Number of files - + %Z: Torrent size (bytes) - + %T: Current tracker - + Tip: Encapsulate parameter with quotation marks to avoid text being cut off at whitespace (e.g., "%N") - + Test email - + Attempted to send email. Check your inbox to confirm success - + (None) - + A torrent will be considered slow if its download and upload rates stay below these values for "Torrent inactivity timer" seconds - + Certificate - + Select certificate - + Private key - + Select private key - + WebUI configuration failed. Reason: %1 - + %1 is recommended for best compatibility with Windows dark mode Fusion is recommended for best compatibility with Windows dark mode - + System System default Qt style - + Let Qt decide the style for this system - + Dark Dark color scheme - + Light Light color scheme - + System System color scheme - + Select folder to monitor - + Adding entry failed - + The WebUI username must be at least 3 characters long. - + The WebUI password must be at least 6 characters long. - + Location Error - - + + Choose export directory - + When these options are enabled, qBittorrent will <strong>delete</strong> .torrent files after they were successfully (the first option) or not (the second option) added to its download queue. This will be applied <strong>not only</strong> to the files opened via &ldquo;Add torrent&rdquo; menu action but to those opened via <strong>file type association</strong> as well @@ -7558,69 +7646,69 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + %G: Tags (separated by comma) - + %I: Info hash v1 (or '-' if unavailable) - + %J: Info hash v2 (or '-' if unavailable) - + %K: Torrent ID (either sha-1 info hash for v1 torrent or truncated sha-256 info hash for v2/hybrid torrent) - - + + Choose a save directory - + Torrents that have metadata initially will be added as stopped. - + Choose an IP filter file - + All supported filters - + The alternative WebUI files location cannot be blank. - + Parsing error - + Failed to parse the provided IP filter - + Successfully refreshed - + Successfully parsed the provided IP filter: %1 rules were applied. %1 is a number Berilgan IP filtri tahlil qilindi: %1 ta qoida qo‘llandi. @@ -7631,18 +7719,18 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not - + Time Error - + The start time and the end time can't be the same. - - + + Length Error @@ -7733,163 +7821,163 @@ readme[0-9].txt: filter 'readme1.txt', 'readme2.txt' but not PeerListWidget - + Country/Region - + IP/Address - + Port - + Flags - + Connection - + Client i.e.: Client application - + Peer ID Client i.e.: Client resolved from Peer ID - + Progress i.e: % downloaded - + Down Speed i.e: Download speed - + Up Speed i.e: Upload speed - + Downloaded i.e: total data downloaded Yuklab olingan - + Uploaded i.e: total data uploaded - + Relevance i.e: How relevant this peer is to us. How many pieces it has that we don't. - + Files i.e. files that are being downloaded right now - + Column visibility - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add peers... - - + + Adding peers - + Some peers cannot be added. Check the Log for details. - + Peers are added to this torrent. - - + + Ban peer permanently - + Cannot add peers to a private torrent - + Cannot add peers when the torrent is checking - + Cannot add peers when the torrent is queued - + No peer was selected - + Are you sure you want to permanently ban the selected peers? - + Peer "%1" is manually banned - + N/A Noaniq - + Copy IP:port @@ -8166,39 +8254,6 @@ Those plugins were disabled. - - PowerManagement - - - qBittorrent is active - - - - - PowerManagementInhibitor - - - Power management found suitable D-Bus interface. Interface: %1 - - - - - Power management error. Did not found suitable D-Bus interface. - - - - - - - Power management error. Action: %1. Error: %2 - - - - - Power management unexpected error. State: %1. Error: %2 - - - PreviewSelectDialog @@ -8488,124 +8543,124 @@ Those plugins were disabled. - + Never Hech qachon - + %1 x %2 (have %3) (torrent pieces) eg 152 x 4MB (have 25) - - + + %1 (%2 this session) - - + + N/A Noaniq - + Yes Ha - + No Yo‘q - + %1 (seeded for %2) e.g. 4m39s (seeded for 3m10s) - + %1 (%2 max) %1 and %2 are numbers, e.g. 3 (10 max) - - + + %1 (%2 total) %1 and %2 are numbers, e.g. 3 (10 total) - - + + %1 (%2 avg.) %1 and %2 are speed rates, e.g. 200KiB/s (100KiB/s avg.) - + Add web seed Add HTTP source - + Add web seed: - - + + This web seed is already in the list. - + Filter files... - + Add web seed... - + Remove web seed - + Copy web seed URL - + Edit web seed URL... - + Speed graphs are disabled - + You can enable it in Advanced Options - + Web seed editing - + Web seed URL: @@ -8613,33 +8668,33 @@ Those plugins were disabled. RSS::AutoDownloader - - + + Invalid data format. - + Couldn't save RSS AutoDownloader data in %1. Error: %2 - + Invalid data format - + RSS article '%1' is accepted by rule '%2'. Trying to add torrent... - + Failed to read RSS AutoDownloader rules. %1 - + Couldn't load RSS AutoDownloader rules. Reason: %1 @@ -8647,22 +8702,22 @@ Those plugins were disabled. RSS::Feed - + Failed to download RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' updated. Added %2 new articles. - + Failed to parse RSS feed at '%1'. Reason: %2 - + RSS feed at '%1' is successfully downloaded. Starting to parse it. @@ -8711,12 +8766,12 @@ Those plugins were disabled. RSS::Session - + Couldn't save RSS session configuration. File: "%1". Error: "%2" - + Couldn't save RSS session data. File: "%1". Error: "%2" @@ -8738,76 +8793,117 @@ Those plugins were disabled. - + Item doesn't exist: %1. - Couldn't move folder into itself. + Can't move a folder into itself or its subfolders. - + Cannot delete root folder. - + Failed to read RSS session data. %1 - + Failed to parse RSS session data. File: "%1". Error: "%2" - + Failed to load RSS session data. File: "%1". Error: "Invalid data format." - + Couldn't load RSS feed. Feed: "%1". Reason: URL is required. - + Couldn't load RSS feed. Feed: "%1". Reason: UID is invalid. - + Duplicate RSS feed found. UID: "%1". Error: Configuration seems to be corrupted. - + Couldn't load RSS item. Item: "%1". Invalid data format. - + Corrupted RSS list, not loading it. - + Incorrect RSS Item path: %1. - + RSS item with given path already exists: %1. - + Parent folder doesn't exist: %1. + + RSSController + + + Invalid 'refreshInterval' value + + + + + Feed doesn't exist: %1. + + + + + RSSFeedDialog + + + RSS Feed Options + + + + + URL: + + + + + Refresh interval: + + + + + sec + + + + + Default + + + RSSWidget @@ -8907,78 +9003,61 @@ Those plugins were disabled. - Edit feed URL... + Feed options... - - Edit feed URL - - - - + Please choose a folder name - + Folder name: - + New folder - - - Please type a RSS feed URL - - - - - - Feed URL: - - - - + Deletion confirmation - + Are you sure you want to delete the selected RSS feeds? - + Please choose a new name for this RSS feed - + New feed name: - + Rename failed - + Date: - + Feed: - + Author: @@ -9235,104 +9314,104 @@ Those plugins were disabled. SearchPluginManager - + Unknown search engine plugin file format. - + Plugin already at version %1, which is greater than %2 - + A more recent version of this plugin is already installed. - + Plugin %1 is not supported. - - + + Plugin is not supported. - + Plugin %1 has been successfully updated. - + All categories - + Movies - + TV shows - + Music - + Games - + Anime - + Software - + Pictures - + Books - + Update server is temporarily unavailable. %1 - - + + Failed to download the plugin file. %1 - + Plugin "%1" is outdated, updating to version %2 - + Incorrect update info received for %1 out of %2 plugins. - + Search plugin '%1' contains invalid version string ('%2') @@ -9357,94 +9436,94 @@ Click the "Search plugins..." button at the bottom right of the window - + A phrase to search for. - + Spaces in a search term may be protected by double quotes. - + Example: Search phrase example - + <b>&quot;foo bar&quot;</b>: search for <b>foo bar</b> Search phrase example, illustrates quotes usage, double quotedpair of space delimited words, the whole pair is highlighted - + All plugins - + Only enabled - - + + Invalid data format. - + <b>foo bar</b>: search for <b>foo</b> and <b>bar</b> Search phrase example, illustrates quotes usage, a pair of space delimited words, individual words are highlighted - + Refresh - + Close tab - + Close all tabs - + Select... - - + + Search Engine - - + + Please install Python to use the Search Engine. - + Empty search pattern - + Please type a search pattern first - + Stop @@ -9452,32 +9531,32 @@ Click the "Search plugins..." button at the bottom right of the window SearchWidget::DataStorage - + Failed to load Search UI saved state data. File: "%1". Error: "%2" - + Failed to load saved search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to save Search UI state. File: "%1". Error: "%2" - + Failed to save search results. Tab: "%1". File: "%2". Error: "%3" - + Failed to load Search UI history. File: "%1". Error: "%2" - + Failed to save search history. File: "%1". Error: "%2" @@ -9875,67 +9954,77 @@ Click the "Search plugins..." button at the bottom right of the window StatusBar - + Connection status: - - + + No direct connections. This may indicate network configuration problems. - - + + Free space: N/A + + + + + External IP: N/A - - + + DHT: %1 nodes - + qBittorrent needs to be restarted! - - + + Connection Status: - + Offline. This usually means that qBittorrent failed to listen on the selected port for incoming connections. - + Online - + + Free space: + + + + External IPs: %1, %2 - + External IP: %1%2 - + Click to switch to alternative speed limits - + Click to switch to regular speed limits @@ -10471,17 +10560,17 @@ Please choose a different name and try again. TorrentCreatorController - + Too many active tasks - + Torrent creation is still unfinished. - + Torrent creation failed. @@ -10961,78 +11050,78 @@ Please choose a different name and try again. TorrentsController - + Error: '%1' is not a valid torrent file. - + Priority must be an integer - + Priority is not valid - + Torrent's metadata has not yet downloaded - + File IDs must be integers - + File ID is not valid - - - - + + + + Torrent queueing must be enabled - - + + Save path cannot be empty - - + + Cannot create target directory - - + + Category cannot be empty - + Unable to create category - + Unable to edit category - + Unable to export torrent file. Error: %1 - + Cannot make save path @@ -11052,39 +11141,39 @@ Please choose a different name and try again. - + "%1" is not an existing URL - + "%1" is not a valid file index. - + Index %1 is out of bounds. - - + + Cannot write to directory - + WebUI Set location: moving "%1", from "%2" to "%3" - + Incorrect torrent name - - + + Incorrect category name @@ -11228,73 +11317,73 @@ Please choose a different name and try again. - + Tracker editing - + Tracker URL: - - + + Tracker editing failed - + The tracker URL entered is invalid. - + The tracker URL already exists. - + Edit tracker URL... - + Remove tracker - + Copy tracker URL - + Force reannounce to selected trackers - + Force reannounce to all trackers - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Add trackers... - + Column visibility @@ -11783,319 +11872,319 @@ Please choose a different name and try again. TransferListWidget - + Column visibility - + Recheck confirmation - + Are you sure you want to recheck the selected torrent(s)? - + Rename - + New name: Yangi nomi: - + Choose save path Saqlash yo‘lagini tanlang - + Unable to preview - + The selected torrent "%1" does not contain previewable files - + Resize columns - + Resize all non-hidden columns to the size of their contents - + Enable automatic torrent management - + Are you sure you want to enable Automatic Torrent Management for the selected torrent(s)? They may be relocated. - + Choose folder to save exported .torrent files - + Export .torrent file failed. Torrent: "%1". Save path: "%2". Reason: "%3" - + A file with the same name already exists - + Export .torrent file error - + Remove All Tags - + Remove all tags from selected torrents? - + Comma-separated tags: - + Invalid tag - + Tag name: '%1' is invalid - + Pre&view file... - + Torrent &options... - + 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 loc&ation... - + Force rec&heck - + Force r&eannounce - + &Magnet link - + Torrent &ID - + &Comment - + &Name - + Info &hash v1 - + Info h&ash v2 - + Re&name... - + Edit trac&kers... - + E&xport .torrent... - + Categor&y - + &New... New category... - + &Reset Reset category - + Ta&gs - + &Add... Add / assign multiple tags... - + &Remove All Remove all tags - + Can not force reannounce if torrent is Stopped/Queued/Errored/Checking - + &Queue - + &Copy - + Exported torrent is not necessarily the same as the imported - + Download in sequential order - + Add tags - + Errors occurred when exporting .torrent files. Check execution log for details. - + &Start Resume/start the torrent - + Sto&p Stop the torrent - + Force Star&t Force Resume/start the torrent - + &Remove Remove the torrent - + Download first and last pieces first - + Automatic Torrent Management - + Automatic mode means that various torrent properties (e.g. save path) will be decided by the associated category - + Super seeding mode @@ -12227,32 +12316,32 @@ Please choose a different name and try again. Utils::ForeignApps - + Found Python executable. Name: "%1". Version: "%2" - + Failed to find Python executable. Path: "%1". - + Failed to find `python3` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in PATH environment variable. PATH: "%1" - + Failed to find `python` executable in Windows Registry. - + Failed to find Python executable @@ -12344,52 +12433,52 @@ Please choose a different name and try again. WebApplication - + Unacceptable session cookie name is specified: '%1'. Default one is used. - + Unacceptable file type, only regular file is allowed. - + Symlinks inside alternative UI folder are forbidden. - + Using built-in WebUI. - + Using custom WebUI. Location: "%1". - + WebUI translation for selected locale (%1) has been successfully loaded. - + Couldn't load WebUI translation for selected locale (%1). - + Missing ':' separator in WebUI custom HTTP header: "%1" - + Web server error. %1 - + Web server error. Unknown error. @@ -12549,4 +12638,4 @@ Please choose a different name and try again. - + \ No newline at end of file diff --git a/src/lang/qbittorrent_vi.ts b/src/lang/qbittorrent_vi.ts index 6611484a9..51153d440 100644 --- a/src/lang/qbittorrent_vi.ts +++ b/src/lang/qbittorrent_vi.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" Thêm torrent thất bại. Nguồn: "%1". Lý do: "%2" - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - Đã phát hiện nỗ lực thêm torrent trùng lặp. Nguồn: %1. Torrent hiện có: %2. Kết quả: %3 - Merging of trackers is disabled @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + Đính kèm hộp thoại "Thêm torrent mới" vào cửa sổ chính @@ -2179,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - Không thể phân tích cú pháp dữ liệu tiếp tục: %1 + Không thể phân tích cú pháp dữ liệu tiếp tục: %1 Cannot parse torrent info: %1 - Không thể phân tích cú pháp thông tin của torrent: %1 + Không thể phân tích cú pháp thông tin của torrent: %1 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Đã xóa torrent. Torrent: "%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - Đã phát hiện nỗ lực thêm torrent trùng lặp. Torrent hiện có: %1. Kết quả: %2 - Merging of trackers is disabled @@ -3549,7 +3541,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - Quản lý năng lượng tìm thấy giao diện D-Bus phù hợp. Giao diện: %1 + Quản lý năng lượng tìm thấy giao diện D-Bus phù hợp. Giao diện: %1 @@ -3561,12 +3553,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management error. Action: %1. Error: %2 - Lỗi quản lý nguồn. Hành động: %1. Lỗi: %2 + Lỗi quản lý nguồn. Hành động: %1. Lỗi: %2 Power management unexpected error. State: %1. Error: %2 - Lỗi quản lý nguồn không mong muốn. Giai đoạn 1. Lỗi: %2 + Lỗi quản lý nguồn không mong muốn. Giai đoạn 1. Lỗi: %2 @@ -6149,10 +6141,6 @@ Yêu cầu tối thiểu: %2. Mixed mode Chế độ hỗn hợp - - Some options are incompatible with the chosen proxy type! - Một số tùy chọn không tương thích với loại proxy đã chọn! - If checked, hostname lookups are done via the proxy @@ -7136,10 +7124,6 @@ readme[0-9].txt: lọc 'readme1.txt', 'readme2.txt' nhưng k A&uthentication X&ác thực - - Info: The password is saved unencrypted - Thông tin: Mật khẩu đã lưu không mã hóa - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Các plugin đó đã bị vô hiệu hóa. Liên kết Web - - PowerManagement - - qBittorrent is active - qBittorrent đang hoạt động - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - Quản lý năng lượng tìm thấy giao diện D-Bus phù hợp. Giao diện: %1 - - - Power management error. Did not found suitable D-Bus interface. - Lỗi quản lý nguồn. Không tìm thấy giao diện D-Bus phù hợp. - - - Power management error. Action: %1. Error: %2 - Lỗi quản lý nguồn. Hành động: %1. Lỗi: %2 - - - Power management unexpected error. State: %1. Error: %2 - Lỗi quản lý nguồn không mong muốn. Giai đoạn 1. Lỗi: %2 - - PreviewSelectDialog @@ -8867,10 +8825,6 @@ Các plugin đó đã bị vô hiệu hóa. Item doesn't exist: %1. Mục không tồn tại: %1. - - Couldn't move folder into itself. - Không thể di chuyển thư mục vào chính nó. - Can't move a folder into itself or its subfolders. @@ -8947,7 +8901,7 @@ Các plugin đó đã bị vô hiệu hóa. Feed doesn't exist: %1. - Luồng không tồn tại: %1. + Luồng không tồn tại: %1. @@ -8960,22 +8914,22 @@ Các plugin đó đã bị vô hiệu hóa. URL: - URL: + URL: Refresh interval: - + Khoảng thời gian làm mới: sec - giây + giây Default - Mặc định + Mặc định @@ -9080,14 +9034,6 @@ Các plugin đó đã bị vô hiệu hóa. Feed options... - - Edit feed URL... - Sửa URL nguồn cấp... - - - Edit feed URL - Sửa URL nguồn cấp - Please choose a folder name @@ -9103,14 +9049,6 @@ Các plugin đó đã bị vô hiệu hóa. New folder Thư mục mới - - Please type a RSS feed URL - Vui lòng nhập URL nguồn cấp RSS - - - Feed URL: - URL nguồn cấp dữ liệu: - Deletion confirmation diff --git a/src/lang/qbittorrent_zh_CN.ts b/src/lang/qbittorrent_zh_CN.ts index 52eb69975..33ac2337a 100644 --- a/src/lang/qbittorrent_zh_CN.ts +++ b/src/lang/qbittorrent_zh_CN.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" 添加 Torrent 失败。来源:“%1”。原因:“%2” - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 检测到尝试添加重复 Torrent 文件。来源:%1。现有 Torrent 文件:%2。结果:%3 - Merging of trackers is disabled @@ -508,7 +504,7 @@ Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + 检测到尝试添加重复的种子文件。来源:%1.。现有种子:"%2"。种子 infohash 值:%3。结果:%4 @@ -1081,7 +1077,7 @@ Internal hostname resolver cache expiry interval - + 内部主机名解析器缓存过期间隔 @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + 将“添加新 torrent 文件”对话框附到主窗口 @@ -2103,12 +2099,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Corrupted resume data: %1 - + 恢复数据受损:%1 save_path is invalid - + 保存路径无效 @@ -2179,23 +2175,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - 无法解析恢复数据:%1 + 无法解析恢复数据:%1 Cannot parse torrent info: %1 - 无法解析 Torrent 信息:%1 + 无法解析 Torrent 信息:%1 Corrupted resume data: %1 - + 恢复数据受损:%1 save_path is invalid - + 保存路径无效 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" 已删除 Torrent。Torrent:"%1" - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - 检测到尝试添加重复 Torrent 文件。现有 Torrent 文件:%1。结果:%2 - Merging of trackers is disabled @@ -2548,14 +2540,14 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Duplicate torrent - + 重复的种子 Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + 检测到尝试添加重复的种子。现有种子:"%1"。种子 infohash 值:%2。结果:%3 @@ -3549,24 +3541,24 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - 电源管理发现了合适的 D-Bus 界面。界面:%1 + 电源管理发现了合适的 D-Bus 界面。界面:%1 Power management error. Did not find a suitable D-Bus interface. - + 电源管理错误、未找到合适的 D-Bus 接口。 Power management error. Action: %1. Error: %2 - 电源管理错误。操作:%1。错误:%2 + 电源管理错误。操作:%1。错误:%2 Power management unexpected error. State: %1. Error: %2 - 电源管理异常错误。状态:%1.。错误:%2 + 电源管理异常错误。状态:%1.。错误:%2 @@ -3575,7 +3567,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also PMMacOS qBittorrent is active - + PMMacOS @@ -6046,7 +6038,7 @@ Minimum requirement: %2. Show free disk space in status bar - + 在状态栏中显示可用的磁盘空间 @@ -6149,10 +6141,6 @@ Minimum requirement: %2. Mixed mode 混合模式 - - Some options are incompatible with the chosen proxy type! - 某些选项与所选的代理类型不兼容! - If checked, hostname lookups are done via the proxy @@ -6315,12 +6303,12 @@ Disable encryption: Only connect to peers without protocol encryption Some functions are unavailable with the chosen proxy type! - + 某些功能在所选的代理类型中不可用 Note: The password is saved unencrypted - + 注意:密码以非加密形式保存 @@ -7136,10 +7124,6 @@ readme[0-9].txt:过滤 “readme1.txt”、“readme2.txt” 但不过滤 “r A&uthentication 认证(&U) - - Info: The password is saved unencrypted - 提示:密码未加密 - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Those plugins were disabled. 网站链接 - - PowerManagement - - qBittorrent is active - qBittorrent 正在活动 - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - 电源管理发现了合适的 D-Bus 界面。界面:%1 - - - Power management error. Did not found suitable D-Bus interface. - 电源管理错误。未发现合适的 D-Bus 界面。 - - - Power management error. Action: %1. Error: %2 - 电源管理错误。操作:%1。错误:%2 - - - Power management unexpected error. State: %1. Error: %2 - 电源管理异常错误。状态:%1.。错误:%2 - - PreviewSelectDialog @@ -8867,14 +8825,10 @@ Those plugins were disabled. Item doesn't exist: %1. 项目不存在:%1。 - - Couldn't move folder into itself. - 文件夹移动的起点和终点不能相同 - Can't move a folder into itself or its subfolders. - + 无法移动文件夹到其自身或其子文件夹中 @@ -8942,12 +8896,12 @@ Those plugins were disabled. Invalid 'refreshInterval' value - + 无效的“刷新间隔”值 Feed doesn't exist: %1. - Feed 不存在:%1。 + Feed 不存在:%1。 @@ -8955,27 +8909,27 @@ Those plugins were disabled. RSS Feed Options - + RSS 源选项 URL: - 网址: + 网址: Refresh interval: - + 刷新间隔 sec - + Default - 默认 + 默认 @@ -9078,15 +9032,7 @@ Those plugins were disabled. Feed options... - - - - Edit feed URL... - 编辑源 URL... - - - Edit feed URL - 编辑源 URL + 源选项... @@ -9103,14 +9049,6 @@ Those plugins were disabled. New folder 新建文件夹 - - Please type a RSS feed URL - 请输入一个 RSS 订阅地址 - - - Feed URL: - 订阅源 URL: - Deletion confirmation @@ -10058,7 +9996,7 @@ Click the "Search plugins..." button at the bottom right of the window Free space: N/A - + 可用空间:N/A @@ -10097,7 +10035,7 @@ Click the "Search plugins..." button at the bottom right of the window Free space: - + 可用空间: diff --git a/src/lang/qbittorrent_zh_HK.ts b/src/lang/qbittorrent_zh_HK.ts index ac4565c3a..007ab5fd8 100644 --- a/src/lang/qbittorrent_zh_HK.ts +++ b/src/lang/qbittorrent_zh_HK.ts @@ -2175,13 +2175,13 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - 無法解析還原資料:%1 + 無法解析還原資料:%1 Cannot parse torrent info: %1 - 無法解析 torrent 資訊:%1 + 無法解析 torrent 資訊:%1 @@ -7123,10 +7123,6 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read A&uthentication 驗證 - - Info: The password is saved unencrypted - (注意:儲存的密碼不會加密) - Filter path (.dat, .p2p, .p2b): @@ -8284,13 +8280,6 @@ Those plugins were disabled. 網絡連結 - - PowerManagement - - qBittorrent is active - qBittorrent運行中 - - PreviewSelectDialog @@ -8923,22 +8912,22 @@ Those plugins were disabled. URL: - 網址: + 網址: Refresh interval: - + 更新間距: sec - + Default - 預設 + 預設 @@ -9058,14 +9047,6 @@ Those plugins were disabled. New folder 新資料夾 - - Please type a RSS feed URL - 請輸入一個RSS Feed網址 - - - Feed URL: - RSS Feed網址: - Deletion confirmation diff --git a/src/lang/qbittorrent_zh_TW.ts b/src/lang/qbittorrent_zh_TW.ts index 9579cdc6a..844628614 100644 --- a/src/lang/qbittorrent_zh_TW.ts +++ b/src/lang/qbittorrent_zh_TW.ts @@ -486,10 +486,6 @@ Failed to add torrent. Source: "%1". Reason: "%2" 新增 torrent 失敗。來源:「%1」。理由:「%2」 - - Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: %2. Result: %3 - 偵測到嘗試新增重複的 torrent。來源:%1。既有的 torrent:%2。結果:%3 - Merging of trackers is disabled @@ -508,7 +504,7 @@ Detected an attempt to add a duplicate torrent. Source: %1. Existing torrent: "%2". Torrent infohash: %3. Result: %4 - + 偵測到新增重複 torrent 的嘗試。來源:%1。既有的 torrent:「%2」。Torrent inforhash:%3。結果:%4 @@ -1081,7 +1077,7 @@ Internal hostname resolver cache expiry interval - + 內部主機名稱解析器快取過期間隔 @@ -1156,7 +1152,7 @@ Attach "Add new torrent" dialog to main window - + 將「新增 torrent」對話方塊附加到主視窗 @@ -2103,12 +2099,12 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Corrupted resume data: %1 - + 還原資料受損:%1 save_path is invalid - + save_path 無效 @@ -2179,23 +2175,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Cannot parse resume data: %1 - 無法解析還原資料:%1 + 無法解析還原資料:%1 Cannot parse torrent info: %1 - 無法解析 torrent 資訊:%1 + 無法解析 torrent 資訊:%1 Corrupted resume data: %1 - + 還原資料受損:%1 save_path is invalid - + save_path 無效 @@ -2440,10 +2436,6 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent removed. Torrent: "%1" Torrent 已移除。Torrent:「%1」 - - Detected an attempt to add a duplicate torrent. Existing torrent: %1. Result: %2 - 偵測到嘗試新增重複的 torrent。既有的 torrent:%1。結果:%2 - Merging of trackers is disabled @@ -2548,14 +2540,14 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Duplicate torrent - + 重複的 torrent Detected an attempt to add a duplicate torrent. Existing torrent: "%1". Torrent infohash: %2. Result: %3 - + 偵測到新增重複 torrent 的嘗試。既有的 torrent:「%1」。Torrent inforhash:%2。結果:%3 @@ -3549,24 +3541,24 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Power management found suitable D-Bus interface. Interface: %1 - 電源管理找到了合適的 D-Bus 介面。介面:%1 + 電源管理找到了合適的 D-Bus 介面。介面:%1 Power management error. Did not find a suitable D-Bus interface. - + 電源管理錯誤。找不到合適的 D-Bus 介面。 Power management error. Action: %1. Error: %2 - 電源管理錯誤。動作:%1。錯誤:%2 + 電源管理錯誤。動作:%1。錯誤:%2 Power management unexpected error. State: %1. Error: %2 - 電源管理非預期的錯誤。狀態:%1。錯誤:%2 + 電源管理非預期的錯誤。狀態:%1。錯誤:%2 @@ -3575,7 +3567,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also PMMacOS qBittorrent is active - + PMMacOS @@ -6046,7 +6038,7 @@ Minimum requirement: %2. Show free disk space in status bar - + 在狀態列中顯示可用磁碟空間 @@ -6149,10 +6141,6 @@ Minimum requirement: %2. Mixed mode 混合模式 - - Some options are incompatible with the chosen proxy type! - 某些選項與選定的代理伺服器類型不相容! - If checked, hostname lookups are done via the proxy @@ -6315,12 +6303,12 @@ Disable encryption: Only connect to peers without protocol encryption Some functions are unavailable with the chosen proxy type! - + 部份功能在選定的代理伺服器類型中無法使用! Note: The password is saved unencrypted - + 注意:密碼以未加密形式儲存 @@ -7136,10 +7124,6 @@ readme[0-9].txt:過濾「readme1.txt」、「readme2.txt」但不包含「read A&uthentication 驗證 (&U) - - Info: The password is saved unencrypted - 資訊:密碼以未加密的形式儲存 - Filter path (.dat, .p2p, .p2b): @@ -8298,32 +8282,6 @@ Those plugins were disabled. 網頁連結 - - PowerManagement - - qBittorrent is active - qBittorrent 正在運作中 - - - - PowerManagementInhibitor - - Power management found suitable D-Bus interface. Interface: %1 - 電源管理找到了合適的 D-Bus 介面。介面:%1 - - - Power management error. Did not found suitable D-Bus interface. - 電源管理錯誤。找不到合適的 D-Bus 介面。 - - - Power management error. Action: %1. Error: %2 - 電源管理錯誤。動作:%1。錯誤:%2 - - - Power management unexpected error. State: %1. Error: %2 - 電源管理非預期的錯誤。狀態:%1。錯誤:%2 - - PreviewSelectDialog @@ -8867,14 +8825,10 @@ Those plugins were disabled. Item doesn't exist: %1. 項目不存在:%1。 - - Couldn't move folder into itself. - 無法將資料夾移動到自己裡面。 - Can't move a folder into itself or its subfolders. - + 無法將資料夾移動到自身或其子資料夾中。 @@ -8942,12 +8896,12 @@ Those plugins were disabled. Invalid 'refreshInterval' value - + 無效的「重新整理間隔」值 Feed doesn't exist: %1. - Feed 不存在:%1。 + Feed 不存在:%1。 @@ -8955,27 +8909,27 @@ Those plugins were disabled. RSS Feed Options - + RSS Feed 選項 URL: - URL: + URL: Refresh interval: - + 重新整理間隔 sec - + Default - 預設 + 預設 @@ -9078,15 +9032,7 @@ Those plugins were disabled. Feed options... - - - - Edit feed URL... - 編輯 feed URL…… - - - Edit feed URL - 編輯 feed URL + Feed 選項…… @@ -9103,14 +9049,6 @@ Those plugins were disabled. New folder 新資料夾 - - Please type a RSS feed URL - 請輸入一個 RSS feed URL - - - Feed URL: - Feed URL: - Deletion confirmation @@ -10058,7 +9996,7 @@ Click the "Search plugins..." button at the bottom right of the window Free space: N/A - + 可用空間:N/A @@ -10097,7 +10035,7 @@ Click the "Search plugins..." button at the bottom right of the window Free space: - + 可用空間: diff --git a/src/webui/www/translations/webui_ar.ts b/src/webui/www/translations/webui_ar.ts index e1ad51dee..c8ad97e44 100644 --- a/src/webui/www/translations/webui_ar.ts +++ b/src/webui/www/translations/webui_ar.ts @@ -696,7 +696,7 @@ Torrent Creator - + مُنشئ التورنت @@ -1171,10 +1171,6 @@ When adding a torrent عند إضافة تورنت - - Info: The password is saved unencrypted - معلومة: كلمة السر يتم حفظها بشكل غير مشفّر - μTP-TCP mixed mode algorithm: خوارزمية الوضع المختلط μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: مواضيع الإدخال/الإخراج غير متزامنة: - - s - ث - Send buffer watermark: إرسال علامة مائية المخزن المؤقت: @@ -4056,7 +4048,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + المؤلف: @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + في قائمة الانتظار Unable to create torrent. @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + التعليقات: Download Torrent @@ -4659,7 +4651,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + روابط وِب البذر: Failed @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + الإعدادات Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + الحالة Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + التقدّم Completed On - + تاريخ الاكتمال Hybrid - + هجين Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + لا يوجد Tracker URLs: - + روابط المتتبعات: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + المسار: Create Torrent - + إنشاء التورنت Auto - + تلقائي Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + تنسيق التورنت: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + تاريخ الإضافة Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + مُنشئ التورنت Source: - + المصدر: Trackers - + المتتبعات Piece size: - + حجم القطعة: Fields - + الحقول Remove Task diff --git a/src/webui/www/translations/webui_az@latin.ts b/src/webui/www/translations/webui_az@latin.ts index 97ed5061c..2b405909a 100644 --- a/src/webui/www/translations/webui_az@latin.ts +++ b/src/webui/www/translations/webui_az@latin.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent yaradıcı @@ -1171,10 +1171,6 @@ When adding a torrent Torrent əlavə edildikdə - - Info: The password is saved unencrypted - İnfo: Parol, şifrələnməmiş şəkildə saxlanıldı - μTP-TCP mixed mode algorithm: μTP-TCP qarışıq rejimi alqoritmi: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Zamanla bir birinə uzlaşmayan Giriş/Çıxış axınları: - - s - san - Send buffer watermark: Buferin su nişanını göndərmək: @@ -4056,7 +4048,7 @@ serveri tərəfindən istifadə olunan domen adını göstərməlisiniz. Author: - + Müəllif: @@ -4618,7 +4610,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin TorrentCreator Private - + Məxfi Source @@ -4626,7 +4618,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Queued - + Növbədə Unable to create torrent. @@ -4639,7 +4631,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Unable to export torrent file - + Torrent faylları ixrac etmk mümkün deyil Create New Torrent @@ -4647,7 +4639,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Comments: - + Şərhlər: Download Torrent @@ -4655,11 +4647,11 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Status Icon - + Vəziyyət nişanı Web seed URLs: - + Veb göndərişi URL-ları: Failed @@ -4667,7 +4659,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Comment - + Şərh Finished @@ -4675,7 +4667,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Settings - + Ayarlar Error Message @@ -4683,7 +4675,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Status - + Vəziyyət Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Progress - + Gedişat Completed On - + Tamamlanıb Hybrid - + Hibrid Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin N/A - + Ə/D Tracker URLs: - + İzləyici URL-ları: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Path: - + Yol: Create Torrent - + Torrent yaratmaq Auto - + Avtomatik Started On @@ -4763,7 +4755,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Torrent format: - + Torrent formatı Source Path @@ -4771,7 +4763,7 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Added On - + Əlavə edilib Running @@ -4779,23 +4771,23 @@ Bu formatlar dəstəklənir: S01E01, 1x1, 2017.12.31 və 31.12.2017 (Həmçinin Torrent Creator - + Torrent yaradıcı Source: - + Mənbə: Trackers - + İzləyicilər Piece size: - + Hissənin ölçüsü: Fields - + Sahələr Remove Task diff --git a/src/webui/www/translations/webui_be.ts b/src/webui/www/translations/webui_be.ts index bbc75e009..bc782a1c6 100644 --- a/src/webui/www/translations/webui_be.ts +++ b/src/webui/www/translations/webui_be.ts @@ -696,7 +696,7 @@ Torrent Creator - + Стварэнне торэнта @@ -1171,10 +1171,6 @@ When adding a torrent Пры дадаванні торэнта - - Info: The password is saved unencrypted - Інфармацыя: пароль будзе захаваны ў незашыфраваным выглядзе - μTP-TCP mixed mode algorithm: Алгарытм змешанага %1-TCP рэжыму @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Патокі асінхроннага ўводу/вываду - - s - с - Send buffer watermark: Адзнака буфера адпраўкі: @@ -4057,7 +4049,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Аўтар: @@ -4619,7 +4611,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + Прыватны Source @@ -4627,7 +4619,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + У чарзе Unable to create torrent. @@ -4640,7 +4632,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Unable to export torrent file - + Немагчыма экспартаваць файл .torrent Create New Torrent @@ -4648,7 +4640,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Каментарыі: Download Torrent @@ -4656,11 +4648,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status Icon - + Значок стану Web seed URLs: - + Адрасы вэб-сідаў: Failed @@ -4668,7 +4660,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + Каментарый Finished @@ -4676,7 +4668,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Налады Error Message @@ -4684,7 +4676,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Стан Align to piece boundary for files larger @@ -4701,15 +4693,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Ход выканання Completed On - + Завершаны Hybrid - + Hybrid Unable to load torrent creation tasks @@ -4722,11 +4714,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + Н/Д Tracker URLs: - + Адрасы трэкераў: Are you sure you want to delete selected tasks? @@ -4734,15 +4726,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Шлях: Create Torrent - + Стварыць торэнт Auto - + Аўта Started On @@ -4764,7 +4756,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Фармат торэнта: Source Path @@ -4772,7 +4764,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Дададзены Running @@ -4780,23 +4772,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Стварэнне торэнта Source: - + Крыніца: Trackers - + Трэкеры Piece size: - + Памер часткі: Fields - + Палі Remove Task diff --git a/src/webui/www/translations/webui_bg.ts b/src/webui/www/translations/webui_bg.ts index 8be7a0e69..75b49188d 100644 --- a/src/webui/www/translations/webui_bg.ts +++ b/src/webui/www/translations/webui_bg.ts @@ -697,7 +697,7 @@ Torrent Creator - + Торентов Създател @@ -1172,10 +1172,6 @@ When adding a torrent При добавяне на торент - - Info: The password is saved unencrypted - Информация: Паролата е запазена некриптирана - μTP-TCP mixed mode algorithm: uTP-TCP алгоритъм смесен режим: @@ -1276,10 +1272,6 @@ Asynchronous I/O threads: Асинхронни Входно/Изходни нишки: - - s - с - Send buffer watermark: Изпращане на буферен воден знак: @@ -4053,7 +4045,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Автор: @@ -4623,7 +4615,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + На опашка Unable to create torrent. @@ -4644,7 +4636,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Коментари: Download Torrent @@ -4656,7 +4648,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + Уеб сийд: Failed @@ -4672,7 +4664,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Настройки Error Message @@ -4680,7 +4672,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Състояние Align to piece boundary for files larger @@ -4697,15 +4689,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Напредък Completed On - + Завършен на Hybrid - + Хибриден Unable to load torrent creation tasks @@ -4718,11 +4710,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + Няма Tracker URLs: - + Адрес на тракера: Are you sure you want to delete selected tasks? @@ -4730,15 +4722,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Път: Create Torrent - + Създай торент Auto - + Автоматично Started On @@ -4760,7 +4752,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Торент формат: Source Path @@ -4768,7 +4760,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Добавен на Running @@ -4776,23 +4768,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Торентов Създател Source: - + Източник: Trackers - + Тракери Piece size: - + Размер на частта: Fields - + Полета Remove Task diff --git a/src/webui/www/translations/webui_ca.ts b/src/webui/www/translations/webui_ca.ts index e26fe2547..7937fc8d5 100644 --- a/src/webui/www/translations/webui_ca.ts +++ b/src/webui/www/translations/webui_ca.ts @@ -697,7 +697,7 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Torrent Creator - + Creador del torrent @@ -1172,10 +1172,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. When adding a torrent En afegir un torrent - - Info: The password is saved unencrypted - Informació: la contrasenya es desa sense encriptar. - μTP-TCP mixed mode algorithm: Algorisme de mode mesclat uTP-TCP: @@ -1276,10 +1272,6 @@ Si us plau, no useu cap caràcter especial al nom de la categoria. Asynchronous I/O threads: Fils d'E/S asincrònics: - - s - s - Send buffer watermark: Envia la marca d'aigua de la memòria intermèdia: @@ -2062,7 +2054,7 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". sec - + s @@ -4057,7 +4049,7 @@ Useu ";" per separar les entrades. Podeu usar el comodí "*". Author: - + Autor: @@ -4619,7 +4611,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb TorrentCreator Private - + Privat Source @@ -4627,7 +4619,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Queued - + A la cua Unable to create torrent. @@ -4640,7 +4632,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Unable to export torrent file - + No es pot exportar el fitxer de torrent. Create New Torrent @@ -4648,7 +4640,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Comments: - + Comentaris: Download Torrent @@ -4656,11 +4648,11 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Status Icon - + Icona d'estat Web seed URLs: - + URLs de llavor web: Failed @@ -4668,7 +4660,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Comment - + Comentari Finished @@ -4676,7 +4668,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Settings - + Configuració Error Message @@ -4684,7 +4676,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Status - + Estat Align to piece boundary for files larger @@ -4701,15 +4693,15 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Progress - + Progrés Completed On - + Completat a Hybrid - + Híbrid Unable to load torrent creation tasks @@ -4722,11 +4714,11 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb N/A - + N / D Tracker URLs: - + URLs de rastrejador: Are you sure you want to delete selected tasks? @@ -4734,15 +4726,15 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Path: - + Camí: Create Torrent - + Crea un torrent Auto - + Auto Started On @@ -4764,7 +4756,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Torrent format: - + Format del torrent: Source Path @@ -4772,7 +4764,7 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Added On - + Afegit el Running @@ -4780,23 +4772,23 @@ Admet els formats S01E01, 1x1, 2017.12.31 i 31.12.2017 (Els formats de data tamb Torrent Creator - + Creador del torrent Source: - + Font: Trackers - + Rastrejadors Piece size: - + Mida del tros: Fields - + Camps Remove Task diff --git a/src/webui/www/translations/webui_cs.ts b/src/webui/www/translations/webui_cs.ts index bdc1e42fe..180d929b0 100644 --- a/src/webui/www/translations/webui_cs.ts +++ b/src/webui/www/translations/webui_cs.ts @@ -696,7 +696,7 @@ Torrent Creator - + Vytvoření torrentu @@ -1171,10 +1171,6 @@ When adding a torrent Při přidání torrentu - - Info: The password is saved unencrypted - Info: Heslo je uloženo nešifrované - μTP-TCP mixed mode algorithm: μTP-TCP mixed mode algoritmus: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynchronní I/O vlákna: - - s - s - Send buffer watermark: Odeslat watermark bufferu: @@ -2061,7 +2053,7 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. sec - + sec @@ -4056,7 +4048,7 @@ Použijte ';' pro oddělení více položek. Můžete použít masku '*'. Author: - + Autor @@ -4618,7 +4610,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod TorrentCreator Private - + Soukromý Source @@ -4626,7 +4618,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Queued - + Zařazeno do fronty Unable to create torrent. @@ -4639,7 +4631,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Unable to export torrent file - + Nelze exportovat soubor torrentu Create New Torrent @@ -4647,7 +4639,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Comments: - + Komentáře: Download Torrent @@ -4655,11 +4647,11 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Status Icon - + Stavová ikona Web seed URLs: - + URL odkazy pro webseed: Failed @@ -4667,7 +4659,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Comment - + Komentář Finished @@ -4675,7 +4667,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Settings - + Nastavení Error Message @@ -4683,7 +4675,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Status - + Stav Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Progress - + Průběh Completed On - + Dokončen Hybrid - + Hybridní Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod N/A - + Není k dispozici Tracker URLs: - + URL trackeru: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Path: - + Cesta: Create Torrent - + Vytvořit Torrent Auto - + Auto Started On @@ -4763,7 +4755,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Torrent format: - + Formát torrentu: Source Path @@ -4771,7 +4763,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Added On - + Přidán Running @@ -4779,23 +4771,23 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (Formáty dat také pod Torrent Creator - + Vytvoření torrentu Source: - + Zdroj: Trackers - + Trackery Piece size: - + Velikost části: Fields - + Polia Remove Task diff --git a/src/webui/www/translations/webui_da.ts b/src/webui/www/translations/webui_da.ts index 688711b24..582b04bc9 100644 --- a/src/webui/www/translations/webui_da.ts +++ b/src/webui/www/translations/webui_da.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrentopretter @@ -1171,10 +1171,6 @@ When adding a torrent Når en torrent tilføjes - - Info: The password is saved unencrypted - Info: Adgangskoden gemmes ukrypteret - μTP-TCP mixed mode algorithm: μTP-TCP blandet-tilstand-algoritme: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynkrone I/O-tråde: - - s - s - Send buffer watermark: Send vandmærke for buffer: @@ -2061,7 +2053,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. sec - + sek. @@ -4056,7 +4048,7 @@ Brug ';' til af adskille flere indtastninger. Jokertegnet '*' kan bruges. Author: - + Forfatter: @@ -4625,7 +4617,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Sat i kø Unable to create torrent. @@ -4646,7 +4638,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Kommentarer: Download Torrent @@ -4658,7 +4650,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + Web seed-URL'er: Failed @@ -4674,7 +4666,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Indstillinger Error Message @@ -4682,7 +4674,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Status Align to piece boundary for files larger @@ -4699,11 +4691,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Forløb Completed On - + Færdig den Hybrid @@ -4720,11 +4712,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + - Tracker URLs: - + Tracker-URL'er: Are you sure you want to delete selected tasks? @@ -4732,15 +4724,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Sti: Create Torrent - + Opret torrent Auto - + Auto Started On @@ -4770,7 +4762,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Tilføjet den Running @@ -4778,23 +4770,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Torrentopretter Source: - + Kilde: Trackers - + Trackere Piece size: - + Stykstørrelse: Fields - + Felter Remove Task diff --git a/src/webui/www/translations/webui_de.ts b/src/webui/www/translations/webui_de.ts index 8c5305a8b..fbdb45ced 100644 --- a/src/webui/www/translations/webui_de.ts +++ b/src/webui/www/translations/webui_de.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent-Ersteller @@ -1171,10 +1171,6 @@ When adding a torrent Sobald ein Torrent hinzugefügt wird - - Info: The password is saved unencrypted - Info: Das Passwort wird unverschlüsselt gespeichert! - μTP-TCP mixed mode algorithm: Regel f. uTP-TCP im gemischten Modus: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynchrone E/A-Threads - - s - s - Send buffer watermark: Schwellenwert für Sendepuffer: @@ -2063,7 +2055,7 @@ Platzhalter '*' kann verwendet werden. sec - + sec @@ -4058,7 +4050,7 @@ Platzhalter '*' kann verwendet werden. Author: - + Autor: @@ -4620,7 +4612,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form TorrentCreator Private - + Privat Source @@ -4628,7 +4620,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Queued - + Eingereiht Unable to create torrent. @@ -4641,7 +4633,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Unable to export torrent file - + Konnte Torrentdatei nicht exportieren Create New Torrent @@ -4649,7 +4641,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Comments: - + Kommentare: Download Torrent @@ -4657,11 +4649,11 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Status Icon - + Status Icon Web seed URLs: - + Webseed-URLs: Failed @@ -4669,7 +4661,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Comment - + Kommentar Finished @@ -4677,7 +4669,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Settings - + Einstellungen Error Message @@ -4685,7 +4677,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Status - + Status Align to piece boundary for files larger @@ -4702,15 +4694,15 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Progress - + Fortschritt Completed On - + Abgeschlossen am Hybrid - + Hybrid Unable to load torrent creation tasks @@ -4723,11 +4715,11 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form N/A - + N/V Tracker URLs: - + Tracker-URLs: Are you sure you want to delete selected tasks? @@ -4735,15 +4727,15 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Path: - + Pfad: Create Torrent - + Torrent erstellen Auto - + Automatisch Started On @@ -4765,7 +4757,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Torrent format: - + Format des Torrent: Source Path @@ -4773,7 +4765,7 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Added On - + Hinzugefügt am Running @@ -4781,23 +4773,23 @@ Er unterstützt die Formate: S01E01, 1x1, 2017.12.31 und 31.12.2017 (Datums-Form Torrent Creator - + Torrent-Ersteller Source: - + Quelle: Trackers - + Tracker Piece size: - + Größe der Teile: Fields - + Felder Remove Task diff --git a/src/webui/www/translations/webui_el.ts b/src/webui/www/translations/webui_el.ts index 041b24cb9..11b1606f7 100644 --- a/src/webui/www/translations/webui_el.ts +++ b/src/webui/www/translations/webui_el.ts @@ -696,7 +696,7 @@ Torrent Creator - + Δημιουργός torrent @@ -1171,10 +1171,6 @@ When adding a torrent Όταν προστίθεται κάποιο torrent - - Info: The password is saved unencrypted - Πληροφορία: Ο κωδικός πρόσβασης αποθηκεύτηκε μη κρυπτογραφημένος - μTP-TCP mixed mode algorithm: Αλγόριθμος μικτής λειτουργίας μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Ασύγχρονα νήματα I/O: - - s - δ - Send buffer watermark: Send buffer watermark: @@ -4056,7 +4048,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Δημιουργός: @@ -4618,7 +4610,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + Ιδιωτικά Source @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Στην Ουρά Unable to create torrent. @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Σχόλια: Download Torrent @@ -4659,7 +4651,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + URLs των Web seed: Failed @@ -4667,7 +4659,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + Σχόλιο Finished @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Ρυθμίσεις Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Κατάσταση Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Πρόοδος Completed On - + Ολοκληρώθηκε στις Hybrid - + Υβριδικό Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + Δ/Υ Tracker URLs: - + URLs του tracker: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Διαδρομή: Create Torrent - + Δημιουργία torrent Auto - + Αυτόματο Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Μορφή torrent: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Προστέθηκε στις Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Δημιουργός torrent Source: - + Πηγή: Trackers - + Trackers Piece size: - + Μέγεθος κομματιού: Fields - + Πεδία Remove Task diff --git a/src/webui/www/translations/webui_en_AU.ts b/src/webui/www/translations/webui_en_AU.ts index 4a68b783d..f7930a125 100644 --- a/src/webui/www/translations/webui_en_AU.ts +++ b/src/webui/www/translations/webui_en_AU.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent Creator @@ -1171,10 +1171,6 @@ When adding a torrent When adding a torrent - - Info: The password is saved unencrypted - Info: The password is saved unencrypted - μTP-TCP mixed mode algorithm: μTP-TCP mixed mode algorithm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynchronous I/O threads: - - s - s - Send buffer watermark: Send buffer watermark: @@ -4056,7 +4048,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Author: @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Queued Unable to create torrent. @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Comments: Download Torrent @@ -4659,7 +4651,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + Web seed URLs: Failed @@ -4667,7 +4659,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + Comment Finished @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Settings Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Status Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Progress Completed On - + Completed On Hybrid - + Hybrid Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + Tracker URLs: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Path: Create Torrent - + Create Torrent Auto - + Auto Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Torrent format: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Added On Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Torrent Creator Source: - + Source: Trackers - + Trackers Piece size: - + Piece size: Fields - + Fields Remove Task diff --git a/src/webui/www/translations/webui_en_GB.ts b/src/webui/www/translations/webui_en_GB.ts index 4ab758aee..d4e80cd70 100644 --- a/src/webui/www/translations/webui_en_GB.ts +++ b/src/webui/www/translations/webui_en_GB.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent Creator @@ -1171,10 +1171,6 @@ When adding a torrent When adding a torrent - - Info: The password is saved unencrypted - Info: The password is saved unencrypted - μTP-TCP mixed mode algorithm: μTP-TCP mixed mode algorithm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynchronous I/O threads: - - s - s - Send buffer watermark: Send buffer watermark: @@ -4056,7 +4048,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Author: @@ -4618,7 +4610,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + Private Source @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Queued Unable to create torrent. @@ -4639,7 +4631,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Unable to export torrent file - + Unable to export torrent file Create New Torrent @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Comments: Download Torrent @@ -4655,11 +4647,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status Icon - + Status Icon Web seed URLs: - + Web seed URLs: Failed @@ -4667,7 +4659,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + Comment Finished @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Settings Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Status Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Progress Completed On - + Completed On Hybrid - + Hybrid Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + Tracker URLs: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Path: Create Torrent - + Create Torrent Auto - + Auto Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Torrent format: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Added On Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Torrent Creator Source: - + Source: Trackers - + Trackers Piece size: - + Piece size: Fields - + Fields Remove Task diff --git a/src/webui/www/translations/webui_eo.ts b/src/webui/www/translations/webui_eo.ts index 091716fba..e68e48e05 100644 --- a/src/webui/www/translations/webui_eo.ts +++ b/src/webui/www/translations/webui_eo.ts @@ -1171,10 +1171,6 @@ When adding a torrent Aldonante torenton - - Info: The password is saved unencrypted - Informo: La pasvorto estas konservita senĉifrite - μTP-TCP mixed mode algorithm: @@ -4048,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Aŭtoro: @@ -4617,7 +4613,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Envicigita Unable to create torrent. @@ -4666,7 +4662,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Agordoj Error Message @@ -4674,7 +4670,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Stato Align to piece boundary for files larger @@ -4691,11 +4687,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Progreso Completed On - + Kompletigita je Hybrid @@ -4712,11 +4708,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + Spurilaj URL-adresoj: Are you sure you want to delete selected tasks? @@ -4724,15 +4720,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Vojo: Create Torrent - + Krei torenton Auto - + Aŭtomate Started On @@ -4762,7 +4758,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Aldonita je Running @@ -4774,15 +4770,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Source: - + Fonto: Trackers - + Spuriloj Piece size: - + Peca grando: Fields diff --git a/src/webui/www/translations/webui_es.ts b/src/webui/www/translations/webui_es.ts index 3ec5d2d17..f50ddb5f2 100644 --- a/src/webui/www/translations/webui_es.ts +++ b/src/webui/www/translations/webui_es.ts @@ -696,7 +696,7 @@ Torrent Creator - + Crear torrent @@ -1171,10 +1171,6 @@ When adding a torrent Al agregar un torrent - - Info: The password is saved unencrypted - Info: La contraseña se guarda sin cifrar - μTP-TCP mixed mode algorithm: Algoritmo modo mixto μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Subprocesos asíncronos de E/S: - - s - s - Send buffer watermark: Enviar marca de agua de búfer: @@ -4056,7 +4048,7 @@ Use ';' para dividir múltiples entradas. Puede usar el comodin '*'. Author: - + Autor: @@ -4618,7 +4610,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha TorrentCreator Private - + Privado Source @@ -4626,7 +4618,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Queued - + En cola Unable to create torrent. @@ -4639,7 +4631,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Unable to export torrent file - + No se puede exportar el archivo torrent. Create New Torrent @@ -4647,7 +4639,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Comments: - + Comentarios: Download Torrent @@ -4659,7 +4651,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Web seed URLs: - + URLs de las semillas Web: Failed @@ -4667,7 +4659,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Comment - + Comentario Finished @@ -4675,7 +4667,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Settings - + Ajustes Error Message @@ -4683,7 +4675,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Status - + Estado Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Progress - + Progreso Completed On - + Completado Hybrid - + Híbrido Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha N/A - + N/A Tracker URLs: - + Tracker URLs: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Path: - + Ruta: Create Torrent - + Crear Torrent Auto - + Auto Started On @@ -4763,7 +4755,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Torrent format: - + Formato del torrent: Source Path @@ -4771,7 +4763,7 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Added On - + Agregado Running @@ -4779,23 +4771,23 @@ Admite los formatos: S01E01, 1x1, 2017.12.31 y 31.12.2017 (los formatos de fecha Torrent Creator - + Crear torrent Source: - + Origen: Trackers - + Rastreadores Piece size: - + Tamaño de la pieza: Fields - + Campos Remove Task diff --git a/src/webui/www/translations/webui_et.ts b/src/webui/www/translations/webui_et.ts index 1f32eea40..864dad797 100644 --- a/src/webui/www/translations/webui_et.ts +++ b/src/webui/www/translations/webui_et.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrenti Looja @@ -1171,10 +1171,6 @@ When adding a torrent Kui lisatakse torrent - - Info: The password is saved unencrypted - Info: See parool on salvestatud krüpteeringuta - μTP-TCP mixed mode algorithm: μTP-TCP miksitud režiimi algoritm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: - - s - s - Send buffer watermark: Saada puhvri vesimärk @@ -4052,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Autor: @@ -4614,7 +4606,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe TorrentCreator Private - + Privaatne Source @@ -4622,7 +4614,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Queued - + Järjekorras Unable to create torrent. @@ -4643,7 +4635,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Comments: - + Kommentaarid: Download Torrent @@ -4655,7 +4647,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Web seed URLs: - + Veebi-seemne URL-id: Failed @@ -4663,7 +4655,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Comment - + Kommentaar Finished @@ -4671,7 +4663,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Settings - + Seaded Error Message @@ -4679,7 +4671,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Status - + Olek Align to piece boundary for files larger @@ -4696,15 +4688,15 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Progress - + Edenemine Completed On - + Lõpetatud Hybrid - + Hübriid Unable to load torrent creation tasks @@ -4717,11 +4709,11 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe N/A - + Puudub Tracker URLs: - + Jälgija URL-id: Are you sure you want to delete selected tasks? @@ -4729,15 +4721,15 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Path: - + Asukoht: Create Torrent - + Loo Torrent Auto - + Automaatne Started On @@ -4759,7 +4751,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Torrent format: - + Torrenti formaat: Source Path @@ -4767,7 +4759,7 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Added On - + Lisatud Running @@ -4775,23 +4767,23 @@ Toetab formaate: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (kuupäevade formaate toe Torrent Creator - + Torrenti Looja Source: - + Allikas: Trackers - + Jälitajad Piece size: - + Tüki suurus: Fields - + Väljad Remove Task diff --git a/src/webui/www/translations/webui_eu.ts b/src/webui/www/translations/webui_eu.ts index 8e1cd3d6f..ea47a9ac3 100644 --- a/src/webui/www/translations/webui_eu.ts +++ b/src/webui/www/translations/webui_eu.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent Sortzailea @@ -1171,10 +1171,6 @@ When adding a torrent Torrent bat gehitzean - - Info: The password is saved unencrypted - Info: pasahitza zifratu gabe gordetzen da - μTP-TCP mixed mode algorithm: uTP-TCP algoritmo modu nahastua: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: S/I hari asinkronoak: - - s - s - Send buffer watermark: Bidali buffer urmarka: @@ -4056,7 +4048,7 @@ Erabili ';' sarrera ugari banantzeko. '*' ordez-hizkia erabili daiteke. Author: - + Egilea: @@ -4618,7 +4610,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar TorrentCreator Private - + Pribatua Source @@ -4626,7 +4618,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Queued - + Lerrokatuta Unable to create torrent. @@ -4647,7 +4639,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Comments: - + Aipamenak: Download Torrent @@ -4659,7 +4651,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Web seed URLs: - + Web emaritza URL-ak: Failed @@ -4667,7 +4659,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Comment - + Iruzkina Finished @@ -4675,7 +4667,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Settings - + Ezarpenak Error Message @@ -4683,7 +4675,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Status - + Egoera Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Progress - + Garapena Completed On - + Osatuta Hybrid - + Hibridoa Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar N/A - + E/G Tracker URLs: - + Aztarnari URL-ak: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Path: - + Helburua: Create Torrent - + Sortu Torrenta Auto - + Berez Started On @@ -4763,7 +4755,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Torrent format: - + Torrentaren heuskarria: Source Path @@ -4771,7 +4763,7 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Added On - + Gehituta Running @@ -4779,23 +4771,23 @@ Sostengatutako heuskarriak: S01E01, 1x1, 2017.12.31 eta 31.12.2017 (Data heuskar Torrent Creator - + Torrent Sortzailea Source: - + Iturburua: Trackers - + Jarraitzaileak Piece size: - + Atal neurria: Fields - + Eremuak Remove Task diff --git a/src/webui/www/translations/webui_fa.ts b/src/webui/www/translations/webui_fa.ts index c6bace50f..b9e3a855a 100644 --- a/src/webui/www/translations/webui_fa.ts +++ b/src/webui/www/translations/webui_fa.ts @@ -696,7 +696,7 @@ Torrent Creator - + سازنده تورنت @@ -1171,10 +1171,6 @@ When adding a torrent هنگام افزودن تورنت جدید - - Info: The password is saved unencrypted - اطلاعات: کلمه عبور بدون رمزگذاری ذخیره شده - μTP-TCP mixed mode algorithm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: - - s - ث - Send buffer watermark: @@ -4052,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + مولف: @@ -4613,7 +4605,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + خصوصی Source @@ -4621,7 +4613,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + به صف شد Unable to create torrent. @@ -4642,7 +4634,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + نظرات: Download Torrent @@ -4654,7 +4646,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + آدرس‌های سید وب: Failed @@ -4670,7 +4662,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + تنظیمات Error Message @@ -4678,7 +4670,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + وضعیت Align to piece boundary for files larger @@ -4695,15 +4687,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + پیشرفت Completed On - + کامل شده در Hybrid - + ترکیبی Unable to load torrent creation tasks @@ -4716,11 +4708,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + در دسترس نیست Tracker URLs: - + آدرس‌های ردیاب: Are you sure you want to delete selected tasks? @@ -4728,15 +4720,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + مسیر: Create Torrent - + ساختن تورنت Auto - + خودکار Started On @@ -4758,7 +4750,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + فرمت تورنت: Source Path @@ -4766,7 +4758,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + اضافه شده در Running @@ -4774,23 +4766,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + سازنده تورنت Source: - + منبع: Trackers - + ترکرها Piece size: - + اندازه قطعه: Fields - + زمینه‌ها Remove Task diff --git a/src/webui/www/translations/webui_fi.ts b/src/webui/www/translations/webui_fi.ts index 4cc2ee783..64b82368b 100644 --- a/src/webui/www/translations/webui_fi.ts +++ b/src/webui/www/translations/webui_fi.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrentin luonti @@ -1171,10 +1171,6 @@ When adding a torrent Kun lisätään torrent-tiedostoa - - Info: The password is saved unencrypted - Tärkeää: Salasana tallennetaan salaamattomana - μTP-TCP mixed mode algorithm: @@ -4048,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Tekijä: @@ -4610,7 +4606,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo TorrentCreator Private - + Yksityinen Source @@ -4618,7 +4614,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Queued - + Jonossa Unable to create torrent. @@ -4639,7 +4635,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Comments: - + Kommentit: Download Torrent @@ -4651,7 +4647,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Web seed URLs: - + Web-jaot: Failed @@ -4659,7 +4655,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Comment - + Kommentti Finished @@ -4667,7 +4663,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Settings - + Asetukset Error Message @@ -4675,7 +4671,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Status - + Tila Align to piece boundary for files larger @@ -4692,15 +4688,15 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Progress - + Edistyminen Completed On - + Valmistunut Hybrid - + Hybridi Unable to load torrent creation tasks @@ -4713,11 +4709,11 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo N/A - + Ei saatavilla Tracker URLs: - + Seurantapalvelimien osoitteet: Are you sure you want to delete selected tasks? @@ -4725,15 +4721,15 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Path: - + Sijainti: Create Torrent - + Luo torrent Auto - + Automaattinen Started On @@ -4755,7 +4751,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Torrent format: - + Torrentin muoto: Source Path @@ -4763,7 +4759,7 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Added On - + Lisätty Running @@ -4771,23 +4767,23 @@ Nämä muodot ovat tuetut: S01E01, 1x1, 2017.12.31 ja 31.12.2017 (päiväysmuodo Torrent Creator - + Torrentin luonti Source: - + Lähde: Trackers - + Seurantapalvelimet Piece size: - + Osakoko: Fields - + Kentät Remove Task diff --git a/src/webui/www/translations/webui_fr.ts b/src/webui/www/translations/webui_fr.ts index 952f26191..55ad7eb97 100644 --- a/src/webui/www/translations/webui_fr.ts +++ b/src/webui/www/translations/webui_fr.ts @@ -676,8 +676,7 @@ Unable to export torrent file - Impossible d'exporter le fichier torrent - + Impossible d'exporter le fichier torrent Name @@ -697,7 +696,7 @@ Torrent Creator - + Créateur de torrent @@ -1172,10 +1171,6 @@ When adding a torrent Lors de l'ajout d'un torrent - - Info: The password is saved unencrypted - Info : le mot de passe est enregistré en texte clair - μTP-TCP mixed mode algorithm: Algorithme du mode mixte μTP-TCP : @@ -1276,10 +1271,6 @@ Asynchronous I/O threads: Fils d'E/S asynchrones - - s - s - Send buffer watermark: Filigrane pour le tampon d'envoi : @@ -3583,8 +3574,7 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Select category - Sélectionner la catégorie - + Sélectionner la catégorie Min size prefix @@ -4057,7 +4047,7 @@ Utiliser ';' pour diviser plusieurs entrées. Le caractère générique '*' peut Author: - + Auteur : @@ -4619,7 +4609,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date TorrentCreator Private - + Privé Source @@ -4627,7 +4617,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Queued - + En file d’attente Unable to create torrent. @@ -4640,7 +4630,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Unable to export torrent file - + Impossible d'exporter le fichier torrent Create New Torrent @@ -4648,7 +4638,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Comments: - + Commentaires : Download Torrent @@ -4656,11 +4646,11 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Status Icon - + Icône de status Web seed URLs: - + URL des sources Web : Failed @@ -4668,7 +4658,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Comment - + Commentaire Finished @@ -4676,7 +4666,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Settings - + Paramètres Error Message @@ -4684,7 +4674,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Status - + Statut Align to piece boundary for files larger @@ -4701,15 +4691,15 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Progress - + Progression Completed On - + Complété le Hybrid - + Hybride Unable to load torrent creation tasks @@ -4722,11 +4712,11 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date N/A - + N/D Tracker URLs: - + URL des trackers : Are you sure you want to delete selected tasks? @@ -4734,15 +4724,15 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Path: - + Chemin : Create Torrent - + Créer le torrent Auto - + Auto Started On @@ -4764,7 +4754,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Torrent format: - + Format du torrent : Source Path @@ -4772,7 +4762,7 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Added On - + Ajouté le Running @@ -4780,23 +4770,23 @@ Les formats supportés : S01E01, 1x1, 2017.12.31 et 31.12.2017 (les formats date Torrent Creator - + Créateur de torrent Source: - + Source : Trackers - + Trackers Piece size: - + Taille des morceaux : Fields - + Champs Remove Task diff --git a/src/webui/www/translations/webui_gl.ts b/src/webui/www/translations/webui_gl.ts index d15671cdc..70e711f8c 100644 --- a/src/webui/www/translations/webui_gl.ts +++ b/src/webui/www/translations/webui_gl.ts @@ -697,7 +697,7 @@ Non use caracteres especiais no nome da categoría. Torrent Creator - + Creador de torrents @@ -1172,10 +1172,6 @@ Non use caracteres especiais no nome da categoría. When adding a torrent Cando engada un torrent - - Info: The password is saved unencrypted - Información: o contrasinal gárdase sen cifrar - μTP-TCP mixed mode algorithm: Algoritmo de modo mixto μTP-TCP: @@ -1276,10 +1272,6 @@ Non use caracteres especiais no nome da categoría. Asynchronous I/O threads: Fíos de E/S asíncronos: - - s - s - Send buffer watermark: Nivel do búfer de envío: @@ -4057,7 +4049,7 @@ Usar «;» para dividir entradas múltiples. Pode usar o comodín «*». Author: - + Autor: @@ -4619,7 +4611,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d TorrentCreator Private - + Privado Source @@ -4627,7 +4619,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Queued - + Na cola Unable to create torrent. @@ -4648,7 +4640,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Comments: - + Comentarios: Download Torrent @@ -4660,7 +4652,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Web seed URLs: - + URLs da semente web: Failed @@ -4668,7 +4660,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Comment - + Comentario Finished @@ -4676,7 +4668,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Settings - + Axustes Error Message @@ -4684,7 +4676,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Status - + Estado Align to piece boundary for files larger @@ -4701,15 +4693,15 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Progress - + Progreso Completed On - + Completado o Hybrid - + Híbrido Unable to load torrent creation tasks @@ -4722,11 +4714,11 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d N/A - + N/D Tracker URLs: - + URLs do localizador: Are you sure you want to delete selected tasks? @@ -4734,15 +4726,15 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Path: - + Ruta: Create Torrent - + Crear torrent Auto - + Automático Started On @@ -4764,7 +4756,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Torrent format: - + Formato do torrent: Source Path @@ -4772,7 +4764,7 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Added On - + Engadido o Running @@ -4780,23 +4772,23 @@ Compatíbel cos formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (os formatos da d Torrent Creator - + Creador de torrents Source: - + Fonte: Trackers - + Localizadores Piece size: - + Tamaño do anaco: Fields - + Campos Remove Task diff --git a/src/webui/www/translations/webui_he.ts b/src/webui/www/translations/webui_he.ts index da8ca0a85..69a27635b 100644 --- a/src/webui/www/translations/webui_he.ts +++ b/src/webui/www/translations/webui_he.ts @@ -696,7 +696,7 @@ Torrent Creator - + יוצר הטורנטים @@ -1171,10 +1171,6 @@ When adding a torrent בעת הוספת טורנט - - Info: The password is saved unencrypted - מידע: הסיסמה נשמרת באופן בלתי מוצפן - μTP-TCP mixed mode algorithm: אלגוריתם מצב משולב μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: תהליכוני ק/פ אי־סינכרוניים: - - s - ש' - Send buffer watermark: שלח סימן מים של חוצץ: @@ -2061,7 +2053,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. sec - + שניות @@ -4056,7 +4048,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + מחבר: @@ -4618,7 +4610,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + פרטי Source @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + בתור Unable to create torrent. @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + הערות: Download Torrent @@ -4659,7 +4651,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + כתובות זורעי רשת: Failed @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + הגדרות Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + מיצב Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + התקדמות Completed On - + הושלם בתאריך Hybrid - + בן כלאים Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + לא זמין Tracker URLs: - + כתובות עוקבנים: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + נתיב: Create Torrent - + צור טורנט Auto - + אוטומטי Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + תסדיר טורנט: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + התווסף בתאריך Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + יוצר הטורנטים Source: - + מקור: Trackers - + גששים Piece size: - + גודל חתיכה: Fields - + שדות Remove Task diff --git a/src/webui/www/translations/webui_hi_IN.ts b/src/webui/www/translations/webui_hi_IN.ts index 918b68cfb..850639532 100644 --- a/src/webui/www/translations/webui_hi_IN.ts +++ b/src/webui/www/translations/webui_hi_IN.ts @@ -696,7 +696,7 @@ Torrent Creator - + टाॅरेंट निर्माणक @@ -1171,10 +1171,6 @@ When adding a torrent टौरेंट जोड़ते समय - - Info: The password is saved unencrypted - सूचना: पासवर्ड गोपनीय नहीं है - μTP-TCP mixed mode algorithm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: - - s - से० - Send buffer watermark: @@ -4052,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + रचनाकार: @@ -4622,7 +4614,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + कतारबद्ध Unable to create torrent. @@ -4643,7 +4635,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + टिप्पणियाँ : Download Torrent @@ -4655,7 +4647,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + वेब स्रोत URL : Failed @@ -4671,7 +4663,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + सेटिंग Error Message @@ -4679,7 +4671,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + स्थिति Align to piece boundary for files larger @@ -4696,15 +4688,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + प्रगति Completed On - + पूर्ण होने का समय Hybrid - + मिश्रित Unable to load torrent creation tasks @@ -4717,11 +4709,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + लागू नहीं Tracker URLs: - + ट्रैकर URL : Are you sure you want to delete selected tasks? @@ -4729,15 +4721,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + पथ: Create Torrent - + टाॅरेंट बनायें Auto - + स्वतः Started On @@ -4759,7 +4751,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + टाॅरेंट प्रारूप: Source Path @@ -4767,7 +4759,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + जोड़ने का समय Running @@ -4775,19 +4767,19 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + टाॅरेंट निर्माणक Source: - + स्रोत : Trackers - + ट्रैकर Piece size: - + टुकड़े का आकर: Fields diff --git a/src/webui/www/translations/webui_hr.ts b/src/webui/www/translations/webui_hr.ts index 3c9a2717a..9aa854957 100644 --- a/src/webui/www/translations/webui_hr.ts +++ b/src/webui/www/translations/webui_hr.ts @@ -696,7 +696,7 @@ Torrent Creator - + Kreator torrenta @@ -1171,10 +1171,6 @@ When adding a torrent Prilikom dodavanja torrenta - - Info: The password is saved unencrypted - Info: Lozinka je spremljena nekriptirana - μTP-TCP mixed mode algorithm: μTP-TCP algoritam mješovitog načina rada: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asinkrone I/O niti: - - s - s - Send buffer watermark: Pošalji međuspremnik vodenog žiga @@ -4056,7 +4048,7 @@ Koristite ';' za razdvajanje više unosa. Može koristiti zamjenski znak '*'. Author: - + Autor: @@ -4617,7 +4609,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + Privatno Source @@ -4625,7 +4617,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Na čekanju Unable to create torrent. @@ -4638,7 +4630,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Unable to export torrent file - + Nije moguće izvesti torrent datoteku Create New Torrent @@ -4646,7 +4638,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Komentari: Download Torrent @@ -4654,11 +4646,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status Icon - + Status ikona Web seed URLs: - + URL web seeda: Failed @@ -4666,7 +4658,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + Komentar Finished @@ -4674,7 +4666,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Postavke Error Message @@ -4682,7 +4674,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Status Align to piece boundary for files larger @@ -4699,15 +4691,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Napredak Completed On - + Dovršeno Hybrid - + Hibridno Unable to load torrent creation tasks @@ -4720,11 +4712,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + URL-ovi trackera: Are you sure you want to delete selected tasks? @@ -4732,15 +4724,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Putanja: Create Torrent - + Stvori torrent Auto - + Auto Started On @@ -4762,7 +4754,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Torrent format: Source Path @@ -4770,7 +4762,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Dodano Running @@ -4778,23 +4770,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Kreator torrenta Source: - + Izvor: Trackers - + Trackeri Piece size: - + Veličina dijelova: Fields - + Polja Remove Task diff --git a/src/webui/www/translations/webui_hu.ts b/src/webui/www/translations/webui_hu.ts index 3fca6d296..6599e7c56 100644 --- a/src/webui/www/translations/webui_hu.ts +++ b/src/webui/www/translations/webui_hu.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent készítő @@ -1171,10 +1171,6 @@ When adding a torrent Torrent hozzáadásakor - - Info: The password is saved unencrypted - Infó: A jelszó titkosítás nélkül kerül elmentésre - μTP-TCP mixed mode algorithm: μTP-TCP kevert-mód algoritmus: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Aszinkron I/O szálak: - - s - mp - Send buffer watermark: Buffer watermark küldése: @@ -2061,7 +2053,7 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes sec - + mp @@ -4056,7 +4048,7 @@ Használja a ';' karaktert az elválasztásra, ha több is van. A '*' helyettes Author: - + Szerző: @@ -4618,7 +4610,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor TorrentCreator Private - + Privát Source @@ -4626,7 +4618,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Queued - + Sorban áll Unable to create torrent. @@ -4639,7 +4631,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Unable to export torrent file - + Nem sikerült a torrent fájl exportálása Create New Torrent @@ -4647,7 +4639,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Comments: - + Megjegyzések: Download Torrent @@ -4655,11 +4647,11 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Status Icon - + Állapot Ikon Web seed URLs: - + Web seed URL-ek: Failed @@ -4667,7 +4659,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Comment - + Megjegyzés Finished @@ -4675,7 +4667,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Settings - + Beállítások Error Message @@ -4683,7 +4675,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Status - + Állapot Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Progress - + Folyamat Completed On - + Elkészült ekkor Hybrid - + Hibrid Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor N/A - + N/A Tracker URLs: - + Tracker URL-ek: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Path: - + Útvonal: Create Torrent - + Torrent létrehozása Auto - + Auto Started On @@ -4763,7 +4755,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Torrent format: - + Torrent formátum: Source Path @@ -4771,7 +4763,7 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Added On - + Hozzáadva Running @@ -4779,23 +4771,23 @@ Támogatja a formátumokat: S01E01, 1x1, 2017.12.31 és 31.12.2017. (A dátumfor Torrent Creator - + Torrent készítő Source: - + Forrás: Trackers - + Trackerek Piece size: - + Szelet méret: Fields - + Mezők Remove Task diff --git a/src/webui/www/translations/webui_hy.ts b/src/webui/www/translations/webui_hy.ts index 8981ba1e2..0dc0e8216 100644 --- a/src/webui/www/translations/webui_hy.ts +++ b/src/webui/www/translations/webui_hy.ts @@ -4044,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Հեղինակ՝ @@ -4613,7 +4613,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Հերթագրված է Unable to create torrent. @@ -4634,7 +4634,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Մեկնաբանություններ՝ Download Torrent @@ -4662,7 +4662,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Կարգավորումներ Error Message @@ -4670,7 +4670,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Վիճակ Align to piece boundary for files larger @@ -4687,11 +4687,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Ընթացք Completed On - + Ավարտվել է Hybrid @@ -4712,7 +4712,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Tracker URLs: - + Ուղղորդիչի հղումները. Are you sure you want to delete selected tasks? @@ -4720,15 +4720,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Ուղի՝ Create Torrent - + Ստեղծել torrent Auto - + Ինքնաշխատ Started On @@ -4750,7 +4750,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Torrent-ի ձևաչափ՝ Source Path @@ -4758,7 +4758,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Ավելացվել է Running @@ -4770,19 +4770,19 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Source: - + Աղբյուր՝ Trackers - + Գրանցորդներ Piece size: - + Մասի չափը. Fields - + Դաշտեր Remove Task diff --git a/src/webui/www/translations/webui_id.ts b/src/webui/www/translations/webui_id.ts index 1b1aa71eb..ae84645ed 100644 --- a/src/webui/www/translations/webui_id.ts +++ b/src/webui/www/translations/webui_id.ts @@ -696,7 +696,7 @@ Torrent Creator - + Pembuat torrent @@ -1171,10 +1171,6 @@ When adding a torrent Ketika menambahkan torrent - - Info: The password is saved unencrypted - Info: Sandi disimpan tanpa enkripsi - μTP-TCP mixed mode algorithm: @@ -4052,7 +4048,7 @@ Gunakan ';' untuk memisahkan banyak kata. Dapat menggunakan wildcard '*'. Author: - + Penulis: @@ -4621,7 +4617,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Diantrekan Unable to create torrent. @@ -4642,7 +4638,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Komentar: Download Torrent @@ -4654,7 +4650,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + URL Benih Web: Failed @@ -4670,7 +4666,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Pengaturan Error Message @@ -4678,7 +4674,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Status Align to piece boundary for files larger @@ -4695,15 +4691,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Progres Completed On - + Komplet Pada Hybrid - + Hybrid Unable to load torrent creation tasks @@ -4716,11 +4712,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + URL Pencari: Are you sure you want to delete selected tasks? @@ -4728,15 +4724,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Jalur: Create Torrent - + Buat torrent Auto - + Otomatis Started On @@ -4758,7 +4754,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Format torrent: Source Path @@ -4766,7 +4762,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Ditambahkan Pada Running @@ -4774,23 +4770,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Pembuat torrent Source: - + Sumber: Trackers - + Pelacak Piece size: - + Ukuran bagian: Fields - + Lapangan Remove Task diff --git a/src/webui/www/translations/webui_it.ts b/src/webui/www/translations/webui_it.ts index 24696ef59..00f56f5c2 100644 --- a/src/webui/www/translations/webui_it.ts +++ b/src/webui/www/translations/webui_it.ts @@ -697,7 +697,7 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Torrent Creator - + Crea torrent @@ -1172,10 +1172,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. When adding a torrent Quando aggiungi un torrent - - Info: The password is saved unencrypted - Info: la password è salvata non criptata - μTP-TCP mixed mode algorithm: Algoritmo modo misto μTP-TC: @@ -1276,10 +1272,6 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. Asynchronous I/O threads: Thread I/O asincroni: - - s - s - Send buffer watermark: Invia segnale buffer: @@ -2054,19 +2046,19 @@ Controlla la posta in arrivo per confermare la ricezione Enable optimized table rendering (experimental) - + Abilita rendering tabella ottimizzata (sperimentale) Note: The password is saved unencrypted - + Nota: la password viene salvata non crittografata Internal hostname resolver cache expiry interval - + Intervallo scadenza cache resolver host interno sec - + sec @@ -4059,11 +4051,11 @@ Puoi abilitarlo nelle impostazioni dell'applicazione. Open link - + Apri collegamento Author: - + Autore: @@ -4627,192 +4619,197 @@ Per un funzionamento corretto della WebUI va abilitato JavaScript. TorrentCreator Private - + Privato Source - + Sorgente Queued - + In coda Unable to create torrent. - + Impossibile creare il torrent. Private torrent (Won't distribute on DHT network) - + Torrent + prrivato (non verrà distribbuito nella rete DHT) Unable to export torrent file - + Impossibile esportare il file torrent Create New Torrent - + Crea nuovo torrent Comments: - + Commenti: Download Torrent - + Download torrent Status Icon - + Icona di stato Web seed URLs: - + URL seed web: Failed - + Falliti Comment - + Commento Finished - + Completati Settings - + Impostazioni Error Message - + Messaggio d'errore: Status - + Stato Align to piece boundary for files larger than: - + Allinea al limite sehmento per i file + più grandi di: Select file/folder to share: - + Seleziona file/cartella da condividere: Piece Size - + Dimensione segmento Progress - + Avanzamento Completed On - + Completato il Hybrid - + Ibrido Unable to load torrent creation tasks - + Impossibile caricare attività creazione torrent Optimize alignment - + Ottimizza + alilineamento N/A - + N/D Tracker URLs: - + URL tracker: Are you sure you want to delete selected tasks? - + Vuoi eliminare le attività selezionate? Path: - + Percorso: Create Torrent - + Crea torrent Auto - + Automatico Started On - + Avviate il Web Seeds - + Seed web Start seeding immediately - + Avvia + immediatamente + seeding Format - + Formato Torrent format: - + Fornato torrent: Source Path - + Percorso sorgente Added On - + Aggiunto il Running - + In esecuzione Torrent Creator - + Crea torrent Source: - + Sorgente: Trackers - + Tracker Piece size: - + Dim. segmento: Fields - + Campi Remove Task - + Rimuovi attività Export Torrent - + Esporta torrent \ No newline at end of file diff --git a/src/webui/www/translations/webui_ja.ts b/src/webui/www/translations/webui_ja.ts index a6002b205..720391160 100644 --- a/src/webui/www/translations/webui_ja.ts +++ b/src/webui/www/translations/webui_ja.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrentクリエーター @@ -1171,10 +1171,6 @@ When adding a torrent Torrentを追加したとき - - Info: The password is saved unencrypted - 情報: パスワードは暗号化されずに保存されます - μTP-TCP mixed mode algorithm: μTP-TCP混在状態のアルゴリズム: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: 非同期I/Oスレッド数 - - s - - Send buffer watermark: 送信バッファーの透かし @@ -2061,7 +2053,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 sec - + @@ -4056,7 +4048,7 @@ DNSリバインディング攻撃を防ぐために、WebUIサーバーが使用 Author: - + 作者: @@ -4618,7 +4610,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + プライベート Source @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + 待機中 Unable to create torrent. @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + コメント: Download Torrent @@ -4659,7 +4651,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + ウェブシードURL: Failed @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + 設定 Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + 状態 Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + 進行状況 Completed On - + 完了日時 Hybrid - + ハイブリッド Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + トラッカーURL: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + パス: Create Torrent - + Torrentを作成 Auto - + 自動 Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Torrentの形式 Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + 追加日時 Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Torrentクリエーター Source: - + ソース: Trackers - + トラッカー Piece size: - + ピースサイズ: Fields - + フィールド Remove Task diff --git a/src/webui/www/translations/webui_ka.ts b/src/webui/www/translations/webui_ka.ts index b797934ad..4c3fc57d4 100644 --- a/src/webui/www/translations/webui_ka.ts +++ b/src/webui/www/translations/webui_ka.ts @@ -696,7 +696,7 @@ Torrent Creator - + ტორენტის შემქმნელი: @@ -1171,10 +1171,6 @@ When adding a torrent ტორენტის დამატებისას - - Info: The password is saved unencrypted - შენიშვნა: პაროლი არადაშიფრულად არის შენახული - μTP-TCP mixed mode algorithm: μTP-TCP შერეული რეჟიმის ალგორითმი: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: - - s - წამი - Send buffer watermark: @@ -4052,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + ავტორი: @@ -4621,7 +4613,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + რიგშია Unable to create torrent. @@ -4642,7 +4634,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + კომენტარები: Download Torrent @@ -4670,7 +4662,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + პარამეტრები Error Message @@ -4678,7 +4670,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + სტატუსი Align to piece boundary for files larger @@ -4695,15 +4687,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + პროგრესი Completed On - + დასრულების თარიღი Hybrid - + ჰიბრიდი Unable to load torrent creation tasks @@ -4716,11 +4708,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + ტრეკერის URL-ბი: Are you sure you want to delete selected tasks? @@ -4728,15 +4720,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + მისამართი: Create Torrent - + ტორენტის შექმნა Auto - + ავტო Started On @@ -4758,7 +4750,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + ტორენტის ფორმატი: Source Path @@ -4766,7 +4758,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + დამატების თარიღი Running @@ -4774,19 +4766,19 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + ტორენტის შემქმნელი: Source: - + რესურსი: Trackers - + ტრეკერები Piece size: - + ნაწილის ზომა: Fields diff --git a/src/webui/www/translations/webui_ko.ts b/src/webui/www/translations/webui_ko.ts index 06f4e763a..5cf3b1dbc 100644 --- a/src/webui/www/translations/webui_ko.ts +++ b/src/webui/www/translations/webui_ko.ts @@ -696,7 +696,7 @@ Torrent Creator - + 토렌트 생성기 @@ -1171,10 +1171,6 @@ When adding a torrent 토렌트 추가시 - - Info: The password is saved unencrypted - 정보: 암호를 평문으로 저장했습니다 - μTP-TCP mixed mode algorithm: μTP-TCP 혼합 모드 알고리즘: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: 비동기 I/O 쓰레드 - - s - - Send buffer watermark: 전송 버퍼 워터마크: @@ -2061,7 +2053,7 @@ DNS 재결합 공격을 방어하기 위해 sec - + @@ -4056,7 +4048,7 @@ DNS 재결합 공격을 방어하기 위해 Author: - + 작성자: @@ -4618,7 +4610,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + 비공개 Source @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + 대기 중 Unable to create torrent. @@ -4639,7 +4631,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Unable to export torrent file - + 토렌트 파일을 내보낼 수 없습니다 Create New Torrent @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + 주석: Download Torrent @@ -4655,11 +4647,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status Icon - + 상태 아이콘 Web seed URLs: - + 웹 배포 URL: Failed @@ -4667,7 +4659,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + 주석 Finished @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + 설정 Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + 상태 Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + 진행률 Completed On - + 완료된 날짜 Hybrid - + 혼합 Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + 해당사항 없음 Tracker URLs: - + 트래커 URL: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + 경로: Create Torrent - + 토렌트 만들기 Auto - + 자동 Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + 토렌트 형식: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + 추가된 날짜 Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + 토렌트 생성기 Source: - + 소스: Trackers - + 트래커 Piece size: - + 조각 크기: Fields - + 토렌트 정보 Remove Task diff --git a/src/webui/www/translations/webui_lt.ts b/src/webui/www/translations/webui_lt.ts index a7a43c0bd..c20b4c950 100644 --- a/src/webui/www/translations/webui_lt.ts +++ b/src/webui/www/translations/webui_lt.ts @@ -696,7 +696,7 @@ Torrent Creator - + Sukurti torentą @@ -1171,10 +1171,6 @@ When adding a torrent Pridedant torentą - - Info: The password is saved unencrypted - Informacija: Slaptažodis yra išsaugomas nešifruotai - μTP-TCP mixed mode algorithm: μTP-TCP maišytos veiksenos algoritmas: @@ -2059,7 +2055,7 @@ pakaitos simbolį "*". sec - + sek. @@ -4054,7 +4050,7 @@ pakaitos simbolį "*". Author: - + Autorius: @@ -4624,7 +4620,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Queued - + Eilėje Unable to create torrent. @@ -4645,7 +4641,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Comments: - + Komentarai: Download Torrent @@ -4657,7 +4653,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Web seed URLs: - + Saityno skleidimo URL adresai: Failed @@ -4665,7 +4661,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Comment - + Komentaras Finished @@ -4673,7 +4669,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Settings - + Nustatymai Error Message @@ -4681,7 +4677,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Status - + Būsena Align to piece boundary for files larger @@ -4698,15 +4694,15 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Progress - + Eiga Completed On - + Užbaigta Hybrid - + Hibridinis Unable to load torrent creation tasks @@ -4719,11 +4715,11 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat N/A - + Nėra Tracker URLs: - + Seklių URL: Are you sure you want to delete selected tasks? @@ -4731,15 +4727,15 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Path: - + Kelias: Create Torrent - + Sukurti torentą Auto - + nustatyti automatiškai Started On @@ -4761,7 +4757,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Torrent format: - + Torento formatas: Source Path @@ -4769,7 +4765,7 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Added On - + Pridėta Running @@ -4777,23 +4773,23 @@ Palaiko formatus: S01E01, 1x1, 2017.12.31 ir 31.12.2017 (Datos formatai taip pat Torrent Creator - + Sukurti torentą Source: - + Šaltinis: Trackers - + Sekliai Piece size: - + Dalies dydis: Fields - + Laukai Remove Task diff --git a/src/webui/www/translations/webui_ltg.ts b/src/webui/www/translations/webui_ltg.ts index 9820c12d3..c836d8559 100644 --- a/src/webui/www/translations/webui_ltg.ts +++ b/src/webui/www/translations/webui_ltg.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrentu darynuoja @@ -1271,10 +1271,6 @@ Asynchronous I/O threads: - - s - s - Send buffer watermark: @@ -2053,7 +2049,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. sec - + sek @@ -4048,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Autors: @@ -4618,7 +4614,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Queued - + Rindā Unable to create torrent. @@ -4639,7 +4635,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Comments: - + Komentars: Download Torrent @@ -4651,7 +4647,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Web seed URLs: - + Puorstaipteikla devieju adresas: Failed @@ -4667,7 +4663,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Settings - + Īstatejumi Error Message @@ -4675,7 +4671,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Status - + Statuss Align to piece boundary for files larger @@ -4692,11 +4688,11 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Progress - + Progress Completed On - + Dabeidza Hybrid @@ -4713,11 +4709,11 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v N/A - + Navā atrasta Tracker URLs: - + Trakeru adresas: Are you sure you want to delete selected tasks? @@ -4725,15 +4721,15 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Path: - + Vīta: Create Torrent - + Radeit torrentu Auto - + Automatiski Started On @@ -4763,7 +4759,7 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Added On - + Dalaists Running @@ -4771,23 +4767,23 @@ Formats: S01E01, 1x1, 2017.12.31 i 31.12.2017 (Datam škiramsimbola "." vītā v Torrent Creator - + Torrentu darynuoja Source: - + Olūts: Trackers - + Trakeri Piece size: - + Dalenu lelums: Fields - + Laukumi Remove Task diff --git a/src/webui/www/translations/webui_lv_LV.ts b/src/webui/www/translations/webui_lv_LV.ts index f2ad8aaf0..cd3cb7a88 100644 --- a/src/webui/www/translations/webui_lv_LV.ts +++ b/src/webui/www/translations/webui_lv_LV.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrentu veidotājs @@ -1171,10 +1171,6 @@ When adding a torrent Pievienojot torrentu - - Info: The password is saved unencrypted - Brīdinājums: Šī parole netiek glabāta šifrētā veidā - μTP-TCP mixed mode algorithm: μTP-TCP jaukta režīma algoritms: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asinhronās I/O plūsmas: - - s - s - Send buffer watermark: Nosūtīt bufera slieksni: @@ -2061,7 +2053,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. sec - + sek @@ -4056,7 +4048,7 @@ Izmantojiet ';' lai atdalītu vairākus vārdus. Varat izmantot vietturi '*'. Author: - + Autors: @@ -4618,7 +4610,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā TorrentCreator Private - + Privāts Source @@ -4626,7 +4618,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Queued - + Ierindots Unable to create torrent. @@ -4639,7 +4631,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Unable to export torrent file - + Neizdevās eksportēt .torrent failu Create New Torrent @@ -4647,7 +4639,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Comments: - + Komentārs: Download Torrent @@ -4659,7 +4651,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Web seed URLs: - + Tīmekļa devēju adreses: Failed @@ -4667,7 +4659,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Comment - + Komentārs Finished @@ -4675,7 +4667,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Settings - + Iestatījumi Error Message @@ -4683,7 +4675,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Status - + Stāvoklis Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Progress - + Pabeigti Completed On - + Pabeigts Hybrid - + Hibrīds Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā N/A - + Nav zināms Tracker URLs: - + Trakeru adreses: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Path: - + Vieta: Create Torrent - + Izveidot torrentu Auto - + Automātiski Started On @@ -4763,7 +4755,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Torrent format: - + Torrenta formāts: Source Path @@ -4771,7 +4763,7 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Added On - + Pievienots Running @@ -4779,23 +4771,23 @@ Atbalsta formātus: S01E01, 1x1, 2017.12.31 un 31.12.2017 (Datumu formātos kā Torrent Creator - + Torrentu veidotājs Source: - + Avots: Trackers - + Trakeri Piece size: - + Daļiņas izmērs: Fields - + Laukumi Remove Task diff --git a/src/webui/www/translations/webui_mn_MN.ts b/src/webui/www/translations/webui_mn_MN.ts index 94dccec7b..f646dd21c 100644 --- a/src/webui/www/translations/webui_mn_MN.ts +++ b/src/webui/www/translations/webui_mn_MN.ts @@ -4688,7 +4688,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Явц Completed On diff --git a/src/webui/www/translations/webui_ms_MY.ts b/src/webui/www/translations/webui_ms_MY.ts index 63c1d4304..858fb1f53 100644 --- a/src/webui/www/translations/webui_ms_MY.ts +++ b/src/webui/www/translations/webui_ms_MY.ts @@ -696,7 +696,7 @@ Torrent Creator - + Pencipta Torrent @@ -1171,10 +1171,6 @@ When adding a torrent Bila menambah sebuah torrent - - Info: The password is saved unencrypted - Maklumat: Kata laluan disimpan tanpa tersulit - μTP-TCP mixed mode algorithm: Algoritma mod bercampur μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Jaluran i/O tak segerak: - - s - s - Send buffer watermark: Hantar tera air penimbal: @@ -2061,7 +2053,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. sec - + saat @@ -4056,7 +4048,7 @@ Guna ';' untuk asingkan masukan berbilang. Boleh guna kad liar '*'. Author: - + Pengarang: @@ -4625,7 +4617,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Dibaris gilir Unable to create torrent. @@ -4646,7 +4638,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Ulasan: Download Torrent @@ -4658,7 +4650,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + URL semaian Sesawang: Failed @@ -4674,7 +4666,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Tetapan Error Message @@ -4682,7 +4674,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Status Align to piece boundary for files larger @@ -4699,11 +4691,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Kemajuan Completed On - + Selesai Pada Hybrid @@ -4720,11 +4712,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + T/A Tracker URLs: - + URL penjejak: Are you sure you want to delete selected tasks? @@ -4732,15 +4724,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Laluan: Create Torrent - + Cipta Torrent Auto - + Auto Started On @@ -4770,7 +4762,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Ditambah Pada Running @@ -4778,23 +4770,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Pencipta Torrent Source: - + Sumber: Trackers - + Penjejak Piece size: - + Saiz cebisan: Fields - + Medan Remove Task diff --git a/src/webui/www/translations/webui_nb.ts b/src/webui/www/translations/webui_nb.ts index e847f87ee..7cb72b793 100644 --- a/src/webui/www/translations/webui_nb.ts +++ b/src/webui/www/translations/webui_nb.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrentoppretter @@ -1171,10 +1171,6 @@ When adding a torrent Når en torrent legges til - - Info: The password is saved unencrypted - Info: Passordet er lagret ukryptert - μTP-TCP mixed mode algorithm: Algoritme for sammenblandet uTP-TCP-modus: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Usynkrone I/O-tråder: - - s - s - Send buffer watermark: Send mellomlagringsvannmerke: @@ -2061,7 +2053,7 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. sec - + sek @@ -4056,7 +4048,7 @@ Bruk ";" for å splitte flerfoldige oppføringer. Jokertegnet "*" kan brukes. Author: - + Utvikler: @@ -4618,7 +4610,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor TorrentCreator Private - + Privat Source @@ -4626,7 +4618,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Queued - + I kø Unable to create torrent. @@ -4639,7 +4631,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Unable to export torrent file - + Klarte ikke eksportere torrentfil Create New Torrent @@ -4647,7 +4639,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Comments: - + Kommentarer: Download Torrent @@ -4655,11 +4647,11 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Status Icon - + Statusikon Web seed URLs: - + Nettdeler-URLer: Failed @@ -4667,7 +4659,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Comment - + Kommentar Finished @@ -4675,7 +4667,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Settings - + Innstillinger Error Message @@ -4683,7 +4675,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Status - + Status Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Progress - + Framdrift Completed On - + Fullført Hybrid - + Hybrid Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor N/A - + Irrelevant Tracker URLs: - + Sporer-URLer: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Path: - + Filsti: Create Torrent - + Opprett torrent Auto - + Auto Started On @@ -4763,7 +4755,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Torrent format: - + Torrent-format: Source Path @@ -4771,7 +4763,7 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Added On - + Lagt til Running @@ -4779,23 +4771,23 @@ Støtter de følgende formatene: S01E01, 1x1, 2017.12.31, og 31.12.2017 (Datofor Torrent Creator - + Torrentoppretter Source: - + Kilde: Trackers - + Sporere Piece size: - + Stykkestørrelse: Fields - + Felter Remove Task diff --git a/src/webui/www/translations/webui_nl.ts b/src/webui/www/translations/webui_nl.ts index edc738284..3946cc1fb 100644 --- a/src/webui/www/translations/webui_nl.ts +++ b/src/webui/www/translations/webui_nl.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent aanmaken @@ -1171,10 +1171,6 @@ When adding a torrent Bij toevoegen torrent - - Info: The password is saved unencrypted - Info: het wachtwoord wordt onversleuteld opgeslagen - μTP-TCP mixed mode algorithm: µTP-TCP gemengde modus algoritme @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynchrone I/O-threads: - - s - s - Send buffer watermark: Verzendbuffer-watermerk: @@ -2061,7 +2053,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. sec - + s @@ -4056,7 +4048,7 @@ Gebruik ';' om meerdere items te splitsen. Jokerteken '*' kan gebruikt worden. Author: - + Auteur: @@ -4618,7 +4610,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o TorrentCreator Private - + Privé Source @@ -4626,7 +4618,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Queued - + In wachtrij Unable to create torrent. @@ -4647,7 +4639,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Comments: - + Opmerkingen: Download Torrent @@ -4659,7 +4651,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Web seed URLs: - + Webseed-URL's: Failed @@ -4667,7 +4659,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Comment - + Opmerking Finished @@ -4675,7 +4667,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Settings - + Instellingen Error Message @@ -4683,7 +4675,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Status - + Status Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Progress - + Voortgang Completed On - + Voltooid op Hybrid - + Hybride Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o N/A - + N/B Tracker URLs: - + Tracker-URL's: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Path: - + Pad: Create Torrent - + Torrent aanmaken Auto - + Automatisch Started On @@ -4763,7 +4755,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Torrent format: - + Torrentformaat: Source Path @@ -4771,7 +4763,7 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Added On - + Toegevoegd op Running @@ -4779,23 +4771,23 @@ Ondersteunt de formaten: S01E01, 1x1, 2017.12.31 en 31.12.2017 (datumformaten o Torrent Creator - + Torrent aanmaken Source: - + Bron: Trackers - + Trackers Piece size: - + Grootte deeltjes: Fields - + Velden Remove Task diff --git a/src/webui/www/translations/webui_oc.ts b/src/webui/www/translations/webui_oc.ts index 72f9c2851..d2687e610 100644 --- a/src/webui/www/translations/webui_oc.ts +++ b/src/webui/www/translations/webui_oc.ts @@ -4044,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Autor : @@ -4613,7 +4613,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + En fila d'espèra Unable to create torrent. @@ -4670,7 +4670,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Estatut Align to piece boundary for files larger @@ -4687,11 +4687,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Progression Completed On - + Acabat lo Hybrid @@ -4708,11 +4708,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + URL dels trackers : Are you sure you want to delete selected tasks? @@ -4728,7 +4728,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Auto - + Automatic Started On @@ -4758,7 +4758,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Apondut lo Running @@ -4774,11 +4774,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Trackers - + Trackers Piece size: - + Talha dels tròces : Fields diff --git a/src/webui/www/translations/webui_pl.ts b/src/webui/www/translations/webui_pl.ts index a46ffdf82..626dd51d4 100644 --- a/src/webui/www/translations/webui_pl.ts +++ b/src/webui/www/translations/webui_pl.ts @@ -696,7 +696,7 @@ Torrent Creator - + Kreator plików torrent @@ -1171,10 +1171,6 @@ When adding a torrent Podczas dodawania torrenta - - Info: The password is saved unencrypted - Informacja: hasło jest zapisywane bez szyfrowania - μTP-TCP mixed mode algorithm: Algorytm trybu mieszanego μTP-TCP @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynchroniczne wątki we/wy: - - s - s - Send buffer watermark: Wyślij limit bufora: @@ -2049,19 +2041,19 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Enable optimized table rendering (experimental) - + Włącz zoptymalizowane renderowanie tabeli (eksperymentalne) Note: The password is saved unencrypted - + Uwaga: hasło jest zapisywane w postaci niezaszyfrowanej Internal hostname resolver cache expiry interval - + Interwał wygaśnięcia pamięci podręcznej wewnętrznego programu do rozpoznawania nazw hostów sec - + s @@ -4052,11 +4044,11 @@ Użyj ';' do rozdzielania wielu wpisów. Można użyć wieloznacznika '*'. Open link - + Otwórz odnośnik Author: - + Autor: @@ -4618,192 +4610,192 @@ Obsługuje formaty: S01E01, 1x1, 2017.12.31 oraz 31.12.2017 (Formaty daty równi TorrentCreator Private - + Prywatny Source - + Źródło Queued - + W kolejce Unable to create torrent. - + Nie można utworzyć torrenta. Private torrent (Won't distribute on DHT network) - + Prywatny torrent (nie będzie rozprowadzany w sieci DHT) Unable to export torrent file - + Nie można wyeksportować pliku torrent Create New Torrent - + Utwórz nowy torrent Comments: - + Komentarze: Download Torrent - + Pobierz torrent Status Icon - + Ikona stanu Web seed URLs: - + Adresy URL źródła sieciowego: Failed - + Nieudany Comment - + Komentarz Finished - + Ukończony Settings - + Ustawienia Error Message - + Komunikat o błędzie Status - + Stan Align to piece boundary for files larger than: - + Wyrównanie do granicy części dla plików większych niż: Select file/folder to share: - + Wybierz plik lub folder do współdzielenia: Piece Size - + Rozmiar części Progress - + Postęp Completed On - + Ukończono Hybrid - + Hybrydowy Unable to load torrent creation tasks - + Nie można załadować zadań tworzenia torrentów Optimize alignment - + Zoptymalizuj wyrównanie N/A - + Brak Tracker URLs: - + Adresy URL trackerów: Are you sure you want to delete selected tasks? - + Czy na pewno chcesz usunąć wybrane zadania? Path: - + Ścieżka: Create Torrent - + Utwórz torrent Auto - + Automatyczny Started On - + Rozpoczęto Web Seeds - + Seedy sieciowe Start seeding immediately - + Rozpocznij seedowanie natychmiast Format - + Format Torrent format: - + Format torrenta: Source Path - + Ścieżka źródła Added On - + Dodano Running - + Uruchomiony Torrent Creator - + Kreator plików torrent Source: - + Źródło: Trackers - + Trackery Piece size: - + Rozmiar części: Fields - + Pola Remove Task - + Usuń zadanie Export Torrent - + Eksportuj torrent \ No newline at end of file diff --git a/src/webui/www/translations/webui_pt_BR.ts b/src/webui/www/translations/webui_pt_BR.ts index f7a069b0b..e0c161aed 100644 --- a/src/webui/www/translations/webui_pt_BR.ts +++ b/src/webui/www/translations/webui_pt_BR.ts @@ -696,7 +696,7 @@ Torrent Creator - + Criador de torrents @@ -1171,10 +1171,6 @@ When adding a torrent Quando adicionar um torrent - - Info: The password is saved unencrypted - Informação: A senha é salva desencriptada - μTP-TCP mixed mode algorithm: Algorítmo de modo misto do μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Threads de E/S assíncronos: - - s - s - Send buffer watermark: Enviar marca d'água do buffer: @@ -2049,19 +2041,19 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Enable optimized table rendering (experimental) - + Ativar renderização de tabela otimizada (experimental) Note: The password is saved unencrypted - + Aviso: A senha é salva sem criptografia Internal hostname resolver cache expiry interval - + Intervalo de expiração do cache do resolvedor de nome de host interno sec - + seg @@ -4052,11 +4044,11 @@ Use ';' pra dividir múltiplas entradas. Pode usar o wildcard '*'. Open link - + Abrir link Author: - + Autor: @@ -4618,192 +4610,196 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Os formatos de data t TorrentCreator Private - + Privado Source - + Fonte Queued - + Na Fila Unable to create torrent. - + Não foi possível criar o torrent. Private torrent (Won't distribute on DHT network) - + Torrent privado +(não distribuirá na rede DHT) Unable to export torrent file - + Não foi possível exportar o arquivo torrent Create New Torrent - + Criar novo torrent Comments: - + Comentários: Download Torrent - + Baixar torrent Status Icon - + Ícone de status Web seed URLs: - + URLs de semente da web: Failed - + Falhou Comment - + Comentário Finished - + Concluído Settings - + Configurações Error Message - + Mensagem de erro Status - + Status Align to piece boundary for files larger than: - + Alinhar ao limite dos pedaços pra arquivos maiores do que: Select file/folder to share: - + Selecione o arquivo/pasta para compartilhar: Piece Size - + Tamanho da parte Progress - + Progresso Completed On - + Completado em Hybrid - + Híbrido Unable to load torrent creation tasks - + Não é possível carregar as tarefas de criação de torrent Optimize alignment - + Otimizar +alinhamento N/A - + N/D Tracker URLs: - + URLs do rastreador: Are you sure you want to delete selected tasks? - + Você deseja realmente apagar as tarefas selecionadas? Path: - + Caminho: Create Torrent - + Criar Torrent Auto - + Auto Started On - + Iniciado em Web Seeds - + Seeds da web Start seeding immediately - + Começar +a semear +imediatamente Format - + Formato Torrent format: - + Formato do torrent: Source Path - + Caminho da fonte Added On - + Adicionado em Running - + Em execução Torrent Creator - + Criador de torrents Source: - + Fonte: Trackers - + Trackers Piece size: - + Tamanho do pedaço: Fields - + Campos Remove Task - + Remover tarefa Export Torrent - + Exportar torrent \ No newline at end of file diff --git a/src/webui/www/translations/webui_pt_PT.ts b/src/webui/www/translations/webui_pt_PT.ts index e2d68cd63..4f039cd4d 100644 --- a/src/webui/www/translations/webui_pt_PT.ts +++ b/src/webui/www/translations/webui_pt_PT.ts @@ -696,7 +696,7 @@ Torrent Creator - + Criador de torrents @@ -1171,10 +1171,6 @@ When adding a torrent Ao adicionar um torrent - - Info: The password is saved unencrypted - Informação: A palavra-passe é guardada sem encriptação - μTP-TCP mixed mode algorithm: Algoritmo do modo de mistura uTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Threads assíncronas I/O: - - s - s - Send buffer watermark: Enviar marca de água do buffer: @@ -4056,7 +4048,7 @@ Utilize ';' para dividir várias entradas. Pode usar o asterisco '*'. Author: - + Autor: @@ -4618,7 +4610,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para TorrentCreator Private - + Privado Source @@ -4626,7 +4618,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Queued - + Em fila Unable to create torrent. @@ -4647,7 +4639,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Comments: - + Comentários: Download Torrent @@ -4659,7 +4651,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Web seed URLs: - + URL de sementes da web: Failed @@ -4667,7 +4659,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Comment - + Comentário Finished @@ -4675,7 +4667,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Settings - + Definições Error Message @@ -4683,7 +4675,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Status - + Estado Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Progress - + Evolução Completed On - + Terminado em Hybrid - + Híbrido Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para N/A - + N/D Tracker URLs: - + URLs do tracker: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Path: - + Localização: Create Torrent - + Criar torrent Auto - + Automático Started On @@ -4763,7 +4755,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Torrent format: - + Formato do torrent: Source Path @@ -4771,7 +4763,7 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Added On - + Adicionado em Running @@ -4779,23 +4771,23 @@ Suporta os formatos: S01E01, 1x1, 2017.12.31 e 31.12.2017 (Suporte também para Torrent Creator - + Criador de torrents Source: - + Fonte: Trackers - + Rastreadores Piece size: - + Tamanho da peça: Fields - + Campos Remove Task diff --git a/src/webui/www/translations/webui_ro.ts b/src/webui/www/translations/webui_ro.ts index 0831acb55..f7436e953 100644 --- a/src/webui/www/translations/webui_ro.ts +++ b/src/webui/www/translations/webui_ro.ts @@ -696,7 +696,7 @@ Torrent Creator - + Creator de torente @@ -1171,10 +1171,6 @@ When adding a torrent Când se adaugă un torent - - Info: The password is saved unencrypted - Informație: Parola este salvată fără criptare - μTP-TCP mixed mode algorithm: Algoritm pentru regim mixt μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: - - s - s - Send buffer watermark: @@ -4052,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Autor: @@ -4622,7 +4614,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Queued - + În coadă Unable to create torrent. @@ -4643,7 +4635,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Comments: - + Comentarii: Download Torrent @@ -4655,7 +4647,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Web seed URLs: - + URL sursă Web: Failed @@ -4671,7 +4663,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Settings - + Configurări Error Message @@ -4679,7 +4671,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Status - + Stare Align to piece boundary for files larger @@ -4696,15 +4688,15 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Progress - + Progres Completed On - + Încheiat la Hybrid - + Hibrid Unable to load torrent creation tasks @@ -4717,11 +4709,11 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d N/A - + Indisp. Tracker URLs: - + URL-urile urmăritorului: Are you sure you want to delete selected tasks? @@ -4729,15 +4721,15 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Path: - + Cale: Create Torrent - + Creează torent Auto - + Automat Started On @@ -4759,7 +4751,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Torrent format: - + Format torent: Source Path @@ -4767,7 +4759,7 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Added On - + Adăugat la Running @@ -4775,23 +4767,23 @@ Recunoaște formatele: S01E01, 1x1, 2017.12.31 si 31.12.2017 (Formatele pentru d Torrent Creator - + Creator de torente Source: - + Sursă: Trackers - + Urmăritoare Piece size: - + Dimensiune bucată: Fields - + Câmpuri Remove Task diff --git a/src/webui/www/translations/webui_ru.ts b/src/webui/www/translations/webui_ru.ts index 3bf21e3cf..86763a53b 100644 --- a/src/webui/www/translations/webui_ru.ts +++ b/src/webui/www/translations/webui_ru.ts @@ -309,7 +309,7 @@ Free space: %1 - Свободно: %1 + Свободное место: %1 Torrent inactivity timer must be greater than 0. @@ -696,7 +696,7 @@ Torrent Creator - + Создание торрента @@ -1171,10 +1171,6 @@ When adding a torrent При добавлении торрента - - Info: The password is saved unencrypted - Примечание: Пароль будет сохранён в нешифрованном виде - μTP-TCP mixed mode algorithm: Алгоритм смешанного режима μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Потоки асинхронного ввода-вывода: - - s - с - Send buffer watermark: Отметка буфера отправки: @@ -2049,19 +2041,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Enable optimized table rendering (experimental) - + Оптимизировать отрисовку таблиц (экспериментально) Note: The password is saved unencrypted - + Примечание: Пароль сохраняется в нешифрованном виде Internal hostname resolver cache expiry interval - + Период истечения срока кэша внутреннего преобразователя имён хостов sec - + с @@ -4052,11 +4044,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Open link - + Открыть ссылку Author: - + Автор: @@ -4223,7 +4215,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Season number is a mandatory non-zero value - Номер сезона должен иметь ненулевое значение + Номер сезона должен быть ненулевым значением Never @@ -4618,192 +4610,197 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + Частный Source - + Источник Queued - + В очереди Unable to create torrent. - + Невозможно создать торрент. Private torrent (Won't distribute on DHT network) - + Частный + торрент (не раздаётся по децентрализованной сети DHT) Unable to export torrent file - + Не удалось экспортировать торрент-файл Create New Torrent - + Создать новый торрент Comments: - + Комментарии: Download Torrent - + Загрузить торрент Status Icon - + Значок состояния Web seed URLs: - + Адреса веб-сидов: Failed - + Не удалось Comment - + Комментарий Finished - + Завершён Settings - + Настройки Error Message - + Сообщение с ошибкой Status - + Состояние Align to piece boundary for files larger than: - + Выравнивать по размеру частей файлы больше + чем: Select file/folder to share: - + Выберите файл или папку для раздачи: Piece Size - + Размер части Progress - + Прогресс Completed On - + Завершён Hybrid - + Гибрид Unable to load torrent creation tasks - + Не удаётся загрузить задачи создания торрента Optimize alignment - + Оптимизировать + выравнивание N/A - + Н/Д Tracker URLs: - + Адреса трекеров: Are you sure you want to delete selected tasks? - + Уверены, что хотите удалить выбранные задачи? Path: - + Путь: Create Torrent - + Создать торрент Auto - + Авто Started On - + Дата запуска Web Seeds - + Веб-сиды Start seeding immediately - + Начать + раздачу + сразу Format - + Формат Torrent format: - + Формат торрента: Source Path - + Путь источника Added On - + Добавлен Running - + Запущен Torrent Creator - + Создание торрента Source: - + Источник: Trackers - + Трекеры Piece size: - + Размер части: Fields - + Поля Remove Task - + Удалить задачу Export Torrent - + Экспорт торрента \ No newline at end of file diff --git a/src/webui/www/translations/webui_sk.ts b/src/webui/www/translations/webui_sk.ts index b0010efcd..05f6cb3d5 100644 --- a/src/webui/www/translations/webui_sk.ts +++ b/src/webui/www/translations/webui_sk.ts @@ -696,7 +696,7 @@ Torrent Creator - + Tvorca torrentu @@ -1171,10 +1171,6 @@ When adding a torrent Pri pridávaní torrentu - - Info: The password is saved unencrypted - Info: Heslo sa ukladá nezašifrované - μTP-TCP mixed mode algorithm: μTP-TCP mixed mode algoritmus: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynchronní I/O vlákna: - - s - s - Send buffer watermark: Odoslať watermark bufferu: @@ -2061,7 +2053,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. sec - + sec @@ -4056,7 +4048,7 @@ Použite ';' pre oddelenie viacerých položiek. Môžete použiť masku '*'. Author: - + Autor: @@ -4626,7 +4618,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Queued - + Vo fronte Unable to create torrent. @@ -4647,7 +4639,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Comments: - + Komentáre: Download Torrent @@ -4659,7 +4651,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Web seed URLs: - + URL webových seedov: Failed @@ -4667,7 +4659,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Comment - + Komentár: Finished @@ -4675,7 +4667,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Settings - + Nastavenia Error Message @@ -4683,7 +4675,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Status - + Stav Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Progress - + Priebeh Completed On - + Dokončené Hybrid - + Hybridné Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty N/A - + Neuvedené Tracker URLs: - + URL trackerov: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Path: - + Cesta: Create Torrent - + Vytvoriť torrent Auto - + Auto Started On @@ -4763,7 +4755,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Torrent format: - + Formát torrentu: Source Path @@ -4771,7 +4763,7 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Added On - + Pridané Running @@ -4779,23 +4771,23 @@ Podporuje formáty: S01E01, 1x1, 2017.12.31 a 31.12.2017 (podporuje aj formáty Torrent Creator - + Tvorca torrentu Source: - + Zdroj Trackers - + Trackery Piece size: - + Veľkosť časti: Fields - + Polia Remove Task diff --git a/src/webui/www/translations/webui_sl.ts b/src/webui/www/translations/webui_sl.ts index f3351e930..c5195bd3e 100644 --- a/src/webui/www/translations/webui_sl.ts +++ b/src/webui/www/translations/webui_sl.ts @@ -696,7 +696,7 @@ Torrent Creator - + Ustvarjalnik torrentov @@ -1171,10 +1171,6 @@ When adding a torrent Ob dodajanju torrenta - - Info: The password is saved unencrypted - Obvestilo: Geslo je shranjeno nešifrirano - μTP-TCP mixed mode algorithm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: - - s - s - Send buffer watermark: @@ -4056,7 +4048,7 @@ Uporabi ';' da razčleniš vnose. Lahko uporbiš nadomestni znak '*'. Author: - + Avtor: @@ -4619,7 +4611,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 TorrentCreator Private - + Zaseben Source @@ -4627,7 +4619,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Queued - + V čakalni vrsti Unable to create torrent. @@ -4648,7 +4640,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Comments: - + Komentarji: Download Torrent @@ -4660,7 +4652,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Web seed URLs: - + URL-ji spletnih semen: Failed @@ -4668,7 +4660,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Comment - + Komentar Finished @@ -4676,7 +4668,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Settings - + Nastavitve Error Message @@ -4684,7 +4676,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Status - + Stanje Align to piece boundary for files larger @@ -4701,15 +4693,15 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Progress - + Napredek Completed On - + Končano Hybrid - + hibridna Unable to load torrent creation tasks @@ -4722,11 +4714,11 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 N/A - + N/A Tracker URLs: - + URL-ji sledilnikov: Are you sure you want to delete selected tasks? @@ -4734,15 +4726,15 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Path: - + Pot: Create Torrent - + Ustvari torrent Auto - + Samodejno Started On @@ -4764,7 +4756,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Torrent format: - + Oblika torrenta: Source Path @@ -4772,7 +4764,7 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Added On - + Dodano Running @@ -4780,23 +4772,23 @@ Podprti formati: S01E01, 1x1, 2017.12.31 and 31.12.2017 Torrent Creator - + Ustvarjalnik torrentov Source: - + Vir: Trackers - + Sledilniki Piece size: - + Velikost kosa: Fields - + Polja Remove Task diff --git a/src/webui/www/translations/webui_sr.ts b/src/webui/www/translations/webui_sr.ts index 323b69222..cc587f8c7 100644 --- a/src/webui/www/translations/webui_sr.ts +++ b/src/webui/www/translations/webui_sr.ts @@ -696,7 +696,7 @@ Torrent Creator - + Креатор торента @@ -1171,10 +1171,6 @@ When adding a torrent При додавању торента - - Info: The password is saved unencrypted - Инфо: шифра се чува у неенкриптованом стању - μTP-TCP mixed mode algorithm: @@ -4048,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Аутор: @@ -4618,7 +4614,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + Редослед Unable to create torrent. @@ -4639,7 +4635,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Коментари: Download Torrent @@ -4667,7 +4663,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Подешавања Error Message @@ -4675,7 +4671,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Статус Align to piece boundary for files larger @@ -4692,15 +4688,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Напредак Completed On - + Завршено дана Hybrid - + Хибридно Unable to load torrent creation tasks @@ -4713,11 +4709,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + Недоступно Tracker URLs: - + Пратилац URLs: Are you sure you want to delete selected tasks? @@ -4725,15 +4721,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Путања Create Torrent - + Створи торент Auto - + Аутоматски Started On @@ -4755,7 +4751,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Формат торента: Source Path @@ -4763,7 +4759,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Додато на Running @@ -4771,23 +4767,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Креатор торента Source: - + Извор: Trackers - + Пратиоци Piece size: - + Величина дела: Fields - + Поља Remove Task diff --git a/src/webui/www/translations/webui_sv.ts b/src/webui/www/translations/webui_sv.ts index 59fb3eb41..7dbf9bbce 100644 --- a/src/webui/www/translations/webui_sv.ts +++ b/src/webui/www/translations/webui_sv.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrentskapare @@ -1171,10 +1171,6 @@ When adding a torrent När en torrent läggs till - - Info: The password is saved unencrypted - Info: Lösenordet sparas okrypterat - μTP-TCP mixed mode algorithm: µTP-TCP blandad lägesalgoritm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Asynkrona in/ut-trådar: - - s - s - Send buffer watermark: Skicka buffertvattenstämpel: @@ -2049,19 +2041,19 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Enable optimized table rendering (experimental) - + Aktivera optimerad rendering av tabeller (experimentell) Note: The password is saved unencrypted - + Observera: Lösenordet sparas okrypterat Internal hostname resolver cache expiry interval - + Utgångsintervall för cache för intern värdnamnsresolver sec - + sek @@ -4052,11 +4044,11 @@ Använd ";" för att dela upp i flera poster. Du kan använda jokertecknet "*".< Open link - + Öppna länk Author: - + Upphovsman: @@ -4618,192 +4610,197 @@ Stöder formaten: S01E01, 1x1, 2017.12.31 och 31.12.2017 (datumformatet stöder TorrentCreator Private - + Privat Source - + Källa Queued - + Köar Unable to create torrent. - + Kunde inte skapa torrent. Private torrent (Won't distribute on DHT network) - + Privat + torrent (distribueras inte på DHT-nätverk) Unable to export torrent file - + Det går inte att exportera torrentfil Create New Torrent - + Skapa ny torrent Comments: - + Kommentarer: Download Torrent - + Hämta torrent Status Icon - + Statusikon Web seed URLs: - + URL:er för webbdistribution: Failed - + Misslyckades Comment - + Kommentar Finished - + Färdig Settings - + Inställningar Error Message - + Felmeddelande Status - + Status Align to piece boundary for files larger than: - + Justera till delgränsen för filer som är större + än: Select file/folder to share: - + Välj fil/mapp att dela: Piece Size - + Delstorlek Progress - + Förlopp Completed On - + Slutfördes Hybrid - + Hybrid Unable to load torrent creation tasks - + Det går inte att läsa in åtgärder för skapande av torrent Optimize alignment - + Optimera + justering N/A - + Ingen Tracker URLs: - + URL:er för spårare: Are you sure you want to delete selected tasks? - + Är du säker på att du vill ta bort valda åtgärder? Path: - + Sökväg: Create Torrent - + Skapa torrent Auto - + Automatisk Started On - + Startad Web Seeds - + Webbdistribution Start seeding immediately - + Börja + distribuera + direkt Format - + Format Torrent format: - + Torrentformat: Source Path - + Källsökväg Added On - + Tillagd Running - + Kör Torrent Creator - + Torrentskapare Source: - + Källa: Trackers - + Spårare Piece size: - + Delstorlek: Fields - + Fält Remove Task - + Ta bort åtgärd Export Torrent - + Exportera torrent \ No newline at end of file diff --git a/src/webui/www/translations/webui_th.ts b/src/webui/www/translations/webui_th.ts index d8f2ab80a..57f6f3b2d 100644 --- a/src/webui/www/translations/webui_th.ts +++ b/src/webui/www/translations/webui_th.ts @@ -1271,10 +1271,6 @@ Asynchronous I/O threads: - - s - วิ - Send buffer watermark: @@ -4048,7 +4044,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + ผู้เขียน: @@ -4618,7 +4614,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + เพิ่มในคิวแล้ว Unable to create torrent. @@ -4639,7 +4635,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + หมายเหตุ: Download Torrent @@ -4659,7 +4655,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + ความคิดเห็น Finished @@ -4667,7 +4663,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + ตั้งค่า Error Message @@ -4675,7 +4671,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + สถานะ Align to piece boundary for files larger @@ -4692,11 +4688,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + กระบวนการ Completed On - + เสร็จเมื่อ Hybrid @@ -4713,7 +4709,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + ไม่สามารถใช้ได้ Tracker URLs: @@ -4729,11 +4725,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Create Torrent - + สร้างทอเร้นต์ Auto - + อัตโนมัติ Started On @@ -4755,7 +4751,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + ประเภททอเร้นต์: Source Path @@ -4763,7 +4759,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + เพิ่มเมื่อ Running @@ -4775,11 +4771,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Source: - + ต้นทาง: Trackers - + ติดตาม Piece size: diff --git a/src/webui/www/translations/webui_tr.ts b/src/webui/www/translations/webui_tr.ts index 109a6c0e1..c5076487c 100644 --- a/src/webui/www/translations/webui_tr.ts +++ b/src/webui/www/translations/webui_tr.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent Oluşturucu @@ -1171,10 +1171,6 @@ When adding a torrent Bir torrent eklerken - - Info: The password is saved unencrypted - Bilgi: Parola şifrelenmeden kaydedilir - μTP-TCP mixed mode algorithm: μTP-TCP karışık kip algoritması: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Eşzamansız G/Ç iş parçaları: - - s - s - Send buffer watermark: Gönderme arabelleği eşiği: @@ -2049,19 +2041,19 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Enable optimized table rendering (experimental) - + İyileştirilmiş tablo işlemeyi etkinleştir (deneysel) Note: The password is saved unencrypted - + Not: Parola şifrelenmeden kaydedilir Internal hostname resolver cache expiry interval - + Dahili anamakine adı çözücü önbelleği sona erme aralığı sec - + san @@ -4052,11 +4044,11 @@ sunucusu tarafından kullanılan etki alanı adlarına eklemelisiniz. Open link - + Bağlantıyı aç Author: - + Hazırlayan: @@ -4618,192 +4610,197 @@ Desteklenen biçimler: S01E01, 1x1, 2017.12.31 ve 31.12.2017 (Tarih biçimleri d TorrentCreator Private - + Özel Source - + Kaynak Queued - + Kuyruğa Alındı Unable to create torrent. - + Torrent oluşturulamıyor. Private torrent (Won't distribute on DHT network) - + Özel + torrent (DHT ağında dağıtılmayacak) Unable to export torrent file - + Torrent dosyası dışa aktarılamıyor Create New Torrent - + Yeni Torrent Oluştur Comments: - + Açıklamalar: Download Torrent - + Torrent'i İndir Status Icon - + Durum Simgesi Web seed URLs: - + Web gönderim URL'leri: Failed - + Başarısız oldu Comment - + Açıklama Finished - + Tamamlandı Settings - + Ayarlar Error Message - + Hata İletisi Status - + Durum Align to piece boundary for files larger than: - + Şundan daha büyük dosyaları parça sınırına + hizala: Select file/folder to share: - + Paylaşmak için dosya/klasör seçin: Piece Size - + Parça Boyutu Progress - + İlerleme Completed On - + Tamamlanma Hybrid - + Hibrit Unable to load torrent creation tasks - + Torrent oluşturma görevleri yüklenemiyor Optimize alignment - + Hizalamayı + iyileştir N/A - + Yok Tracker URLs: - + İzleyici URL'leri: Are you sure you want to delete selected tasks? - + Seçilen görevleri silmek istediğinize emin misiniz? Path: - + Yol: Create Torrent - + Torrent Oluştur Auto - + Otomatik Started On - + Başlatılma Web Seeds - + Web Gönderimleri Start seeding immediately - + Gönderimi + hemen + başlat Format - + Biçim Torrent format: - + Torrent biçimi: Source Path - + Kaynak Yolu Added On - + Eklenme Running - + Çalışıyor Torrent Creator - + Torrent Oluşturucu Source: - + Kaynak: Trackers - + İzleyiciler Piece size: - + Parça boyutu: Fields - + Alanlar Remove Task - + Görevi Kaldır Export Torrent - + Torrent'i Dışa Aktar \ No newline at end of file diff --git a/src/webui/www/translations/webui_uk.ts b/src/webui/www/translations/webui_uk.ts index 7aafc5b8b..1847e6e74 100644 --- a/src/webui/www/translations/webui_uk.ts +++ b/src/webui/www/translations/webui_uk.ts @@ -696,7 +696,7 @@ Torrent Creator - + Створити торрент @@ -1171,10 +1171,6 @@ When adding a torrent При додаванні торрента - - Info: The password is saved unencrypted - Примітка: Пароль буде збережений в нешифрованому вигляді - μTP-TCP mixed mode algorithm: Алгоритм змішаного режиму μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Потоки асинхронного введення-виведення: - - s - с - Send buffer watermark: Рівень буфера відправки: @@ -2061,7 +2053,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. sec - + с @@ -4056,7 +4048,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + Автор: @@ -4618,7 +4610,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + Приватний Source @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + В черзі Unable to create torrent. @@ -4639,7 +4631,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Unable to export torrent file - + Неможливо експортувати торрент файл Create New Torrent @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + Коментарі: Download Torrent @@ -4655,11 +4647,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status Icon - + Значок статусу Web seed URLs: - + Адреси веб-сідів: Failed @@ -4667,7 +4659,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comment - + Коментар Finished @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + Налаштування Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + Статус Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + Прогрес Completed On - + Завершено о Hybrid - + Гібридний Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + Tracker URLs: - + Адреси трекерів: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + Шлях: Create Torrent - + Створити торрент Auto - + Автоматично Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Формат торрента: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + Додано Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Створити торрент Source: - + Джерело: Trackers - + Трекери Piece size: - + Розмір частини: Fields - + Поля Remove Task diff --git a/src/webui/www/translations/webui_vi.ts b/src/webui/www/translations/webui_vi.ts index 8dad5aa3b..3d92d818a 100644 --- a/src/webui/www/translations/webui_vi.ts +++ b/src/webui/www/translations/webui_vi.ts @@ -696,7 +696,7 @@ Torrent Creator - + Trình tạo Torrent @@ -1171,10 +1171,6 @@ When adding a torrent Khi thêm một torrent - - Info: The password is saved unencrypted - Thông tin: Mật khẩu đã lưu không mã hóa - μTP-TCP mixed mode algorithm: Thuật toán chế độ hỗn hợp μTP-TCP: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: Luồng I/O không đồng bộ: - - s - giây - Send buffer watermark: Gửi watermark bộ đệm: @@ -4056,7 +4048,7 @@ Sử dụng ';' để chia nhiều mục nhập. Có thể sử dụng ký tự Author: - + Tác giả: @@ -4618,7 +4610,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ TorrentCreator Private - + Riêng tư Source @@ -4626,7 +4618,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Queued - + Xếp hàng Unable to create torrent. @@ -4639,7 +4631,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Unable to export torrent file - + Không thể xuất tệp torrent Create New Torrent @@ -4647,7 +4639,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Comments: - + Bình luận: Download Torrent @@ -4655,11 +4647,11 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Status Icon - + Biểu Tượng Trạng Thái Web seed URLs: - + URL Web chia sẻ Failed @@ -4667,7 +4659,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Comment - + Bình luận Finished @@ -4675,7 +4667,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Settings - + Cài đặt Error Message @@ -4683,7 +4675,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Status - + Trạng thái Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Progress - + Tiến độ Completed On - + Đã Xong Lúc Hybrid - + Hỗn hợp Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ N/A - + Không áp dụng Tracker URLs: - + URL máy theo dõi: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Path: - + Đường dẫn: Create Torrent - + Tạo Torrent Auto - + Tự động Started On @@ -4763,7 +4755,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Torrent format: - + Dạng torrent: Source Path @@ -4771,7 +4763,7 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Added On - + Thêm Lúc Running @@ -4779,23 +4771,23 @@ Hỗ trợ định dạng: S01E01, 1x1, 2017.12.31 và 31.12.2017 (Hỗ trợ đ Torrent Creator - + Trình tạo Torrent Source: - + Nguồn: Trackers - + Máy theo dõi Piece size: - + Kích thước mảnh: Fields - + Trường Remove Task diff --git a/src/webui/www/translations/webui_zh_CN.ts b/src/webui/www/translations/webui_zh_CN.ts index 213e20c36..49c9808ac 100644 --- a/src/webui/www/translations/webui_zh_CN.ts +++ b/src/webui/www/translations/webui_zh_CN.ts @@ -696,7 +696,7 @@ Torrent Creator - + 制作 Torrent @@ -1171,10 +1171,6 @@ When adding a torrent 添加 torrent 时 - - Info: The password is saved unencrypted - 提示:密码未加密 - μTP-TCP mixed mode algorithm: μTP-TCP 混合模式策略: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: 异步 I/O 线程数: - - s - - Send buffer watermark: 发送缓冲区上限: @@ -2049,19 +2041,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Enable optimized table rendering (experimental) - + 启用优化的表格渲染(实验性) Note: The password is saved unencrypted - + 注意:密码以非加密形式保存 Internal hostname resolver cache expiry interval - + 内部主机名解析器缓存过期间隔 sec - + @@ -4052,11 +4044,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Open link - + 打开链接 Author: - + 作者: @@ -4618,192 +4610,192 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + 私密 Source - + 来源 Queued - + 排队 Unable to create torrent. - + 无法创建种子 Private torrent (Won't distribute on DHT network) - + 私密种子文件(不会在 DHT 网络分发) Unable to export torrent file - + 无法导出 torrent 文件 Create New Torrent - + 新建种子 Comments: - + 注释: Download Torrent - + 下载种子 Status Icon - + 状态图标 Web seed URLs: - + Web 种子 URL: Failed - + 失败了 Comment - + 注释 Finished - + 完成了 Settings - + 设置 Error Message - + 错误消息 Status - + 状态 Align to piece boundary for files larger than: - + 大于下列数值的文件启用文件块边界对齐: Select file/folder to share: - + 选择要分享的文件/文件夹: Piece Size - + 文件块大小 Progress - + 进度 Completed On - + 完成于 Hybrid - + 混合 Unable to load torrent creation tasks - + 无法加载种子创建任务 Optimize alignment - + 对齐优化 N/A - + N/A Tracker URLs: - + Tracker URL: Are you sure you want to delete selected tasks? - + 确定要删除所选任务吗? Path: - + 路径: Create Torrent - + 制作 Torrent Auto - + 自动 Started On - + 开始于 Web Seeds - + Web Seeds Start seeding immediately - + 立即开始做种 Format - + 格式 Torrent format: - + Torrent 格式: Source Path - + 源路径 Added On - + 添加于 Running - + 运行中 Torrent Creator - + 制作 Torrent Source: - + 源: Trackers - + Tracker Piece size: - + 分块大小: Fields - + 字段 Remove Task - + 删除任务 Export Torrent - + 导出种子 \ No newline at end of file diff --git a/src/webui/www/translations/webui_zh_HK.ts b/src/webui/www/translations/webui_zh_HK.ts index 90455e490..dbdaea970 100644 --- a/src/webui/www/translations/webui_zh_HK.ts +++ b/src/webui/www/translations/webui_zh_HK.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent建立工具 @@ -1171,10 +1171,6 @@ When adding a torrent 加入Torrent時 - - Info: The password is saved unencrypted - (注意:儲存的密碼不會加密) - μTP-TCP mixed mode algorithm: @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: - - s - - Send buffer watermark: @@ -4056,7 +4048,7 @@ Use ';' to split multiple entries. Can use wildcard '*'. Author: - + 作者: @@ -4626,7 +4618,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Queued - + 已排程 Unable to create torrent. @@ -4647,7 +4639,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Comments: - + 評註: Download Torrent @@ -4659,7 +4651,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Web seed URLs: - + Web種子網址: Failed @@ -4675,7 +4667,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Settings - + 設定 Error Message @@ -4683,7 +4675,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Status - + 狀態 Align to piece boundary for files larger @@ -4700,15 +4692,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Progress - + 進度 Completed On - + 完成於 Hybrid - + 混合 Unable to load torrent creation tasks @@ -4721,11 +4713,11 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also N/A - + N/A Tracker URLs: - + 追蹤器網址: Are you sure you want to delete selected tasks? @@ -4733,15 +4725,15 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Path: - + 路徑: Create Torrent - + 建立Torrent Auto - + 自動 Started On @@ -4763,7 +4755,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent format: - + Torrent 格式: Source Path @@ -4771,7 +4763,7 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Added On - + 加入於 Running @@ -4779,23 +4771,23 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also Torrent Creator - + Torrent建立工具 Source: - + 來源: Trackers - + 追蹤器 Piece size: - + 片段大小: Fields - + 資料項 Remove Task diff --git a/src/webui/www/translations/webui_zh_TW.ts b/src/webui/www/translations/webui_zh_TW.ts index 5fa59ea2a..df9497504 100644 --- a/src/webui/www/translations/webui_zh_TW.ts +++ b/src/webui/www/translations/webui_zh_TW.ts @@ -696,7 +696,7 @@ Torrent Creator - + Torrent 製作器 @@ -1171,10 +1171,6 @@ When adding a torrent 當增加 torrent 時 - - Info: The password is saved unencrypted - 資訊:密碼以未加密的形式儲存 - μTP-TCP mixed mode algorithm: μTP-TCP 混合模式演算法 @@ -1275,10 +1271,6 @@ Asynchronous I/O threads: 異步 I/O 執行緒: - - s - s - Send buffer watermark: 傳送緩衝浮水印: @@ -2049,19 +2041,19 @@ Use ';' to split multiple entries. Can use wildcard '*'. Enable optimized table rendering (experimental) - + 啟用最佳化的表格繪製(實驗性) Note: The password is saved unencrypted - + 注意:密碼以未加密形式儲存 Internal hostname resolver cache expiry interval - + 內部主機名稱解析器快取過期間隔 sec - + @@ -4052,11 +4044,11 @@ Use ';' to split multiple entries. Can use wildcard '*'. Open link - + 開啟連結 Author: - + 作者: @@ -4618,192 +4610,197 @@ Supports the formats: S01E01, 1x1, 2017.12.31 and 31.12.2017 (Date formats also TorrentCreator Private - + 私人 Source - + 來源 Queued - + 佇列 Unable to create torrent. - + 無法建立 torrent。 Private torrent (Won't distribute on DHT network) - + 私密 + torrent(不會在 DHT 網路散佈) Unable to export torrent file - + 無法匯出 torrent 檔案 Create New Torrent - + 建立新的 Torrent Comments: - + 註解: Download Torrent - + 下載 torrent Status Icon - + 狀態圖示 Web seed URLs: - + 網頁種子 URL: Failed - + 失敗 Comment - + 註解 Finished - + 已結束 Settings - + 設定 Error Message - + 錯誤訊息 Status - + 狀態 Align to piece boundary for files larger than: - + 對齊大於以下內容的檔案 + 邊界: Select file/folder to share: - + 選取要分享的檔案/資料夾: Piece Size - + 區塊大小 Progress - + 進度 Completed On - + 完成於 Hybrid - + 混合 Unable to load torrent creation tasks - + 無法載入 torrent 建立任務 Optimize alignment - + 最佳化 + 對齊 N/A - + N/A Tracker URLs: - + 追蹤者 URL: Are you sure you want to delete selected tasks? - + 您確定您想要刪除選定的任務嗎? Path: - + 路徑: Create Torrent - + 製作 torrent Auto - + 自動 Started On - + 開始於 Web Seeds - + 網頁種子 Start seeding immediately - + 立刻 + 開始 + 做種 Format - + 格式 Torrent format: - + Torrent 格式: Source Path - + 來源路徑 Added On - + 增加於 Running - + 正在執行 Torrent Creator - + Torrent 製作器 Source: - + 來源: Trackers - + Trackers Piece size: - + 分塊大小: Fields - + 資訊項 Remove Task - + 移除任務 Export Torrent - + 匯出 torrent \ No newline at end of file